CVE-2026-98099: ipv6: mcast: use rcu_assign_pointer() for __rcu list updates

Published Sep 25, 2026
·
Updated

In the Linux kernel, the following vulnerability has been resolved:

ipv6: mcast: use rcuassignpointer() for rcu list updates

Several places in net/ipv6/mcast.c update RCU-protected lists (np->ipv6mclist, idev->mclist, idev->mctomb) using direct pointer assignments instead of rcuassignpointer():

1. In ipv6devmcdec(), unlinking a group from idev->mclist did: map = ma->next; without rcuassignpointer() while concurrent readers traverse idev->mclist locklessly under rcureadlock(). 2. In ipv6sockmcdrop() and ipv6sockmcclose(), unlinking a group from np->ipv6mclist directly assigned lnk = mclst->next and np->ipv6mclist = mclst->next without rcuassignpointer(), racing with lockless readers in inet6mccheck(). 3. In ipv6sockmcjoin(), mclst->next was initialized to np->ipv6mclist via raw assignment before publishing mclst. 4. In mlddeldelrec() and ipv6devmcinc(), rcu source pointers passed into rcuassignpointer() lacked explicit dereference helpers.

Fix these by consistently using rcuassignpointer() along with mcdereference() / sockdereference().

Affected Software

1 affected component
Linux Linux kernel

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Compensating control

    In Linux kernel net/ipv6/mcast.c, replace direct assignments that update RCU-protected lists with rcu_assign_pointer(), including updates to np->ipv6_mc_list, idev->mc_list, and idev->mc_tomb in __ipv6_dev_mc_dec(), __ipv6_sock_mc_join(), ipv6_sock_mc_drop(), __ipv6_sock_mc_close(), mld_del_delrec(), and __ipv6_dev_mc_inc(); use explicit RCU dereference helpers for __rcu source pointers.

Event History

Sep 25, 2026
CVE Published
via MITRE·10:24 AM
Data Sourced
via MITRE·10:24 AM
Description

Frequently Asked Questions

1

What conditions are needed for this issue to occur?

The issue involves concurrent access to IPv6 multicast membership lists: one execution path updates or removes list entries while another traverses the same lists locklessly under RCU. The affected paths include IPv6 device multicast-group handling and IPv6 socket multicast join, drop, close, and membership-check operations.

2

How can I determine whether my system has the fix?

Check whether the kernel source or applied stable patches include the referenced commits 2e46b0c9fcf7e10b64ce1630b925f47918d1f7f6 or 0c8f56c583c3250408367880c98e4d6fbc929315. The corrected code uses rcu_assign_pointer() when publishing or unlinking the relevant __rcu list pointers, with mc_dereference() or sock_dereference() for source-pointer access.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203