Skip to content

Commit 96f30f2

Browse files
committed
af_packet: fix vlan_get_protocol_dgram() vs MSG_PEEK
JIRA: https://issues.redhat.com/browse/RHEL-84598 CVE: CVE-2024-57901 Upstream Status: net.git commit f91a5b8 commit f91a5b8 Author: Eric Dumazet <edumazet@google.com> Date: Mon Dec 30 16:10:04 2024 +0000 af_packet: fix vlan_get_protocol_dgram() vs MSG_PEEK Blamed commit forgot MSG_PEEK case, allowing a crash [1] as found by syzbot. Rework vlan_get_protocol_dgram() to not touch skb at all, so that it can be used from many cpus on the same skb. Add a const qualifier to skb argument. [1] skbuff: skb_under_panic: text:ffffffff8a8ccd05 len:29 put:14 head:ffff88807fc8e400 data:ffff88807fc8e3f4 tail:0x11 end:0x140 dev:<NULL> ------------[ cut here ]------------ kernel BUG at net/core/skbuff.c:206 ! Oops: invalid opcode: 0000 [#1] PREEMPT SMP KASAN PTI CPU: 1 UID: 0 PID: 5892 Comm: syz-executor883 Not tainted 6.13.0-rc4-syzkaller-00054-gd6ef8b40d075 #0 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 09/13/2024 RIP: 0010:skb_panic net/core/skbuff.c:206 [inline] RIP: 0010:skb_under_panic+0x14b/0x150 net/core/skbuff.c:216 Code: 0b 8d 48 c7 c6 86 d5 25 8e 48 8b 54 24 08 8b 0c 24 44 8b 44 24 04 4d 89 e9 50 41 54 41 57 41 56 e8 5a 69 79 f7 48 83 c4 20 90 <0f> 0b 0f 1f 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 RSP: 0018:ffffc900038d7638 EFLAGS: 00010282 RAX: 0000000000000087 RBX: dffffc0000000000 RCX: 609ffd18ea660600 RDX: 0000000000000000 RSI: 0000000080000000 RDI: 0000000000000000 RBP: ffff88802483c8d0 R08: ffffffff817f0a8c R09: 1ffff9200071ae60 R10: dffffc0000000000 R11: fffff5200071ae61 R12: 0000000000000140 R13: ffff88807fc8e400 R14: ffff88807fc8e3f4 R15: 0000000000000011 FS: 00007fbac5e006c0(0000) GS:ffff8880b8700000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 00007fbac5e00d58 CR3: 000000001238e000 CR4: 00000000003526f0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> skb_push+0xe5/0x100 net/core/skbuff.c:2636 vlan_get_protocol_dgram+0x165/0x290 net/packet/af_packet.c:585 packet_recvmsg+0x948/0x1ef0 net/packet/af_packet.c:3552 sock_recvmsg_nosec net/socket.c:1033 [inline] sock_recvmsg+0x22f/0x280 net/socket.c:1055 ____sys_recvmsg+0x1c6/0x480 net/socket.c:2803 ___sys_recvmsg net/socket.c:2845 [inline] do_recvmmsg+0x426/0xab0 net/socket.c:2940 __sys_recvmmsg net/socket.c:3014 [inline] __do_sys_recvmmsg net/socket.c:3037 [inline] __se_sys_recvmmsg net/socket.c:3030 [inline] __x64_sys_recvmmsg+0x199/0x250 net/socket.c:3030 do_syscall_x64 arch/x86/entry/common.c:52 [inline] do_syscall_64+0xf3/0x230 arch/x86/entry/common.c:83 entry_SYSCALL_64_after_hwframe+0x77/0x7f Fixes: 79eecf6 ("af_packet: Handle outgoing VLAN packets without hardware offloading") Reported-by: syzbot+74f70bb1cb968bf09e4f@syzkaller.appspotmail.com Closes: https://lore.kernel.org/netdev/6772c485.050a0220.2f3838.04c5.GAE@google.com/T/#u Signed-off-by: Eric Dumazet <edumazet@google.com> Cc: Chengen Du <chengen.du@canonical.com> Reviewed-by: Willem de Bruijn <willemb@google.com> Link: https://patch.msgid.link/20241230161004.2681892-2-edumazet@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Davide Caratti <dcaratti@redhat.com>
1 parent 5d7c754 commit 96f30f2

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

include/linux/if_vlan.h

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,13 +588,16 @@ static inline int vlan_get_tag(const struct sk_buff *skb, u16 *vlan_tci)
588588
* vlan_get_protocol - get protocol EtherType.
589589
* @skb: skbuff to query
590590
* @type: first vlan protocol
591+
* @mac_offset: MAC offset
591592
* @depth: buffer to store length of eth and vlan tags in bytes
592593
*
593594
* Returns the EtherType of the packet, regardless of whether it is
594595
* vlan encapsulated (normal or hardware accelerated) or not.
595596
*/
596-
static inline __be16 __vlan_get_protocol(const struct sk_buff *skb, __be16 type,
597-
int *depth)
597+
static inline __be16 __vlan_get_protocol_offset(const struct sk_buff *skb,
598+
__be16 type,
599+
int mac_offset,
600+
int *depth)
598601
{
599602
unsigned int vlan_depth = skb->mac_len, parse_depth = VLAN_MAX_DEPTH;
600603

@@ -613,7 +616,8 @@ static inline __be16 __vlan_get_protocol(const struct sk_buff *skb, __be16 type,
613616
do {
614617
struct vlan_hdr vhdr, *vh;
615618

616-
vh = skb_header_pointer(skb, vlan_depth, sizeof(vhdr), &vhdr);
619+
vh = skb_header_pointer(skb, mac_offset + vlan_depth,
620+
sizeof(vhdr), &vhdr);
617621
if (unlikely(!vh || !--parse_depth))
618622
return 0;
619623

@@ -628,6 +632,12 @@ static inline __be16 __vlan_get_protocol(const struct sk_buff *skb, __be16 type,
628632
return type;
629633
}
630634

635+
static inline __be16 __vlan_get_protocol(const struct sk_buff *skb, __be16 type,
636+
int *depth)
637+
{
638+
return __vlan_get_protocol_offset(skb, type, 0, depth);
639+
}
640+
631641
/**
632642
* vlan_get_protocol - get protocol EtherType.
633643
* @skb: skbuff to query

net/packet/af_packet.c

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -533,21 +533,13 @@ static u16 vlan_get_tci(const struct sk_buff *skb, struct net_device *dev)
533533
return ntohs(vh->h_vlan_TCI);
534534
}
535535

536-
static __be16 vlan_get_protocol_dgram(struct sk_buff *skb)
536+
static __be16 vlan_get_protocol_dgram(const struct sk_buff *skb)
537537
{
538538
__be16 proto = skb->protocol;
539539

540-
if (unlikely(eth_type_vlan(proto))) {
541-
u8 *skb_orig_data = skb->data;
542-
int skb_orig_len = skb->len;
543-
544-
skb_push(skb, skb->data - skb_mac_header(skb));
545-
proto = __vlan_get_protocol(skb, proto, NULL);
546-
if (skb_orig_data != skb->data) {
547-
skb->data = skb_orig_data;
548-
skb->len = skb_orig_len;
549-
}
550-
}
540+
if (unlikely(eth_type_vlan(proto)))
541+
proto = __vlan_get_protocol_offset(skb, proto,
542+
skb_mac_offset(skb), NULL);
551543

552544
return proto;
553545
}

0 commit comments

Comments
 (0)