From: Stefan Metzmacher Date: Wed, 19 Aug 2009 16:03:43 +0000 (+0200) Subject: s3:smbd: make smbd_check_open_rights() function non-static for use in SMB2 X-Git-Tag: tevent-0.9.8~291 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=b70ae644edf0f28437aab61c68c755028094f79b s3:smbd: make smbd_check_open_rights() function non-static for use in SMB2 metze --- diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index 4fa85a9fdb3..fd92c22e729 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -234,6 +234,11 @@ bool smbd_dirptr_get_entry(TALLOC_CTX *ctx, uint32_t *_mode, long *_prev_offset); +NTSTATUS smbd_check_open_rights(struct connection_struct *conn, + const struct smb_filename *smb_fname, + uint32_t access_mask, + uint32_t *access_granted); + void smbd_notify_cancel_by_smbreq(struct smbd_server_connection *sconn, const struct smb_request *smbreq); diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 63982341ac6..045635535f6 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -64,7 +64,7 @@ NTSTATUS smb1_file_se_access_check(const struct security_descriptor *sd, Check if we have open rights. ****************************************************************************/ -static NTSTATUS check_open_rights(struct connection_struct *conn, +NTSTATUS smbd_check_open_rights(struct connection_struct *conn, const struct smb_filename *smb_fname, uint32_t access_mask, uint32_t *access_granted) @@ -90,7 +90,7 @@ static NTSTATUS check_open_rights(struct connection_struct *conn, DACL_SECURITY_INFORMATION),&sd); if (!NT_STATUS_IS_OK(status)) { - DEBUG(10, ("check_open_rights: Could not get acl " + DEBUG(10, ("smbd_check_open_rights: Could not get acl " "on %s: %s\n", smb_fname_str_dbg(smb_fname), nt_errstr(status))); @@ -105,7 +105,7 @@ static NTSTATUS check_open_rights(struct connection_struct *conn, TALLOC_FREE(sd); - DEBUG(10,("check_open_rights: file %s requesting " + DEBUG(10,("smbd_check_open_rights: file %s requesting " "0x%x returning 0x%x (%s)\n", smb_fname_str_dbg(smb_fname), (unsigned int)access_mask, @@ -477,7 +477,7 @@ static NTSTATUS open_file(files_struct *fsp, if (file_existed) { uint32_t access_granted = 0; - status = check_open_rights(conn, + status = smbd_check_open_rights(conn, smb_fname, access_mask, &access_granted); @@ -547,7 +547,7 @@ static NTSTATUS open_file(files_struct *fsp, smb_fname))); } else { DEBUG(10,("open_file: " - "check_open_rights on file " + "smbd_check_open_rights on file " "%s returned %s\n", smb_fname_str_dbg(smb_fname), nt_errstr(status) )); @@ -2545,8 +2545,8 @@ static NTSTATUS open_directory(connection_struct *conn, if (info == FILE_WAS_OPENED) { uint32_t access_granted = 0; - status = check_open_rights(conn, smb_dname, access_mask, - &access_granted); + status = smbd_check_open_rights(conn, smb_dname, access_mask, + &access_granted); /* Were we trying to do a directory open * for delete and didn't get DELETE @@ -2567,7 +2567,7 @@ static NTSTATUS open_directory(connection_struct *conn, } if (!NT_STATUS_IS_OK(status)) { - DEBUG(10, ("open_directory: check_open_rights on " + DEBUG(10, ("open_directory: smbd_check_open_rights on " "file %s failed with %s\n", smb_fname_str_dbg(smb_dname), nt_errstr(status)));