Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-68117

tipc: clear sock->sk on the failed-insert path in tipc_sk_create()
Back to all
CVE

CVE-2026-68117

tipc: clear sock->sk on the failed-insert path in tipc_sk_create()

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

tipc: clear sock->sk on the failed-insert path in tipcskcreate()

When tipcskcreate() fails to insert the new socket (tipcskinsert()

returns non-zero), its error path frees the sk with sk_free() but leaves

sock->sk pointing at the freed object:

if (tipcskinsert(tsk)) {

sk_free(sk);

pr_warn("Socket create failed; port number exhausted\n");

return -EINVAL;

}

This is harmless for plain socket(): the syscall layer clears sock->ops

before releasing, so tipc_release() is never called. It is not harmless

on the accept() path. tipc_accept() creates the pre-allocated child

socket with tipcskcreate(net, new_sock, 0, kern); on failure it leaves

newsock->sk dangling and newsock->ops non-NULL, and do_accept() then

fput()s the new file, so _sockrelease() -> tipc_release() runs

locksock(newsock->sk) on the freed sk -- a use-after-free write of the

sk_lock spinlock.

tipc_release() already guards this exact "failed accept() releases a

pre-allocated child" case with "if (sk == NULL) return 0;", but the

guard is bypassed because tipcskcreate() left sock->sk non-NULL

(dangling) rather than NULL.

Clear sock->sk on the failed-insert path so the existing tipc_release()

NULL check fires and the use-after-free is avoided.

The tipcskinsert() failure is reached when the per-netns socket

rhashtable hits its maxsize (tskrhtparams.maxsize = 1048576, ~2M

elements) -- i.e. once a netns holds ~2M TIPC sockets every insert

returns -E2BIG.

  BUG: KASAN: slab-use-after-free in locksocknested (net/core/sock.c:3839)

  Write of size 8 at addr ffff8880047cdc38 by task init/1

   locksocknested (net/core/sock.c:3839)

   tipc_release (net/tipc/socket.c:638)

   _sockrelease (net/socket.c:710)

   sock_close (net/socket.c:1501)

   _fput (fs/filetable.c:512)

  Allocated by task 1:

   sk_alloc (net/core/sock.c:2308)

   tipcskcreate (net/tipc/socket.c:487)

   tipc_accept (net/tipc/socket.c:2744)

   do_accept (net/socket.c:2034)

  Freed by task 1:

   _skdestruct (net/core/sock.c:2391)

   tipcskcreate (net/tipc/socket.c:504)

   tipc_accept (net/tipc/socket.c:2744)

   do_accept (net/socket.c:2034)

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/5f5a41a48dbf9eda57b67ce23e548602cf7195a6, https://git.kernel.org/stable/c/82f59aa27f33bd014a7d8739371ab5712d15e33b, https://git.kernel.org/stable/c/8d6f26d48e61ef34f1921289401dbf36b10816af, https://git.kernel.org/stable/c/b07d87b31631edb6529e6cdcca790a7489d1250d, https://git.kernel.org/stable/c/ba0533fc163f905fe817cfabdf8ed4058da44800, https://git.kernel.org/stable/c/dd29891ed840f6b8d020b759d0dc4a00b1d6e4ea, https://git.kernel.org/stable/c/efebc23e9b29e3e5a9e2127dd066929f7f0d315e, https://git.kernel.org/stable/c/f9596b1566616a8be0592dbceccb6344a7c6f6bb, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/68xxx/CVE-2026-68117.json, https://nvd.nist.gov/vuln/detail/CVE-2026-68117, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.8

CVSS Score
0
10

Basic Information

Base CVSS
9.8
EPSS Probability
0.00531%
EPSS Percentile
0.42635%
Introduced Version
efa78f2ae363428525fb4981bb63c555ee79f3c7,833ecd0eae76eadf81d6d747bb5bc992d1151867,00aff3590fc0a73bddd3b743863c14e76fd35c0c,0,5.10.132,5.15.56,4.9.324,4.14.289,4.19.253,5.4.207,5.18.13,5.11.0,5.16.0,5.19.0,6.2.0,6.7.0,6.13.0
Fix Available
efebc23e9b29e3e5a9e2127dd066929f7f0d315e,8d6f26d48e61ef34f1921289401dbf36b10816af,ba0533fc163f905fe817cfabdf8ed4058da44800,5.10.265,5.15.216,4.10,4.15,4.20,5.5,5.19,6.1.183,6.6.148,6.12.101,6.18.42,7.1.6,6.12.101-1~deb12u1,6.12.101-1

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading