CVE-2025-68774

Source
https://cve.org/CVERecord?id=CVE-2025-68774
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2025-68774.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2025-68774
Downstream
Related
Published
2026-01-13T15:28:51.379Z
Modified
2026-03-20T12:46:28.506153Z
Summary
hfsplus: fix missing hfs_bnode_get() in __hfs_bnode_create
Details

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

hfsplus: fix missing hfsbnodeget() in __hfsbnodecreate

When sync() and link() are called concurrently, both threads may enter hfsbnodefind() without finding the node in the hash table and proceed to create it.

Thread A: hfspluswriteinode() -> hfspluswritesysteminode() -> hfsbtreewrite() -> hfsbnode_find(tree, 0) -> __hfsbnodecreate(tree, 0)

Thread B: hfspluscreatecat() -> hfsbrecinsert() -> hfsbnodesplit() -> hfsbmapalloc() -> hfsbnodefind(tree, 0) -> __hfsbnodecreate(tree, 0)

In this case, thread A creates the bnode, sets refcnt=1, and hashes it. Thread B also tries to create the same bnode, notices it has already been inserted, drops its own instance, and uses the hashed one without getting the node.


    node2 = hfs_bnode_findhash(tree, cnid);
    if (!node2) {                                 <- Thread A
        hash = hfs_bnode_hash(cnid);
        node->next_hash = tree->node_hash[hash];
        tree->node_hash[hash] = node;
        tree->node_hash_cnt++;
    } else {                                      <- Thread B
        spin_unlock(&tree->hash_lock);
        kfree(node);
        wait_event(node2->lock_wq,
            !test_bit(HFS_BNODE_NEW, &node2->flags));
        return node2;
    }

However, hfsbnodefind() requires each call to take a reference. Here both threads end up setting refcnt=1. When they later put the node, this triggers:

BUGON(!atomicread(&node->refcnt))

In this scenario, Thread B in fact finds the node in the hash table rather than creating a new one, and thus must take a reference.

Fix this by calling hfsbnodeget() when reusing a bnode newly created by another thread to ensure the refcount is updated correctly.

A similar bug was fixed in HFS long ago in commit a9dc087fd3c4 ("fix missing hfsbnodeget() in __hfsbnodecreate") but the same issue remained in HFS+ until now.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2025/68xxx/CVE-2025-68774.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
1da177e4c3f41524e886b7f1b8a0c1fc7321cac2
Fixed
3b0fc7af50b896d0f3d104e70787ba1973bc0b56
Fixed
39e149d58ef4d7883cbf87448d39d51292fd342d
Fixed
b68dc4134b18a3922cd33439ec614aad4172bc86
Fixed
b9d1c6bb5f19460074ce9862cb80be86b5fb0a50
Fixed
457f795e7abd7770de10216d7f9994a3f12a56d6
Fixed
5882e7c8cdbb5e254a69628b780acff89c78071e
Fixed
152af114287851583cf7e0abc10129941f19466a

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2025-68774.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
2.6.12
Fixed
5.10.248
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.198
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.160
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.120
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.64
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.3

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2025-68774.json"