The Samba-Bugzilla – Attachment 7029 Details for
Bug 8541
readlink() on Linux clients fails if the symlink target is outside of the share
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
git-am format patch for 3.5.next
look1 (text/plain), 10.92 KB, created by
Jeremy Allison
on 2011-10-24 22:36:43 UTC
(
hide
)
Description:
git-am format patch for 3.5.next
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2011-10-24 22:36:43 UTC
Size:
10.92 KB
patch
obsolete
>From afd05ef6fd112b3f346b0d001e6958966d42b3ad Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Mon, 25 Jul 2011 16:12:45 -0700 >Subject: [PATCH 1/4] Use existing ISDOT and ISDOTDOT macros. > >Autobuild-User: Jeremy Allison <jra@samba.org> >Autobuild-Date: Thu Jul 28 02:09:20 CEST 2011 on sn-devel-104 >(cherry picked from commit d82256ca119eb8315cc69ba725ba71c386caa901) >--- > source3/smbd/filename.c | 3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > >diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c >index c92921e..84bdd40 100644 >--- a/source3/smbd/filename.c >+++ b/source3/smbd/filename.c >@@ -849,8 +849,7 @@ NTSTATUS check_name(connection_struct *conn, const char *name) > { > if (IS_VETO_PATH(conn, name)) { > /* Is it not dot or dot dot. */ >- if (!((name[0] == '.') && (!name[1] || >- (name[1] == '.' && !name[2])))) { >+ if (!(ISDOT(name) || ISDOTDOT(name))) { > DEBUG(5,("check_name: file path name %s vetoed\n", > name)); > return map_nt_error_from_unix(ENOENT); >-- >1.7.3.1 > > >From 2ed3a1a7625794de8be95954c6bf36783c9d5ff5 Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Mon, 24 Oct 2011 15:24:04 -0700 >Subject: [PATCH 2/4] Fix bug #8541 - readlink() on Linux clients fails if the symlink target is outside of the share. > >The key is to only allow the lookup to succeed if it's a UNIX level lookup or readlink, >but disallow all other operations. >--- > source3/include/proto.h | 1 + > source3/include/smb.h | 1 + > source3/smbd/filename.c | 34 +++++++++++++++++++++++++++------- > source3/smbd/trans2.c | 18 ++++++++++++++---- > 4 files changed, 43 insertions(+), 11 deletions(-) > >diff --git a/source3/include/proto.h b/source3/include/proto.h >index 2b20cc4..8afc2e7 100644 >--- a/source3/include/proto.h >+++ b/source3/include/proto.h >@@ -6354,6 +6354,7 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx, > const char *orig_path, > struct smb_filename **smb_fname, > uint32_t ucf_flags); >+NTSTATUS check_veto_path(connection_struct *conn, const char *name); > NTSTATUS check_name(connection_struct *conn, const char *name); > int get_real_filename(connection_struct *conn, const char *path, > const char *name, TALLOC_CTX *mem_ctx, >diff --git a/source3/include/smb.h b/source3/include/smb.h >index 202f9d7..4b5c49b 100644 >--- a/source3/include/smb.h >+++ b/source3/include/smb.h >@@ -1957,6 +1957,7 @@ struct smb_file_time { > #define UCF_ALWAYS_ALLOW_WCARD_LCOMP 0x00000002 > #define UCF_COND_ALLOW_WCARD_LCOMP 0x00000004 > #define UCF_POSIX_PATHNAMES 0x00000008 >+#define UCF_UNIX_NAME_LOOKUP 0x00000010 > > /* > * smb_filename >diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c >index 84bdd40..2ea9d24 100644 >--- a/source3/smbd/filename.c >+++ b/source3/smbd/filename.c >@@ -839,25 +839,39 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx, > } > > /**************************************************************************** >- Check a filename - possibly calling check_reduced_name. >- This is called by every routine before it allows an operation on a filename. >- It does any final confirmation necessary to ensure that the filename is >- a valid one for the user to access. >+ Ensure a path is not vetod. > ****************************************************************************/ > >-NTSTATUS check_name(connection_struct *conn, const char *name) >+NTSTATUS check_veto_path(connection_struct *conn, const char *name) > { > if (IS_VETO_PATH(conn, name)) { > /* Is it not dot or dot dot. */ > if (!(ISDOT(name) || ISDOTDOT(name))) { >- DEBUG(5,("check_name: file path name %s vetoed\n", >+ DEBUG(5,("check_veto_path: file path name %s vetoed\n", > name)); > return map_nt_error_from_unix(ENOENT); > } > } >+ return NT_STATUS_OK; >+} >+ >+/**************************************************************************** >+ Check a filename - possibly calling check_reduced_name. >+ This is called by every routine before it allows an operation on a filename. >+ It does any final confirmation necessary to ensure that the filename is >+ a valid one for the user to access. >+****************************************************************************/ >+ >+NTSTATUS check_name(connection_struct *conn, const char *name) >+{ >+ NTSTATUS status = check_veto_path(conn, name); >+ >+ if (!NT_STATUS_IS_OK(status)) { >+ return status; >+ } > > if (!lp_widelinks(SNUM(conn)) || !lp_symlinks(SNUM(conn))) { >- NTSTATUS status = check_reduced_name(conn,name); >+ status = check_reduced_name(conn,name); > if (!NT_STATUS_IS_OK(status)) { > DEBUG(5,("check_name: name %s failed with %s\n",name, > nt_errstr(status))); >@@ -1175,6 +1189,12 @@ NTSTATUS filename_convert(TALLOC_CTX *ctx, > return status; > } > >+ if ((ucf_flags & UCF_UNIX_NAME_LOOKUP) && >+ VALID_STAT((*pp_smb_fname)->st) && >+ S_ISLNK((*pp_smb_fname)->st.st_ex_mode)) { >+ return check_veto_path(conn, (*pp_smb_fname)->base_name); >+ } >+ > status = check_name(conn, (*pp_smb_fname)->base_name); > if (!NT_STATUS_IS_OK(status)) { > DEBUG(3,("filename_convert: check_name failed " >diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c >index 88ac17d8..6cadc8c 100644 >--- a/source3/smbd/trans2.c >+++ b/source3/smbd/trans2.c >@@ -2233,6 +2233,7 @@ static void call_trans2findfirst(connection_struct *conn, > TALLOC_CTX *ctx = talloc_tos(); > struct dptr_struct *dirptr = NULL; > struct smbd_server_connection *sconn = smbd_server_conn; >+ uint32_t ucf_flags = (UCF_SAVE_LCOMP | UCF_ALWAYS_ALLOW_WCARD_LCOMP); > > if (total_params < 13) { > reply_nterror(req, NT_STATUS_INVALID_PARAMETER); >@@ -2276,6 +2277,7 @@ close_if_end = %d requires_resume_key = %d level = 0x%x, max_data_bytes = %d\n", > reply_nterror(req, NT_STATUS_INVALID_LEVEL); > goto out; > } >+ ucf_flags |= UCF_UNIX_NAME_LOOKUP; > break; > default: > reply_nterror(req, NT_STATUS_INVALID_LEVEL); >@@ -5089,6 +5091,7 @@ static void call_trans2qfilepathinfo(connection_struct *conn, > > } else { > char *fname = NULL; >+ uint32_t ucf_flags = 0; > > /* qpathinfo */ > if (total_params < 7) { >@@ -5100,9 +5103,16 @@ static void call_trans2qfilepathinfo(connection_struct *conn, > > DEBUG(3,("call_trans2qfilepathinfo: TRANSACT2_QPATHINFO: level = %d\n", info_level)); > >- if (INFO_LEVEL_IS_UNIX(info_level) && !lp_unix_extensions()) { >- reply_nterror(req, NT_STATUS_INVALID_LEVEL); >- return; >+ if (INFO_LEVEL_IS_UNIX(info_level)) { >+ if (!lp_unix_extensions()) { >+ reply_nterror(req, NT_STATUS_INVALID_LEVEL); >+ return; >+ } >+ if (info_level == SMB_QUERY_FILE_UNIX_BASIC || >+ info_level == SMB_QUERY_FILE_UNIX_INFO2 || >+ info_level == SMB_QUERY_FILE_UNIX_LINK) { >+ ucf_flags |= UCF_UNIX_NAME_LOOKUP; >+ } > } > > srvstr_get_path(req, params, req->flags2, &fname, ¶ms[6], >@@ -5117,7 +5127,7 @@ static void call_trans2qfilepathinfo(connection_struct *conn, > conn, > req->flags2 & FLAGS2_DFS_PATHNAMES, > fname, >- 0, >+ ucf_flags, > NULL, > &smb_fname); > if (!NT_STATUS_IS_OK(status)) { >-- >1.7.3.1 > > >From 081e4582f2c2d4f583152bb9eaac554e9b8b4b04 Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Mon, 24 Oct 2011 15:34:27 -0700 >Subject: [PATCH 3/4] Second part of fix for bug #8541 - readlink() on Linux clients fails if the symlink target is outside of the share. > >The statcache has to do lstat instead of stat when returning cached >posix pathnames. >--- > source3/include/proto.h | 1 + > source3/smbd/filename.c | 2 +- > source3/smbd/statcache.c | 11 ++++++++++- > 3 files changed, 12 insertions(+), 2 deletions(-) > >diff --git a/source3/include/proto.h b/source3/include/proto.h >index 8afc2e7..2e04ca1 100644 >--- a/source3/include/proto.h >+++ b/source3/include/proto.h >@@ -7055,6 +7055,7 @@ void stat_cache_add( const char *full_orig_name, > char *translated_path, > bool case_sensitive); > bool stat_cache_lookup(connection_struct *conn, >+ bool posix_paths, > char **pp_name, > char **pp_dirpath, > char **pp_start, >diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c >index 2ea9d24..0c34aa8 100644 >--- a/source3/smbd/filename.c >+++ b/source3/smbd/filename.c >@@ -295,7 +295,7 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx, > > if((!conn->case_sensitive || !(conn->fs_capabilities & > FILE_CASE_SENSITIVE_SEARCH)) && >- stat_cache_lookup(conn, &smb_fname->base_name, &dirpath, &start, >+ stat_cache_lookup(conn, posix_pathnames, &smb_fname->base_name, &dirpath, &start, > &smb_fname->st)) { > goto done; > } >diff --git a/source3/smbd/statcache.c b/source3/smbd/statcache.c >index db347b5..5f58d5e 100644 >--- a/source3/smbd/statcache.c >+++ b/source3/smbd/statcache.c >@@ -145,6 +145,7 @@ void stat_cache_add( const char *full_orig_name, > * Look through the stat cache for an entry > * > * @param conn A connection struct to do the stat() with. >+ * @param posix_paths Whether to lookup using stat() or lstat() > * @param name The path we are attempting to cache, modified by this routine > * to be correct as far as the cache can tell us. We assume that > * it is a talloc'ed string from top of stack, we free it if >@@ -161,6 +162,7 @@ void stat_cache_add( const char *full_orig_name, > */ > > bool stat_cache_lookup(connection_struct *conn, >+ bool posix_paths, > char **pp_name, > char **pp_dirpath, > char **pp_start, >@@ -176,6 +178,7 @@ bool stat_cache_lookup(connection_struct *conn, > char *name; > TALLOC_CTX *ctx = talloc_tos(); > struct smb_filename smb_fname; >+ int ret; > > *pp_dirpath = NULL; > *pp_start = *pp_name; >@@ -278,7 +281,13 @@ bool stat_cache_lookup(connection_struct *conn, > ZERO_STRUCT(smb_fname); > smb_fname.base_name = translated_path; > >- if (SMB_VFS_STAT(conn, &smb_fname) != 0) { >+ if (posix_paths) { >+ ret = SMB_VFS_LSTAT(conn, &smb_fname); >+ } else { >+ ret = SMB_VFS_STAT(conn, &smb_fname); >+ } >+ >+ if (ret != 0) { > /* Discard this entry - it doesn't exist in the filesystem. */ > memcache_delete(smbd_memcache(), STAT_CACHE, > data_blob_const(chk_name, strlen(chk_name))); >-- >1.7.3.1 > > >From 210a2970d9ba842a939d384d58681f32d6add950 Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Fri, 21 Oct 2011 18:35:15 -0700 >Subject: [PATCH 4/4] Third part of fix for bug #8541 - readlink() on Linux clients fails if the symlink target is outside of the share. > >Missed passing ucf_flags instead of hard coded flags in findfirst call. > >Autobuild-User: Jeremy Allison <jra@samba.org> >Autobuild-Date: Sat Oct 22 06:30:16 CEST 2011 on sn-devel-104 >(cherry picked from commit f4593181876f7a9ef55ceee8d1a20369197a63ba) >--- > source3/smbd/trans2.c | 3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > >diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c >index 6cadc8c..93fa291 100644 >--- a/source3/smbd/trans2.c >+++ b/source3/smbd/trans2.c >@@ -2295,8 +2295,7 @@ close_if_end = %d requires_resume_key = %d level = 0x%x, max_data_bytes = %d\n", > ntstatus = filename_convert(ctx, conn, > req->flags2 & FLAGS2_DFS_PATHNAMES, > directory, >- (UCF_SAVE_LCOMP | >- UCF_ALWAYS_ALLOW_WCARD_LCOMP), >+ ucf_flags, > &mask_contains_wcard, > &smb_dname); > if (!NT_STATUS_IS_OK(ntstatus)) { >-- >1.7.3.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
metze
:
review+
Actions:
View
Attachments on
bug 8541
:
7018
|
7019
|
7021
|
7027
| 7029