Skip to content

Commit c353ee4

Browse files
darkrain42Steve French
authored andcommitted
smb: Initialize cfid->tcon before performing network ops
Avoid leaking a tcon ref when a lease break races with opening the cached directory. Processing the leak break might take a reference to the tcon in cached_dir_lease_break() and then fail to release the ref in cached_dir_offload_close, since cfid->tcon is still NULL. Fixes: ebe98f1 ("cifs: enable caching of directories for which a lease is held") Signed-off-by: Paul Aurich <paul@darkrain42.org> Signed-off-by: Steve French <stfrench@microsoft.com>
1 parent 3fa640d commit c353ee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/smb/client/cached_dir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon,
229229
}
230230
}
231231
cfid->dentry = dentry;
232+
cfid->tcon = tcon;
232233

233234
/*
234235
* We do not hold the lock for the open because in case
@@ -300,7 +301,6 @@ int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon,
300301
}
301302
goto oshr_free;
302303
}
303-
cfid->tcon = tcon;
304304
cfid->is_open = true;
305305

306306
spin_lock(&cfids->cfid_list_lock);

0 commit comments

Comments
 (0)