diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-02-18 17:20:14 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-02-18 17:20:14 +0000 |
commit | e9a4f896bda4e102630522024a371ad0eb10a6a7 (patch) | |
tree | c34c9e7436a3130a0d59ad24e7d60102ddb6b363 /source3/smbd/reply.c | |
parent | 12b3473e0ced1719b785914622691509d9371e44 (diff) | |
download | samba-e9a4f896bda4e102630522024a371ad0eb10a6a7.tar.gz samba-e9a4f896bda4e102630522024a371ad0eb10a6a7.tar.bz2 samba-e9a4f896bda4e102630522024a371ad0eb10a6a7.zip |
Fixed problem with renaming folder on top level share.
jra@cygnus.com
(This used to be commit 7ba1cff9341b4094fddf1e2e529b1e5b79aea675)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 50 |
1 files changed, 35 insertions, 15 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 46c385b85e..5dbd39f746 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2553,9 +2553,18 @@ int reply_mv(char *inbuf,char *outbuf) unix_convert(name,cnum,0); unix_convert(newname,cnum,newname_last_component); + /* + * Split the old name into directory and last component + * strings. Note that unix_convert may have stripped off a + * leading ./ from both name and newname if the rename is + * at the root of the share. We need to make sure either both + * name and newname contain a / character or neither of them do + * as this is checked in resolve_wildcards(). + */ + p = strrchr(name,'/'); if (!p) { - strcpy(directory,"./"); + strcpy(directory,"."); strcpy(mask,name); } else { *p = 0; @@ -2570,32 +2579,45 @@ int reply_mv(char *inbuf,char *outbuf) has_wild = strchr(mask,'*') || strchr(mask,'?'); if (!has_wild) { + BOOL is_short_name = is_8_3(name, True); + + /* Add a terminating '/' to the directory name. */ strcat(directory,"/"); strcat(directory,mask); - DEBUG(3,("reply_mv : case_sensitive = %d, case_preserve = %d, name = %s, newname = %s, newname_last_component = %s\n", case_sensitive, case_preserve, name, newname, newname_last_component)); + /* Ensure newname contains a '/' also */ + if(strrchr(newname,'/') == 0) { + pstring tmpstr; + + strcpy(tmpstr, "./"); + strcat(tmpstr, newname); + strcpy(newname, tmpstr); + } + + DEBUG(3,("reply_mv : case_sensitive = %d, case_preserve = %d, short case preserve = %d, directory = %s, newname = %s, newname_last_component = %s, is_8_3 = %d\n", + case_sensitive, case_preserve, short_case_preserve, directory, + newname, newname_last_component, is_short_name)); /* * Check for special case with case preserving and not - * case sensitive, if name and newname are identical, + * case sensitive, if directory and newname are identical, * and the old last component differs from the original * last component only by case, then we should allow * the rename (user is trying to change the case of the * filename). */ - if((case_sensitive == False) && ((case_preserve == True) || - ((short_case_preserve == True) && is_8_3(name, True))) && - strcsequal(name, newname)) { + if((case_sensitive == False) && ( ((case_preserve == True) && (is_short_name == False)) || + ((short_case_preserve == True) && (is_short_name == True))) && + strcsequal(directory, newname)) { pstring newname_modified_last_component; /* * Get the last component of the modified name. + * Note that we guarantee that newname contains a '/' + * character above. */ p = strrchr(newname,'/'); - if (!p) - strcpy(newname_modified_last_component,name); - else - strcpy(newname_modified_last_component,p+1); + strcpy(newname_modified_last_component,p+1); if(strcsequal(newname_modified_last_component, newname_last_component) == False) { @@ -2603,10 +2625,7 @@ int reply_mv(char *inbuf,char *outbuf) * Replace the modified last component with * the original. */ - if(p) - strcpy(p+1, newname_last_component); - else - strcpy(newname, newname_last_component); + strcpy(p+1, newname_last_component); } } @@ -2615,7 +2634,8 @@ int reply_mv(char *inbuf,char *outbuf) !file_exist(newname,NULL) && !sys_rename(directory,newname)) count++; - DEBUG(3,("reply_mv : doing rename on %s -> %s\n",directory,newname)); + DEBUG(3,("reply_mv : %s doing rename on %s -> %s\n",(count != 0) ? "succeeded" : "failed", + directory,newname)); if (!count) exists = file_exist(directory,NULL); if (!count && exists && file_exist(newname,NULL)) { |