From: Stefan Metzmacher Date: Tue, 9 Feb 2021 12:48:36 +0000 (+0100) Subject: s3:pysmbd: fix fd leak in py_smbd_create_file() X-Git-Tag: samba-4.12.12~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6382ca8568219a1ba54bc05d24ccbff019240cfe;p=thirdparty%2Fsamba.git s3:pysmbd: fix fd leak in py_smbd_create_file() Various 'samba-tool domain backup' commands use this and will fail if there's over ~1000 files in the sysvol folder. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13898 Signed-off-by: Stefan Metzmacher (cherry picked from commit d8fa464a2dfb11df4e1db4ebffe8bd28ff118c75) --- diff --git a/source3/smbd/pysmbd.c b/source3/smbd/pysmbd.c index 39fe875a385..58c96396e08 100644 --- a/source3/smbd/pysmbd.c +++ b/source3/smbd/pysmbd.c @@ -1113,9 +1113,12 @@ static PyObject *py_smbd_create_file(PyObject *self, PyObject *args, PyObject *k if (!NT_STATUS_IS_OK(status)) { DBG_ERR("init_files_struct failed: %s\n", nt_errstr(status)); + } else if (fsp != NULL) { + SMB_VFS_CLOSE(fsp); } TALLOC_FREE(frame); + PyErr_NTSTATUS_NOT_OK_RAISE(status); Py_RETURN_NONE; }