mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
During code inspection, I spotted that there was a code path where
CLNT_CONTROL() would be called on "client" after it was released via CLNT_RELEASE(). It was unlikely that this code path gets executed and I have not heard of any problem report caused by this bug. This patch fixes the code so that this cannot happen. MFC after: 2 months
This commit is contained in:
parent
1947c8a6d1
commit
cc085ba84d
1 changed files with 11 additions and 10 deletions
|
|
@ -336,24 +336,25 @@ newnfs_connect(struct nfsmount *nmp, struct nfssockreq *nrp,
|
|||
|
||||
mtx_lock(&nrp->nr_mtx);
|
||||
if (nrp->nr_client != NULL) {
|
||||
mtx_unlock(&nrp->nr_mtx);
|
||||
/*
|
||||
* Someone else already connected.
|
||||
*/
|
||||
CLNT_RELEASE(client);
|
||||
} else {
|
||||
nrp->nr_client = client;
|
||||
/*
|
||||
* Protocols that do not require connections may be optionally
|
||||
* left unconnected for servers that reply from a port other
|
||||
* than NFS_PORT.
|
||||
*/
|
||||
if (nmp == NULL || (nmp->nm_flag & NFSMNT_NOCONN) == 0) {
|
||||
mtx_unlock(&nrp->nr_mtx);
|
||||
CLNT_CONTROL(client, CLSET_CONNECT, &one);
|
||||
} else
|
||||
mtx_unlock(&nrp->nr_mtx);
|
||||
}
|
||||
|
||||
/*
|
||||
* Protocols that do not require connections may be optionally left
|
||||
* unconnected for servers that reply from a port other than NFS_PORT.
|
||||
*/
|
||||
if (nmp == NULL || (nmp->nm_flag & NFSMNT_NOCONN) == 0) {
|
||||
mtx_unlock(&nrp->nr_mtx);
|
||||
CLNT_CONTROL(client, CLSET_CONNECT, &one);
|
||||
} else {
|
||||
mtx_unlock(&nrp->nr_mtx);
|
||||
}
|
||||
|
||||
/* Restore current thread's credentials. */
|
||||
td->td_ucred = origcred;
|
||||
|
|
|
|||
Loading…
Reference in a new issue