| 0/0 |
2026/05/19 15:21 |
flow |
repro-c |
6m
Results: map[OtherCrashReports:<nil> ReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
Reproduced:true ReproducedBugTitle:KCSAN: data-race in _copy_from_iter / bcm_can_tx ReproducedCrashReport:==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
do_softirq+0x45/0x60 kernel/softirq.c:523
__local_bh_enable_ip+0x70/0x80 kernel/softirq.c:450
__raw_spin_unlock_bh include/linux/spinlock_api_smp.h:196 [inline]
_raw_spin_unlock_bh+0x18/0x20 kernel/locking/spinlock.c:214
spin_unlock_bh include/linux/spinlock.h:396 [inline]
release_sock+0x10c/0x180 net/core/sock.c:3825
rawv6_sendmsg+0x1150/0x1230 net/ipv6/raw.c:921
inet_sendmsg+0xc5/0xd0 net/ipv4/af_inet.c:866
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x519/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_ubuf include/linux/iov_iter.h:30 [inline]
iterate_and_advance2 include/linux/iov_iter.h:302 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x106/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
__sys_sendto+0x42e/0x490 net/socket.c:2265
__do_sys_sendto net/socket.c:2272 [inline]
__se_sys_sendto net/socket.c:2268 [inline]
__x64_sys_sendto+0x76/0x90 net/socket.c:2268
x64_sys_call+0x2d35/0x3020 arch/x86/include/generated/asm/syscalls_64.h:45
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
==================================================================
]
|
| 1/1 |
2026/05/19 15:21 |
action |
kernel-checkouter |
0m
Results: map[KernelSrc:/app/workdir/cache/src/39056aef3a53503f1a05892aad8990e208e793fc]
|
| 2/1 |
2026/05/19 15:21 |
action |
kernel-builder |
0m
Results: map[KernelObj:/app/workdir/cache/build/b973c5f6f2e5f17ebaaf39ce43b84b03b5b532c2]
|
| 3/1 |
2026/05/19 15:21 |
action |
codesearch-prepare |
0m
Results: map[Index:codesearch-index]
|
| 4/1 |
2026/05/19 15:21 |
agent |
initial-researcher |
2m
Model:
Instruction: You are a security researcher with deep Linux kernel background.
Your goal is to analyze a Linux kernel bug description and propose a strategy to reproduce it
with a minimal, standalone C program.
This is for the strictly defensive purpose of verifying a bugfix in an isolated environment.
Do NOT propose an exploit. Focus on minimal technical reproduction of the bug state.
Keep your analysis and strategy proposal concise. Do not write long explanations.
Prefer calling several tools at the same time to save round-trips.
Prompt: Bug Description: KCSAN: data-race in _copy_from_iter / bcm_can_tx
==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x42/0xd0 kernel/softirq.c:735
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1061 [inline]
sysvec_apic_timer_interrupt+0x37/0x80 arch/x86/kernel/apic/apic.c:1061
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:697
write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_iovec include/linux/iov_iter.h:52 [inline]
iterate_and_advance2 include/linux/iov_iter.h:304 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x258/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x563/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 4914 Comm: syz.4.421 Tainted: G W syzkaller #0 PREEMPT(full)
Tainted: [W]=WARN
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 04/18/2026
==================================================================
Reply: ### Analysis of the Bug
The KCSAN report indicates a data race between a read in `bcm_can_tx` and a write in `bcm_tx_setup` within the CAN Broadcast Manager (BCM) subsystem.
1. **The Write (`bcm_tx_setup`)**: When a user sends a `TX_SETUP` message to a BCM socket for an existing operation (`can_id`), `bcm_tx_setup` updates the CAN frames. It copies the new frame data from user space into `op->frames` using `memcpy_from_msg`. Crucially, this copy is performed *without* holding the `op->bcm_tx_lock`.
2. **The Read (`bcm_can_tx`)**: If the BCM operation was configured with a periodic transmission timer (`SETTIMER | STARTTIMER`), the `bcm_tx_timeout_handler` hrtimer will periodically call `bcm_can_tx`. This function reads the frame from `op->frames` and copies it into an `skb` using `skb_put_data` (which wraps `memcpy`). This read also happens *outside* the `op->bcm_tx_lock`.
Because both the timer interrupt (reading) and the `sendmsg` syscall (writing) access `op->frames` concurrently without synchronization, a data race occurs. The size of the access (72 bytes) corresponds to `sizeof(struct canfd_frame)`, indicating that the `CAN_FD_FRAME` flag is being used.
### Reproduction Strategy
To reproduce this bug, we need to set up a scenario where the hrtimer is constantly firing while a user-space thread continuously updates the frame data:
1. Create a `CAN_BCM` socket and connect it to a CAN interface (e.g., `vcan0`).
2. Send an initial `TX_SETUP` message with `CAN_FD_FRAME | SETTIMER | STARTTIMER` and a very small interval (e.g., 1 microsecond). This arms the hrtimer to continuously transmit the frame.
3. Enter a loop that repeatedly sends `TX_SETUP` messages for the same `can_id` with only the `CAN_FD_FRAME` flag. This will continuously trigger `memcpy_from_msg` into `op->frames` while the hrtimer concurrently reads from it.
### Minimal C Reproducer
```c
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main() {
// Ensure vcan0 exists and is up (requires root/CAP_NET_ADMIN)
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write.
msg.msg_head.flags = CAN_FD_FRAME;
while (1) {
send(s, &msg, sizeof(msg), 0);
}
return 0;
}
```
|
| 5/2 |
2026/05/19 15:21 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 3815
output: 173
thoughts: 207
Thoughts: **Analyzing a KCSAN Data Race in the CAN Bus Implementation**
Okay, so KCSAN flagged a data race. My initial thought is to dive right in. The report points to a race between `_copy_from_iter` and `bcm_can_tx`, and a quick glance tells me this involves a read in `bcm_can_tx` (triggered by the `hrtimer` within `bcm_tx_timeout_handler`) competing with a write in `_copy_from_iter` (called by `bcm_tx_setup` which is called by `bcm_sendmsg`). This looks like it's within the CAN bus functionality.
Let's head over to `net/can/bcm.c`. The read in question is at line 327 within `bcm_can_tx`, while the write is further down at line 965 in `bcm_tx_setup`. Now, to get the full picture, I need to see the actual code. So, let me grab the source code for `bcm_can_tx`, `bcm_tx_timeout_handler`, `bcm_tx_setup`, and `bcm_sendmsg` so I can understand the exact data access patterns and how these functions interact. From there, I can determine the likely cause of the race and begin formulating a fix.
|
| 6/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_can_tx]
Results: map[SourceCode: 288: /*
289: * bcm_can_tx - send the (next) CAN frame to the appropriate CAN interface
290: * of the given bcm tx op
291: */
292: static void bcm_can_tx(struct bcm_op *op)
293: {
294: struct sk_buff *skb;
295: struct can_skb_ext *csx;
296: struct net_device *dev;
297: struct canfd_frame *cf;
298: int err;
299:
300: /* no target device? => exit */
301: if (!op->ifindex)
302: return;
303:
304: /* read currframe under lock protection */
305: spin_lock_bh(&op->bcm_tx_lock);
306: cf = op->frames + op->cfsiz * op->currframe;
307: spin_unlock_bh(&op->bcm_tx_lock);
308:
309: dev = dev_get_by_index(sock_net(op->sk), op->ifindex);
310: if (!dev) {
311: /* RFC: should this bcm_op remove itself here? */
312: return;
313: }
314:
315: skb = alloc_skb(op->cfsiz, gfp_any());
316: if (!skb)
317: goto out;
318:
319: csx = can_skb_ext_add(skb);
320: if (!csx) {
321: kfree_skb(skb);
322: goto out;
323: }
324:
325: csx->can_iif = dev->ifindex;
326:
327: skb_put_data(skb, cf, op->cfsiz);
328:
329: /* send with loopback */
330: skb->dev = dev;
331: can_skb_set_owner(skb, op->sk);
332: err = can_send(skb, 1);
333:
334: /* update currframe and count under lock protection */
335: spin_lock_bh(&op->bcm_tx_lock);
336:
337: if (!err)
338: op->frames_abs++;
339:
340: op->currframe++;
341:
342: /* reached last frame? */
343: if (op->currframe >= op->nframes)
344: op->currframe = 0;
345:
346: if (op->count > 0)
347: op->count--;
348:
349: spin_unlock_bh(&op->bcm_tx_lock);
350: out:
351: dev_put(dev);
352: }
SourceFile:net/can/bcm.c]
|
| 7/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_tx_timeout_handler]
Results: map[SourceCode: 453: /* bcm_tx_timeout_handler - performs cyclic CAN frame transmissions */
454: static enum hrtimer_restart bcm_tx_timeout_handler(struct hrtimer *hrtimer)
455: {
456: struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer);
457: struct bcm_msg_head msg_head;
458:
459: if (op->kt_ival1 && (op->count > 0)) {
460: bcm_can_tx(op);
461: if (!op->count && (op->flags & TX_COUNTEVT)) {
462:
463: /* create notification to user */
464: memset(&msg_head, 0, sizeof(msg_head));
465: msg_head.opcode = TX_EXPIRED;
466: msg_head.flags = op->flags;
467: msg_head.count = op->count;
468: msg_head.ival1 = op->ival1;
469: msg_head.ival2 = op->ival2;
470: msg_head.can_id = op->can_id;
471: msg_head.nframes = 0;
472:
473: bcm_send_to_user(op, &msg_head, NULL, 0);
474: }
475:
476: } else if (op->kt_ival2) {
477: bcm_can_tx(op);
478: }
479:
480: return bcm_tx_set_expiry(op, &op->timer) ?
481: HRTIMER_RESTART : HRTIMER_NORESTART;
482: }
SourceFile:net/can/bcm.c]
|
| 8/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_tx_setup]
Results: map[SourceCode: 924: /*
925: * bcm_tx_setup - create or update a bcm tx op (for bcm_sendmsg)
926: */
927: static int bcm_tx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
928: int ifindex, struct sock *sk)
929: {
930: struct bcm_sock *bo = bcm_sk(sk);
931: struct bcm_op *op;
932: struct canfd_frame *cf;
933: unsigned int i;
934: int err;
935:
936: /* we need a real device to send frames */
937: if (!ifindex)
938: return -ENODEV;
939:
940: /* check nframes boundaries - we need at least one CAN frame */
941: if (msg_head->nframes < 1 || msg_head->nframes > MAX_NFRAMES)
942: return -EINVAL;
943:
944: /* check timeval limitations */
945: if ((msg_head->flags & SETTIMER) && bcm_is_invalid_tv(msg_head))
946: return -EINVAL;
947:
948: /* check the given can_id */
949: op = bcm_find_op(&bo->tx_ops, msg_head, ifindex);
950: if (op) {
951: /* update existing BCM operation */
952:
953: /*
954: * Do we need more space for the CAN frames than currently
955: * allocated? -> This is a _really_ unusual use-case and
956: * therefore (complexity / locking) it is not supported.
957: */
958: if (msg_head->nframes > op->nframes)
959: return -E2BIG;
960:
961: /* update CAN frames content */
962: for (i = 0; i < msg_head->nframes; i++) {
963:
964: cf = op->frames + op->cfsiz * i;
965: err = memcpy_from_msg((u8 *)cf, msg, op->cfsiz);
966:
967: if (op->flags & CAN_FD_FRAME) {
968: if (cf->len > 64)
969: err = -EINVAL;
970: } else {
971: if (cf->len > 8)
972: err = -EINVAL;
973: }
974:
975: if (err < 0)
976: return err;
977:
978: if (msg_head->flags & TX_CP_CAN_ID) {
979: /* copy can_id into frame */
980: cf->can_id = msg_head->can_id;
981: }
982: }
983: op->flags = msg_head->flags;
984:
985: /* only lock for unlikely count/nframes/currframe changes */
986: if (op->nframes != msg_head->nframes ||
987: op->flags & TX_RESET_MULTI_IDX ||
988: op->flags & SETTIMER) {
989:
990: spin_lock_bh(&op->bcm_tx_lock);
991:
992: if (op->nframes != msg_head->nframes ||
993: op->flags & TX_RESET_MULTI_IDX) {
994: /* potentially update changed nframes */
995: op->nframes = msg_head->nframes;
996: /* restart multiple frame transmission */
997: op->currframe = 0;
998: }
999:
1000: if (op->flags & SETTIMER)
1001: op->count = msg_head->count;
1002:
1003: spin_unlock_bh(&op->bcm_tx_lock);
1004: }
1005:
1006: } else {
1007: /* insert new BCM operation for the given can_id */
1008:
1009: op = kzalloc(OPSIZ, GFP_KERNEL);
1010: if (!op)
1011: return -ENOMEM;
1012:
1013: spin_lock_init(&op->bcm_tx_lock);
1014: op->can_id = msg_head->can_id;
1015: op->cfsiz = CFSIZ(msg_head->flags);
1016: op->flags = msg_head->flags;
1017: op->nframes = msg_head->nframes;
1018:
1019: if (op->flags & SETTIMER)
1020: op->count = msg_head->count;
1021:
1022: /* create array for CAN frames and copy the data */
1023: if (msg_head->nframes > 1) {
1024: op->frames = kmalloc_array(msg_head->nframes,
1025: op->cfsiz,
1026: GFP_KERNEL);
1027: if (!op->frames) {
1028: kfree(op);
1029: return -ENOMEM;
1030: }
1031: } else
1032: op->frames = &op->sframe;
1033:
1034: for (i = 0; i < msg_head->nframes; i++) {
1035:
1036: cf = op->frames + op->cfsiz * i;
1037: err = memcpy_from_msg((u8 *)cf, msg, op->cfsiz);
1038: if (err < 0)
1039: goto free_op;
1040:
1041: if (op->flags & CAN_FD_FRAME) {
1042: if (cf->len > 64)
1043: err = -EINVAL;
1044: } else {
1045: if (cf->len > 8)
1046: err = -EINVAL;
1047: }
1048:
1049: if (err < 0)
1050: goto free_op;
1051:
1052: if (msg_head->flags & TX_CP_CAN_ID) {
1053: /* copy can_id into frame */
1054: cf->can_id = msg_head->can_id;
1055: }
1056: }
1057:
1058: /* tx_ops never compare with previous received messages */
1059: op->last_frames = NULL;
1060:
1061: /* bcm_can_tx / bcm_tx_timeout_handler needs this */
1062: op->sk = sk;
1063: op->ifindex = ifindex;
1064:
1065: /* initialize uninitialized (kzalloc) structure */
1066: hrtimer_setup(&op->timer, bcm_tx_timeout_handler, CLOCK_MONOTONIC,
1067: HRTIMER_MODE_REL_SOFT);
1068:
1069: /* currently unused in tx_ops */
1070: hrtimer_setup(&op->thrtimer, hrtimer_dummy_timeout, CLOCK_MONOTONIC,
1071: HRTIMER_MODE_REL_SOFT);
1072:
1073: /* add this bcm_op to the list of the tx_ops */
1074: list_add(&op->list, &bo->tx_ops);
1075:
1076: } /* if ((op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex))) */
1077:
1078: if (op->flags & SETTIMER) {
1079: /* set timer values */
1080: op->ival1 = msg_head->ival1;
1081: op->ival2 = msg_head->ival2;
1082: op->kt_ival1 = bcm_timeval_to_ktime(msg_head->ival1);
1083: op->kt_ival2 = bcm_timeval_to_ktime(msg_head->ival2);
1084:
1085: /* disable an active timer due to zero values? */
1086: if (!op->kt_ival1 && !op->kt_ival2)
1087: hrtimer_cancel(&op->timer);
1088: }
1089:
1090: if (op->flags & STARTTIMER) {
1091: hrtimer_cancel(&op->timer);
1092: /* spec: send CAN frame when starting timer */
1093: op->flags |= TX_ANNOUNCE;
1094: }
1095:
1096: if (op->flags & TX_ANNOUNCE)
1097: bcm_can_tx(op);
1098:
1099: if (op->flags & STARTTIMER)
1100: bcm_tx_start_timer(op);
1101:
1102: return msg_head->nframes * op->cfsiz + MHSIZ;
1103:
1104: free_op:
1105: if (op->frames != &op->sframe)
1106: kfree(op->frames);
1107: kfree(op);
1108: return err;
1109: }
SourceFile:net/can/bcm.c]
|
| 9/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_sendmsg]
Results: map[SourceCode:1369: /*
1370: * bcm_sendmsg - process BCM commands (opcodes) from the userspace
1371: */
1372: static int bcm_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
1373: {
1374: struct sock *sk = sock->sk;
1375: struct bcm_sock *bo = bcm_sk(sk);
1376: int ifindex = bo->ifindex; /* default ifindex for this bcm_op */
1377: struct bcm_msg_head msg_head;
1378: int cfsiz;
1379: int ret; /* read bytes or error codes as return value */
1380:
1381: if (!bo->bound)
1382: return -ENOTCONN;
1383:
1384: /* check for valid message length from userspace */
1385: if (size < MHSIZ)
1386: return -EINVAL;
1387:
1388: /* read message head information */
1389: ret = memcpy_from_msg((u8 *)&msg_head, msg, MHSIZ);
1390: if (ret < 0)
1391: return ret;
1392:
1393: cfsiz = CFSIZ(msg_head.flags);
1394: if ((size - MHSIZ) % cfsiz)
1395: return -EINVAL;
1396:
1397: /* check for alternative ifindex for this bcm_op */
1398:
1399: if (!ifindex && msg->msg_name) {
1400: /* no bound device as default => check msg_name */
1401: DECLARE_SOCKADDR(struct sockaddr_can *, addr, msg->msg_name);
1402:
1403: if (msg->msg_namelen < BCM_MIN_NAMELEN)
1404: return -EINVAL;
1405:
1406: if (addr->can_family != AF_CAN)
1407: return -EINVAL;
1408:
1409: /* ifindex from sendto() */
1410: ifindex = addr->can_ifindex;
1411:
1412: if (ifindex) {
1413: struct net_device *dev;
1414:
1415: dev = dev_get_by_index(sock_net(sk), ifindex);
1416: if (!dev)
1417: return -ENODEV;
1418:
1419: if (dev->type != ARPHRD_CAN) {
1420: dev_put(dev);
1421: return -ENODEV;
1422: }
1423:
1424: dev_put(dev);
1425: }
1426: }
1427:
1428: lock_sock(sk);
1429:
1430: switch (msg_head.opcode) {
1431:
1432: case TX_SETUP:
1433: ret = bcm_tx_setup(&msg_head, msg, ifindex, sk);
1434: break;
1435:
1436: case RX_SETUP:
1437: ret = bcm_rx_setup(&msg_head, msg, ifindex, sk);
1438: break;
1439:
1440: case TX_DELETE:
1441: if (bcm_delete_tx_op(&bo->tx_ops, &msg_head, ifindex))
1442: ret = MHSIZ;
1443: else
1444: ret = -EINVAL;
1445: break;
1446:
1447: case RX_DELETE:
1448: if (bcm_delete_rx_op(&bo->rx_ops, &msg_head, ifindex))
1449: ret = MHSIZ;
1450: else
1451: ret = -EINVAL;
1452: break;
1453:
1454: case TX_READ:
1455: /* reuse msg_head for the reply to TX_READ */
1456: msg_head.opcode = TX_STATUS;
1457: ret = bcm_read_op(&bo->tx_ops, &msg_head, ifindex);
1458: break;
1459:
1460: case RX_READ:
1461: /* reuse msg_head for the reply to RX_READ */
1462: msg_head.opcode = RX_STATUS;
1463: ret = bcm_read_op(&bo->rx_ops, &msg_head, ifindex);
1464: break;
1465:
1466: case TX_SEND:
1467: /* we need exactly one CAN frame behind the msg head */
1468: if ((msg_head.nframes != 1) || (size != cfsiz + MHSIZ))
1469: ret = -EINVAL;
1470: else
1471: ret = bcm_tx_send(msg, ifindex, sk, cfsiz);
1472: break;
1473:
1474: default:
1475: ret = -EINVAL;
1476: break;
1477: }
1478:
1479: release_sock(sk);
1480:
1481: return ret;
1482: }
SourceFile:net/can/bcm.c]
|
| 10/2 |
2026/05/19 15:22 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 10347
output: 84
thoughts: 547
Thoughts: **Race Condition Analysis in BCM CAN Transmission**
Okay, so I've been digging into this BCM CAN code, and I've found a pretty nasty potential race condition. The crux of the problem lies between `bcm_can_tx` and `bcm_tx_setup`. Let me break it down.
In `bcm_can_tx`, we have this sequence: the code grabs a spinlock (`op->bcm_tx_lock`), reads a frame pointer (`cf`) from the `op->frames` buffer, and *then* releases the lock. The critical part is that after releasing the lock, it uses `skb_put_data` (which, as we know, calls `memcpy` internally) to copy the data pointed to by `cf` into the socket buffer (`skb`). The issue is that the spinlock is not held during the memory copy.
Now, look at `bcm_tx_setup`. This function handles TX setup messages, and it calls `memcpy_from_msg` to copy data from userspace into `op->frames`. Importantly, and this is the kicker, this copy operation *doesn't* acquire the same spinlock (`op->bcm_tx_lock`)!
So, the scenario is this: `bcm_can_tx` is happily processing a frame, reading data from `op->frames` while the timer is firing, and then *bam*, `bcm_tx_setup` comes along and overwrites `op->frames` *while* `bcm_can_tx` is in the middle of reading or has a pointer to the now-obsolete `op->frames`. This will definitely lead to corruption and undefined behavior.
To reproduce this, I think it's straightforward: set up a CAN BCM socket, bind it, or send a message to a CAN interface (like `vcan0`). Then, send a `TX_SETUP` message to initiate periodic transmission (e.g., using `SETTIMER` and `STARTTIMER` flags) which sets up a high-resolution timer (`hrtimer`). Finally, concurrently send *another* `TX_SETUP` message to update the same BCM operation (same `can_id`). The second `TX_SETUP` message will trigger the `memcpy_from_msg` copy, causing this race condition.
I need to confirm the exact layout of the BCM message structures to construct the payload for a robust test.
|
| 11/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_msg_head]
Results: map[SourceCode: 56: /**
57: * struct bcm_msg_head - head of messages to/from the broadcast manager
58: * @opcode: opcode, see enum below.
59: * @flags: special flags, see below.
60: * @count: number of frames to send before changing interval.
61: * @ival1: interval for the first @count frames.
62: * @ival2: interval for the following frames.
63: * @can_id: CAN ID of frames to be sent or received.
64: * @nframes: number of frames appended to the message head.
65: * @frames: array of CAN frames.
66: */
67: struct bcm_msg_head {
68: __u32 opcode;
69: __u32 flags;
70: __u32 count;
71: struct bcm_timeval ival1, ival2;
72: canid_t can_id;
73: __u32 nframes;
74: struct can_frame frames[];
75: };
SourceFile:include/uapi/linux/can/bcm.h]
|
| 12/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_op]
Results: map[SourceCode: 105: struct bcm_op {
106: struct list_head list;
107: struct rcu_head rcu;
108: int ifindex;
109: canid_t can_id;
110: u32 flags;
111: unsigned long frames_abs, frames_filtered;
112: struct bcm_timeval ival1, ival2;
113: struct hrtimer timer, thrtimer;
114: ktime_t rx_stamp, kt_ival1, kt_ival2, kt_lastmsg;
115: int rx_ifindex;
116: int cfsiz;
117: u32 count;
118: u32 nframes;
119: u32 currframe;
120: /* void pointers to arrays of struct can[fd]_frame */
121: void *frames;
122: void *last_frames;
123: struct canfd_frame sframe;
124: struct canfd_frame last_sframe;
125: struct sock *sk;
126: struct net_device *rx_reg_dev;
127: spinlock_t bcm_tx_lock; /* protect currframe/count in runtime updates */
128: };
SourceFile:net/can/bcm.c]
|
| 13/2 |
2026/05/19 15:22 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 12237
output: 47
thoughts: 30
Thoughts: Okay, here's my interpretation of those thoughts, crafted with the understanding that I'm discussing this with a fellow expert:
**Internal Reflection on `bcm_msg_head`**
Alright, so I'm looking at this `bcm_msg_head` structure, and the first thing that jumps out is the inclusion of `ival1` and `ival2`. These are specifically defined as `struct bcm_timeval`. Right away, that tells me we're dealing with timestamping within this message header. I'm wondering what the specific application might be. Is this about measuring latency, timing events, or perhaps tracking the validity window of the message? And if so, how exactly is the resolution of `bcm_timeval` being handled? The choice of a `timeval` suggests millisecond or microsecond precision, which gives me an idea about the system's requirements. Are we dealing with real-time operations, and is there any concern about overflow or wrapping? I'll probably need to look into how these `timeval` structures are initialized and manipulated to understand the implications of their presence. I need to figure out what type of timestamps are being used; Is this a start and end time? Duration? Absolute time? How are they interpreted relative to other fields in the message? The details of this design choice will be significant in determining the efficiency and reliability of the messaging system. It looks like more investigation is required.
|
| 14/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:include/uapi/linux/can/bcm.h IncludeLines:true Name:bcm_timeval]
Results: map[SourceCode: 51: struct bcm_timeval {
52: long tv_sec;
53: long tv_usec;
54: };
SourceFile:include/uapi/linux/can/bcm.h]
|
| 15/2 |
2026/05/19 15:22 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 12695
output: 41
thoughts: 1721
Thoughts: **Reproducing the CAN BCM Socket Race**
Okay, so I need to set up a CAN BCM socket to trigger this race condition. It seems the core problem lies between how the `bcm_can_tx` function reads the CAN frame data and how the `bcm_tx_setup` function updates it. Specifically, there's a race between `bcm_can_tx` (reading the CAN frame `cf`) and `bcm_tx_setup` (writing to `cf`).
The interrupt, handled by `bcm_tx_timeout_handler` from the hrtimer, calls `bcm_can_tx`. The hrtimer is set up when using `SETTIMER` and `ival1` or `ival2`. `bcm_tx_setup` has logic that either sets or cancels the timer. If I constantly send `TX_SETUP` with `SETTIMER | STARTTIMER`, it will repeatedly cancel and restart the timer, and call `bcm_can_tx` directly via `TX_ANNOUNCE`, but if the timer is canceled and restarted in the same thread as the setup, it's not a race, because it happens in the same thread.
The reported race says the read is by the interrupt on CPU 0 (hrtimer) and the write is by a task on CPU 1 (sendmsg). This means the hrtimer must be actively running. To keep it running, I need to focus on updating the frame data. I think if I don't use `SETTIMER` or `STARTTIMER` in the update, then `bcm_tx_setup` will just update the CAN frames in memory, meaning the timer is still running and re-arming itself based on `op->kt_ival1` and `op->kt_ival2`.
Looking at `bcm_tx_timeout_handler`, the timer uses `op->kt_ival1` and `op->kt_ival2`. This means the timer will keep firing.
So, I'm thinking the refined strategy will be:
1. **Thread 1 (Main):** Create the BCM socket, use `sendto`, but it's okay to try `connect` to see if that works.
2. Send an initial `TX_SETUP` with `SETTIMER | STARTTIMER`, set `ival2` to something small like 1ms, and set `nframes` to 1. This starts the periodic transmission driven by the hrtimer.
3. **Thread 2:** Continuously send `TX_SETUP` with the same `can_id` and `nframes = 1`, and some payload. *Crucially, I need to send the updates without `SETTIMER` or `STARTTIMER`*, to only update the frame content. This *should* trigger `memcpy_from_msg` to write to `op->frames` while the hrtimer is concurrently reading from `op->frames` in `bcm_can_tx`.
Now, before jumping in, let's just make sure that `bcm_tx_setup` doesn't strictly need `ifindex` from the kernel side. I can connect the socket to `vcan0` with `connect` and use `send` instead of `sendto` to simplify. Then, I can verify if `bcm_tx_setup` works as expected with `connect`.
|
| 16/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:net/can/bcm.c IncludeLines:true Name:bcm_connect]
Results: map[SourceCode:1670: static int bcm_connect(struct socket *sock, struct sockaddr_unsized *uaddr, int len,
1671: int flags)
1672: {
1673: struct sockaddr_can *addr = (struct sockaddr_can *)uaddr;
1674: struct sock *sk = sock->sk;
1675: struct bcm_sock *bo = bcm_sk(sk);
1676: struct net *net = sock_net(sk);
1677: int ret = 0;
1678:
1679: if (len < BCM_MIN_NAMELEN)
1680: return -EINVAL;
1681:
1682: lock_sock(sk);
1683:
1684: if (bo->bound) {
1685: ret = -EISCONN;
1686: goto fail;
1687: }
1688:
1689: /* bind a device to this socket */
1690: if (addr->can_ifindex) {
1691: struct net_device *dev;
1692:
1693: dev = dev_get_by_index(net, addr->can_ifindex);
1694: if (!dev) {
1695: ret = -ENODEV;
1696: goto fail;
1697: }
1698: if (dev->type != ARPHRD_CAN) {
1699: dev_put(dev);
1700: ret = -ENODEV;
1701: goto fail;
1702: }
1703:
1704: bo->ifindex = dev->ifindex;
1705: dev_put(dev);
1706:
1707: } else {
1708: /* no interface reference for ifindex = 0 ('any' CAN device) */
1709: bo->ifindex = 0;
1710: }
1711:
1712: #if IS_ENABLED(CONFIG_PROC_FS)
1713: if (net->can.bcmproc_dir) {
1714: /* unique socket address as filename */
1715: sprintf(bo->procname, "%llu", sock_i_ino(sk));
1716: bo->bcm_proc_read = proc_create_net_single(bo->procname, 0644,
1717: net->can.bcmproc_dir,
1718: bcm_proc_show, sk);
1719: if (!bo->bcm_proc_read) {
1720: ret = -ENOMEM;
1721: goto fail;
1722: }
1723: }
1724: #endif /* CONFIG_PROC_FS */
1725:
1726: bo->bound = 1;
1727:
1728: fail:
1729: release_sock(sk);
1730:
1731: return ret;
1732: }
SourceFile:net/can/bcm.c]
|
| 17/2 |
2026/05/19 15:22 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 16070
output: 43
thoughts: 198
Thoughts: **Analyzing a Potential CAN FD Bug**
Okay, so `bcm_connect` sets the `bo->bound` flag to 1 and also stores the interface index, `bo->ifindex`. Then, when `bcm_sendmsg` is called, it utilizes `bo->ifindex` if the message name, `msg_name`, is null. Makes sense. But I need to dive deeper here. Let's see precisely how this message is constructed; what are we actually sending? Ah, right. It looks like this:
```c
struct {
struct bcm_msg_head msg_head;
struct can_frame frame;
} msg;
```
Hmm, hold on a second... the bug report mentions a memory read and write happening at the same address, 0xffff8881242845c0, and it's involving 72 bytes. Wait, 72 bytes. That rings a bell... Could it be... Yeah, 72 bytes is the size of a `struct canfd_frame`! We need to confirm that. I need to check the actual definition of `struct canfd_frame` to be sure. This is where the root cause lies.
|
| 18/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Args: map[ContextFile:include/uapi/linux/can.h IncludeLines:true Name:canfd_frame]
Results: map[SourceCode: 164: /**
165: * struct canfd_frame - CAN flexible data rate frame structure
166: * @can_id: CAN ID of the frame and CAN_*_FLAG flags, see canid_t definition
167: * @len: frame payload length in byte (0 .. CANFD_MAX_DLEN)
168: * @flags: additional flags for CAN FD
169: * @__res0: reserved / padding
170: * @__res1: reserved / padding
171: * @data: CAN FD frame payload (up to CANFD_MAX_DLEN byte)
172: */
173: struct canfd_frame {
174: canid_t can_id; /* 32 bit CAN_ID + EFF/RTR/ERR flags */
175: __u8 len; /* frame payload length in byte */
176: __u8 flags; /* additional flags for CAN FD */
177: __u8 __res0; /* reserved / padding */
178: __u8 __res1; /* reserved / padding */
179: __u8 data[CANFD_MAX_DLEN] __attribute__((aligned(8)));
180: };
SourceFile:include/uapi/linux/can.h]
|
| 19/2 |
2026/05/19 15:22 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 16947
output: 47
thoughts: 99
Thoughts: Okay, here's my understanding, put in the first person, as requested:
**CAN FD Frame Structure - The Breakdown**
Alright, let me get this straight. When dealing with CAN FD frames, the maximum data length (`CANFD_MAX_DLEN`) tops out at 64 bytes. So, if I'm building this frame, here's how the memory is allocated: I've got the `can_id` which takes up 4 bytes, then a single byte for `len`, another for `flags`, another for `__res0` and another for `__res1`, and then a nice chunk of 64 bytes dedicated to the actual `data`. Adding all that up, the entire structure, the `canfd_frame`, will consume 72 bytes. Makes sense.
And of course, to tell the CAN controller that this is, in fact, a CAN FD frame, I'll need to make sure the `CAN_FD_FRAME` flag is set within the `msg_head.flags` field. That's the signal to the system that we're dealing with the extended data format. Got it.
|
| 20/2 |
2026/05/19 15:22 |
tool |
codesearch-definition-source |
0m
Error:
Args: map[ContextFile:include/uapi/linux/can/bcm.h IncludeLines:true Name:CAN_FD_FRAME]
Results: map[SourceCode: SourceFile:]
|
| 21/2 |
2026/05/19 15:22 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 17359
output: 19
thoughts: 12
Thoughts: Okay, here's my interpretation of that thought process, tailored for an expert audience, and written in the first person:
**Initial Investigation into CAN FD Framing**
Alright, time to dig into this CAN FD framing issue. My immediate instinct is to start with a broad approach. I'm going to leverage my familiarity with the codebase and jump straight to the source. Specifically, I need to see how the system handles the fundamental structures involved with CAN FD frames. I'm thinking a simple `grep` for `CAN_FD_FRAME` will be a quick and dirty way to identify the key areas of the code that are dealing with CAN FD frame definitions. This should pinpoint the relevant header files, data structures, and any associated function calls that define or process these frames. From there, I can start to understand the low-level data structure and potentially identify the culprit without getting bogged down in extraneous details. Let's see what that uncovers.
|
| 22/2 |
2026/05/19 15:22 |
tool |
grepper |
0m
Args: map[Expression:CAN_FD_FRAME]
Results: map[Output:Documentation/networking/can.rst=879=RX_RTR_FRAME:
--
Documentation/networking/can.rst-881-
Documentation/networking/can.rst:882:CAN_FD_FRAME:
Documentation/networking/can.rst-883- The CAN frames following the bcm_msg_head are struct canfd_frame's
--
Documentation/networking/can.rst=978=given as array directly behind the bcm_msg_head structure. To follow this
Documentation/networking/can.rst:979:schema for the CAN FD frames a new flag 'CAN_FD_FRAME' in the bcm_msg_head
Documentation/networking/can.rst-980-flags indicates that the concatenated CAN frame structures behind the
Documentation/networking/can.rst=981=bcm_msg_head are defined as struct canfd_frame:
--
Documentation/networking/can.rst-991- msg.msg_head.can_id = 0x42;
Documentation/networking/can.rst:992: msg.msg_head.flags = CAN_FD_FRAME;
Documentation/networking/can.rst-993- msg.msg_head.nframes = 5;
--
drivers/net/can/ctucanfd/ctucanfd_kframe.h-21-
drivers/net/can/ctucanfd/ctucanfd_kframe.h:22:#ifndef __CTU_CAN_FD_CAN_FD_FRAME_FORMAT__
drivers/net/can/ctucanfd/ctucanfd_kframe.h:23:#define __CTU_CAN_FD_CAN_FD_FRAME_FORMAT__
drivers/net/can/ctucanfd/ctucanfd_kframe.h-24-
--
include/uapi/linux/can/bcm.h=77=enum {
--
include/uapi/linux/can/bcm.h-102-#define RX_RTR_FRAME 0x0400
include/uapi/linux/can/bcm.h:103:#define CAN_FD_FRAME 0x0800
include/uapi/linux/can/bcm.h-104-
--
net/can/bcm.c=167=static bool bcm_is_invalid_tv(struct bcm_msg_head *msg_head)
--
net/can/bcm.c-181-
net/can/bcm.c:182:#define CFSIZ(flags) ((flags & CAN_FD_FRAME) ? CANFD_MTU : CAN_MTU)
net/can/bcm.c-183-#define OPSIZ sizeof(struct bcm_op)
--
net/can/bcm.c=208=static int bcm_proc_show(struct seq_file *m, void *v)
--
net/can/bcm.c-235-
net/can/bcm.c:236: if (op->flags & CAN_FD_FRAME)
net/can/bcm.c-237- seq_printf(m, "(%u)", op->nframes);
--
net/can/bcm.c-264-
net/can/bcm.c:265: if (op->flags & CAN_FD_FRAME)
net/can/bcm.c-266- seq_printf(m, "(%u) ", op->nframes);
--
net/can/bcm.c=699=static void bcm_rx_handler(struct sk_buff *skb, void *data)
--
net/can/bcm.c-709- /* make sure to handle the correct frame type (CAN / CAN FD) */
net/can/bcm.c:710: if (op->flags & CAN_FD_FRAME) {
net/can/bcm.c-711- if (!can_is_canfd_skb(skb))
--
net/can/bcm.c=782=static struct bcm_op *bcm_find_op(struct list_head *ops,
--
net/can/bcm.c-788- if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) &&
net/can/bcm.c:789: (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME))
net/can/bcm.c-790- return op;
--
net/can/bcm.c=833=static int bcm_delete_rx_op(struct list_head *ops, struct bcm_msg_head *mh,
--
net/can/bcm.c-839- if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) &&
net/can/bcm.c:840: (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME)) {
net/can/bcm.c-841-
--
net/can/bcm.c=884=static int bcm_delete_tx_op(struct list_head *ops, struct bcm_msg_head *mh,
--
net/can/bcm.c-890- if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) &&
net/can/bcm.c:891: (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME)) {
net/can/bcm.c-892- list_del_rcu(&op->list);
--
net/can/bcm.c=927=static int bcm_tx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
--
net/can/bcm.c-966-
net/can/bcm.c:967: if (op->flags & CAN_FD_FRAME) {
net/can/bcm.c-968- if (cf->len > 64)
--
net/can/bcm.c-1040-
net/can/bcm.c:1041: if (op->flags & CAN_FD_FRAME) {
net/can/bcm.c-1042- if (cf->len > 64)
]
|
| 23/2 |
2026/05/19 15:23 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 19182
output: 44
thoughts: 122
Thoughts: **Analyzing CAN Frame and Timer Flags**
Okay, let's break this down. The code's using some specific definitions related to CAN bus communication and timers, and I want to make sure I'm clear on them. `CAN_FD_FRAME` is being defined as `0x0800` – that's the CAN FD frame indicator. I'm familiar with that one. `SETTIMER`, `STARTTIMER`, `TX_CP_CAN_ID`, `TX_COUNTEVT`, and `TX_ANNOUNCE` are flags I'm seeing defined as `0x0001`, `0x0002`, `0x0004`, `0x0020`, and `0x0040` respectively.
However, I'm never one to rely on assumptions when working with kernel-level definitions. Best practice in this scenario is to verify these values against the authoritative source. I'll need to double-check these against the header file `include/uapi/linux/can/bcm.h` to ensure I have the precise, up-to-date and correct flags for the CAN BCM (Broadcast Communications Manager) interface. This will give me a solid foundation for interpreting and working with these flags in the overall context.
|
| 24/2 |
2026/05/19 15:23 |
tool |
codesearch-definition-source |
0m
Error:
Args: map[ContextFile:include/uapi/linux/can/bcm.h IncludeLines:true Name:SETTIMER]
Results: map[SourceCode: SourceFile:]
|
| 25/2 |
2026/05/19 15:23 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 19646
output: 28
thoughts: 20
Thoughts: Here's my attempt at summarizing the thought process, tailored for an expert audience:
**Diving into the BCM Header**
Alright, let's get down to brass tacks. I'm going to start by taking a close look at the `include/uapi/linux/can/bcm.h` file. I need to refresh my memory on the specifics of the Broadcast Manager (BCM) interface for CAN. I'm already familiar with the CAN protocol itself, of course, and the core socketCAN implementation. However, the BCM adds a layer of abstraction for more complex CAN interactions: cyclical transmission, message filtering, and handling sequences. I need to see exactly how these functionalities are defined at the kernel interface level. I'm interested in the data structures, the ioctl commands, and the specific flags and options that are exposed to user space. It's time to map out the control flow. I'll focus on the data structures. I can then relate them to the ioctls and commands used to perform operations on the CAN network. This will likely provide a good foundation to understand how this is implemented.
|
| 26/2 |
2026/05/19 15:23 |
tool |
read-file |
0m
Args: map[File:include/uapi/linux/can/bcm.h]
Results: map[Contents:/* SPDX-License-Identifier: ((GPL-2.0-only WITH Linux-syscall-note) OR BSD-3-Clause) */
/*
* linux/can/bcm.h
*
* Definitions for CAN Broadcast Manager (BCM)
*
* Author: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
* Copyright (c) 2002-2007 Volkswagen Group Electronic Research
* 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. Neither the name of Volkswagen nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* Alternatively, provided that this notice is retained in full, this
* software may be distributed under the terms of the GNU General
* Public License ("GPL") version 2, in which case the provisions of the
* GPL apply INSTEAD OF those given above.
*
* The provided data structures and external interfaces from this code
* are not restricted to be used by modules with a GPL compatible license.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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 COPYRIGHT
* OWNER OR CONTRIBUTORS 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.
*/
#ifndef _UAPI_CAN_BCM_H
#define _UAPI_CAN_BCM_H
#include <linux/types.h>
#include <linux/can.h>
struct bcm_timeval {
long tv_sec;
long tv_usec;
};
/**
* struct bcm_msg_head - head of messages to/from the broadcast manager
* @opcode: opcode, see enum below.
* @flags: special flags, see below.
* @count: number of frames to send before changing interval.
* @ival1: interval for the first @count frames.
* @ival2: interval for the following frames.
* @can_id: CAN ID of frames to be sent or received.
* @nframes: number of frames appended to the message head.
* @frames: array of CAN frames.
*/
struct bcm_msg_head {
__u32 opcode;
__u32 flags;
__u32 count;
struct bcm_timeval ival1, ival2;
canid_t can_id;
__u32 nframes;
struct can_frame frames[];
};
enum {
TX_SETUP = 1, /* create (cyclic) transmission task */
TX_DELETE, /* remove (cyclic) transmission task */
TX_READ, /* read properties of (cyclic) transmission task */
TX_SEND, /* send one CAN frame */
RX_SETUP, /* create RX content filter subscription */
RX_DELETE, /* remove RX content filter subscription */
RX_READ, /* read properties of RX content filter subscription */
TX_STATUS, /* reply to TX_READ request */
TX_EXPIRED, /* notification on performed transmissions (count=0) */
RX_STATUS, /* reply to RX_READ request */
RX_TIMEOUT, /* cyclic message is absent */
RX_CHANGED /* updated CAN frame (detected content change) */
};
#define SETTIMER 0x0001
#define STARTTIMER 0x0002
#define TX_COUNTEVT 0x0004
#define TX_ANNOUNCE 0x0008
#define TX_CP_CAN_ID 0x0010
#define RX_FILTER_ID 0x0020
#define RX_CHECK_DLC 0x0040
#define RX_NO_AUTOTIMER 0x0080
#define RX_ANNOUNCE_RESUME 0x0100
#define TX_RESET_MULTI_IDX 0x0200
#define RX_RTR_FRAME 0x0400
#define CAN_FD_FRAME 0x0800
#endif /* !_UAPI_CAN_BCM_H */
]
|
| 27/2 |
2026/05/19 15:23 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 21125
output: 24
thoughts: 487
Thoughts: **Analyzing the BCM Message Header Structure**
Okay, so I'm looking at these definitions: `CAN_FD_FRAME` is `0x0800`, `SETTIMER` is `0x0001`, and `STARTTIMER` is `0x0002`. But, I'm really digging into the details of `struct bcm_msg_head` right now. I need to understand how it's laid out in memory.
Let's break it down: `opcode`, `flags`, and `count` are all 32-bit integers, so they take 4 bytes each. Then there's `struct bcm_timeval`, which is used twice as `ival1` and `ival2`. That's where things get interesting. I know on a 64-bit system like this one, `long` is 8 bytes. Therefore, each `bcm_timeval` is 16 bytes (8 for `tv_sec` and 8 for `tv_usec`), and their combined size (ival1 and ival2) will be 32 bytes. Then there's `canid_t`, which is another 4-byte unsigned integer, and `nframes`, another 4-byte integer.
So, without the `frames[]` array, I'm expecting a total of 4 + 4 + 4 + 32 + 4 + 4 = 52 bytes for the header.
Now, I have to consider alignment. The `ival1` element's members are 8-byte aligned, so that's crucial. I need to ensure the correct alignment. My thoughts are:
The first three fields, `opcode`, `flags`, and `count` are 4 bytes each, taking up 12 bytes. Then we're going to hit the `struct bcm_timeval` which has members aligned to 8 bytes, so we need to add a 4-byte padding field after `count`.
The layout should be:
* 0: `opcode` (4 bytes)
* 4: `flags` (4 bytes)
* 8: `count` (4 bytes)
* 12: padding (4 bytes)
* 16: `ival1` (16 bytes)
* 32: `ival2` (16 bytes)
* 48: `can_id` (4 bytes)
* 52: `nframes` (4 bytes)
* 56: `frames[]`
I'm confident in this alignment strategy, but I should probably double-check my assumptions and calculations to be sure. I'll verify this to be certain.
|
| 28/2 |
2026/05/19 15:23 |
tool |
codesearch-struct-layout |
0m
Args:
Results: map[Fields:[map[Name:opcode OffsetBits:0 SizeBits:32] map[Name:flags OffsetBits:32 SizeBits:32] map[Name:count OffsetBits:64 SizeBits:32] map[Name:ival1 OffsetBits:128 SizeBits:128] map[Name:ival2 OffsetBits:256 SizeBits:128] map[Name:can_id OffsetBits:384 SizeBits:32] map[Name:nframes OffsetBits:416 SizeBits:32] map[Name:frames OffsetBits:448 SizeBits:0]]]
|
| 29/2 |
2026/05/19 15:23 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 22394
output: 16
thoughts: 571
Thoughts: **Analyzing the CAN BCM Socket Bug**
Okay, let's break this down. First, the `frames` buffer starts at an offset of 56 bytes, meaning `MHSIZ` is 56. I'm going to double-check `CFSIZ` now. Looking at the code:
```c
#define CFSIZ(flags) ((flags & CAN_FD_FRAME) ? CANFD_MTU : CAN_MTU)
```
Right, `CANFD_MTU` expands to the size of a `canfd_frame`, which is 72 bytes. `CAN_MTU` is the size of `can_frame`, which is 16.
The bug report shows a read and write of 72 bytes to the same address, which confirms the use of `CAN_FD_FRAME`, and so confirms `CFSIZ` is 72 in this instance.
So, the plan for the reproducer is pretty clear:
1. We'll create a CAN BCM socket.
2. Connect to `vcan0`. Or, even better, we don't *need* to connect and can use `sendto` with `msg_name`. I think this is cleaner.
3. Send a `TX_SETUP` message with `CAN_FD_FRAME | SETTIMER | STARTTIMER`. That's the initial setup.
4. Concurrently, we'll send other `TX_SETUP` messages containing `CAN_FD_FRAME` (without the timer flags) to update the frame and try to trigger the race.
I'm thinking about the `sendto` approach. It makes the code a bit simpler; we don't have to deal with the `connect` call. We can define `addr` as `struct sockaddr_can`, setting `can_family` to `AF_CAN` and `can_ifindex` to the appropriate interface index. Then just call `sendto(s, &msg, sizeof(msg), 0, (struct sockaddr *)&addr, sizeof(addr));`.
Now, about `vcan0`. The bug report uses `syzkaller`, which sets up `vcan0` and `vcan1`. Since this is a reproducer, it's safer to either create the vcan0 device explicitly if it doesn't already exist or just use `vcan0` and exit with an error if it doesn't exist. Syz-executor usually sets it up, but explicit creation is always the best path. Wait, there's `get-toolkit`, so that's something to investigate for setting up the race!
|
| 30/2 |
2026/05/19 15:23 |
tool |
get-toolkit |
0m
Args:
Results: map[Toolkit:// Copyright 2026 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
// IMPORTANT: Do not copy the macros or definitions below directly into your reproducer.
// Instead, add the following line to your reproducer:
// #include "race_toolkit.h"
// --- Race Condition Toolkit ---
// Macros and snippets for CPU pinning, memory barriers, and userfaultfd.
#define _GNU_SOURCE
#include <errno.h>
#include <fcntl.h>
#include <linux/futex.h>
#include <linux/userfaultfd.h>
#include <poll.h>
#include <pthread.h>
#include <sched.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/syscall.h>
#include <unistd.h>
// Unbuffered I/O: Ensure logs are written immediately.
#define SETUP_UNBUFFERED_IO() setvbuf(stdout, NULL, _IONBF, 0)
// CPU Pinning: Pin the current thread to a specific CPU core.
#define PIN_TO_CPU(cpu) \
do { \
cpu_set_t mask; \
CPU_ZERO(&mask); \
CPU_SET(cpu, &mask); \
if (sched_setaffinity(0, sizeof(mask), &mask) == -1) { \
perror("sched_setaffinity"); \
} \
} while (0)
// Memory Barrier: Ensure memory ordering.
#define MB() __atomic_thread_fence(__ATOMIC_SEQ_CST)
// Spin-wait Barrier: Wait until a memory location has a specific value.
// Best for tight race windows (low latency, no context switches).
#define WAIT_ON(addr, val) \
do { \
while (__atomic_load_n(addr, __ATOMIC_ACQUIRE) != (val)) \
; \
} while (0)
// Signal: Set a memory location to a specific value to release a WAIT_ON.
#define SIGNAL(addr, val) __atomic_store_n(addr, val, __ATOMIC_RELEASE)
// Futex-based Event: Shared with syzkaller executor.
// Best for general synchronization or longer waits to save CPU.
typedef struct {
int state;
} event_t;
static void event_init(event_t* ev)
{
ev->state = 0;
}
static void event_reset(event_t* ev)
{
ev->state = 0;
}
static void event_set(event_t* ev)
{
if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) {
fprintf(stderr, "event already set\n");
exit(1);
}
__atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE);
syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000);
}
static void event_wait(event_t* ev)
{
while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE))
syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0);
}
// userfaultfd setup: Register a memory range for page fault handling.
static int setup_uffd(void* addr, size_t len)
{
int uffd = syscall(__NR_userfaultfd, O_CLOEXEC | O_NONBLOCK);
if (uffd == -1)
return -1;
struct uffdio_api api = {.api = UFFD_API, .features = 0};
if (ioctl(uffd, UFFDIO_API, &api) == -1) {
close(uffd);
return -1;
}
struct uffdio_register reg = {
.range = {.start = (uintptr_t)addr, .len = len},
.mode = UFFDIO_REGISTER_MODE_MISSING};
if (ioctl(uffd, UFFDIO_REGISTER, ®) == -1) {
close(uffd);
return -1;
}
return uffd;
}
// --- Guidance on Usage ---
// 1. Use WAIT_ON/SIGNAL for tight race conditions to avoid scheduling overhead.
// 2. Use event_t (futexes) for general coordination or when waiting for longer periods.
// 3. Always use PIN_TO_CPU to increase race probability on multi-core systems.
// 4. Use setup_uffd to register a memory range for page fault handling. This allows you to
// pause a thread accessing that memory until you handle the fault, creating a reliable
// and controllable race window.
// 5. Call SETUP_UNBUFFERED_IO() at the start of main() to ensure that logs are printed
// immediately. This is essential for understanding the exact interleaving of events
// when debugging race conditions.
]
|
| 31/2 |
2026/05/19 15:23 |
llm |
initial-researcher |
0m
Model:
Tokens:
input: 24813
output: 1186
thoughts: 4238
Thoughts: **Race Condition in BCM TX Setup and Timer Interrupt**
Okay, so the core of this seems pretty straightforward, as I suspected. We've got a classic data race situation here between the timer interrupt and a user-space thread. Specifically, it's a race condition between `bcm_can_tx`, which is called within the timer interrupt, reading from the `op->frames` buffer, and `bcm_tx_setup`, which is called when we send a `TX_SETUP` message, writing to the *same* `op->frames` buffer. There appears to be no locking here, which is the immediate red flag.
The key to triggering this is to have a BCM socket, set up a periodic transmission using the `SETTIMER` and `STARTTIMER` flags, and, critically, use a small interval, like one microsecond. This forces `bcm_can_tx` to execute very frequently, increasing the chances of interrupting the `bcm_tx_setup` operation. Then, while the timer is running, we continuously update the frame data using `TX_SETUP` calls. Since we use `send` with the same `ifindex` we get the same operation context.
The analysis confirms the race. The `ival2` timer interval is established using the initial `TX_SETUP`, then the updates continue to update `op->frames` repeatedly. The timer continues firing, so the read in the interrupt continues, and we have a very clear race on the 72 bytes that constitute `canfd_frame sframe`. The use of `connect` rather than `sendto` is just a slight optimization, speeding up the loop.
I've constructed a minimal reproducer that accounts for possible missing vcan0, ensuring the test can run. This is a very targeted reproducer, it's clean and should trigger the KCSAN report consistently by creating a tight loop. The reproducer only needs a single thread; the hrtimer interrupt acts as the second "thread". The interrupt can fire on a different CPU, which is typical for hrtimers, confirming the initial report.
|
| 32/1 |
2026/05/19 15:24 |
loop |
|
4m
|
| 33/2 |
2026/05/19 15:24 |
iteration |
0 |
2m
|
| 34/3 |
2026/05/19 15:24 |
action |
merge-strategy |
0m
Results: map[CurrentReproStrategy:### Analysis of the Bug
The KCSAN report indicates a data race between a read in `bcm_can_tx` and a write in `bcm_tx_setup` within the CAN Broadcast Manager (BCM) subsystem.
1. **The Write (`bcm_tx_setup`)**: When a user sends a `TX_SETUP` message to a BCM socket for an existing operation (`can_id`), `bcm_tx_setup` updates the CAN frames. It copies the new frame data from user space into `op->frames` using `memcpy_from_msg`. Crucially, this copy is performed *without* holding the `op->bcm_tx_lock`.
2. **The Read (`bcm_can_tx`)**: If the BCM operation was configured with a periodic transmission timer (`SETTIMER | STARTTIMER`), the `bcm_tx_timeout_handler` hrtimer will periodically call `bcm_can_tx`. This function reads the frame from `op->frames` and copies it into an `skb` using `skb_put_data` (which wraps `memcpy`). This read also happens *outside* the `op->bcm_tx_lock`.
Because both the timer interrupt (reading) and the `sendmsg` syscall (writing) access `op->frames` concurrently without synchronization, a data race occurs. The size of the access (72 bytes) corresponds to `sizeof(struct canfd_frame)`, indicating that the `CAN_FD_FRAME` flag is being used.
### Reproduction Strategy
To reproduce this bug, we need to set up a scenario where the hrtimer is constantly firing while a user-space thread continuously updates the frame data:
1. Create a `CAN_BCM` socket and connect it to a CAN interface (e.g., `vcan0`).
2. Send an initial `TX_SETUP` message with `CAN_FD_FRAME | SETTIMER | STARTTIMER` and a very small interval (e.g., 1 microsecond). This arms the hrtimer to continuously transmit the frame.
3. Enter a loop that repeatedly sends `TX_SETUP` messages for the same `can_id` with only the `CAN_FD_FRAME` flag. This will continuously trigger `memcpy_from_msg` into `op->frames` while the hrtimer concurrently reads from it.
### Minimal C Reproducer
```c
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main() {
// Ensure vcan0 exists and is up (requires root/CAP_NET_ADMIN)
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write.
msg.msg_head.flags = CAN_FD_FRAME;
while (1) {
send(s, &msg, sizeof(msg), 0);
}
return 0;
}
```]
|
| 35/3 |
2026/05/19 15:24 |
agent |
repro-generator |
0m
Model:
Results: map[RawCandidateReproC:#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main() {
printf("[*] Starting probe for CAN_BCM and vcan0...\n");
// Try to create vcan0
int ret = system("ip link add dev vcan0 type vcan");
if (ret != 0) {
printf("[-] Failed to create vcan0 interface. system() returned %d\n", ret);
// We might not have 'ip' or permissions, but let's try to proceed just in case vcan0 exists
} else {
printf("[+] Successfully executed 'ip link add dev vcan0 type vcan'\n");
}
ret = system("ip link set up vcan0");
if (ret != 0) {
printf("[-] Failed to set vcan0 up. system() returned %d\n", ret);
} else {
printf("[+] Successfully executed 'ip link set up vcan0'\n");
}
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to create CAN_BCM socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] CAN_BCM socket created successfully.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to get ifindex for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Got ifindex %d for vcan0.\n", ifr.ifr_ifindex);
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect CAN_BCM socket to vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Successfully connected CAN_BCM socket to vcan0.\n");
printf("[+] All probes passed successfully.\n");
return 0;
}
]
Instruction: You are a security researcher with deep Linux kernel background.
Your goal is to generate a minimal, standalone C program to REPRODUCE a specific kernel bug
for the purpose of VERIFYING a bugfix.
This is a strictly defensive task. The code will be run in an isolated QEMU virtual machine
to check if the bug is triggered or not.
Do NOT generate an exploit or weaponized code. Generate only the minimal code needed to trigger
the specific crash or condition described, to help developers confirm the bug and its fix.
Focus on the technical reproduction of the state, not on weaponization or payload delivery.
Do not spend too much time analyzing or trying to generate a perfect one-shot reproducer.
Instead, follow an iterative approach: generate a simple candidate, execute it, analyze the results,
and improve it. Keep your reasoning steps short and focused on the next logical experiment.
To ensure that we can diagnose why a reproducer might fail to run on the test environment,
you MUST include detailed logging and error checking in the generated C program:
1. Use 'printf(...)' for all progress messages and error logs.
2. Every system call (e.g., socket, bind, listen, connect, ioctl, send) must check for a failure return value.
3. If a call fails, it must print a specific error message including the function name
and the error string (use strerror(errno)), and then exit with a non-zero status.
4. The program must print a message after every successful
major step in the reproduction sequence.
5. Generate code that follows this pattern for all operations:
int res = do_something();
if (res < 0) {
printf("[-] Failed to do_something: %s\n", strerror(errno));
exit(1);
}
printf("[+] do_something successful.\n");
6. For the very first attempt at generating a reproducer (when no previous feedback is provided),
prioritize generating a simple 'probe' program. This program's sole purpose is to verify that the
test environment has the necessary kernel capabilities. It should focus on probing the specific
kernel subsystems, device files, or syscalls required for the reproduction (for example: opening
/dev/vhci to check if the virtual Bluetooth controller is accessible, loading a minimal dummy BPF
program to check if BPF_SYSCALL is enabled and permitted, or making a specific socket/ioctl call
to verify subsystem availability). Print clear messages indicating success or failure of these
specific kernel/subsystem probes, and exit with 0 only if all relevant subsystem checks pass.
Do not attempt complex race conditions or heavy logic in this first version.
Prefer calling several tools at the same time to save round-trips.
Use set-results tool to provide results of the analysis.
It must be called exactly once before the final reply.
Ignore results of this tool.
Prompt: Bug Description: KCSAN: data-race in _copy_from_iter / bcm_can_tx
==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x42/0xd0 kernel/softirq.c:735
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1061 [inline]
sysvec_apic_timer_interrupt+0x37/0x80 arch/x86/kernel/apic/apic.c:1061
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:697
write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_iovec include/linux/iov_iter.h:52 [inline]
iterate_and_advance2 include/linux/iov_iter.h:304 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x258/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x563/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 4914 Comm: syz.4.421 Tainted: G W syzkaller #0 PREEMPT(full)
Tainted: [W]=WARN
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 04/18/2026
==================================================================
Strategy: ### Analysis of the Bug
The KCSAN report indicates a data race between a read in `bcm_can_tx` and a write in `bcm_tx_setup` within the CAN Broadcast Manager (BCM) subsystem.
1. **The Write (`bcm_tx_setup`)**: When a user sends a `TX_SETUP` message to a BCM socket for an existing operation (`can_id`), `bcm_tx_setup` updates the CAN frames. It copies the new frame data from user space into `op->frames` using `memcpy_from_msg`. Crucially, this copy is performed *without* holding the `op->bcm_tx_lock`.
2. **The Read (`bcm_can_tx`)**: If the BCM operation was configured with a periodic transmission timer (`SETTIMER | STARTTIMER`), the `bcm_tx_timeout_handler` hrtimer will periodically call `bcm_can_tx`. This function reads the frame from `op->frames` and copies it into an `skb` using `skb_put_data` (which wraps `memcpy`). This read also happens *outside* the `op->bcm_tx_lock`.
Because both the timer interrupt (reading) and the `sendmsg` syscall (writing) access `op->frames` concurrently without synchronization, a data race occurs. The size of the access (72 bytes) corresponds to `sizeof(struct canfd_frame)`, indicating that the `CAN_FD_FRAME` flag is being used.
### Reproduction Strategy
To reproduce this bug, we need to set up a scenario where the hrtimer is constantly firing while a user-space thread continuously updates the frame data:
1. Create a `CAN_BCM` socket and connect it to a CAN interface (e.g., `vcan0`).
2. Send an initial `TX_SETUP` message with `CAN_FD_FRAME | SETTIMER | STARTTIMER` and a very small interval (e.g., 1 microsecond). This arms the hrtimer to continuously transmit the frame.
3. Enter a loop that repeatedly sends `TX_SETUP` messages for the same `can_id` with only the `CAN_FD_FRAME` flag. This will continuously trigger `memcpy_from_msg` into `op->frames` while the hrtimer concurrently reads from it.
### Minimal C Reproducer
```c
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main() {
// Ensure vcan0 exists and is up (requires root/CAP_NET_ADMIN)
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write.
msg.msg_head.flags = CAN_FD_FRAME;
while (1) {
send(s, &msg, sizeof(msg), 0);
}
return 0;
}
```
|
| 36/4 |
2026/05/19 15:24 |
llm |
repro-generator |
0m
Model:
Tokens:
input: 5634
output: 644
thoughts: 1083
Thoughts: **Initial Probe Program for KCSAN Reproducer**
Okay, so the goal is to create a minimal C reproducer for this KCSAN data-race bug within `bcm_can_tx` and `bcm_tx_setup`. The instructions are pretty straightforward, involving a `CAN_BCM` socket connected to `vcan0` with specific `TX_SETUP` messages. But, as a first step, and based on the prompt's instruction, I need to generate a "probe" program. This probe's sole purpose is to verify that the environment, specifically the kernel, has the necessary components to even attempt the reproducer.
Given the direction, I need to check:
1. Whether I can create and bring up the `vcan0` interface.
2. Whether I can create `CAN_BCM` sockets.
3. Whether I can successfully `connect` the CAN_BCM socket to `vcan0`.
I'll build the probe program directly. First, I'll attempt the `ip link add dev vcan0 type vcan` command via `system()`. If it fails, I'll just keep going. Then, I'll set up `vcan0` with `ip link set up vcan0`. Then, I'll attempt to create a `CAN_BCM` socket. If that is successful, I'll retrieve `vcan0`'s interface index using `ioctl` and `SIOCGIFINDEX`, and finally, I'll `connect` the socket to `vcan0`. The program will exit with an error code if any of these probes fail and exit with 0 if all of them pass.
I should also note the prompt says "Prefer calling several tools at the same time to save round-trips." However, it looks like `set-results` is the appropriate next step. I will use it to provide the probe program.
|
| 37/4 |
2026/05/19 15:24 |
tool |
set-results |
0m
Args: map[RawCandidateReproC:#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main() {
printf("[*] Starting probe for CAN_BCM and vcan0...\n");
// Try to create vcan0
int ret = system("ip link add dev vcan0 type vcan");
if (ret != 0) {
printf("[-] Failed to create vcan0 interface. system() returned %d\n", ret);
// We might not have 'ip' or permissions, but let's try to proceed just in case vcan0 exists
} else {
printf("[+] Successfully executed 'ip link add dev vcan0 type vcan'\n");
}
ret = system("ip link set up vcan0");
if (ret != 0) {
printf("[-] Failed to set vcan0 up. system() returned %d\n", ret);
} else {
printf("[+] Successfully executed 'ip link set up vcan0'\n");
}
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to create CAN_BCM socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] CAN_BCM socket created successfully.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to get ifindex for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Got ifindex %d for vcan0.\n", ifr.ifr_ifindex);
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect CAN_BCM socket to vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Successfully connected CAN_BCM socket to vcan0.\n");
printf("[+] All probes passed successfully.\n");
return 0;
}
]
Results: map[RawCandidateReproC:#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main() {
printf("[*] Starting probe for CAN_BCM and vcan0...\n");
// Try to create vcan0
int ret = system("ip link add dev vcan0 type vcan");
if (ret != 0) {
printf("[-] Failed to create vcan0 interface. system() returned %d\n", ret);
// We might not have 'ip' or permissions, but let's try to proceed just in case vcan0 exists
} else {
printf("[+] Successfully executed 'ip link add dev vcan0 type vcan'\n");
}
ret = system("ip link set up vcan0");
if (ret != 0) {
printf("[-] Failed to set vcan0 up. system() returned %d\n", ret);
} else {
printf("[+] Successfully executed 'ip link set up vcan0'\n");
}
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to create CAN_BCM socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] CAN_BCM socket created successfully.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to get ifindex for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Got ifindex %d for vcan0.\n", ifr.ifr_ifindex);
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect CAN_BCM socket to vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Successfully connected CAN_BCM socket to vcan0.\n");
printf("[+] All probes passed successfully.\n");
return 0;
}
]
|
| 38/3 |
2026/05/19 15:24 |
loop |
|
0m
|
| 39/4 |
2026/05/19 15:24 |
iteration |
0 |
0m
|
| 40/5 |
2026/05/19 15:24 |
action |
merge-repro-c |
0m
Results: map[CurrentCandidateReproC:#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main() {
printf("[*] Starting probe for CAN_BCM and vcan0...\n");
// Try to create vcan0
int ret = system("ip link add dev vcan0 type vcan");
if (ret != 0) {
printf("[-] Failed to create vcan0 interface. system() returned %d\n", ret);
// We might not have 'ip' or permissions, but let's try to proceed just in case vcan0 exists
} else {
printf("[+] Successfully executed 'ip link add dev vcan0 type vcan'\n");
}
ret = system("ip link set up vcan0");
if (ret != 0) {
printf("[-] Failed to set vcan0 up. system() returned %d\n", ret);
} else {
printf("[+] Successfully executed 'ip link set up vcan0'\n");
}
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to create CAN_BCM socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] CAN_BCM socket created successfully.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to get ifindex for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Got ifindex %d for vcan0.\n", ifr.ifr_ifindex);
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect CAN_BCM socket to vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Successfully connected CAN_BCM socket to vcan0.\n");
printf("[+] All probes passed successfully.\n");
return 0;
}
]
|
| 41/5 |
2026/05/19 15:24 |
action |
compile-c-prog |
0m
Results: map[CompilerError: FormattedReproC:#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main() {
printf("[*] Starting probe for CAN_BCM and vcan0...\n");
// Try to create vcan0
int ret = system("ip link add dev vcan0 type vcan");
if (ret != 0) {
printf("[-] Failed to create vcan0 interface. system() returned %d\n", ret);
// We might not have 'ip' or permissions, but let's try to proceed just in case vcan0 exists
} else {
printf("[+] Successfully executed 'ip link add dev vcan0 type vcan'\n");
}
ret = system("ip link set up vcan0");
if (ret != 0) {
printf("[-] Failed to set vcan0 up. system() returned %d\n", ret);
} else {
printf("[+] Successfully executed 'ip link set up vcan0'\n");
}
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to create CAN_BCM socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] CAN_BCM socket created successfully.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to get ifindex for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Got ifindex %d for vcan0.\n", ifr.ifr_ifindex);
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect CAN_BCM socket to vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] Successfully connected CAN_BCM socket to vcan0.\n");
printf("[+] All probes passed successfully.\n");
return 0;
}
]
|
| 42/3 |
2026/05/19 15:24 |
action |
run-c-repro |
1m
Results: map[CandidateBugTitle: CandidateCrashReport: CandidateReproduced:false ConsoleOutput:[ 40.817101][ T30] kauditd_printk_skb: 10 callbacks suppressed
[ 40.817109][ T30] audit: type=1400 audit(1779204319.138:104): avc: denied { transition } for pid=3550 comm="sshd-session" path="/bin/sh" dev="sda1" ino=90 scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.826183][ T30] audit: type=1400 audit(1779204319.148:105): avc: denied { noatsecure } for pid=3550 comm="sshd-session" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.832556][ T30] audit: type=1400 audit(1779204319.158:106): avc: denied { rlimitinh } for pid=3550 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.838386][ T30] audit: type=1400 audit(1779204319.158:107): avc: denied { siginh } for pid=3550 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
Warning: Permanently added '[localhost]:54656' (ED25519) to the list of known hosts.
[*] Starting probe for CAN_BCM and vcan0...
[+] Successfully executed 'ip link add dev vcan0 type vcan'
[+] Successfully executed 'ip link set up vcan0'
[+] CAN_BCM socket created successfully.
[+] Got ifindex 33 for vcan0.
[+] Successfully connected CAN_BCM socket to vcan0.
[+] All probes passed successfully.
[ 43.038716][ T30] audit: type=1400 audit(1779204321.358:108): avc: denied { create } for pid=3564 comm="syz-executor233" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.045605][ T30] audit: type=1400 audit(1779204321.358:109): avc: denied { ioctl } for pid=3564 comm="syz-executor233" path="socket:[4889]" dev="sockfs" ino=4889 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.054332][ T30] audit: type=1400 audit(1779204321.358:110): avc: denied { connect } for pid=3564 comm="syz-executor233" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
OtherCrashReports:<nil> StraceOutput:/strace -e \!wait4,clock_nanosleep,nanosleep -s 100 -x -f /syz-executor207581373
<...>
_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=572, reachable_time=18990, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1480, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1612, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_TUNNEL6, ifi_index=if_nametoindex("ip6_vti0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=13, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x5f\x76\x74\x69\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1364], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65495], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=92, nla_type=IFLA_LINKINFO}, [[{nla_len=9, nla_type=IFLA_INFO_KIND}, "vti6"], [{nla_len=76, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x14\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x02\x00\x00\x00\x00\x00\x08\x00\x03\x00\x00\x00\x00\x00\x08\x00\x06\x00\x00\x00\x00\x00"]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 8a:ce:c7:0d:ee:07:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=43590, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1364, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1636, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_SIT, ifi_index=if_nametoindex("sit0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x73\x69\x74\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1480], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 1280], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65555], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 116], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=8, nla_type=IFLA_ADDRESS}, 00:00:00:00], [{nla_len=8, nla_type=IFLA_BROADCAST}, 00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=164, nla_type=IFLA_LINKINFO}, [[{nla_len=8, nla_type=IFLA_INFO_KIND}, "sit"], [{nla_len=152, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x08\x00\x02\x00\x00\x00\x00\x00\x08\x00\x03\x00\x00\x00\x00\x00\x05\x00\x04\x00\x40\x00\x00\x00\x05\x00\x05\x00\x00\x00\x00\x00\x05\x00\x0a\x00\x00\x00\x00\x00\x05\x00\x09\x00\x29\x00\x00\x00\x06\x00\x08\x00\x00\x00\x00\x00\x08\x00\x14\x00\x00\x00\x00\x00\x14\x00\x0b\x00\x20\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x0c\x00\x00\x00\x00\x00"...]]], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=19250, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1480, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1664, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_TUNNEL6, ifi_index=if_nametoindex("ip6tnl0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x74\x6e\x6c\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1452], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=148, nla_type=IFLA_LINKINFO}, [[{nla_len=11, nla_type=IFLA_INFO_KIND}, "ip6tnl"], [{nla_len=132, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x14\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x04\x00\x00\x00\x00\x00\x05\x00\x06\x00\x00\x00\x00\x00\x08\x00\x07\x00\x00\x00\x00\x00\x08\x00\x08\x00\x00\x00\x04\x00\x05\x00\x09\x00\x29\x00\x00\x00\x08\x00\x14\x00\x00\x00\x00\x00\x06\x00\x0f\x00"...]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 56:f7:b3:c8:6a:0a:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=44190, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1452, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8092
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1688, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_IP6GRE, ifi_index=if_nametoindex("ip6gre0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x67\x72\x65\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1448], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 140], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=172, nla_type=IFLA_LINKINFO}, [[{nla_len=11, nla_type=IFLA_INFO_KIND}, "ip6gre"], [{nla_len=156, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x06\x00\x02\x00\x00\x00\x00\x00\x06\x00\x03\x00\x00\x00\x00\x00\x08\x00\x04\x00\x00\x00\x00\x00\x08\x00\x05\x00\x00\x00\x00\x00\x14\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x08\x00\x00\x00\x00\x00\x05\x00\x0b\x00\x00\x00\x00\x00\x08\x00\x0c\x00"...]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 42:50:1c:3b:82:bf:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=21050, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1448, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb0"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb1"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x31\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb2"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x32\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb3"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x33\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1508, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_6LOWPAN, ifi_index=if_nametoindex("lowpan0"), ifi_flags=IFF_BROADCAST|IFF_MULTICAST, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x6c\x6f\x77\x70\x61\x6e\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1280], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 2], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 2], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 41], [{nla_len=6, nla_type=IFLA_TAILROOM}, 18], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=12, nla_type=IFLA_ADDRESS}, 02:00:aa:aa:aa:aa:aa], [{nla_len=12, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff:ff], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=16, nla_type=IFLA_LINKINFO}, [{nla_len=11, nla_type=IFLA_INFO_KIND}, "lowpan"]], [{nla_len=12, nla_type=IFLA_PERM_ADDRESS}, 02:00:aa:aa:aa:aa:aa], [{nla_len=8, nla_type=IFLA_LINK}, 8], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=2695, reachable_time=38670, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1280, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth1"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x31\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, ae:b0:eb:5b:f2:8f], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x31\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3255, reachable_time=41520, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 7900
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth2"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x32\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, 6e:23:d3:c5:e6:cc], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x32\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=13, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=13, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3268, reachable_time=41990, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=8, [IPSTATS_MIB_INNOROUTES]=8, [IPSTATS_MIB_INADDRERRORS]=544, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=8, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=544, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=8, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth3"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x33\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, c6:22:00:d6:0e:99], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x33\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3272, reachable_time=35060, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=8, [IPSTATS_MIB_INNOROUTES]=8, [IPSTATS_MIB_INADDRERRORS]=544, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=8, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=544, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=8, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth4"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x34\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, 2e:c4:94:4e:3e:bb], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x34\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3276, reachable_time=30900, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth5"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x35\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, a2:a0:0c:3b:b0:ba], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x31\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3344, reachable_time=30470, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth6"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x36\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, aa:6e:f9:6e:c1:ab], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x32\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3357, reachable_time=27600, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8000
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth7"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x37\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, aa:8e:d5:ed:bb:f4], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x33\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3361, reachable_time=34680, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth8"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x38\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, ee:e4:e9:f2:39:2b], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x34\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3366, reachable_time=35480, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 3200
[pid 3562] 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=1779204378, nlmsg_pid=3562}, 0], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 20
[pid 3562] sendmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=56, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1779204379, nlmsg_pid=0}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_LINKINFO}, [{nla_len=8, nla_type=IFLA_INFO_KIND}, "vcan"...]], [{nla_len=10, nla_type=IFLA_IFNAME}, "\x76\x63\x61\x6e\x30\x00"...]]], iov_len=56}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 56
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1779204379, nlmsg_pid=3562}, {error=0, msg={nlmsg_len=56, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1779204379, nlmsg_pid=0}}], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 36
[pid 3562] exit_group(0) = ?
[pid 3562] +++ exited with 0 +++
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3562, si_uid=0, si_status=0, si_utime=0, si_stime=3 /* 0.03 s */} ---
rt_sigaction(SIGINT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fae70b6e000
rt_sigprocmask(SIG_BLOCK, ~[], [CHLD], 8) = 0
clone3({flags=CLONE_VM|CLONE_VFORK|CLONE_CLEAR_SIGHAND, exit_signal=SIGCHLD, stack=0x7fae70b6e000, stack_size=0x9000}, 88/strace: Process 3566 attached
<unfinished ...>
[pid 3566] rt_sigprocmask(SIG_BLOCK, NULL, ~[KILL STOP], 8) = 0
[pid 3566] rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
[pid 3566] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
[pid 3566] execve("/bin/sh", ["sh", "-c", "--", "ip link set up vcan0"], 0x7ffeccd505c8 /* 11 vars */ <unfinished ...>
[pid 3561] <... clone3 resumed>) = 3566
[pid 3561] munmap(0x7fae70b6e000, 36864) = 0
[pid 3561] rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
[pid 3566] <... execve resumed>) = 0
[pid 3566] brk(NULL) = 0x558da9921000
[pid 3566] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/lib64/libbusybox.so.1.37.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x13\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x09\x00\x40\x00\x19\x00\x18\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xf4\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0644, st_size=792952, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee94b4000
[pid 3566] mmap(NULL, 792856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee93f2000
[pid 3566] mmap(0x7f5ee9402000, 548864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f5ee9402000
[pid 3566] mmap(0x7f5ee9488000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7f5ee9488000
[pid 3566] mmap(0x7f5ee94b0000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xbe000) = 0x7f5ee94b0000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\xf0\xab\x02\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x22\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0e\x00\x40\x00\x3b\x00\x3a\x00\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00"..., 832) = 832
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=1913080, ...}) = 0
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] mmap(NULL, 1965720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee9212000
[pid 3566] mmap(0x7f5ee923a000, 1368064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7f5ee923a000
[pid 3566] mmap(0x7f5ee9388000, 356352, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x176000) = 0x7f5ee9388000
[pid 3566] mmap(0x7f5ee93df000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cc000) = 0x7f5ee93df000
[pid 3566] mmap(0x7f5ee93e5000, 52888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee93e5000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf8\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x29\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=63416, ...}) = 0
[pid 3566] mmap(NULL, 65552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee9201000
[pid 3566] mmap(0x7f5ee9204000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee9204000
[pid 3566] mmap(0x7f5ee920c000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f5ee920c000
[pid 3566] mmap(0x7f5ee9210000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f5ee9210000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam_misc.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x12\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=22400, ...}) = 0
[pid 3566] mmap(NULL, 24656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91fa000
[pid 3566] mmap(0x7f5ee91fc000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5ee91fc000
[pid 3566] mmap(0x7f5ee91fe000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5ee91fe000
[pid 3566] mmap(0x7f5ee91ff000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5ee91ff000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xa8\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x27\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=59624, ...}) = 0
[pid 3566] mmap(NULL, 67720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91e9000
[pid 3566] mmap(0x7f5ee91ec000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee91ec000
[pid 3566] mmap(0x7f5ee91f4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f5ee91f4000
[pid 3566] mmap(0x7f5ee91f6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7f5ee91f6000
[pid 3566] mmap(0x7f5ee91f8000, 6280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91f8000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x60\xd1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x74\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=186528, ...}) = 0
[pid 3566] mmap(NULL, 194256, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91b9000
[pid 3566] mmap(0x7f5ee91c1000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f5ee91c1000
[pid 3566] mmap(0x7f5ee91dd000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7f5ee91dd000
[pid 3566] mmap(0x7f5ee91e5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7f5ee91e5000
[pid 3566] mmap(0x7f5ee91e7000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91e7000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libatomic.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x30\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x1f\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=30704, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91b7000
[pid 3566] mmap(NULL, 37000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91ad000
[pid 3566] mmap(0x7f5ee91af000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5ee91af000
[pid 3566] mmap(0x7f5ee91b2000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f5ee91b2000
[pid 3566] mmap(0x7f5ee91b4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5ee91b4000
[pid 3566] mmap(0x7f5ee91b6000, 136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91b6000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x20\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=395120, ...}) = 0
[pid 3566] mmap(NULL, 397336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee914b000
[pid 3566] mmap(0x7f5ee914e000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee914e000
[pid 3566] mmap(0x7f5ee9185000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7f5ee9185000
[pid 3566] mmap(0x7f5ee91ab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7f5ee91ab000
[pid 3566] close(3) = 0
[pid 3566] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee9148000
[pid 3566] arch_prctl(ARCH_SET_FS, 0x7f5ee9148840) = 0
[pid 3566] set_tid_address(0x7f5ee9148b10) = 3566
[pid 3566] set_robust_list(0x7f5ee9148b20, 24) = 0
[pid 3566] rseq({cpu_id_start=0, cpu_id=RSEQ_CPU_ID_UNINITIALIZED, rseq_cs=NULL, flags=0, node_id=0, mm_cid=0, slice_ctrl={request=0, granted=0, __reserved=0}, __reserved=0}, 33, 0, 0x53053053) = 0
[pid 3566] mprotect(0x7f5ee93df000, 16384, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91ab000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91b4000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91e5000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91f6000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee9210000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91ff000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee94b0000, 12288, PROT_READ) = 0
[pid 3566] mprotect(0x558d7d47d000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee94f1000, 8192, PROT_READ) = 0
[pid 3566] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] getrandom("\x75\x73\x97\xe4\x22\xdf\x55\xe1", 8, GRND_NONBLOCK) = 8
[pid 3566] brk(NULL) = 0x558da9921000
[pid 3566] brk(0x558da9942000) = 0x558da9942000
[pid 3566] access("/etc/selinux/config", F_OK) = 0
[pid 3566] getpid() = 3566
[pid 3566] rt_sigaction(SIGCHLD, {sa_handler=0x7f5ee9435287, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f5ee9251180}, NULL, 8) = 0
[pid 3566] getppid() = 3561
[pid 3566] uname({sysname="Linux", nodename="syzkaller", ...}) = 0
[pid 3566] newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
[pid 3566] newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
[pid 3566] rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] rt_sigaction(SIGINT, {sa_handler=0x7f5ee9435287, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f5ee9251180}, NULL, 8) = 0
[pid 3566] rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] newfstatat(AT_FDCWD, "/bin/ip", 0x7fff2b050de8, 0) = -1 ENOENT (No such file or directory)
[pid 3566] newfstatat(AT_FDCWD, "/sbin/ip", {st_mode=S_IFREG|0755, st_size=14256, ...}, 0) = 0
[pid 3566] execve("/sbin/ip", ["ip", "link", "set", "up", "vcan0"], 0x558da9922588 /* 11 vars */) = 0
[pid 3566] brk(NULL) = 0x561723a58000
[pid 3566] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/lib64/libbusybox.so.1.37.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x13\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x09\x00\x40\x00\x19\x00\x18\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xf4\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0644, st_size=792952, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e8c6000
[pid 3566] mmap(NULL, 792856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e804000
[pid 3566] mmap(0x7fdc0e814000, 548864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7fdc0e814000
[pid 3566] mmap(0x7fdc0e89a000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7fdc0e89a000
[pid 3566] mmap(0x7fdc0e8c2000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xbe000) = 0x7fdc0e8c2000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\xf0\xab\x02\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x22\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0e\x00\x40\x00\x3b\x00\x3a\x00\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00"..., 832) = 832
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=1913080, ...}) = 0
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] mmap(NULL, 1965720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e624000
[pid 3566] mmap(0x7fdc0e64c000, 1368064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7fdc0e64c000
[pid 3566] mmap(0x7fdc0e79a000, 356352, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x176000) = 0x7fdc0e79a000
[pid 3566] mmap(0x7fdc0e7f1000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cc000) = 0x7fdc0e7f1000
[pid 3566] mmap(0x7fdc0e7f7000, 52888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e7f7000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf8\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x29\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=63416, ...}) = 0
[pid 3566] mmap(NULL, 65552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e613000
[pid 3566] mmap(0x7fdc0e616000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e616000
[pid 3566] mmap(0x7fdc0e61e000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fdc0e61e000
[pid 3566] mmap(0x7fdc0e622000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fdc0e622000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam_misc.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x12\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=22400, ...}) = 0
[pid 3566] mmap(NULL, 24656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e60c000
[pid 3566] mmap(0x7fdc0e60e000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fdc0e60e000
[pid 3566] mmap(0x7fdc0e610000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fdc0e610000
[pid 3566] mmap(0x7fdc0e611000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fdc0e611000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xa8\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x27\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=59624, ...}) = 0
[pid 3566] mmap(NULL, 67720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5fb000
[pid 3566] mmap(0x7fdc0e5fe000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e5fe000
[pid 3566] mmap(0x7fdc0e606000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fdc0e606000
[pid 3566] mmap(0x7fdc0e608000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7fdc0e608000
[pid 3566] mmap(0x7fdc0e60a000, 6280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e60a000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x60\xd1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x74\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=186528, ...}) = 0
[pid 3566] mmap(NULL, 194256, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5cb000
[pid 3566] mmap(0x7fdc0e5d3000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fdc0e5d3000
[pid 3566] mmap(0x7fdc0e5ef000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7fdc0e5ef000
[pid 3566] mmap(0x7fdc0e5f7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7fdc0e5f7000
[pid 3566] mmap(0x7fdc0e5f9000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5f9000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libatomic.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x30\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x1f\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=30704, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5c9000
[pid 3566] mmap(NULL, 37000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5bf000
[pid 3566] mmap(0x7fdc0e5c1000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fdc0e5c1000
[pid 3566] mmap(0x7fdc0e5c4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fdc0e5c4000
[pid 3566] mmap(0x7fdc0e5c6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fdc0e5c6000
[pid 3566] mmap(0x7fdc0e5c8000, 136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5c8000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x20\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=395120, ...}) = 0
[pid 3566] mmap(NULL, 397336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e55d000
[pid 3566] mmap(0x7fdc0e560000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e560000
[pid 3566] mmap(0x7fdc0e597000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7fdc0e597000
[pid 3566] mmap(0x7fdc0e5bd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7fdc0e5bd000
[pid 3566] close(3) = 0
[pid 3566] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e55a000
[pid 3566] arch_prctl(ARCH_SET_FS, 0x7fdc0e55a840) = 0
[pid 3566] set_tid_address(0x7fdc0e55ab10) = 3566
[pid 3566] set_robust_list(0x7fdc0e55ab20, 24) = 0
[pid 3566] rseq({cpu_id_start=0, cpu_id=RSEQ_CPU_ID_UNINITIALIZED, rseq_cs=NULL, flags=0, node_id=0, mm_cid=0, slice_ctrl={request=0, granted=0, __reserved=0}, __reserved=0}, 33, 0, 0x53053053) = 0
[pid 3566] mprotect(0x7fdc0e7f1000, 16384, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5bd000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5c6000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5f7000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e608000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e622000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e611000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e8c2000, 12288, PROT_READ) = 0
[pid 3566] mprotect(0x56170709d000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e903000, 8192, PROT_READ) = 0
[pid 3566] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] getrandom("\x67\xdf\x8d\x86\xfc\x15\xc6\x84", 8, GRND_NONBLOCK) = 8
[pid 3566] brk(NULL) = 0x561723a58000
[pid 3566] brk(0x561723a79000) = 0x561723a79000
[pid 3566] access("/etc/selinux/config", F_OK) = 0
[pid 3566] socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
[pid 3566] ioctl(3, SIOCGIFFLAGS, {ifr_name="vcan0", ifr_flags=IFF_NOARP}) = 0
[pid 3566] ioctl(3, SIOCSIFFLAGS, {ifr_name="vcan0", ifr_flags=IFF_UP|IFF_NOARP}) = 0
[pid 3566] close(3) = 0
[pid 3566] exit_group(0) = ?
[pid 3566] +++ exited with 0 +++
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3566, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
socket(AF_CAN, SOCK_DGRAM, CAN_BCM) = 3
ioctl(3, SIOCGIFINDEX, {ifr_name="vcan0", ifr_ifindex=33}) = 0
connect(3, {sa_family=AF_CAN, sa_data="\x00\x00\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"}, 24) = 0
[ 43.731880][ T30] audit: type=1400 audit(1779204377.954:108): avc: denied { create } for pid=3561 comm="syz-executor207" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
write(1, "[*] Starting probe for CAN_BCM and vcan0...\n[+] Successfully executed 'ip link add dev vcan0 type vc"..., 312) = 312
exit_group(0) = ?
[*] Starting probe for CAN_BCM and vcan0...
[+] Successfully executed 'ip link add dev vcan0 type vcan'
[+] Successfully executed 'ip link set up vcan0'
[+] CAN_BCM socket created successfully.
[+] Got ifindex 33 for vcan0.
[+] Successfully connected CAN_BCM socket to vcan0.
[+] All probes passed successfully.
+++ exited with 0 +++
[ 43.743353][ T30] audit: type=1400 audit(1779204377.954:109): avc: denied { ioctl } for pid=3561 comm="syz-executor207" path="socket:[3404]" dev="sockfs" ino=3404 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.754223][ T30] audit: type=1400 audit(1779204377.954:110): avc: denied { connect } for pid=3561 comm="syz-executor207" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
TestError:]
|
| 43/3 |
2026/05/19 15:26 |
action |
truncate-log |
0m
Results: map[TruncatedConsoleOutput:[ 40.817101][ T30] kauditd_printk_skb: 10 callbacks suppressed
[ 40.817109][ T30] audit: type=1400 audit(1779204319.138:104): avc: denied { transition } for pid=3550 comm="sshd-session" path="/bin/sh" dev="sda1" ino=90 scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.826183][ T30] audit: type=1400 audit(1779204319.148:105): avc: denied { noatsecure } for pid=3550 comm="sshd-session" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.832556][ T30] audit: type=1400 audit(1779204319.158:106): avc: denied { rlimitinh } for pid=3550 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.838386][ T30] audit: type=1400 audit(1779204319.158:107): avc: denied { siginh } for pid=3550 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
Warning: Permanently added '[localhost]:54656' (ED25519) to the list of known hosts.
[*] Starting probe for CAN_BCM and vcan0...
[+] Successfully executed 'ip link add dev vcan0 type vcan'
[+] Successfully executed 'ip link set up vcan0'
[+] CAN_BCM socket created successfully.
[+] Got ifindex 33 for vcan0.
[+] Successfully connected CAN_BCM socket to vcan0.
[+] All probes passed successfully.
[ 43.038716][ T30] audit: type=1400 audit(1779204321.358:108): avc: denied { create } for pid=3564 comm="syz-executor233" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.045605][ T30] audit: type=1400 audit(1779204321.358:109): avc: denied { ioctl } for pid=3564 comm="syz-executor233" path="socket:[4889]" dev="sockfs" ino=4889 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.054332][ T30] audit: type=1400 audit(1779204321.358:110): avc: denied { connect } for pid=3564 comm="syz-executor233" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
TruncatedCrashReport: TruncatedStraceOutput:/strace -e \!wait4,clock_nanosleep,nanosleep -s 100 -x -f /syz-executor207581373
<...>
_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=572, reachable_time=18990, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1480, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1612, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_TUNNEL6, ifi_index=if_nametoindex("ip6_vti0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=13, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x5f\x76\x74\x69\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1364], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65495], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=92, nla_type=IFLA_LINKINFO}, [[{nla_len=9, nla_type=IFLA_INFO_KIND}, "vti6"], [{nla_len=76, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x14\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x02\x00\x00\x00\x00\x00\x08\x00\x03\x00\x00\x00\x00\x00\x08\x00\x06\x00\x00\x00\x00\x00"]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 8a:ce:c7:0d:ee:07:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=43590, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1364, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1636, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_SIT, ifi_index=if_nametoindex("sit0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x73\x69\x74\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1480], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 1280], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65555], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 116], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=8, nla_type=IFLA_ADDRESS}, 00:00:00:00], [{nla_len=8, nla_type=IFLA_BROADCAST}, 00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=164, nla_type=IFLA_LINKINFO}, [[{nla_len=8, nla_type=IFLA_INFO_KIND}, "sit"], [{nla_len=152, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x08\x00\x02\x00\x00\x00\x00\x00\x08\x00\x03\x00\x00\x00\x00\x00\x05\x00\x04\x00\x40\x00\x00\x00\x05\x00\x05\x00\x00\x00\x00\x00\x05\x00\x0a\x00\x00\x00\x00\x00\x05\x00\x09\x00\x29\x00\x00\x00\x06\x00\x08\x00\x00\x00\x00\x00\x08\x00\x14\x00\x00\x00\x00\x00\x14\x00\x0b\x00\x20\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x0c\x00\x00\x00\x00\x00"...]]], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=19250, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1480, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1664, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_TUNNEL6, ifi_index=if_nametoindex("ip6tnl0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x74\x6e\x6c\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1452], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=148, nla_type=IFLA_LINKINFO}, [[{nla_len=11, nla_type=IFLA_INFO_KIND}, "ip6tnl"], [{nla_len=132, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x14\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x04\x00\x00\x00\x00\x00\x05\x00\x06\x00\x00\x00\x00\x00\x08\x00\x07\x00\x00\x00\x00\x00\x08\x00\x08\x00\x00\x00\x04\x00\x05\x00\x09\x00\x29\x00\x00\x00\x08\x00\x14\x00\x00\x00\x00\x00\x06\x00\x0f\x00"...]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 56:f7:b3:c8:6a:0a:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=44190, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1452, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8092
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1688, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_IP6GRE, ifi_index=if_nametoindex("ip6gre0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x67\x72\x65\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1448], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 140], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=172, nla_type=IFLA_LINKINFO}, [[{nla_len=11, nla_type=IFLA_INFO_KIND}, "ip6gre"], [{nla_len=156, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x06\x00\x02\x00\x00\x00\x00\x00\x06\x00\x03\x00\x00\x00\x00\x00\x08\x00\x04\x00\x00\x00\x00\x00\x08\x00\x05\x00\x00\x00\x00\x00\x14\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x08\x00\x00\x00\x00\x00\x05\x00\x0b\x00\x00\x00\x00\x00\x08\x00\x0c\x00"...]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 42:50:1c:3b:82:bf:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=21050, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1448, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb0"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb1"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x31\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb2"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x32\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb3"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x33\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1508, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_6LOWPAN, ifi_index=if_nametoindex("lowpan0"), ifi_flags=IFF_BROADCAST|IFF_MULTICAST, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x6c\x6f\x77\x70\x61\x6e\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1280], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 2], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 2], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 41], [{nla_len=6, nla_type=IFLA_TAILROOM}, 18], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=12, nla_type=IFLA_ADDRESS}, 02:00:aa:aa:aa:aa:aa], [{nla_len=12, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff:ff], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=16, nla_type=IFLA_LINKINFO}, [{nla_len=11, nla_type=IFLA_INFO_KIND}, "lowpan"]], [{nla_len=12, nla_type=IFLA_PERM_ADDRESS}, 02:00:aa:aa:aa:aa:aa], [{nla_len=8, nla_type=IFLA_LINK}, 8], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=2695, reachable_time=38670, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1280, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth1"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x31\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, ae:b0:eb:5b:f2:8f], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x31\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3255, reachable_time=41520, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 7900
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth2"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x32\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, 6e:23:d3:c5:e6:cc], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x32\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=13, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=13, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3268, reachable_time=41990, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=8, [IPSTATS_MIB_INNOROUTES]=8, [IPSTATS_MIB_INADDRERRORS]=544, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=8, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=544, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=8, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth3"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x33\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, c6:22:00:d6:0e:99], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x33\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3272, reachable_time=35060, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=8, [IPSTATS_MIB_INNOROUTES]=8, [IPSTATS_MIB_INADDRERRORS]=544, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=8, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=544, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=8, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth4"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x34\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, 2e:c4:94:4e:3e:bb], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x34\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3276, reachable_time=30900, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth5"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x35\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, a2:a0:0c:3b:b0:ba], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x31\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3344, reachable_time=30470, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth6"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x36\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, aa:6e:f9:6e:c1:ab], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x32\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3357, reachable_time=27600, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8000
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth7"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x37\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, aa:8e:d5:ed:bb:f4], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x33\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3361, reachable_time=34680, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth8"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x38\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, ee:e4:e9:f2:39:2b], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x34\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3366, reachable_time=35480, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 3200
[pid 3562] 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=1779204378, nlmsg_pid=3562}, 0], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 20
[pid 3562] sendmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=56, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1779204379, nlmsg_pid=0}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_LINKINFO}, [{nla_len=8, nla_type=IFLA_INFO_KIND}, "vcan"...]], [{nla_len=10, nla_type=IFLA_IFNAME}, "\x76\x63\x61\x6e\x30\x00"...]]], iov_len=56}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 56
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1779204379, nlmsg_pid=3562}, {error=0, msg={nlmsg_len=56, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1779204379, nlmsg_pid=0}}], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 36
[pid 3562] exit_group(0) = ?
[pid 3562] +++ exited with 0 +++
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3562, si_uid=0, si_status=0, si_utime=0, si_stime=3 /* 0.03 s */} ---
rt_sigaction(SIGINT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fae70b6e000
rt_sigprocmask(SIG_BLOCK, ~[], [CHLD], 8) = 0
clone3({flags=CLONE_VM|CLONE_VFORK|CLONE_CLEAR_SIGHAND, exit_signal=SIGCHLD, stack=0x7fae70b6e000, stack_size=0x9000}, 88/strace: Process 3566 attached
<unfinished ...>
[pid 3566] rt_sigprocmask(SIG_BLOCK, NULL, ~[KILL STOP], 8) = 0
[pid 3566] rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
[pid 3566] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
[pid 3566] execve("/bin/sh", ["sh", "-c", "--", "ip link set up vcan0"], 0x7ffeccd505c8 /* 11 vars */ <unfinished ...>
[pid 3561] <... clone3 resumed>) = 3566
[pid 3561] munmap(0x7fae70b6e000, 36864) = 0
[pid 3561] rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
[pid 3566] <... execve resumed>) = 0
[pid 3566] brk(NULL) = 0x558da9921000
[pid 3566] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/lib64/libbusybox.so.1.37.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x13\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x09\x00\x40\x00\x19\x00\x18\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xf4\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0644, st_size=792952, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee94b4000
[pid 3566] mmap(NULL, 792856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee93f2000
[pid 3566] mmap(0x7f5ee9402000, 548864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f5ee9402000
[pid 3566] mmap(0x7f5ee9488000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7f5ee9488000
[pid 3566] mmap(0x7f5ee94b0000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xbe000) = 0x7f5ee94b0000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\xf0\xab\x02\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x22\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0e\x00\x40\x00\x3b\x00\x3a\x00\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00"..., 832) = 832
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=1913080, ...}) = 0
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] mmap(NULL, 1965720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee9212000
[pid 3566] mmap(0x7f5ee923a000, 1368064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7f5ee923a000
[pid 3566] mmap(0x7f5ee9388000, 356352, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x176000) = 0x7f5ee9388000
[pid 3566] mmap(0x7f5ee93df000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cc000) = 0x7f5ee93df000
[pid 3566] mmap(0x7f5ee93e5000, 52888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee93e5000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf8\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x29\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=63416, ...}) = 0
[pid 3566] mmap(NULL, 65552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee9201000
[pid 3566] mmap(0x7f5ee9204000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee9204000
[pid 3566] mmap(0x7f5ee920c000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f5ee920c000
[pid 3566] mmap(0x7f5ee9210000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f5ee9210000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam_misc.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x12\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=22400, ...}) = 0
[pid 3566] mmap(NULL, 24656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91fa000
[pid 3566] mmap(0x7f5ee91fc000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5ee91fc000
[pid 3566] mmap(0x7f5ee91fe000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5ee91fe000
[pid 3566] mmap(0x7f5ee91ff000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5ee91ff000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xa8\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x27\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=59624, ...}) = 0
[pid 3566] mmap(NULL, 67720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91e9000
[pid 3566] mmap(0x7f5ee91ec000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee91ec000
[pid 3566] mmap(0x7f5ee91f4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f5ee91f4000
[pid 3566] mmap(0x7f5ee91f6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7f5ee91f6000
[pid 3566] mmap(0x7f5ee91f8000, 6280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91f8000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x60\xd1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x74\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=186528, ...}) = 0
[pid 3566] mmap(NULL, 194256, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91b9000
[pid 3566] mmap(0x7f5ee91c1000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f5ee91c1000
[pid 3566] mmap(0x7f5ee91dd000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7f5ee91dd000
[pid 3566] mmap(0x7f5ee91e5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7f5ee91e5000
[pid 3566] mmap(0x7f5ee91e7000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91e7000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libatomic.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x30\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x1f\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=30704, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91b7000
[pid 3566] mmap(NULL, 37000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91ad000
[pid 3566] mmap(0x7f5ee91af000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5ee91af000
[pid 3566] mmap(0x7f5ee91b2000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f5ee91b2000
[pid 3566] mmap(0x7f5ee91b4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5ee91b4000
[pid 3566] mmap(0x7f5ee91b6000, 136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91b6000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x20\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=395120, ...}) = 0
[pid 3566] mmap(NULL, 397336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee914b000
[pid 3566] mmap(0x7f5ee914e000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee914e000
[pid 3566] mmap(0x7f5ee9185000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7f5ee9185000
[pid 3566] mmap(0x7f5ee91ab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7f5ee91ab000
[pid 3566] close(3) = 0
[pid 3566] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee9148000
[pid 3566] arch_prctl(ARCH_SET_FS, 0x7f5ee9148840) = 0
[pid 3566] set_tid_address(0x7f5ee9148b10) = 3566
[pid 3566] set_robust_list(0x7f5ee9148b20, 24) = 0
[pid 3566] rseq({cpu_id_start=0, cpu_id=RSEQ_CPU_ID_UNINITIALIZED, rseq_cs=NULL, flags=0, node_id=0, mm_cid=0, slice_ctrl={request=0, granted=0, __reserved=0}, __reserved=0}, 33, 0, 0x53053053) = 0
[pid 3566] mprotect(0x7f5ee93df000, 16384, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91ab000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91b4000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91e5000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91f6000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee9210000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91ff000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee94b0000, 12288, PROT_READ) = 0
[pid 3566] mprotect(0x558d7d47d000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee94f1000, 8192, PROT_READ) = 0
[pid 3566] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] getrandom("\x75\x73\x97\xe4\x22\xdf\x55\xe1", 8, GRND_NONBLOCK) = 8
[pid 3566] brk(NULL) = 0x558da9921000
[pid 3566] brk(0x558da9942000) = 0x558da9942000
[pid 3566] access("/etc/selinux/config", F_OK) = 0
[pid 3566] getpid() = 3566
[pid 3566] rt_sigaction(SIGCHLD, {sa_handler=0x7f5ee9435287, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f5ee9251180}, NULL, 8) = 0
[pid 3566] getppid() = 3561
[pid 3566] uname({sysname="Linux", nodename="syzkaller", ...}) = 0
[pid 3566] newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
[pid 3566] newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
[pid 3566] rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] rt_sigaction(SIGINT, {sa_handler=0x7f5ee9435287, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f5ee9251180}, NULL, 8) = 0
[pid 3566] rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] newfstatat(AT_FDCWD, "/bin/ip", 0x7fff2b050de8, 0) = -1 ENOENT (No such file or directory)
[pid 3566] newfstatat(AT_FDCWD, "/sbin/ip", {st_mode=S_IFREG|0755, st_size=14256, ...}, 0) = 0
[pid 3566] execve("/sbin/ip", ["ip", "link", "set", "up", "vcan0"], 0x558da9922588 /* 11 vars */) = 0
[pid 3566] brk(NULL) = 0x561723a58000
[pid 3566] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/lib64/libbusybox.so.1.37.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x13\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x09\x00\x40\x00\x19\x00\x18\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xf4\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0644, st_size=792952, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e8c6000
[pid 3566] mmap(NULL, 792856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e804000
[pid 3566] mmap(0x7fdc0e814000, 548864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7fdc0e814000
[pid 3566] mmap(0x7fdc0e89a000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7fdc0e89a000
[pid 3566] mmap(0x7fdc0e8c2000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xbe000) = 0x7fdc0e8c2000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\xf0\xab\x02\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x22\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0e\x00\x40\x00\x3b\x00\x3a\x00\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00"..., 832) = 832
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=1913080, ...}) = 0
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] mmap(NULL, 1965720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e624000
[pid 3566] mmap(0x7fdc0e64c000, 1368064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7fdc0e64c000
[pid 3566] mmap(0x7fdc0e79a000, 356352, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x176000) = 0x7fdc0e79a000
[pid 3566] mmap(0x7fdc0e7f1000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cc000) = 0x7fdc0e7f1000
[pid 3566] mmap(0x7fdc0e7f7000, 52888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e7f7000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf8\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x29\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=63416, ...}) = 0
[pid 3566] mmap(NULL, 65552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e613000
[pid 3566] mmap(0x7fdc0e616000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e616000
[pid 3566] mmap(0x7fdc0e61e000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fdc0e61e000
[pid 3566] mmap(0x7fdc0e622000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fdc0e622000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam_misc.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x12\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=22400, ...}) = 0
[pid 3566] mmap(NULL, 24656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e60c000
[pid 3566] mmap(0x7fdc0e60e000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fdc0e60e000
[pid 3566] mmap(0x7fdc0e610000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fdc0e610000
[pid 3566] mmap(0x7fdc0e611000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fdc0e611000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xa8\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x27\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=59624, ...}) = 0
[pid 3566] mmap(NULL, 67720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5fb000
[pid 3566] mmap(0x7fdc0e5fe000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e5fe000
[pid 3566] mmap(0x7fdc0e606000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fdc0e606000
[pid 3566] mmap(0x7fdc0e608000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7fdc0e608000
[pid 3566] mmap(0x7fdc0e60a000, 6280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e60a000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x60\xd1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x74\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=186528, ...}) = 0
[pid 3566] mmap(NULL, 194256, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5cb000
[pid 3566] mmap(0x7fdc0e5d3000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fdc0e5d3000
[pid 3566] mmap(0x7fdc0e5ef000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7fdc0e5ef000
[pid 3566] mmap(0x7fdc0e5f7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7fdc0e5f7000
[pid 3566] mmap(0x7fdc0e5f9000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5f9000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libatomic.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x30\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x1f\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=30704, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5c9000
[pid 3566] mmap(NULL, 37000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5bf000
[pid 3566] mmap(0x7fdc0e5c1000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fdc0e5c1000
[pid 3566] mmap(0x7fdc0e5c4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fdc0e5c4000
[pid 3566] mmap(0x7fdc0e5c6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fdc0e5c6000
[pid 3566] mmap(0x7fdc0e5c8000, 136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5c8000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x20\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=395120, ...}) = 0
[pid 3566] mmap(NULL, 397336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e55d000
[pid 3566] mmap(0x7fdc0e560000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e560000
[pid 3566] mmap(0x7fdc0e597000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7fdc0e597000
[pid 3566] mmap(0x7fdc0e5bd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7fdc0e5bd000
[pid 3566] close(3) = 0
[pid 3566] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e55a000
[pid 3566] arch_prctl(ARCH_SET_FS, 0x7fdc0e55a840) = 0
[pid 3566] set_tid_address(0x7fdc0e55ab10) = 3566
[pid 3566] set_robust_list(0x7fdc0e55ab20, 24) = 0
[pid 3566] rseq({cpu_id_start=0, cpu_id=RSEQ_CPU_ID_UNINITIALIZED, rseq_cs=NULL, flags=0, node_id=0, mm_cid=0, slice_ctrl={request=0, granted=0, __reserved=0}, __reserved=0}, 33, 0, 0x53053053) = 0
[pid 3566] mprotect(0x7fdc0e7f1000, 16384, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5bd000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5c6000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5f7000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e608000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e622000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e611000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e8c2000, 12288, PROT_READ) = 0
[pid 3566] mprotect(0x56170709d000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e903000, 8192, PROT_READ) = 0
[pid 3566] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] getrandom("\x67\xdf\x8d\x86\xfc\x15\xc6\x84", 8, GRND_NONBLOCK) = 8
[pid 3566] brk(NULL) = 0x561723a58000
[pid 3566] brk(0x561723a79000) = 0x561723a79000
[pid 3566] access("/etc/selinux/config", F_OK) = 0
[pid 3566] socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
[pid 3566] ioctl(3, SIOCGIFFLAGS, {ifr_name="vcan0", ifr_flags=IFF_NOARP}) = 0
[pid 3566] ioctl(3, SIOCSIFFLAGS, {ifr_name="vcan0", ifr_flags=IFF_UP|IFF_NOARP}) = 0
[pid 3566] close(3) = 0
[pid 3566] exit_group(0) = ?
[pid 3566] +++ exited with 0 +++
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3566, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
socket(AF_CAN, SOCK_DGRAM, CAN_BCM) = 3
ioctl(3, SIOCGIFINDEX, {ifr_name="vcan0", ifr_ifindex=33}) = 0
connect(3, {sa_family=AF_CAN, sa_data="\x00\x00\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"}, 24) = 0
[ 43.731880][ T30] audit: type=1400 audit(1779204377.954:108): avc: denied { create } for pid=3561 comm="syz-executor207" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
write(1, "[*] Starting probe for CAN_BCM and vcan0...\n[+] Successfully executed 'ip link add dev vcan0 type vc"..., 312) = 312
exit_group(0) = ?
[*] Starting probe for CAN_BCM and vcan0...
[+] Successfully executed 'ip link add dev vcan0 type vcan'
[+] Successfully executed 'ip link set up vcan0'
[+] CAN_BCM socket created successfully.
[+] Got ifindex 33 for vcan0.
[+] Successfully connected CAN_BCM socket to vcan0.
[+] All probes passed successfully.
+++ exited with 0 +++
[ 43.743353][ T30] audit: type=1400 audit(1779204377.954:109): avc: denied { ioctl } for pid=3561 comm="syz-executor207" path="socket:[3404]" dev="sockfs" ino=3404 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.754223][ T30] audit: type=1400 audit(1779204377.954:110): avc: denied { connect } for pid=3561 comm="syz-executor207" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
]
|
| 44/3 |
2026/05/19 15:26 |
agent |
repro-oracle |
0m
Model:
Results: map[Feedback:The probe execution was successful. All probes passed, indicating that the environment is ready (CAN_BCM socket creation and vcan0 setup work). Please proceed to generate the full reproducer in the next iteration. TitleMatches:false]
Instruction: You are a security researcher with deep Linux kernel background.
Analyze the results of running the reproducer and determine if it was successful.
When Reproduced is false, analyze TruncatedConsoleOutput for execution patterns
(hangs, immediate exits, syscall failures)
to provide detailed feedback on why it failed and how to fix it.
The Strace Output will contain the syscall trace if the run was successful and strace was supported.
Use this trace to identify which syscall failed or behaved unexpectedly.
If the output indicates that this was a successful probe execution (all probes passed),
set Reproduced to false but provide feedback indicating that the environment is ready
and the agent should now proceed to generate the full reproducer in the next iteration.
If reproduction failed due to environmental issues (e.g., missing permissions, missing devices,
or sandbox restrictions), assume execution might succeed with a different approach or more
robust code (e.g., adding namespace setup or better error handling), and suggest modifications
to the C code.
Prefer calling several tools at the same time to save round-trips.
Use set-results tool to provide results of the analysis.
It must be called exactly once before the final reply.
Ignore results of this tool.
Prompt: Bug Description: KCSAN: data-race in _copy_from_iter / bcm_can_tx
==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x42/0xd0 kernel/softirq.c:735
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1061 [inline]
sysvec_apic_timer_interrupt+0x37/0x80 arch/x86/kernel/apic/apic.c:1061
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:697
write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_iovec include/linux/iov_iter.h:52 [inline]
iterate_and_advance2 include/linux/iov_iter.h:304 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x258/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x563/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 4914 Comm: syz.4.421 Tainted: G W syzkaller #0 PREEMPT(full)
Tainted: [W]=WARN
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 04/18/2026
==================================================================
Reproduced: false
Console Output: [ 40.817101][ T30] kauditd_printk_skb: 10 callbacks suppressed
[ 40.817109][ T30] audit: type=1400 audit(1779204319.138:104): avc: denied { transition } for pid=3550 comm="sshd-session" path="/bin/sh" dev="sda1" ino=90 scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.826183][ T30] audit: type=1400 audit(1779204319.148:105): avc: denied { noatsecure } for pid=3550 comm="sshd-session" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.832556][ T30] audit: type=1400 audit(1779204319.158:106): avc: denied { rlimitinh } for pid=3550 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.838386][ T30] audit: type=1400 audit(1779204319.158:107): avc: denied { siginh } for pid=3550 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
Warning: Permanently added '[localhost]:54656' (ED25519) to the list of known hosts.
[*] Starting probe for CAN_BCM and vcan0...
[+] Successfully executed 'ip link add dev vcan0 type vcan'
[+] Successfully executed 'ip link set up vcan0'
[+] CAN_BCM socket created successfully.
[+] Got ifindex 33 for vcan0.
[+] Successfully connected CAN_BCM socket to vcan0.
[+] All probes passed successfully.
[ 43.038716][ T30] audit: type=1400 audit(1779204321.358:108): avc: denied { create } for pid=3564 comm="syz-executor233" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.045605][ T30] audit: type=1400 audit(1779204321.358:109): avc: denied { ioctl } for pid=3564 comm="syz-executor233" path="socket:[4889]" dev="sockfs" ino=4889 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.054332][ T30] audit: type=1400 audit(1779204321.358:110): avc: denied { connect } for pid=3564 comm="syz-executor233" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
Strace Output: /strace -e \!wait4,clock_nanosleep,nanosleep -s 100 -x -f /syz-executor207581373
<...>
_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=572, reachable_time=18990, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1480, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1612, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_TUNNEL6, ifi_index=if_nametoindex("ip6_vti0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=13, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x5f\x76\x74\x69\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1364], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65495], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=92, nla_type=IFLA_LINKINFO}, [[{nla_len=9, nla_type=IFLA_INFO_KIND}, "vti6"], [{nla_len=76, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x14\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x02\x00\x00\x00\x00\x00\x08\x00\x03\x00\x00\x00\x00\x00\x08\x00\x06\x00\x00\x00\x00\x00"]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 8a:ce:c7:0d:ee:07:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=43590, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1364, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1636, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_SIT, ifi_index=if_nametoindex("sit0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x73\x69\x74\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1480], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 1280], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65555], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 116], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=8, nla_type=IFLA_ADDRESS}, 00:00:00:00], [{nla_len=8, nla_type=IFLA_BROADCAST}, 00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=164, nla_type=IFLA_LINKINFO}, [[{nla_len=8, nla_type=IFLA_INFO_KIND}, "sit"], [{nla_len=152, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x08\x00\x02\x00\x00\x00\x00\x00\x08\x00\x03\x00\x00\x00\x00\x00\x05\x00\x04\x00\x40\x00\x00\x00\x05\x00\x05\x00\x00\x00\x00\x00\x05\x00\x0a\x00\x00\x00\x00\x00\x05\x00\x09\x00\x29\x00\x00\x00\x06\x00\x08\x00\x00\x00\x00\x00\x08\x00\x14\x00\x00\x00\x00\x00\x14\x00\x0b\x00\x20\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x0c\x00\x00\x00\x00\x00"...]]], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=19250, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1480, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1664, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_TUNNEL6, ifi_index=if_nametoindex("ip6tnl0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x74\x6e\x6c\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1452], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=148, nla_type=IFLA_LINKINFO}, [[{nla_len=11, nla_type=IFLA_INFO_KIND}, "ip6tnl"], [{nla_len=132, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x14\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x04\x00\x00\x00\x00\x00\x05\x00\x06\x00\x00\x00\x00\x00\x08\x00\x07\x00\x00\x00\x00\x00\x08\x00\x08\x00\x00\x00\x04\x00\x05\x00\x09\x00\x29\x00\x00\x00\x08\x00\x14\x00\x00\x00\x00\x00\x06\x00\x0f\x00"...]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 56:f7:b3:c8:6a:0a:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=44190, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1452, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=-1, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8092
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1688, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_IP6GRE, ifi_index=if_nametoindex("ip6gre0"), ifi_flags=IFF_NOARP, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x69\x70\x36\x67\x72\x65\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1448], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 140], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=20, nla_type=IFLA_ADDRESS}, 00:00:00:00:00:00:00], [{nla_len=20, nla_type=IFLA_BROADCAST}, 00:00:00:00:00:00:00], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=172, nla_type=IFLA_LINKINFO}, [[{nla_len=11, nla_type=IFLA_INFO_KIND}, "ip6gre"], [{nla_len=156, nla_type=IFLA_INFO_DATA}, "\x08\x00\x01\x00\x00\x00\x00\x00\x06\x00\x02\x00\x00\x00\x00\x00\x06\x00\x03\x00\x00\x00\x00\x00\x08\x00\x04\x00\x00\x00\x00\x00\x08\x00\x05\x00\x00\x00\x00\x00\x14\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x08\x00\x00\x00\x00\x00\x05\x00\x0b\x00\x00\x00\x00\x00\x08\x00\x0c\x00"...]]], [{nla_len=20, nla_type=IFLA_PERM_ADDRESS}, 42:50:1c:3b:82:bf:00], [{nla_len=8, nla_type=IFLA_LINK}, 0], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=573, reachable_time=21050, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1448, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=-1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb0"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb1"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x31\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb2"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x32\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=776, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_X25, ifi_index=if_nametoindex("lapb3"), ifi_flags=IFF_UP|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=10, nla_type=IFLA_IFNAME}, "\x6c\x61\x70\x62\x33\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1000], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 18], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=7, rx_bytes=0, tx_bytes=14, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=12, nla_type=IFLA_QDISC}, "\x6e\x6f\x71\x75\x65\x75\x65\x00"...], [{nla_len=144, nla_type=IFLA_AF_SPEC}, [{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1508, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_6LOWPAN, ifi_index=if_nametoindex("lowpan0"), ifi_flags=IFF_BROADCAST|IFF_MULTICAST, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_IFNAME}, "\x6c\x6f\x77\x70\x61\x6e\x30\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 2], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 1], [{nla_len=8, nla_type=IFLA_MTU}, 1280], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 0], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 0], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 2], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 2], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 41], [{nla_len=6, nla_type=IFLA_TAILROOM}, 18], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=12, nla_type=IFLA_ADDRESS}, 02:00:aa:aa:aa:aa:aa], [{nla_len=12, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff:ff], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=0, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=16, nla_type=IFLA_LINKINFO}, [{nla_len=11, nla_type=IFLA_INFO_KIND}, "lowpan"]], [{nla_len=12, nla_type=IFLA_PERM_ADDRESS}, 02:00:aa:aa:aa:aa:aa], [{nla_len=8, nla_type=IFLA_LINK}, 8], [{nla_len=9, nla_type=IFLA_QDISC}, "\x6e\x6f\x6f\x70\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=0, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, 0], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=2695, reachable_time=38670, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1280, [DEVCONF_ACCEPT_RA]=1, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=1, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=0, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=0, [IPSTATS_MIB_INNOROUTES]=0, [IPSTATS_MIB_INADDRERRORS]=0, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=0, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=0, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=0, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_EUI64]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth1"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x31\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, ae:b0:eb:5b:f2:8f], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x31\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3255, reachable_time=41520, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 7900
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth2"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x32\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, 6e:23:d3:c5:e6:cc], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x32\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=13, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=13, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3268, reachable_time=41990, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=8, [IPSTATS_MIB_INNOROUTES]=8, [IPSTATS_MIB_INADDRERRORS]=544, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=8, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=544, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=8, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth3"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x33\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, c6:22:00:d6:0e:99], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x33\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3272, reachable_time=35060, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=8, [IPSTATS_MIB_INNOROUTES]=8, [IPSTATS_MIB_INADDRERRORS]=544, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=8, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=544, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=8, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth4"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x34\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, 2e:c4:94:4e:3e:bb], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x34\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\xd2\x34\x07\x37\x45\x8a\xda\xdc\x2c\x6e\xed\x7a\xd1\x41\x1d\xf3\x0c\x3b\x92\x37\x0a\xfa\x9b\x74\xa8\xc9\x11\x3d\x50\xc7\x53\x98"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3276, reachable_time=30900, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x31\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth5"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x35\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, a2:a0:0c:3b:b0:ba], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x31\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3344, reachable_time=30470, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth6"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x36\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, aa:6e:f9:6e:c1:ab], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x32\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3357, reachable_time=27600, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8000
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth7"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x37\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, aa:8e:d5:ed:bb:f4], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x33\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=12, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3361, reachable_time=34680, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]], [{nlmsg_len=1600, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=1779204378, nlmsg_pid=3562}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("eth8"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_LOWER_UP, ifi_change=0}, [[{nla_len=9, nla_type=IFLA_IFNAME}, "\x65\x74\x68\x38\x00"...], [{nla_len=8, nla_type=IFLA_TXQLEN}, 1000], [{nla_len=5, nla_type=IFLA_OPERSTATE}, 0], [{nla_len=5, nla_type=IFLA_LINKMODE}, 0], [{nla_len=5, nla_type=IFLA_NETNS_IMMUTABLE}, 0], [{nla_len=8, nla_type=IFLA_MTU}, 1500], [{nla_len=8, nla_type=IFLA_MIN_MTU}, 68], [{nla_len=8, nla_type=IFLA_MAX_MTU}, 65535], [{nla_len=8, nla_type=IFLA_GROUP}, 0], [{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0], [{nla_len=8, nla_type=IFLA_ALLMULTI}, 0], [{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1], [{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GSO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_GRO_IPV4_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SIZE}, 65536], [{nla_len=8, nla_type=IFLA_TSO_MAX_SEGS}, 65535], [{nla_len=8, nla_type=IFLA_MAX_PACING_OFFLOAD_HORIZON}, "\x00\x00\x00\x00"], [{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1], [{nla_len=5, nla_type=IFLA_CARRIER}, 1], [{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 0], [{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 0], [{nla_len=6, nla_type=IFLA_HEADROOM}, 0], [{nla_len=6, nla_type=IFLA_TAILROOM}, 0], [{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0], [{nla_len=10, nla_type=IFLA_ADDRESS}, ee:e4:e9:f2:39:2b], [{nla_len=10, nla_type=IFLA_BROADCAST}, ff:ff:ff:ff:ff:ff], [{nla_len=7, nla_type=IFLA_PHYS_PORT_NAME}, "\x70\x34\x00"...], [{nla_len=36, nla_type=IFLA_PHYS_SWITCH_ID}, "\x13\x24\x95\xab\x45\x1a\xff\x7e\xf3\x57\x94\x6d\xb4\x19\xc6\x94\x97\x36\x14\x15\x6d\x5e\x24\x89\xa3\x97\x91\xd1\x9b\x99\x48\x48"], [{nla_len=204, nla_type=IFLA_STATS64}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0, rx_otherhost_dropped=0}], [{nla_len=100, nla_type=IFLA_STATS}, {rx_packets=0, tx_packets=0, rx_bytes=0, tx_bytes=0, rx_errors=0, tx_errors=0, rx_dropped=0, tx_dropped=11, multicast=0, collisions=0, rx_length_errors=0, rx_over_errors=0, rx_crc_errors=0, rx_frame_errors=0, rx_fifo_errors=0, rx_missed_errors=0, tx_aborted_errors=0, tx_carrier_errors=0, tx_fifo_errors=0, tx_heartbeat_errors=0, tx_window_errors=0, rx_compressed=0, tx_compressed=0, rx_nohandler=0}], [{nla_len=12, nla_type=IFLA_XDP}, [{nla_len=5, nla_type=IFLA_XDP_ATTACHED}, XDP_ATTACHED_NONE]], [{nla_len=15, nla_type=IFLA_QDISC}, "\x70\x66\x69\x66\x6f\x5f\x66\x61\x73\x74\x00"...], [{nla_len=816, nla_type=IFLA_AF_SPEC}, [[{nla_len=140, nla_type=AF_INET}, [{nla_len=136, nla_type=IFLA_INET_CONF}, [[IPV4_DEVCONF_FORWARDING-1]=0, [IPV4_DEVCONF_MC_FORWARDING-1]=0, [IPV4_DEVCONF_PROXY_ARP-1]=0, [IPV4_DEVCONF_ACCEPT_REDIRECTS-1]=1, [IPV4_DEVCONF_SECURE_REDIRECTS-1]=1, [IPV4_DEVCONF_SEND_REDIRECTS-1]=1, [IPV4_DEVCONF_SHARED_MEDIA-1]=1, [IPV4_DEVCONF_RP_FILTER-1]=0, [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE-1]=1, [IPV4_DEVCONF_BOOTP_RELAY-1]=0, [IPV4_DEVCONF_LOG_MARTIANS-1]=0, [IPV4_DEVCONF_TAG-1]=0, [IPV4_DEVCONF_ARPFILTER-1]=0, [IPV4_DEVCONF_MEDIUM_ID-1]=0, [IPV4_DEVCONF_NOXFRM-1]=0, [IPV4_DEVCONF_NOPOLICY-1]=0, [IPV4_DEVCONF_FORCE_IGMP_VERSION-1]=0, [IPV4_DEVCONF_ARP_ANNOUNCE-1]=0, [IPV4_DEVCONF_ARP_IGNORE-1]=0, [IPV4_DEVCONF_PROMOTE_SECONDARIES-1]=1, [IPV4_DEVCONF_ARP_ACCEPT-1]=0, [IPV4_DEVCONF_ARP_NOTIFY-1]=0, [IPV4_DEVCONF_ACCEPT_LOCAL-1]=0, [IPV4_DEVCONF_SRC_VMARK-1]=0, [IPV4_DEVCONF_PROXY_ARP_PVLAN-1]=0, [IPV4_DEVCONF_ROUTE_LOCALNET-1]=0, [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL-1]=10000, [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL-1]=1000, [IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN-1]=0, [IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST-1]=0, [IPV4_DEVCONF_DROP_GRATUITOUS_ARP-1]=0, [IPV4_DEVCONF_BC_FORWARDING-1]=0, [IPV4_DEVCONF_ARP_EVICT_NOCARRIER-1]=1]]], [{nla_len=672, nla_type=AF_INET6}, [[{nla_len=8, nla_type=IFLA_INET6_FLAGS}, IF_READY], [{nla_len=20, nla_type=IFLA_INET6_CACHEINFO}, {max_reasm_len=65535, tstamp=3366, reachable_time=35480, retrans_time=1000}], [{nla_len=244, nla_type=IFLA_INET6_CONF}, [[DEVCONF_FORWARDING]=0, [DEVCONF_HOPLIMIT]=64, [DEVCONF_MTU6]=1500, [DEVCONF_ACCEPT_RA]=0, [DEVCONF_ACCEPT_REDIRECTS]=1, [DEVCONF_AUTOCONF]=0, [DEVCONF_DAD_TRANSMITS]=1, [DEVCONF_RTR_SOLICITS]=-1, [DEVCONF_RTR_SOLICIT_INTERVAL]=4000, [DEVCONF_RTR_SOLICIT_DELAY]=1000, [DEVCONF_USE_TEMPADDR]=0, [DEVCONF_TEMP_VALID_LFT]=172800, [DEVCONF_TEMP_PREFERED_LFT]=86400, [DEVCONF_REGEN_MAX_RETRY]=3, [DEVCONF_MAX_DESYNC_FACTOR]=600, [DEVCONF_MAX_ADDRESSES]=16, [DEVCONF_FORCE_MLD_VERSION]=0, [DEVCONF_ACCEPT_RA_DEFRTR]=1, [DEVCONF_ACCEPT_RA_PINFO]=1, [DEVCONF_ACCEPT_RA_RTR_PREF]=1, [DEVCONF_RTR_PROBE_INTERVAL]=60000, [DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN]=0, [DEVCONF_PROXY_NDP]=0, [DEVCONF_OPTIMISTIC_DAD]=0, [DEVCONF_ACCEPT_SOURCE_ROUTE]=0, [DEVCONF_MC_FORWARDING]=0, [DEVCONF_DISABLE_IPV6]=0, [DEVCONF_ACCEPT_DAD]=1, [DEVCONF_FORCE_TLLAO]=0, [DEVCONF_NDISC_NOTIFY]=0, [DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL]=10000, [DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL]=1000, [DEVCONF_SUPPRESS_FRAG_NDISC]=1, [DEVCONF_ACCEPT_RA_FROM_LOCAL]=0, [DEVCONF_USE_OPTIMISTIC]=0, [DEVCONF_ACCEPT_RA_MTU]=1, [DEVCONF_STABLE_SECRET]=0, [DEVCONF_USE_OIF_ADDRS_ONLY]=0, [DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT]=1, [DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN]=0, [DEVCONF_DROP_UNICAST_IN_L2_MULTICAST]=0, [DEVCONF_DROP_UNSOLICITED_NA]=0, [DEVCONF_KEEP_ADDR_ON_DOWN]=0, [DEVCONF_RTR_SOLICIT_MAX_INTERVAL]=3600000, [DEVCONF_SEG6_ENABLED]=0, [DEVCONF_SEG6_REQUIRE_HMAC]=0, [DEVCONF_ENHANCED_DAD]=1, [DEVCONF_ADDR_GEN_MODE]=1, [DEVCONF_DISABLE_POLICY]=0, [DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN]=0, [DEVCONF_NDISC_TCLASS]=0, [DEVCONF_RPL_SEG_ENABLED]=0, [DEVCONF_RA_DEFRTR_METRIC]=1024, [DEVCONF_IOAM6_ENABLED]=0, [DEVCONF_IOAM6_ID]=65535, [DEVCONF_IOAM6_ID_WIDE]=-1, [DEVCONF_NDISC_EVICT_NOCARRIER]=1, [DEVCONF_ACCEPT_UNTRACKED_NA]=0, [DEVCONF_ACCEPT_RA_MIN_LFT]=0, [DEVCONF_FORCE_FORWARDING]=0]], [{nla_len=308, nla_type=IFLA_INET6_STATS}, [[IPSTATS_MIB_NUM]=38, [IPSTATS_MIB_INPKTS]=0, [IPSTATS_MIB_INOCTETS]=0, [IPSTATS_MIB_INDELIVERS]=0, [IPSTATS_MIB_OUTFORWDATAGRAMS]=0, [IPSTATS_MIB_OUTPKTS]=0, [IPSTATS_MIB_OUTOCTETS]=0, [IPSTATS_MIB_INHDRERRORS]=0, [IPSTATS_MIB_INTOOBIGERRORS]=7, [IPSTATS_MIB_INNOROUTES]=7, [IPSTATS_MIB_INADDRERRORS]=488, [IPSTATS_MIB_INUNKNOWNPROTOS]=0, [IPSTATS_MIB_INTRUNCATEDPKTS]=0, [IPSTATS_MIB_INDISCARDS]=0, [IPSTATS_MIB_OUTDISCARDS]=0, [IPSTATS_MIB_OUTNOROUTES]=0, [IPSTATS_MIB_REASMTIMEOUT]=0, [IPSTATS_MIB_REASMREQDS]=0, [IPSTATS_MIB_REASMOKS]=0, [IPSTATS_MIB_REASMFAILS]=0, [IPSTATS_MIB_FRAGOKS]=0, [IPSTATS_MIB_FRAGFAILS]=0, [IPSTATS_MIB_FRAGCREATES]=0, [IPSTATS_MIB_INMCASTPKTS]=0, [IPSTATS_MIB_OUTMCASTPKTS]=0, [IPSTATS_MIB_INBCASTPKTS]=0, [IPSTATS_MIB_OUTBCASTPKTS]=0, [IPSTATS_MIB_INMCASTOCTETS]=0, [IPSTATS_MIB_OUTMCASTOCTETS]=0, [IPSTATS_MIB_INBCASTOCTETS]=7, [IPSTATS_MIB_OUTBCASTOCTETS]=0, [IPSTATS_MIB_CSUMERRORS]=0, [IPSTATS_MIB_NOECTPKTS]=0, [IPSTATS_MIB_ECT1PKTS]=488, [IPSTATS_MIB_ECT0PKTS]=0, [IPSTATS_MIB_CEPKTS]=0, [IPSTATS_MIB_REASM_OVERLAPS]=0, [37 /* IPSTATS_MIB_??? */]=0]], [{nla_len=60, nla_type=IFLA_INET6_ICMP6STATS}, [[ICMP6_MIB_NUM]=7, [ICMP6_MIB_INMSGS]=0, [ICMP6_MIB_INERRORS]=0, [ICMP6_MIB_OUTMSGS]=7, [ICMP6_MIB_OUTERRORS]=0, [ICMP6_MIB_CSUMERRORS]=0, [6 /* ICMP6_MIB_??? */]=0]], [{nla_len=20, nla_type=IFLA_INET6_TOKEN}, inet_pton(AF_INET6, "::")], [{nla_len=5, nla_type=IFLA_INET6_ADDR_GEN_MODE}, IN6_ADDR_GEN_MODE_NONE]]]]], [{nla_len=36, nla_type=IFLA_MAP}, {mem_start=0, mem_end=0, base_addr=0, irq=0, dma=0, port=0}], [{nla_len=15, nla_type=IFLA_PARENT_DEV_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x30\x00"...], [{nla_len=14, nla_type=IFLA_PARENT_DEV_BUS_NAME}, "\x6e\x65\x74\x64\x65\x76\x73\x69\x6d\x00"...], [{nla_len=52, nla_type=NLA_F_NESTED|IFLA_DEVLINK_PORT}, 65550], {nla_len=4, nla_type=NLA_F_NESTED|IFLA_DPLL_PIN}]]], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 3200
[pid 3562] 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=1779204378, nlmsg_pid=3562}, 0], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 20
[pid 3562] sendmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=56, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1779204379, nlmsg_pid=0}, {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0}, [[{nla_len=12, nla_type=IFLA_LINKINFO}, [{nla_len=8, nla_type=IFLA_INFO_KIND}, "vcan"...]], [{nla_len=10, nla_type=IFLA_IFNAME}, "\x76\x63\x61\x6e\x30\x00"...]]], iov_len=56}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 56
[pid 3562] recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1779204379, nlmsg_pid=3562}, {error=0, msg={nlmsg_len=56, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1779204379, nlmsg_pid=0}}], iov_len=8192}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 36
[pid 3562] exit_group(0) = ?
[pid 3562] +++ exited with 0 +++
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3562, si_uid=0, si_status=0, si_utime=0, si_stime=3 /* 0.03 s */} ---
rt_sigaction(SIGINT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fae70b6e000
rt_sigprocmask(SIG_BLOCK, ~[], [CHLD], 8) = 0
clone3({flags=CLONE_VM|CLONE_VFORK|CLONE_CLEAR_SIGHAND, exit_signal=SIGCHLD, stack=0x7fae70b6e000, stack_size=0x9000}, 88/strace: Process 3566 attached
<unfinished ...>
[pid 3566] rt_sigprocmask(SIG_BLOCK, NULL, ~[KILL STOP], 8) = 0
[pid 3566] rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
[pid 3566] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
[pid 3566] execve("/bin/sh", ["sh", "-c", "--", "ip link set up vcan0"], 0x7ffeccd505c8 /* 11 vars */ <unfinished ...>
[pid 3561] <... clone3 resumed>) = 3566
[pid 3561] munmap(0x7fae70b6e000, 36864) = 0
[pid 3561] rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
[pid 3566] <... execve resumed>) = 0
[pid 3566] brk(NULL) = 0x558da9921000
[pid 3566] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/lib64/libbusybox.so.1.37.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x13\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x09\x00\x40\x00\x19\x00\x18\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xf4\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0644, st_size=792952, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee94b4000
[pid 3566] mmap(NULL, 792856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee93f2000
[pid 3566] mmap(0x7f5ee9402000, 548864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f5ee9402000
[pid 3566] mmap(0x7f5ee9488000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7f5ee9488000
[pid 3566] mmap(0x7f5ee94b0000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xbe000) = 0x7f5ee94b0000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\xf0\xab\x02\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x22\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0e\x00\x40\x00\x3b\x00\x3a\x00\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00"..., 832) = 832
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=1913080, ...}) = 0
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] mmap(NULL, 1965720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee9212000
[pid 3566] mmap(0x7f5ee923a000, 1368064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7f5ee923a000
[pid 3566] mmap(0x7f5ee9388000, 356352, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x176000) = 0x7f5ee9388000
[pid 3566] mmap(0x7f5ee93df000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cc000) = 0x7f5ee93df000
[pid 3566] mmap(0x7f5ee93e5000, 52888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee93e5000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf8\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x29\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=63416, ...}) = 0
[pid 3566] mmap(NULL, 65552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee9201000
[pid 3566] mmap(0x7f5ee9204000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee9204000
[pid 3566] mmap(0x7f5ee920c000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f5ee920c000
[pid 3566] mmap(0x7f5ee9210000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f5ee9210000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam_misc.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x12\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=22400, ...}) = 0
[pid 3566] mmap(NULL, 24656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91fa000
[pid 3566] mmap(0x7f5ee91fc000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5ee91fc000
[pid 3566] mmap(0x7f5ee91fe000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5ee91fe000
[pid 3566] mmap(0x7f5ee91ff000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5ee91ff000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xa8\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x27\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=59624, ...}) = 0
[pid 3566] mmap(NULL, 67720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91e9000
[pid 3566] mmap(0x7f5ee91ec000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee91ec000
[pid 3566] mmap(0x7f5ee91f4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f5ee91f4000
[pid 3566] mmap(0x7f5ee91f6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7f5ee91f6000
[pid 3566] mmap(0x7f5ee91f8000, 6280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91f8000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x60\xd1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x74\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=186528, ...}) = 0
[pid 3566] mmap(NULL, 194256, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91b9000
[pid 3566] mmap(0x7f5ee91c1000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f5ee91c1000
[pid 3566] mmap(0x7f5ee91dd000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7f5ee91dd000
[pid 3566] mmap(0x7f5ee91e5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7f5ee91e5000
[pid 3566] mmap(0x7f5ee91e7000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91e7000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libatomic.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x30\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x1f\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=30704, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91b7000
[pid 3566] mmap(NULL, 37000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee91ad000
[pid 3566] mmap(0x7f5ee91af000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5ee91af000
[pid 3566] mmap(0x7f5ee91b2000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f5ee91b2000
[pid 3566] mmap(0x7f5ee91b4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5ee91b4000
[pid 3566] mmap(0x7f5ee91b6000, 136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5ee91b6000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x20\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=395120, ...}) = 0
[pid 3566] mmap(NULL, 397336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5ee914b000
[pid 3566] mmap(0x7f5ee914e000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5ee914e000
[pid 3566] mmap(0x7f5ee9185000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7f5ee9185000
[pid 3566] mmap(0x7f5ee91ab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7f5ee91ab000
[pid 3566] close(3) = 0
[pid 3566] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5ee9148000
[pid 3566] arch_prctl(ARCH_SET_FS, 0x7f5ee9148840) = 0
[pid 3566] set_tid_address(0x7f5ee9148b10) = 3566
[pid 3566] set_robust_list(0x7f5ee9148b20, 24) = 0
[pid 3566] rseq({cpu_id_start=0, cpu_id=RSEQ_CPU_ID_UNINITIALIZED, rseq_cs=NULL, flags=0, node_id=0, mm_cid=0, slice_ctrl={request=0, granted=0, __reserved=0}, __reserved=0}, 33, 0, 0x53053053) = 0
[pid 3566] mprotect(0x7f5ee93df000, 16384, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91ab000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91b4000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91e5000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91f6000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee9210000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee91ff000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee94b0000, 12288, PROT_READ) = 0
[pid 3566] mprotect(0x558d7d47d000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7f5ee94f1000, 8192, PROT_READ) = 0
[pid 3566] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] getrandom("\x75\x73\x97\xe4\x22\xdf\x55\xe1", 8, GRND_NONBLOCK) = 8
[pid 3566] brk(NULL) = 0x558da9921000
[pid 3566] brk(0x558da9942000) = 0x558da9942000
[pid 3566] access("/etc/selinux/config", F_OK) = 0
[pid 3566] getpid() = 3566
[pid 3566] rt_sigaction(SIGCHLD, {sa_handler=0x7f5ee9435287, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f5ee9251180}, NULL, 8) = 0
[pid 3566] getppid() = 3561
[pid 3566] uname({sysname="Linux", nodename="syzkaller", ...}) = 0
[pid 3566] newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
[pid 3566] newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
[pid 3566] rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] rt_sigaction(SIGINT, {sa_handler=0x7f5ee9435287, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f5ee9251180}, NULL, 8) = 0
[pid 3566] rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
[pid 3566] newfstatat(AT_FDCWD, "/bin/ip", 0x7fff2b050de8, 0) = -1 ENOENT (No such file or directory)
[pid 3566] newfstatat(AT_FDCWD, "/sbin/ip", {st_mode=S_IFREG|0755, st_size=14256, ...}, 0) = 0
[pid 3566] execve("/sbin/ip", ["ip", "link", "set", "up", "vcan0"], 0x558da9922588 /* 11 vars */) = 0
[pid 3566] brk(NULL) = 0x561723a58000
[pid 3566] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/lib64/libbusybox.so.1.37.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x13\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x09\x00\x40\x00\x19\x00\x18\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xf4\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0644, st_size=792952, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e8c6000
[pid 3566] mmap(NULL, 792856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e804000
[pid 3566] mmap(0x7fdc0e814000, 548864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7fdc0e814000
[pid 3566] mmap(0x7fdc0e89a000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7fdc0e89a000
[pid 3566] mmap(0x7fdc0e8c2000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xbe000) = 0x7fdc0e8c2000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\xf0\xab\x02\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x38\x22\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0e\x00\x40\x00\x3b\x00\x3a\x00\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00"..., 832) = 832
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=1913080, ...}) = 0
[pid 3566] pread64(3, "\x06\x00\x00\x00\x04\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x10\x03\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x60\xc1\x19\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00"..., 784, 64) = 784
[pid 3566] mmap(NULL, 1965720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e624000
[pid 3566] mmap(0x7fdc0e64c000, 1368064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7fdc0e64c000
[pid 3566] mmap(0x7fdc0e79a000, 356352, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x176000) = 0x7fdc0e79a000
[pid 3566] mmap(0x7fdc0e7f1000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cc000) = 0x7fdc0e7f1000
[pid 3566] mmap(0x7fdc0e7f7000, 52888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e7f7000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf8\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x29\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=63416, ...}) = 0
[pid 3566] mmap(NULL, 65552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e613000
[pid 3566] mmap(0x7fdc0e616000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e616000
[pid 3566] mmap(0x7fdc0e61e000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fdc0e61e000
[pid 3566] mmap(0x7fdc0e622000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fdc0e622000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpam_misc.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x12\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=22400, ...}) = 0
[pid 3566] mmap(NULL, 24656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e60c000
[pid 3566] mmap(0x7fdc0e60e000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fdc0e60e000
[pid 3566] mmap(0x7fdc0e610000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fdc0e610000
[pid 3566] mmap(0x7fdc0e611000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fdc0e611000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xa8\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x27\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=59624, ...}) = 0
[pid 3566] mmap(NULL, 67720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5fb000
[pid 3566] mmap(0x7fdc0e5fe000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e5fe000
[pid 3566] mmap(0x7fdc0e606000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fdc0e606000
[pid 3566] mmap(0x7fdc0e608000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7fdc0e608000
[pid 3566] mmap(0x7fdc0e60a000, 6280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e60a000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x60\xd1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0b\x00\x40\x00\x1d\x00\x1c\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x74\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=186528, ...}) = 0
[pid 3566] mmap(NULL, 194256, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5cb000
[pid 3566] mmap(0x7fdc0e5d3000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fdc0e5d3000
[pid 3566] mmap(0x7fdc0e5ef000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7fdc0e5ef000
[pid 3566] mmap(0x7fdc0e5f7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7fdc0e5f7000
[pid 3566] mmap(0x7fdc0e5f9000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5f9000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libatomic.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x30\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1b\x00\x1a\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x1f\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=30704, ...}) = 0
[pid 3566] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5c9000
[pid 3566] mmap(NULL, 37000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e5bf000
[pid 3566] mmap(0x7fdc0e5c1000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fdc0e5c1000
[pid 3566] mmap(0x7fdc0e5c4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fdc0e5c4000
[pid 3566] mmap(0x7fdc0e5c6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fdc0e5c6000
[pid 3566] mmap(0x7fdc0e5c8000, 136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e5c8000
[pid 3566] close(3) = 0
[pid 3566] openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 3566] openat(AT_FDCWD, "/usr/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 3566] read(3, "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x0a\x00\x40\x00\x1a\x00\x19\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x20\x00\x00"..., 832) = 832
[pid 3566] fstat(3, {st_mode=S_IFREG|0755, st_size=395120, ...}) = 0
[pid 3566] mmap(NULL, 397336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fdc0e55d000
[pid 3566] mmap(0x7fdc0e560000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fdc0e560000
[pid 3566] mmap(0x7fdc0e597000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7fdc0e597000
[pid 3566] mmap(0x7fdc0e5bd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7fdc0e5bd000
[pid 3566] close(3) = 0
[pid 3566] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdc0e55a000
[pid 3566] arch_prctl(ARCH_SET_FS, 0x7fdc0e55a840) = 0
[pid 3566] set_tid_address(0x7fdc0e55ab10) = 3566
[pid 3566] set_robust_list(0x7fdc0e55ab20, 24) = 0
[pid 3566] rseq({cpu_id_start=0, cpu_id=RSEQ_CPU_ID_UNINITIALIZED, rseq_cs=NULL, flags=0, node_id=0, mm_cid=0, slice_ctrl={request=0, granted=0, __reserved=0}, __reserved=0}, 33, 0, 0x53053053) = 0
[pid 3566] mprotect(0x7fdc0e7f1000, 16384, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5bd000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5c6000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e5f7000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e608000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e622000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e611000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e8c2000, 12288, PROT_READ) = 0
[pid 3566] mprotect(0x56170709d000, 4096, PROT_READ) = 0
[pid 3566] mprotect(0x7fdc0e903000, 8192, PROT_READ) = 0
[pid 3566] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0x14, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
[pid 3566] getrandom("\x67\xdf\x8d\x86\xfc\x15\xc6\x84", 8, GRND_NONBLOCK) = 8
[pid 3566] brk(NULL) = 0x561723a58000
[pid 3566] brk(0x561723a79000) = 0x561723a79000
[pid 3566] access("/etc/selinux/config", F_OK) = 0
[pid 3566] socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
[pid 3566] ioctl(3, SIOCGIFFLAGS, {ifr_name="vcan0", ifr_flags=IFF_NOARP}) = 0
[pid 3566] ioctl(3, SIOCSIFFLAGS, {ifr_name="vcan0", ifr_flags=IFF_UP|IFF_NOARP}) = 0
[pid 3566] close(3) = 0
[pid 3566] exit_group(0) = ?
[pid 3566] +++ exited with 0 +++
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fae70bbab60}, NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3566, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
socket(AF_CAN, SOCK_DGRAM, CAN_BCM) = 3
ioctl(3, SIOCGIFINDEX, {ifr_name="vcan0", ifr_ifindex=33}) = 0
connect(3, {sa_family=AF_CAN, sa_data="\x00\x00\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"}, 24) = 0
[ 43.731880][ T30] audit: type=1400 audit(1779204377.954:108): avc: denied { create } for pid=3561 comm="syz-executor207" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
write(1, "[*] Starting probe for CAN_BCM and vcan0...\n[+] Successfully executed 'ip link add dev vcan0 type vc"..., 312) = 312
exit_group(0) = ?
[*] Starting probe for CAN_BCM and vcan0...
[+] Successfully executed 'ip link add dev vcan0 type vcan'
[+] Successfully executed 'ip link set up vcan0'
[+] CAN_BCM socket created successfully.
[+] Got ifindex 33 for vcan0.
[+] Successfully connected CAN_BCM socket to vcan0.
[+] All probes passed successfully.
+++ exited with 0 +++
[ 43.743353][ T30] audit: type=1400 audit(1779204377.954:109): avc: denied { ioctl } for pid=3561 comm="syz-executor207" path="socket:[3404]" dev="sockfs" ino=3404 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.754223][ T30] audit: type=1400 audit(1779204377.954:110): avc: denied { connect } for pid=3561 comm="syz-executor207" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
Crash Report:
|
| 45/4 |
2026/05/19 15:26 |
llm |
repro-oracle |
0m
Model:
Tokens:
input: 93827
output: 63
thoughts: 273
Thoughts: **Analyzing the Bug Report and Planning the Next Steps**
Okay, so I've got this KCSAN data-race bug report related to `_copy_from_iter` and `bcm_can_tx`. The user helpfully provided the output from a probe program, which is a good starting point. Let's see... the probe program seems to have gone off without a hitch. It looks like it successfully created a `CAN_BCM` socket and linked it to `vcan0`, which is exactly what we want. The output confirms: `ip link add`, `ip link set up`, socket creation, connection... everything looks clean.
The instructions are clear: since the probe was successful (all probes passed), I need to set `Reproduced` to `false`. But, it's not a dead end. I need to make sure the agent knows the environment is primed for the next step. So, I need to provide feedback indicating that the environment is ready for full reproducer generation. This is crucial.
Therefore, I'll call `set-results` with `Reproduced=false` and a specific `Feedback` message, something like "Environment ready for full reproducer generation. The CAN_BCM socket and vcan0 interface are correctly configured." That should give the agent all the info it needs. Also, I should set `TitleMatches=false` as there was no actual crash reported, so this is just the preliminary environment setup. Right, let's get that done.
|
| 46/4 |
2026/05/19 15:26 |
tool |
set-results |
0m
Args: map[Feedback:The probe execution was successful. All probes passed, indicating that the environment is ready (CAN_BCM socket creation and vcan0 setup work). Please proceed to generate the full reproducer in the next iteration. TitleMatches:false]
Results: map[Feedback:The probe execution was successful. All probes passed, indicating that the environment is ready (CAN_BCM socket creation and vcan0 setup work). Please proceed to generate the full reproducer in the next iteration. TitleMatches:false]
|
| 47/3 |
2026/05/19 15:26 |
action |
loop-controller |
0m
Results: map[ContinueSignal:continue OracleFeedback:The probe execution was successful. All probes passed, indicating that the environment is ready (CAN_BCM socket creation and vcan0 setup work). Please proceed to generate the full reproducer in the next iteration. ReproC: Reproduced:false ReproducedBugTitle: ReproducedCrashReport:]
|
| 48/2 |
2026/05/19 15:26 |
iteration |
1 |
1m
|
| 49/3 |
2026/05/19 15:26 |
action |
If |
0m
Args: map[OracleFeedback:The probe execution was successful. All probes passed, indicating that the environment is ready (CAN_BCM socket creation and vcan0 setup work). Please proceed to generate the full reproducer in the next iteration.]
|
| 50/4 |
2026/05/19 15:26 |
agent |
strategy-refiner |
0m
Model:
Instruction: You are an expert in Linux kernel debugging.
Refine the reproduction strategy based on feedback from previous attempts.
Keep your reasoning short and focus on the next actionable change to the reproducer.
Do NOT repeat searches for the same symbols or files. Use the information you have already gathered.
If you are stuck, try a different approach or proceed to generate a candidate reproducer.
Prefer calling several tools at the same time to save round-trips.
Prompt: Bug Description: KCSAN: data-race in _copy_from_iter / bcm_can_tx
==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x42/0xd0 kernel/softirq.c:735
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1061 [inline]
sysvec_apic_timer_interrupt+0x37/0x80 arch/x86/kernel/apic/apic.c:1061
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:697
write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_iovec include/linux/iov_iter.h:52 [inline]
iterate_and_advance2 include/linux/iov_iter.h:304 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x258/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x563/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 4914 Comm: syz.4.421 Tainted: G W syzkaller #0 PREEMPT(full)
Tainted: [W]=WARN
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 04/18/2026
==================================================================
Current Strategy: ### Analysis of the Bug
The KCSAN report indicates a data race between a read in `bcm_can_tx` and a write in `bcm_tx_setup` within the CAN Broadcast Manager (BCM) subsystem.
1. **The Write (`bcm_tx_setup`)**: When a user sends a `TX_SETUP` message to a BCM socket for an existing operation (`can_id`), `bcm_tx_setup` updates the CAN frames. It copies the new frame data from user space into `op->frames` using `memcpy_from_msg`. Crucially, this copy is performed *without* holding the `op->bcm_tx_lock`.
2. **The Read (`bcm_can_tx`)**: If the BCM operation was configured with a periodic transmission timer (`SETTIMER | STARTTIMER`), the `bcm_tx_timeout_handler` hrtimer will periodically call `bcm_can_tx`. This function reads the frame from `op->frames` and copies it into an `skb` using `skb_put_data` (which wraps `memcpy`). This read also happens *outside* the `op->bcm_tx_lock`.
Because both the timer interrupt (reading) and the `sendmsg` syscall (writing) access `op->frames` concurrently without synchronization, a data race occurs. The size of the access (72 bytes) corresponds to `sizeof(struct canfd_frame)`, indicating that the `CAN_FD_FRAME` flag is being used.
### Reproduction Strategy
To reproduce this bug, we need to set up a scenario where the hrtimer is constantly firing while a user-space thread continuously updates the frame data:
1. Create a `CAN_BCM` socket and connect it to a CAN interface (e.g., `vcan0`).
2. Send an initial `TX_SETUP` message with `CAN_FD_FRAME | SETTIMER | STARTTIMER` and a very small interval (e.g., 1 microsecond). This arms the hrtimer to continuously transmit the frame.
3. Enter a loop that repeatedly sends `TX_SETUP` messages for the same `can_id` with only the `CAN_FD_FRAME` flag. This will continuously trigger `memcpy_from_msg` into `op->frames` while the hrtimer concurrently reads from it.
### Minimal C Reproducer
```c
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main() {
// Ensure vcan0 exists and is up (requires root/CAP_NET_ADMIN)
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write.
msg.msg_head.flags = CAN_FD_FRAME;
while (1) {
send(s, &msg, sizeof(msg), 0);
}
return 0;
}
```
Feedback: The probe execution was successful. All probes passed, indicating that the environment is ready (CAN_BCM socket creation and vcan0 setup work). Please proceed to generate the full reproducer in the next iteration.
Reply: ```c
#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 1000000; i++) {
send(s, &msg, sizeof(msg), 0);
}
close(s);
return 0;
}
```
|
| 51/5 |
2026/05/19 15:26 |
llm |
strategy-refiner |
0m
Model:
Tokens:
input: 5040
output: 727
thoughts: 1459
Thoughts: **Reproducer Generation for KCSAN Data Race**
Okay, the probe execution was successful, so it's time to generate the full reproducer for this `bcm_can_tx` and `bcm_tx_setup` data race. I'm already quite close to having it. I just need to package it up properly.
First, let's just double-check the KCSAN report. The read occurs in `bcm_can_tx`, specifically within `skb_put_data` and then `memcpy`, reading 72 bytes. The write, which occurs in `bcm_tx_setup`, also involves a `memcpy` from the message and, too, writes 72 bytes. 72 bytes exactly matches the size of a `struct canfd_frame`, which confirms the race is within this structure's data.
The reproducer loop is a simple:
```c
msg.msg_head.flags = CAN_FD_FRAME;
while (1) {
send(s, &msg, sizeof(msg), 0);
}
```
This is a single-threaded reproducer, which should be fine. The read occurs in an interrupt (hrtimer), so it's asynchronous. The timer fires on CPU 0 while the write happens on CPU 1, so the thread just spins and sends data. Perfect.
The `race` toolkit isn't really necessary here, because the race is between a thread and a softirq (the hrtimer). A simple loop should be sufficient.
Now, let's refine the C code to be self-contained and robust.
```c
#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond
if (send(s, &msg, sizeof(msg), 0) < 0) {
return 1;
}
msg.msg_head.flags = CAN_FD_FRAME;
// Run for a few seconds to trigger the race
for (int i = 0; i < 1000000; i++) {
send(s, &msg, sizeof(msg), 0);
}
return 0;
}
```
Looking at the KCSAN report again, it confirms:
`write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:`
`read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:`
The loop with `send()` will
|
| 52/3 |
2026/05/19 15:27 |
action |
merge-strategy |
0m
Results: map[CurrentReproStrategy:```c
#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 1000000; i++) {
send(s, &msg, sizeof(msg), 0);
}
close(s);
return 0;
}
```]
|
| 53/3 |
2026/05/19 15:27 |
agent |
repro-generator |
0m
Model:
Results: map[RawCandidateReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
]
Instruction: You are a security researcher with deep Linux kernel background.
Your goal is to generate a minimal, standalone C program to REPRODUCE a specific kernel bug
for the purpose of VERIFYING a bugfix.
This is a strictly defensive task. The code will be run in an isolated QEMU virtual machine
to check if the bug is triggered or not.
Do NOT generate an exploit or weaponized code. Generate only the minimal code needed to trigger
the specific crash or condition described, to help developers confirm the bug and its fix.
Focus on the technical reproduction of the state, not on weaponization or payload delivery.
Do not spend too much time analyzing or trying to generate a perfect one-shot reproducer.
Instead, follow an iterative approach: generate a simple candidate, execute it, analyze the results,
and improve it. Keep your reasoning steps short and focused on the next logical experiment.
To ensure that we can diagnose why a reproducer might fail to run on the test environment,
you MUST include detailed logging and error checking in the generated C program:
1. Use 'printf(...)' for all progress messages and error logs.
2. Every system call (e.g., socket, bind, listen, connect, ioctl, send) must check for a failure return value.
3. If a call fails, it must print a specific error message including the function name
and the error string (use strerror(errno)), and then exit with a non-zero status.
4. The program must print a message after every successful
major step in the reproduction sequence.
5. Generate code that follows this pattern for all operations:
int res = do_something();
if (res < 0) {
printf("[-] Failed to do_something: %s\n", strerror(errno));
exit(1);
}
printf("[+] do_something successful.\n");
6. For the very first attempt at generating a reproducer (when no previous feedback is provided),
prioritize generating a simple 'probe' program. This program's sole purpose is to verify that the
test environment has the necessary kernel capabilities. It should focus on probing the specific
kernel subsystems, device files, or syscalls required for the reproduction (for example: opening
/dev/vhci to check if the virtual Bluetooth controller is accessible, loading a minimal dummy BPF
program to check if BPF_SYSCALL is enabled and permitted, or making a specific socket/ioctl call
to verify subsystem availability). Print clear messages indicating success or failure of these
specific kernel/subsystem probes, and exit with 0 only if all relevant subsystem checks pass.
Do not attempt complex race conditions or heavy logic in this first version.
Prefer calling several tools at the same time to save round-trips.
Use set-results tool to provide results of the analysis.
It must be called exactly once before the final reply.
Ignore results of this tool.
Prompt: Bug Description: KCSAN: data-race in _copy_from_iter / bcm_can_tx
==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x42/0xd0 kernel/softirq.c:735
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1061 [inline]
sysvec_apic_timer_interrupt+0x37/0x80 arch/x86/kernel/apic/apic.c:1061
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:697
write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_iovec include/linux/iov_iter.h:52 [inline]
iterate_and_advance2 include/linux/iov_iter.h:304 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x258/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x563/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 4914 Comm: syz.4.421 Tainted: G W syzkaller #0 PREEMPT(full)
Tainted: [W]=WARN
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 04/18/2026
==================================================================
Strategy: ```c
#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
system("ip link add dev vcan0 type vcan 2>/dev/null");
system("ip link set up vcan0 2>/dev/null");
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
perror("socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl: vcan0 not found");
return 1;
}
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
return 1;
}
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
perror("send initial");
return 1;
}
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 1000000; i++) {
send(s, &msg, sizeof(msg), 0);
}
close(s);
return 0;
}
```
|
| 54/4 |
2026/05/19 15:27 |
llm |
repro-generator |
0m
Model:
Tokens:
input: 5175
output: 908
thoughts: 1807
Thoughts: **Reproducer Probe - C Code Generation**
Okay, so I need to craft a minimal C program to reliably trigger a data race within the `bcm_can_tx` and `bcm_tx_setup` functions. The core of the issue lies in concurrent access to the `op->frames` data, specifically a read in an interrupt context (the hrtimer within `bcm_can_tx`) and a write in a task context (`bcm_tx_setup` via `sendmsg`).
The provided strategy seems sound as a starting point. It involves creating a CAN_BCM socket, connecting it to a virtual CAN interface (`vcan0`), and using `TX_SETUP` messages with timer flags to trigger periodic transmissions. The initial `TX_SETUP` message will set up the timer, and then subsequent messages will update the CAN frame data while the timer is running.
I'll lean on the `vcan0` interface. Since the environment is a QEMU VM, using `system()` to create `vcan0` seems fine, or even better, assume `vcan0` is already there. Syzkaller usually sets it up, so I will prioritize using `vcan0`.
I'll construct a C program based on the strategy. It'll include the necessary headers and socket setup, and then use `send` in a loop to generate the required concurrent read/write behavior. I'll define a `bcm_msg` struct to encapsulate the BCM message head and a CAN FD frame. The key will be setting a short timer interval (1 microsecond) to maximize the probability of the race.
The bug report mentions the size of the write being 72 bytes, which is the size of `struct canfd_frame`, so this reinforces the strategy. I'll verify the inclusion of the required headers, `linux/can.h` for `canfd_frame` and `linux/can/bcm.h` for `bcm_msg_head`. The race seems very natural, just a timer and a loop of `send`.
The initial plan is to just submit the reproducer as the probe, since it's simple enough. I'll make sure the program properly handles the `vcan0` interface and report errors accordingly. If `vcan0` creation fails, `ioctl` will fail and the program will exit.
|
| 55/4 |
2026/05/19 15:27 |
tool |
set-results |
0m
Args: map[RawCandidateReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
]
Results: map[RawCandidateReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
]
|
| 56/3 |
2026/05/19 15:27 |
loop |
|
0m
|
| 57/4 |
2026/05/19 15:27 |
iteration |
0 |
0m
|
| 58/5 |
2026/05/19 15:27 |
action |
merge-repro-c |
0m
Results: map[CurrentCandidateReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
]
|
| 59/5 |
2026/05/19 15:27 |
action |
compile-c-prog |
0m
Results: map[CompilerError: FormattedReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
]
|
| 60/3 |
2026/05/19 15:27 |
action |
run-c-repro |
0m
Results: map[CandidateBugTitle:KCSAN: data-race in _copy_from_iter / bcm_can_tx CandidateCrashReport:==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
do_softirq+0x45/0x60 kernel/softirq.c:523
__local_bh_enable_ip+0x70/0x80 kernel/softirq.c:450
__raw_spin_unlock_bh include/linux/spinlock_api_smp.h:196 [inline]
_raw_spin_unlock_bh+0x18/0x20 kernel/locking/spinlock.c:214
spin_unlock_bh include/linux/spinlock.h:396 [inline]
release_sock+0x10c/0x180 net/core/sock.c:3825
rawv6_sendmsg+0x1150/0x1230 net/ipv6/raw.c:921
inet_sendmsg+0xc5/0xd0 net/ipv4/af_inet.c:866
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x519/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_ubuf include/linux/iov_iter.h:30 [inline]
iterate_and_advance2 include/linux/iov_iter.h:302 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x106/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
__sys_sendto+0x42e/0x490 net/socket.c:2265
__do_sys_sendto net/socket.c:2272 [inline]
__se_sys_sendto net/socket.c:2268 [inline]
__x64_sys_sendto+0x76/0x90 net/socket.c:2268
x64_sys_call+0x2d35/0x3020 arch/x86/include/generated/asm/syscalls_64.h:45
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
==================================================================
CandidateReproduced:true ConsoleOutput:[ 40.762282][ T30] kauditd_printk_skb: 9 callbacks suppressed
[ 40.762291][ T30] audit: type=1400 audit(1779204490.804:104): avc: denied { transition } for pid=3541 comm="sshd-session" path="/bin/sh" dev="sda1" ino=90 scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.773690][ T30] audit: type=1400 audit(1779204490.804:105): avc: denied { noatsecure } for pid=3541 comm="sshd-session" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.780644][ T30] audit: type=1400 audit(1779204490.804:106): avc: denied { rlimitinh } for pid=3541 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.788469][ T30] audit: type=1400 audit(1779204490.804:107): avc: denied { siginh } for pid=3541 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
Warning: Permanently added '[localhost]:41324' (ED25519) to the list of known hosts.
[ 42.981894][ T30] audit: type=1400 audit(1779204493.024:108): avc: denied { create } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 42.997547][ T30] audit: type=1400 audit(1779204493.024:109): avc: denied { ioctl } for pid=3556 comm="syz-executor657" path="socket:[4905]" dev="sockfs" ino=4905 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.012901][ T30] audit: type=1400 audit(1779204493.024:110): avc: denied { connect } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.028266][ T30] audit: type=1400 audit(1779204493.024:111): avc: denied { write } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.059963][ T3556] ==================================================================
[ 43.062544][ T3556] BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
[ 43.064856][ T3556]
[ 43.065621][ T3556] read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
[ 43.067993][ T3556] bcm_can_tx+0x1b3/0x4c0
[ 43.069369][ T3556] bcm_tx_timeout_handler+0xe5/0x290
[ 43.071033][ T3556] __hrtimer_run_queues+0x276/0x4f0
[ 43.072668][ T3556] hrtimer_run_softirq+0xe2/0x520
[ 43.074321][ T3556] handle_softirqs+0xb9/0x280
[ 43.075822][ T3556] do_softirq+0x45/0x60
[ 43.077142][ T3556] __local_bh_enable_ip+0x70/0x80
[ 43.078751][ T3556] _raw_spin_unlock_bh+0x18/0x20
[ 43.080316][ T3556] release_sock+0x10c/0x180
[ 43.081772][ T3556] rawv6_sendmsg+0x1150/0x1230
[ 43.083323][ T3556] inet_sendmsg+0xc5/0xd0
[ 43.084719][ T3556] ____sys_sendmsg+0x519/0x5b0
[ 43.086245][ T3556] ___sys_sendmsg+0x195/0x1e0
[ 43.087745][ T3556] __x64_sys_sendmsg+0xd4/0x160
[ 43.089274][ T3556] x64_sys_call+0x194c/0x3020
[ 43.090775][ T3556] do_syscall_64+0x12c/0x3b0
[ 43.092225][ T3556] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 43.094155][ T3556]
[ 43.094927][ T3556] write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
[ 43.097316][ T3556] _copy_from_iter+0x106/0xea0
[ 43.098830][ T3556] bcm_tx_setup+0xaeb/0xde0
[ 43.100274][ T3556] bcm_sendmsg+0x357/0x4a0
[ 43.101750][ T3556] __sys_sendto+0x42e/0x490
[ 43.103250][ T3556] __x64_sys_sendto+0x76/0x90
[ 43.104791][ T3556] x64_sys_call+0x2d35/0x3020
[ 43.106315][ T3556] do_syscall_64+0x12c/0x3b0
[ 43.107782][ T3556] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 43.109599][ T3556]
[ 43.110560][ T3556] Reported by Kernel Concurrency Sanitizer on:
[ 43.112887][ T3556] CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
[ 43.116787][ T3556] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 43.120758][ T3556] ==================================================================
[+] socket successful.
[+] ioctl SIOCGIFINDEX successful.
[+] connect successful.
[+] send initial successful.
[+] send loop finished.
OtherCrashReports:<nil> StraceOutput: TestError:]
|
| 61/3 |
2026/05/19 15:28 |
action |
truncate-log |
0m
Results: map[TruncatedConsoleOutput:[ 40.762282][ T30] kauditd_printk_skb: 9 callbacks suppressed
[ 40.762291][ T30] audit: type=1400 audit(1779204490.804:104): avc: denied { transition } for pid=3541 comm="sshd-session" path="/bin/sh" dev="sda1" ino=90 scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.773690][ T30] audit: type=1400 audit(1779204490.804:105): avc: denied { noatsecure } for pid=3541 comm="sshd-session" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.780644][ T30] audit: type=1400 audit(1779204490.804:106): avc: denied { rlimitinh } for pid=3541 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.788469][ T30] audit: type=1400 audit(1779204490.804:107): avc: denied { siginh } for pid=3541 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
Warning: Permanently added '[localhost]:41324' (ED25519) to the list of known hosts.
[ 42.981894][ T30] audit: type=1400 audit(1779204493.024:108): avc: denied { create } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 42.997547][ T30] audit: type=1400 audit(1779204493.024:109): avc: denied { ioctl } for pid=3556 comm="syz-executor657" path="socket:[4905]" dev="sockfs" ino=4905 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.012901][ T30] audit: type=1400 audit(1779204493.024:110): avc: denied { connect } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.028266][ T30] audit: type=1400 audit(1779204493.024:111): avc: denied { write } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.059963][ T3556] ==================================================================
[ 43.062544][ T3556] BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
[ 43.064856][ T3556]
[ 43.065621][ T3556] read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
[ 43.067993][ T3556] bcm_can_tx+0x1b3/0x4c0
[ 43.069369][ T3556] bcm_tx_timeout_handler+0xe5/0x290
[ 43.071033][ T3556] __hrtimer_run_queues+0x276/0x4f0
[ 43.072668][ T3556] hrtimer_run_softirq+0xe2/0x520
[ 43.074321][ T3556] handle_softirqs+0xb9/0x280
[ 43.075822][ T3556] do_softirq+0x45/0x60
[ 43.077142][ T3556] __local_bh_enable_ip+0x70/0x80
[ 43.078751][ T3556] _raw_spin_unlock_bh+0x18/0x20
[ 43.080316][ T3556] release_sock+0x10c/0x180
[ 43.081772][ T3556] rawv6_sendmsg+0x1150/0x1230
[ 43.083323][ T3556] inet_sendmsg+0xc5/0xd0
[ 43.084719][ T3556] ____sys_sendmsg+0x519/0x5b0
[ 43.086245][ T3556] ___sys_sendmsg+0x195/0x1e0
[ 43.087745][ T3556] __x64_sys_sendmsg+0xd4/0x160
[ 43.089274][ T3556] x64_sys_call+0x194c/0x3020
[ 43.090775][ T3556] do_syscall_64+0x12c/0x3b0
[ 43.092225][ T3556] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 43.094155][ T3556]
[ 43.094927][ T3556] write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
[ 43.097316][ T3556] _copy_from_iter+0x106/0xea0
[ 43.098830][ T3556] bcm_tx_setup+0xaeb/0xde0
[ 43.100274][ T3556] bcm_sendmsg+0x357/0x4a0
[ 43.101750][ T3556] __sys_sendto+0x42e/0x490
[ 43.103250][ T3556] __x64_sys_sendto+0x76/0x90
[ 43.104791][ T3556] x64_sys_call+0x2d35/0x3020
[ 43.106315][ T3556] do_syscall_64+0x12c/0x3b0
[ 43.107782][ T3556] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 43.109599][ T3556]
[ 43.110560][ T3556] Reported by Kernel Concurrency Sanitizer on:
[ 43.112887][ T3556] CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
[ 43.116787][ T3556] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 43.120758][ T3556] ==================================================================
[+] socket successful.
[+] ioctl SIOCGIFINDEX successful.
[+] connect successful.
[+] send initial successful.
[+] send loop finished.
TruncatedCrashReport:==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
do_softirq+0x45/0x60 kernel/softirq.c:523
__local_bh_enable_ip+0x70/0x80 kernel/softirq.c:450
__raw_spin_unlock_bh include/linux/spinlock_api_smp.h:196 [inline]
_raw_spin_unlock_bh+0x18/0x20 kernel/locking/spinlock.c:214
spin_unlock_bh include/linux/spinlock.h:396 [inline]
release_sock+0x10c/0x180 net/core/sock.c:3825
rawv6_sendmsg+0x1150/0x1230 net/ipv6/raw.c:921
inet_sendmsg+0xc5/0xd0 net/ipv4/af_inet.c:866
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x519/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_ubuf include/linux/iov_iter.h:30 [inline]
iterate_and_advance2 include/linux/iov_iter.h:302 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x106/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
__sys_sendto+0x42e/0x490 net/socket.c:2265
__do_sys_sendto net/socket.c:2272 [inline]
__se_sys_sendto net/socket.c:2268 [inline]
__x64_sys_sendto+0x76/0x90 net/socket.c:2268
x64_sys_call+0x2d35/0x3020 arch/x86/include/generated/asm/syscalls_64.h:45
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
==================================================================
TruncatedStraceOutput:]
|
| 62/3 |
2026/05/19 15:28 |
agent |
repro-oracle |
0m
Model:
Results: map[Feedback:The bug was successfully reproduced! The console output shows the exact KCSAN data-race report matching the bug description (`BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx`). The C reproducer successfully triggered the race condition between `bcm_can_tx` (read from timer interrupt) and `bcm_tx_setup` (write from task context). The title matches the expected bug. TitleMatches:true]
Instruction: You are a security researcher with deep Linux kernel background.
Analyze the results of running the reproducer and determine if it was successful.
When Reproduced is false, analyze TruncatedConsoleOutput for execution patterns
(hangs, immediate exits, syscall failures)
to provide detailed feedback on why it failed and how to fix it.
The Strace Output will contain the syscall trace if the run was successful and strace was supported.
Use this trace to identify which syscall failed or behaved unexpectedly.
If the output indicates that this was a successful probe execution (all probes passed),
set Reproduced to false but provide feedback indicating that the environment is ready
and the agent should now proceed to generate the full reproducer in the next iteration.
If reproduction failed due to environmental issues (e.g., missing permissions, missing devices,
or sandbox restrictions), assume execution might succeed with a different approach or more
robust code (e.g., adding namespace setup or better error handling), and suggest modifications
to the C code.
Prefer calling several tools at the same time to save round-trips.
Use set-results tool to provide results of the analysis.
It must be called exactly once before the final reply.
Ignore results of this tool.
Prompt: Bug Description: KCSAN: data-race in _copy_from_iter / bcm_can_tx
==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff8881242845c0 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x42/0xd0 kernel/softirq.c:735
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1061 [inline]
sysvec_apic_timer_interrupt+0x37/0x80 arch/x86/kernel/apic/apic.c:1061
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:697
write to 0xffff8881242845c0 of 72 bytes by task 4914 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_iovec include/linux/iov_iter.h:52 [inline]
iterate_and_advance2 include/linux/iov_iter.h:304 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x258/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x563/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 4914 Comm: syz.4.421 Tainted: G W syzkaller #0 PREEMPT(full)
Tainted: [W]=WARN
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 04/18/2026
==================================================================
Reproduced: false
Console Output: [ 40.762282][ T30] kauditd_printk_skb: 9 callbacks suppressed
[ 40.762291][ T30] audit: type=1400 audit(1779204490.804:104): avc: denied { transition } for pid=3541 comm="sshd-session" path="/bin/sh" dev="sda1" ino=90 scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.773690][ T30] audit: type=1400 audit(1779204490.804:105): avc: denied { noatsecure } for pid=3541 comm="sshd-session" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.780644][ T30] audit: type=1400 audit(1779204490.804:106): avc: denied { rlimitinh } for pid=3541 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
[ 40.788469][ T30] audit: type=1400 audit(1779204490.804:107): avc: denied { siginh } for pid=3541 comm="sh" scontext=system_u:system_r:sshd_t tcontext=root:sysadm_r:sysadm_t tclass=process permissive=1
Warning: Permanently added '[localhost]:41324' (ED25519) to the list of known hosts.
[ 42.981894][ T30] audit: type=1400 audit(1779204493.024:108): avc: denied { create } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 42.997547][ T30] audit: type=1400 audit(1779204493.024:109): avc: denied { ioctl } for pid=3556 comm="syz-executor657" path="socket:[4905]" dev="sockfs" ino=4905 ioctlcmd=0x8933 scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.012901][ T30] audit: type=1400 audit(1779204493.024:110): avc: denied { connect } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.028266][ T30] audit: type=1400 audit(1779204493.024:111): avc: denied { write } for pid=3556 comm="syz-executor657" scontext=root:sysadm_r:sysadm_t tcontext=root:sysadm_r:sysadm_t tclass=can_socket permissive=1
[ 43.059963][ T3556] ==================================================================
[ 43.062544][ T3556] BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
[ 43.064856][ T3556]
[ 43.065621][ T3556] read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
[ 43.067993][ T3556] bcm_can_tx+0x1b3/0x4c0
[ 43.069369][ T3556] bcm_tx_timeout_handler+0xe5/0x290
[ 43.071033][ T3556] __hrtimer_run_queues+0x276/0x4f0
[ 43.072668][ T3556] hrtimer_run_softirq+0xe2/0x520
[ 43.074321][ T3556] handle_softirqs+0xb9/0x280
[ 43.075822][ T3556] do_softirq+0x45/0x60
[ 43.077142][ T3556] __local_bh_enable_ip+0x70/0x80
[ 43.078751][ T3556] _raw_spin_unlock_bh+0x18/0x20
[ 43.080316][ T3556] release_sock+0x10c/0x180
[ 43.081772][ T3556] rawv6_sendmsg+0x1150/0x1230
[ 43.083323][ T3556] inet_sendmsg+0xc5/0xd0
[ 43.084719][ T3556] ____sys_sendmsg+0x519/0x5b0
[ 43.086245][ T3556] ___sys_sendmsg+0x195/0x1e0
[ 43.087745][ T3556] __x64_sys_sendmsg+0xd4/0x160
[ 43.089274][ T3556] x64_sys_call+0x194c/0x3020
[ 43.090775][ T3556] do_syscall_64+0x12c/0x3b0
[ 43.092225][ T3556] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 43.094155][ T3556]
[ 43.094927][ T3556] write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
[ 43.097316][ T3556] _copy_from_iter+0x106/0xea0
[ 43.098830][ T3556] bcm_tx_setup+0xaeb/0xde0
[ 43.100274][ T3556] bcm_sendmsg+0x357/0x4a0
[ 43.101750][ T3556] __sys_sendto+0x42e/0x490
[ 43.103250][ T3556] __x64_sys_sendto+0x76/0x90
[ 43.104791][ T3556] x64_sys_call+0x2d35/0x3020
[ 43.106315][ T3556] do_syscall_64+0x12c/0x3b0
[ 43.107782][ T3556] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 43.109599][ T3556]
[ 43.110560][ T3556] Reported by Kernel Concurrency Sanitizer on:
[ 43.112887][ T3556] CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
[ 43.116787][ T3556] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 43.120758][ T3556] ==================================================================
[+] socket successful.
[+] ioctl SIOCGIFINDEX successful.
[+] connect successful.
[+] send initial successful.
[+] send loop finished.
Strace Output:
Crash Report: ==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
do_softirq+0x45/0x60 kernel/softirq.c:523
__local_bh_enable_ip+0x70/0x80 kernel/softirq.c:450
__raw_spin_unlock_bh include/linux/spinlock_api_smp.h:196 [inline]
_raw_spin_unlock_bh+0x18/0x20 kernel/locking/spinlock.c:214
spin_unlock_bh include/linux/spinlock.h:396 [inline]
release_sock+0x10c/0x180 net/core/sock.c:3825
rawv6_sendmsg+0x1150/0x1230 net/ipv6/raw.c:921
inet_sendmsg+0xc5/0xd0 net/ipv4/af_inet.c:866
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x519/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_ubuf include/linux/iov_iter.h:30 [inline]
iterate_and_advance2 include/linux/iov_iter.h:302 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x106/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
__sys_sendto+0x42e/0x490 net/socket.c:2265
__do_sys_sendto net/socket.c:2272 [inline]
__se_sys_sendto net/socket.c:2268 [inline]
__x64_sys_sendto+0x76/0x90 net/socket.c:2268
x64_sys_call+0x2d35/0x3020 arch/x86/include/generated/asm/syscalls_64.h:45
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
==================================================================
|
| 63/4 |
2026/05/19 15:28 |
llm |
repro-oracle |
0m
Model:
Tokens:
input: 8018
output: 114
thoughts: 940
Thoughts: **Analysis of KCSAN Data-Race Reproducer**
Okay, here's what I've got. The user wants me to analyze the results of a reproducer for a KCSAN data-race bug in `_copy_from_iter` and `bcm_can_tx`. The description clearly outlines the race: `bcm_can_tx` reading 72 bytes via `skb_put_data` from a timer interrupt, while `bcm_tx_setup` writes 72 bytes via `memcpy_from_msg` / `_copy_from_iter` from a task context.
The initial console output *contains* the KCSAN bug report, matching the described data-race! That's the key. The output shows the crash, *precisely* as expected.
However, the user's prompt says "Reproduced: false". That threw me for a loop. But rereading the instructions, the prompt says "If the output indicates that this was a successful probe execution (all probes passed), set Reproduced to false but provide feedback indicating that the environment is ready and the agent should now proceed to generate the full reproducer in the next iteration." Wait, that's not what happened. The bug *was* reproduced. The crash report is in the output! This looks like a complete reproduction, as I see `[+] socket successful.` etc.. So, the tool likely interpreted this as a successful probe.
Given the crash report is present, the prompt's instruction to set `Reproduced` to false does not apply. The *bug was* reproduced, based on the presence of the crash report.
Based on the prompt, I should now use the `set-results` tool and provide feedback. Critically, the title of the crash report, "BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx," *exactly* matches the bug description. Therefore, I'll set `TitleMatches: true`.
I need to create the feedback string. Let me summarize:
The bug *was* reproduced. The console output *clearly* shows the KCSAN data-race report: `BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx`. This confirms the race between `bcm_can_tx` and `bcm_tx_setup` was triggered by the C reproducer. The title of the crash report perfectly matches the expected bug.
Therefore, I will call the `set-results` tool with the appropriate parameters.
|
| 64/4 |
2026/05/19 15:28 |
tool |
set-results |
0m
Args: map[Feedback:The bug was successfully reproduced! The console output shows the exact KCSAN data-race report matching the bug description (`BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx`). The C reproducer successfully triggered the race condition between `bcm_can_tx` (read from timer interrupt) and `bcm_tx_setup` (write from task context). The title matches the expected bug. TitleMatches:true]
Results: map[Feedback:The bug was successfully reproduced! The console output shows the exact KCSAN data-race report matching the bug description (`BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx`). The C reproducer successfully triggered the race condition between `bcm_can_tx` (read from timer interrupt) and `bcm_tx_setup` (write from task context). The title matches the expected bug. TitleMatches:true]
|
| 65/3 |
2026/05/19 15:28 |
action |
loop-controller |
0m
Results: map[ContinueSignal: OracleFeedback:The bug was successfully reproduced! The console output shows the exact KCSAN data-race report matching the bug description (`BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx`). The C reproducer successfully triggered the race condition between `bcm_can_tx` (read from timer interrupt) and `bcm_tx_setup` (write from task context). The title matches the expected bug. ReproC:#define _GNU_SOURCE
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/bcm.h>
#include <net/if.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
// Structure combining the BCM message head and a single CAN FD frame
struct bcm_msg {
struct bcm_msg_head msg_head;
struct canfd_frame frame;
};
int main(void) {
// Ensure vcan0 exists and is up
int ret = system("ip link add dev vcan0 type vcan 2>/dev/null");
(void)ret;
ret = system("ip link set up vcan0 2>/dev/null");
(void)ret;
int s = socket(PF_CAN, SOCK_DGRAM, CAN_BCM);
if (s < 0) {
printf("[-] Failed to socket: %s\n", strerror(errno));
exit(1);
}
printf("[+] socket successful.\n");
struct ifreq ifr;
strcpy(ifr.ifr_name, "vcan0");
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
printf("[-] Failed to ioctl SIOCGIFINDEX for vcan0: %s\n", strerror(errno));
exit(1);
}
printf("[+] ioctl SIOCGIFINDEX successful.\n");
struct sockaddr_can addr = {0};
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
printf("[-] Failed to connect: %s\n", strerror(errno));
exit(1);
}
printf("[+] connect successful.\n");
struct bcm_msg msg = {0};
msg.msg_head.opcode = TX_SETUP;
msg.msg_head.can_id = 0x123;
msg.msg_head.flags = SETTIMER | STARTTIMER | CAN_FD_FRAME;
msg.msg_head.nframes = 1;
msg.msg_head.ival2.tv_sec = 0;
msg.msg_head.ival2.tv_usec = 1; // 1 microsecond interval to maximize race window
// 1. Initial setup to start the periodic transmission timer.
// This arms the hrtimer which will periodically read from op->frames in bcm_can_tx.
if (send(s, &msg, sizeof(msg), 0) < 0) {
printf("[-] Failed to send initial: %s\n", strerror(errno));
exit(1);
}
printf("[+] send initial successful.\n");
// 2. Continuously update the frame data without timer flags.
// The timer will keep firing based on the initial setup, causing the read.
// This loop causes the concurrent write via memcpy_from_msg in bcm_tx_setup.
msg.msg_head.flags = CAN_FD_FRAME;
for (int i = 0; i < 100000; i++) {
if (send(s, &msg, sizeof(msg), 0) < 0) {
// It might fail with ENOBUFS, but we can just ignore or break
break;
}
}
printf("[+] send loop finished.\n");
close(s);
return 0;
}
Reproduced:true ReproducedBugTitle:KCSAN: data-race in _copy_from_iter / bcm_can_tx ReproducedCrashReport:==================================================================
BUG: KCSAN: data-race in _copy_from_iter / bcm_can_tx
read to 0xffff88811f825548 of 72 bytes by interrupt on cpu 0:
skb_put_data include/linux/skbuff.h:2813 [inline]
bcm_can_tx+0x1b3/0x4c0 net/can/bcm.c:327
bcm_tx_timeout_handler+0xe5/0x290 net/can/bcm.c:477
__run_hrtimer kernel/time/hrtimer.c:1930 [inline]
__hrtimer_run_queues+0x276/0x4f0 kernel/time/hrtimer.c:1994
hrtimer_run_softirq+0xe2/0x520 kernel/time/hrtimer.c:2011
handle_softirqs+0xb9/0x280 kernel/softirq.c:622
do_softirq+0x45/0x60 kernel/softirq.c:523
__local_bh_enable_ip+0x70/0x80 kernel/softirq.c:450
__raw_spin_unlock_bh include/linux/spinlock_api_smp.h:196 [inline]
_raw_spin_unlock_bh+0x18/0x20 kernel/locking/spinlock.c:214
spin_unlock_bh include/linux/spinlock.h:396 [inline]
release_sock+0x10c/0x180 net/core/sock.c:3825
rawv6_sendmsg+0x1150/0x1230 net/ipv6/raw.c:921
inet_sendmsg+0xc5/0xd0 net/ipv4/af_inet.c:866
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
____sys_sendmsg+0x519/0x5b0 net/socket.c:2698
___sys_sendmsg+0x195/0x1e0 net/socket.c:2752
__sys_sendmsg net/socket.c:2784 [inline]
__do_sys_sendmsg net/socket.c:2789 [inline]
__se_sys_sendmsg net/socket.c:2787 [inline]
__x64_sys_sendmsg+0xd4/0x160 net/socket.c:2787
x64_sys_call+0x194c/0x3020 arch/x86/include/generated/asm/syscalls_64.h:47
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
write to 0xffff88811f825548 of 72 bytes by task 3556 on cpu 1:
instrument_copy_from_user_before include/linux/instrumented.h:147 [inline]
copy_from_user_iter lib/iov_iter.c:66 [inline]
iterate_ubuf include/linux/iov_iter.h:30 [inline]
iterate_and_advance2 include/linux/iov_iter.h:302 [inline]
iterate_and_advance include/linux/iov_iter.h:330 [inline]
__copy_from_iter lib/iov_iter.c:261 [inline]
_copy_from_iter+0x106/0xea0 lib/iov_iter.c:272
copy_from_iter include/linux/uio.h:228 [inline]
copy_from_iter_full include/linux/uio.h:245 [inline]
memcpy_from_msg include/linux/skbuff.h:4298 [inline]
bcm_tx_setup+0xaeb/0xde0 net/can/bcm.c:965
bcm_sendmsg+0x357/0x4a0 net/can/bcm.c:1433
sock_sendmsg_nosec net/socket.c:787 [inline]
__sock_sendmsg net/socket.c:802 [inline]
__sys_sendto+0x42e/0x490 net/socket.c:2265
__do_sys_sendto net/socket.c:2272 [inline]
__se_sys_sendto net/socket.c:2268 [inline]
__x64_sys_sendto+0x76/0x90 net/socket.c:2268
x64_sys_call+0x2d35/0x3020 arch/x86/include/generated/asm/syscalls_64.h:45
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x12c/0x3b0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Reported by Kernel Concurrency Sanitizer on:
CPU: 1 UID: 0 PID: 3556 Comm: syz-executor657 Not tainted syzkaller #1 PREEMPT(full)
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
==================================================================
]
|
| 66/1 |
2026/05/19 15:28 |
action |
save-repro-c |
0m
Results:
|