Bug 95211 - IPsec + VTI: kernel BUG xfrm_input (NULL pointer dereference)
Summary: IPsec + VTI: kernel BUG xfrm_input (NULL pointer dereference)
Status: NEW
Alias: None
Product: Networking
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Stephen Hemminger
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-22 13:28 UTC by Mike Noordermeer
Modified: 2015-04-17 10:21 UTC (History)
1 user (show)

See Also:
Kernel Version: 4.0-rc4, 3.16.7, 3.17.8, 3.18.9
Subsystem:
Regression: No
Bisected commit-id:


Attachments
poison ->outer_mode (1.29 KB, patch)
2015-03-24 14:05 UTC, Alexey Dobriyan
Details | Diff
Panics incl patch (65.59 KB, text/plain)
2015-03-25 11:21 UTC, Mike Noordermeer
Details
Config file (157.09 KB, application/octet-stream)
2015-03-25 11:40 UTC, Mike Noordermeer
Details
XFRM_STATE_ACQ origin (1.11 KB, patch)
2015-03-25 14:58 UTC, Alexey Dobriyan
Details | Diff
Panic incl. debug trace (10.01 KB, application/octet-stream)
2015-03-31 11:33 UTC, Mike Noordermeer
Details
do xfrm_tunnel_check() later (876 bytes, patch)
2015-03-31 12:50 UTC, Alexey Dobriyan
Details | Diff

Description Mike Noordermeer 2015-03-22 13:28:55 UTC
Hi,

I'm getting a fairly consistent kernel panic once or twice a day when
using a VTI tunnel. This problem has been mentioned before [1], but
assumed to be fixed with 3.18 - apparently that's not the case.

The panic involves the xfrm_input function, which calls
xfrm_tunnel_check, which dereferences outer_mode, which is NULL. I
already tried disabling reauth on the IPsec tunnel, to make the tunnel
as stable as possible, but it still panics from time to time (seems to be less often though).

Tested with vanilla 3.16.7, 3.17.8, 3.18.9 and 4.0-rc4. Backtrace for
4.0-rc4 is below, together with some other possibly helpful info. The
exact panic location is:

mike@d-debdev-01:~/linux-4.0-rc4$ addr2line ffffffff8150dca2 -e vmlinux -i -f -p
xfrm_tunnel_check at /home/mike/linux-4.0-rc4/include/net/xfrm.h:1808
    (inlined by) xfrm_input at
/home/mike/linux-4.0-rc4/net/xfrm/xfrm_input.c:241

Thanks,

Mike

[1]: http://marc.info/?t=142495092700001&r=1&w=2


root@p-fw-02:~# ip tunnel
vti1: ip/ip  remote <<right IP 1>>  local <<left IP>>  ttl inherit  key 15
ip_vti0: ip/ip  remote any  local any  ttl inherit  nopmtudisc key 0
vti2: ip/ip  remote <<right IP 2>>  local <<left IP>>  ttl inherit  key 16


root@p-fw-02:~# ip xfrm state
src <<left IP>> dst <<right IP 2>>
    proto esp spi 0xcca59c0d reqid 2 mode tunnel
    replay-window 32 flag af-unspec
    mark 16/0xffffffff
    auth-trunc hmac(sha1) 0x1f620cf9e3b0434f6d5f965b4a83dc25e62f5b11 96
    enc cbc(aes) 0xd9259f7a413d924881c5756da65f490f
src <<right IP 2>> dst <<left IP>>
    proto esp spi 0xc7751dbb reqid 2 mode tunnel
    replay-window 32 flag af-unspec
    mark 16/0xffffffff
    auth-trunc hmac(sha1) 0x64b46cda7791c1f6736317c73fe5275428a97795 96
    enc cbc(aes) 0xeabb8f45e410457897fcaa2a3df64692
src <<left IP>> dst <<right IP 1>>
    proto esp spi 0xc3099c22 reqid 1 mode tunnel
    replay-window 32 flag af-unspec
    mark 15/0xffffffff
    aead rfc4106(gcm(aes)) 0xafc7a185c3bbc7b1a3a41a06e2e61a40ee7dda03 128
src <<right IP 1>> dst <<left IP>>
    proto esp spi 0xcba06a44 reqid 1 mode tunnel
    replay-window 32 flag af-unspec
    mark 15/0xffffffff
    aead rfc4106(gcm(aes)) 0x10d6b583064786efd0286d0e259511fd37d29757 128


root@p-fw-02:~# ip xfrm policy
src 0.0.0.0/0 dst 0.0.0.0/0
    dir fwd priority 3075 ptype main
    mark 16/0xffffffff
    tmpl src <<right IP 2>> dst <<left IP>>
        proto esp reqid 2 mode tunnel
src 0.0.0.0/0 dst 0.0.0.0/0
    dir in priority 3075 ptype main
    mark 16/0xffffffff
    tmpl src <<right IP 2>> dst <<left IP>>
        proto esp reqid 2 mode tunnel
src 0.0.0.0/0 dst 0.0.0.0/0
    dir out priority 3075 ptype main
    mark 16/0xffffffff
    tmpl src <<left IP>> dst <<right IP 2>>
        proto esp reqid 2 mode tunnel
src 0.0.0.0/0 dst 0.0.0.0/0
    dir fwd priority 3075 ptype main
    mark 15/0xffffffff
    tmpl src <<right IP 1>> dst <<left IP>>
        proto esp reqid 1 mode tunnel
src 0.0.0.0/0 dst 0.0.0.0/0
    dir in priority 3075 ptype main
    mark 15/0xffffffff
    tmpl src <<right IP 1>> dst <<left IP>>
        proto esp reqid 1 mode tunnel
src 0.0.0.0/0 dst 0.0.0.0/0
    dir out priority 3075 ptype main
    mark 15/0xffffffff
    tmpl src <<left IP>> dst <<right IP 1>>
        proto esp reqid 1 mode tunnel
src 0.0.0.0/0 dst 0.0.0.0/0
    socket in priority 0 ptype main
src 0.0.0.0/0 dst 0.0.0.0/0
    socket out priority 0 ptype main
src 0.0.0.0/0 dst 0.0.0.0/0
    socket in priority 0 ptype main
src 0.0.0.0/0 dst 0.0.0.0/0
    socket out priority 0 ptype main
src ::/0 dst ::/0
    socket in priority 0 ptype main
src ::/0 dst ::/0
    socket out priority 0 ptype main
src ::/0 dst ::/0
    socket in priority 0 ptype main
src ::/0 dst ::/0
    socket out priority 0 ptype main


[75696.801396] BUG: unable to handle kernel NULL pointer dereference
at 0000000000000034
[75696.824026] IP: [<ffffffff8150dca2>] xfrm_input+0x3c2/0x5a0
[75696.826783] PGD 2d122067 PUD 2d11e067 PMD 0
[75696.828853] Oops: 0000 [#1] SMP
[75696.830427] Modules linked in: authenc hmac seqiv xfrm6_mode_tunnel
xfrm4_mode_tunnel xfrm_user xfrm4_tunnel tunnel4 ipcomp xfrm_ipcomp
esp4 ah4 af_key xfrm_algo act_police cls_basic cls_flow cls_fw cls_u32
sch_tbf sch_prio sch_hfsc sch_htb sch_ingress sch_sfq xt_statistic
xt_CT nf_log_ipv4 nf_log_ipv6 nf_log_common xt_realm xt_LOG
xt_connlimit xt_addrtype xt_comment xt_recent xt_nat ipt_REJECT
nf_reject_ipv4 ipt_MASQUERADE nf_nat_masquerade_ipv4 ipt_ECN
ipt_CLUSTERIP ipt_ah nf_nat_tftp nf_nat_snmp_basic nf_conntrack_snmp
nf_nat_sip nf_nat_pptp nf_nat_proto_gre xt_set ip_set nf_nat_irc
nf_nat_h323 nf_nat_ftp nf_nat_amanda nf_conntrack_sane
nf_conntrack_tftp nf_conntrack_sip nf_conntrack_proto_udplite
nf_conntrack_proto_sctp nf_conntrack_pptp nf_conntrack_proto_gre
ts_kmp nf_conntrack_netlink nf_conntrack_amanda
nf_conntrack_netbios_ns nf_conntrack_broadcast xt_time
nf_conntrack_irc xt_TCPMSS nf_conntrack_h323 nf_conntrack_ftp xt_sctp
xt_TPROXY xt_policy xt_tcpmss xt_pkttype xt_physdev br_netfilter
bridge stp llc xt_owner xt_NFLOG xt_NFQUEUE nfnetlink_log xt_multiport
xt_mark xt_mac xt_limit xt_length xt_iprange xt_helper xt_hashlimit
xt_DSCP xt_dscp xt_dccp xt_connmark xt_CLASSIFY ip6t_REJECT xt_AUDIT
nf_reject_ipv6 xt_tcpudp xt_state nfnetlink ip_vti ip_tunnel
nf_conntrack_ipv6 nf_defrag_ipv6 ip6table_mangle ip6table_raw
ip6table_filter ip6_tables xt_conntrack iptable_mangle iptable_nat
nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 nf_nat nf_conntrack
iptable_raw iptable_filter ip_tables x_tables loop iosf_mbi coretemp
crct10dif_pclmul crc32_pclmul ghash_clmulni_intel snd_pcm aesni_intel
aes_x86_64 snd_timer snd soundcore lrw gf128mul glue_helper
ablk_helper cryptd vmw_balloon psmouse pcspkr serio_raw evdev
parport_pc parport vmwgfx ttm drm_kms_helper drm i2c_piix4 battery
vmw_vmci i2c_core acpi_cpufreq ac button processor thermal_sys shpchp
ext4 crc16 mbcache jbd2 dm_mod sg sr_mod cdrom ata_generic sd_mod
crc32c_intel floppy e1000 ata_piix libata mptspi scsi_transport_spi
mptscsih mptbase scsi_mod
[75696.927310] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.0.0-rc4 #1
[75696.930337] Hardware name: VMware, Inc. VMware Virtual
Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014
[75696.935437] task: ffffffff818164e0 ti: ffffffff81800000 task.ti:
ffffffff81800000
[75696.939122] RIP: 0010:[<ffffffff8150dca2>]  [<ffffffff8150dca2>]
xfrm_input+0x3c2/0x5a0
[75696.943103] RSP: 0018:ffff880031003bd8  EFLAGS: 00010286
[75696.945646] RAX: 0000000000000000 RBX: 0000000000000002 RCX: 0000000000000000
[75696.949073] RDX: 0000000000000001 RSI: 00000000fffffe01 RDI: ffffffff8150aad3
[75696.952481] RBP: 0000000000000032 R08: ffff880021296800 R09: 0000000000000002
[75696.955965] R10: 0000000000000032 R11: 000000000000000f R12: 0000000000000000
[75696.959369] R13: ffff880021296800 R14: ffff88002d73e300 R15: 0000000000000032
[75696.962802] FS:  0000000000000000(0000) GS:ffff880031000000(0000)
knlGS:0000000000000000
[75696.966707] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[75696.969510] CR2: 0000000000000034 CR3: 000000002d100000 CR4: 00000000000407f0
[75696.973093] Stack:
[75696.974147]  ffff88002d73e300 89888c9a7649897f 0000000000000000
ffffffff818b8e80
[75696.978017]  ffff88002b79761e bc33cec600000002 0000000000000000
010000002d4058c0
[75696.981857]  ffff8800001e20a0 ffffffffa0446040 ffff88002d73e300
ffffffff818b8e80
[75696.985740] Call Trace:
[75696.986978]  <IRQ>
[75696.987960]  [<ffffffff81500fc6>] ? xfrm4_esp_rcv+0x36/0x70
[75696.990949]  [<ffffffff814acc9a>] ? ip_local_deliver_finish+0x9a/0x200
[75696.994130]  [<ffffffff81471b83>] ? __netif_receive_skb_core+0x6f3/0x8f0
[75696.997405]  [<ffffffff8101e0d5>] ? read_tsc+0x5/0x10
[75697.000076]  [<ffffffff81471f4f>] ? netif_receive_skb_internal+0x1f/0x90
[75697.003395]  [<ffffffff81472b60>] ? napi_gro_receive+0xb0/0xe0
[75697.006209]  [<ffffffffa00ca8a7>] ? e1000_clean_rx_irq+0x2b7/0x500 [e1000]
[75697.009510]  [<ffffffff81573c6d>] ? common_interrupt+0x6d/0x6d
[75697.012388]  [<ffffffffa00ccd14>] ? e1000_clean+0x274/0x910 [e1000]
[75697.015420]  [<ffffffff81471b83>] ? __netif_receive_skb_core+0x6f3/0x8f0
[75697.018590]  [<ffffffff814726ad>] ? net_rx_action+0x15d/0x320
[75697.021355]  [<ffffffff81073a3e>] ? __do_softirq+0xde/0x260
[75697.024035]  [<ffffffff81073e05>] ? irq_exit+0x95/0xa0
[75697.026511]  [<ffffffff81575e84>] ? do_IRQ+0x64/0x110
[75697.028973]  [<ffffffff81573c6d>] ? common_interrupt+0x6d/0x6d
[75697.031763]  <EOI>
[75697.032715]  [<ffffffff8101f5f0>] ? idle_notifier_register+0x20/0x20
[75697.036134]  [<ffffffff81059002>] ? native_safe_halt+0x2/0x10
[75697.038931]  [<ffffffff8101f60c>] ? default_idle+0x1c/0xb0
[75697.041760]  [<ffffffff810acb8c>] ? cpu_startup_entry+0x32c/0x430
[75697.044588]  [<ffffffff819060b4>] ? start_kernel+0x48a/0x495
[75697.047211]  [<ffffffff81905a31>] ? set_init_arg+0x50/0x50
[75697.049758]  [<ffffffff81905117>] ? early_idt_handlers+0x117/0x120
[75697.052658]  [<ffffffff81905117>] ? early_idt_handlers+0x117/0x120
[75697.055668]  [<ffffffff81905737>] ? x86_64_start_kernel+0x161/0x170
[75697.058698] Code: f9 ff ff 48 8b 44 24 08 49 89 46 68 e9 f4 fc ff
ff 0f 1f 84 00 00 00 00 00 49 83 7e 40 00 0f 84 6c fd ff ff 49 8b 85
e0 02 00 00 <f6> 40 34 01 0f 85 5b fd ff ff e9 93 fd ff ff 0f 1f 80 00
00 00
[75697.072570] RIP  [<ffffffff8150dca2>] xfrm_input+0x3c2/0x5a0
[75697.075434]  RSP <ffff880031003bd8>
[75697.077227] CR2: 0000000000000034
[75697.079773] ---[ end trace 427b0d003f7ec598 ]---
[75697.082615] Kernel panic - not syncing: Fatal exception in interrupt
[75697.086138] Kernel Offset: disabled
[75697.088004] Rebooting in 1 seconds..
[75698.097904] ACPI MEMORY or I/O RESET_REG.
Comment 1 Alexey Dobriyan 2015-03-24 14:05:32 UTC
Created attachment 171981 [details]
poison ->outer_mode
Comment 2 Alexey Dobriyan 2015-03-24 14:06:08 UTC
Please try running debugging patch, it will dump bogus xfrm_state object.
Comment 3 Mike Noordermeer 2015-03-25 11:21:52 UTC
Created attachment 172331 [details]
Panics incl patch

One of the machines just panicked with the patch applied - it then entered a 'panic loop', each time the IPSec daemon (Strongswan) started the machine panicked again. Attached are the dumps, panic is at the same line as before. Hope it helps, let me know if you need more info.
Comment 4 Alexey Dobriyan 2015-03-25 11:34:12 UTC
Thanks for testing.

Could you please also attach .config you've used for building this 4.0.0-rc4 kernel. Layout of xfrm_state can be somewhat different.
Comment 5 Mike Noordermeer 2015-03-25 11:40:09 UTC
Created attachment 172341 [details]
Config file

Attached is the config file (based on default Debian config from 3.16)
Comment 6 Alexey Dobriyan 2015-03-25 13:54:27 UTC
The very first xfrm_state in dmesg posted:

non-0/NULL fields are

name     offset/sizeof
------------------
->xs_net      0/8
->bydst       8/16     
->bysrc      18/16
->byspi      28/16
->refcnt     38/4
->lock       3c/4
->id         40/24
->sel        58/56
->km         a0/32
->props      c0/40
->lft        e8/64
->rtimer    1a8/80
->curlft    208/32
->mtimer    228/144
Comment 7 Alexey Dobriyan 2015-03-25 14:04:28 UTC
->km.state at b0/1

x->km.state = XFRM_STATE_ACQ; //1
Comment 8 Alexey Dobriyan 2015-03-25 14:58:39 UTC
Created attachment 172351 [details]
XFRM_STATE_ACQ origin
Comment 9 Alexey Dobriyan 2015-03-25 15:03:15 UTC
Please apply patch, it will print address of guilty xfrm_state object
before panic. There are only 2 places which set XFRM_STATE_ACQ,
find that address previously in dmesg.

It will be either

  XFRM_STATE_ACQ 001 x XXXXXXXX

or
  
  XFRM_STATE_ACQ 002 x XXXXXXXX
  

I don't know how much spam it will result in. If it is not much,
then insert "dump_stack();" into the place where XFRM_STATE_ACQ
came from.
Comment 10 Mike Noordermeer 2015-03-28 12:13:06 UTC
I only see XFRM_STATE_ACQ 002 messages - I'll insert dump_stack(); to get a full stack trace.
Comment 11 Mike Noordermeer 2015-03-31 11:33:48 UTC
Created attachment 172811 [details]
Panic incl. debug trace
Comment 12 Mike Noordermeer 2015-03-31 11:36:27 UTC
Panic with the debug traces is attached. It seems to panic on the last XFRM_STATE_ACQ, which was logged less than a second ago, probably the IPsec tunnel has not yet been fully established or something?
Comment 13 Alexey Dobriyan 2015-03-31 12:14:50 UTC
> It seems to panic on the last XFRM_STATE_ACQ,
> which was logged less than a second ago

yeah, the pointers are the same:

XFRM_STATE_ACQ 002 x ffff88003c543000
 [<ffffffff8150b731>] ? __find_acq_core+0x1d1/0x410
 [<ffffffff8150b9ff>] ? xfrm_find_acq+0x8f/0xc0
 [<ffffffffa0612803>] ? xfrm_alloc_userspi+0xe3/0x210 [xfrm_user]

vs

xfrm_tunnel_check: ->outer_mode NULL: x ffff88003c543000
BUG: unable to handle kernel NULL pointer dereference at 0000000000000034
IP: [<ffffffff8150dd1b>] xfrm_input+0x3fb/0x5e0
[<ffffffff81500fc6>] ? xfrm4_esp_rcv+0x36/0x70
Comment 14 Alexey Dobriyan 2015-03-31 12:50:21 UTC
Well, technically bug is simple:

1) userspace sends XFRM_MSG_ALLOCSPI,
     xfrm_alloc_userspi()
     xfrm_find_acq(create=1)
     xfrm_alloc_spi() inserts object into state_byspi hash

2) packet comes
     xfrm_input()
     xfrm_parse_spi() gets spi
     xfrm_state_lookup() finds object in spi hash
     but ->outer_mode is not yet set in __xfrm_init_state()
     which is executed only for XFRM_MSG_NEWSA

Can you test patch which does xfrm_tunnel_check() later?
All previous patches aren't needed anymore.
Comment 15 Alexey Dobriyan 2015-03-31 12:50:48 UTC
Created attachment 172821 [details]
do xfrm_tunnel_check() later
Comment 16 Mike Noordermeer 2015-03-31 13:21:00 UTC
Thanks for the analysis and patch, building/installing a new kernel with the patch now, I will let you know the results.

I am wondering though - will it now drop the packet if it is still in XFRM_STATE_ACQ? I disabled reauth, so shouldn't it use the old SA while it is rekeying, i.e., should it not match a different SA/state?
Comment 17 Alexey Dobriyan 2015-03-31 13:49:31 UTC
Packet will be dropped, yes.
Please, don't change userspace settings, so there would be no false fixes.
Comment 18 Mike Noordermeer 2015-03-31 13:54:20 UTC
I have not changed the reauth/userspace settings (reauth was already disabled), was just wondering if the dropping of the packet could be prevented somehow - it seems weird to need to drop a packet for an active tunnel.
Comment 19 Alexey Dobriyan 2015-03-31 14:59:06 UTC
That tunnel check is relatively recent. Packet was dropped in earlier versions
as well.

commit 4c4d41f200db375b2d2cc6d0a1de0606c8266398

    xfrm: add LINUX_MIB_XFRMACQUIREERROR statistic counter
    
    When host ping its peer, ICMP echo request packet triggers IPsec
    policy, then host negotiates SA secret with its peer. After IKE
    installed SA for OUT direction, but before SA for IN direction
    installed, host get ICMP echo reply from its peer. At the time
    being, the SA state for IN direction could be XFRM_STATE_ACQ,
    then the received packet will be dropped after adding
    LINUX_MIB_XFRMINSTATEINVALID statistic.
    
    Adding a LINUX_MIB_XFRMACQUIREERROR statistic counter for such
    scenario when SA in larval state is much clearer for user than
    LINUX_MIB_XFRMINSTATEINVALID which indicates the SA is totally
    bad.
Comment 20 Mike Noordermeer 2015-04-07 09:12:23 UTC
Uptime of the machines is 6+ days now, where it would crash every 1-2 days before, so the patch seems to have fixed the issue. Thanks!

I am still wondering though: why packets should ever be dropped for an existing tunnel? I know that reauthing removes the existing tunnel and creates a new one (but reauth is disabled), and rekeying should first install new keys and then remove the old ones, so that shouldn't drop packets?
Comment 21 Alexey Dobriyan 2015-04-17 10:21:23 UTC
fixed by commit 68c11e98ef6748ddb63865799b12fc45abb3755d
         xfrm: fix xfrm_input/xfrm_tunnel_check oops

Note You need to log in before you can comment on or make changes to this bug.