CVE-2024-26629

Source
https://nvd.nist.gov/vuln/detail/CVE-2024-26629
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2024-26629.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2024-26629
Downstream
Related
Published
2024-03-13T14:01:49.452Z
Modified
2025-11-28T02:34:28.063384Z
Summary
nfsd: fix RELEASE_LOCKOWNER
Details

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

nfsd: fix RELEASE_LOCKOWNER

The test on socount in nfsd4releaselockowner() is nonsense and harmful. Revert to using checkfor_locks(), changing that to not sleep.

First: harmful. As is documented in the kdoc comment for nfsd4releaselockowner(), the test on socount can transiently return a false positive resulting in a return of NFS4ERRLOCKS_HELD when in fact no locks are held. This is clearly a protocol violation and with the Linux NFS client it can cause incorrect behaviour.

If RELEASELOCKOWNER is sent while some other thread is still processing a LOCK request which failed because, at the time that request was received, the given owner held a conflicting lock, then the nfsd thread processing that LOCK request can hold a reference (conflock) to the lock owner that causes nfsd4release_lockowner() to return an incorrect error.

The Linux NFS client ignores that NFS4ERRLOCKSHELD error because it never sends NFS4RELEASELOCKOWNER without first releasing any locks, so it knows that the error is impossible. It assumes the lock owner was in fact released so it feels free to use the same lock owner identifier in some later locking request.

When it does reuse a lock owner identifier for which a previous RELEASE failed, it will naturally use a lockseqid of zero. However the server, which didn't release the lock owner, will expect a larger lockseqid and so will respond with NFS4ERRBADSEQID.

So clearly it is harmful to allow a false positive, which testing so_count allows.

The test is nonsense because ... well... it doesn't mean anything.

socount is the sum of three different counts. 1/ the set of states listed on sostateids 2/ the set of active vfs locks owned by any of those states 3/ various transient counts such as for conflicting locks.

When it is tested against '2' it is clear that one of these is the transient reference obtained by findlockownerstr_locked(). It is not clear what the other one is expected to be.

In practice, the count is often 2 because there is precisely one state on so_stateids. If there were more, this would fail.

In my testing I see two circumstances when RELEASELOCKOWNER is called. In one case, CLOSE is called before RELEASELOCKOWNER. That results in all the lock states being removed, and so the lockowner being discarded (it is removed when there are no more references which usually happens when the lock state is discarded). When nfsd4releaselockowner() finds that the lock owner doesn't exist, it returns success.

The other case shows an socount of '2' and precisely one state listed in sostateid. It appears that the Linux client uses a separate lock owner for each file resulting in one lock state per lock owner, so this test on '2' is safe. For another client it might not be safe.

So this patch changes checkforlocks() to use the (newish) findanyfilelocked() so that it doesn't take a reference on the nfs4file and so never calls nfsdfileput(), and so never sleeps. With this check is it safe to restore the use of checkforlocks() rather than testing so_count against the mysterious '2'.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2024/26xxx/CVE-2024-26629.json"
}
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
3097f38e91266c7132c3fdb7e778fac858c00670
Fixed
99fb654d01dc3f08b5905c663ad6c89a9d83302f
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
e2fc17fcc503cfca57b5d1dd3b646ca7eebead97
Fixed
c6f8b3fcc62725e4129f2c0fd550d022d4a7685a
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
ce3c4ad7f4ce5db7b4f08a1e237d8dd94b39180b
Fixed
e4cf8941664cae2f89f0189c29fe2ce8c6be0d03
Fixed
b7d2eee1f53899b53f069bba3a59a419fc3d331b
Fixed
8f5b860de87039b007e84a28a5eefc888154e098
Fixed
edcf9725150e42beeca42d085149f4c88fa97afd
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0 Unknown introduced commit / All previous commits are affected
Last affected
fea1d0940301378206955264a01778700fc9c16f
Last affected
2ec65dc6635d1976bd1dbf2640ff7f810b2f6dd1
Last affected
a2235bc65ade40982c3d09025cdd34bc539d6a69
Last affected
ba747abfca27e23c42ded3912c87b70d7e16b6ab
Last affected
e8020d96dd5b2dcc1f6a8ee4f87a53a373002cd5

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
5.10.220
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.154
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.79
Type
ECOSYSTEM
Events
Introduced
5.19.0
Fixed
6.6.15
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.7.3