s3: remove unused Variable
[ira/wip.git] / source3 / smbd / dosmode.c
index de0748236966020fdbab46e2341659652667ccb8..bc39e02285718259a033b27425646d906eeb91b8 100644 (file)
@@ -3,27 +3,40 @@
    dos mode handling functions
    Copyright (C) Andrew Tridgell 1992-1998
    Copyright (C) James Peach 2006
-   
+
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "includes.h"
+#include "librpc/gen_ndr/ndr_xattr.h"
+
+static uint32_t filter_mode_by_protocol(uint32_t mode)
+{
+       if (get_Protocol() <= PROTOCOL_LANMAN2) {
+               DEBUG(10,("filter_mode_by_protocol: "
+                       "filtering result 0x%x to 0x%x\n",
+                       (unsigned int)mode,
+                       (unsigned int)(mode & 0x3f) ));
+               mode &= 0x3f;
+       }
+       return mode;
+}
 
 static int set_sparse_flag(const SMB_STRUCT_STAT * const sbuf)
 {
 #if defined (HAVE_STAT_ST_BLOCKS) && defined(STAT_ST_BLOCKSIZE)
-       if (sbuf->st_size > sbuf->st_blocks * (SMB_OFF_T)STAT_ST_BLOCKSIZE) {
+       if (sbuf->st_ex_size > sbuf->st_ex_blocks * (SMB_OFF_T)STAT_ST_BLOCKSIZE) {
                return FILE_ATTRIBUTE_SPARSE;
        }
 #endif
@@ -64,7 +77,8 @@ static int set_link_read_only_flag(const SMB_STRUCT_STAT *const sbuf)
          }
 ****************************************************************************/
 
-mode_t unix_mode(connection_struct *conn, int dosmode, const char *fname,
+mode_t unix_mode(connection_struct *conn, int dosmode,
+                const struct smb_filename *smb_fname,
                 const char *inherit_from_dir)
 {
        mode_t result = (S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR | S_IWGRP | S_IWOTH);
@@ -75,23 +89,39 @@ mode_t unix_mode(connection_struct *conn, int dosmode, const char *fname,
                result &= ~(S_IWUSR | S_IWGRP | S_IWOTH);
        }
 
-       if (fname && (inherit_from_dir != NULL)
-           && lp_inherit_perms(SNUM(conn))) {
-               SMB_STRUCT_STAT sbuf;
+       if ((inherit_from_dir != NULL) && lp_inherit_perms(SNUM(conn))) {
+               struct smb_filename *smb_fname_parent = NULL;
+               NTSTATUS status;
 
-               DEBUG(2, ("unix_mode(%s) inheriting from %s\n", fname,
+               DEBUG(2, ("unix_mode(%s) inheriting from %s\n",
+                         smb_fname_str_dbg(smb_fname),
                          inherit_from_dir));
-               if (SMB_VFS_STAT(conn, inherit_from_dir, &sbuf) != 0) {
-                       DEBUG(4,("unix_mode(%s) failed, [dir %s]: %s\n", fname,
+
+               status = create_synthetic_smb_fname(talloc_tos(),
+                                                   inherit_from_dir, NULL,
+                                                   NULL, &smb_fname_parent);
+               if (!NT_STATUS_IS_OK(status)) {
+                       DEBUG(1,("unix_mode(%s) failed, [dir %s]: %s\n",
+                                smb_fname_str_dbg(smb_fname),
+                                inherit_from_dir, nt_errstr(status)));
+                       return(0);
+               }
+
+               if (SMB_VFS_STAT(conn, smb_fname_parent) != 0) {
+                       DEBUG(4,("unix_mode(%s) failed, [dir %s]: %s\n",
+                                smb_fname_str_dbg(smb_fname),
                                 inherit_from_dir, strerror(errno)));
+                       TALLOC_FREE(smb_fname_parent);
                        return(0);      /* *** shouldn't happen! *** */
                }
 
                /* Save for later - but explicitly remove setuid bit for safety. */
-               dir_mode = sbuf.st_mode & ~S_ISUID;
-               DEBUG(2,("unix_mode(%s) inherit mode %o\n",fname,(int)dir_mode));
+               dir_mode = smb_fname_parent->st.st_ex_mode & ~S_ISUID;
+               DEBUG(2,("unix_mode(%s) inherit mode %o\n",
+                        smb_fname_str_dbg(smb_fname), (int)dir_mode));
                /* Clear "result" */
                result = 0;
+               TALLOC_FREE(smb_fname_parent);
        } 
 
        if (IS_DOS_DIR(dosmode)) {
@@ -117,7 +147,7 @@ mode_t unix_mode(connection_struct *conn, int dosmode, const char *fname,
 
                if (lp_map_system(SNUM(conn)) && IS_DOS_SYSTEM(dosmode))
                        result |= S_IXGRP;
+
                if (lp_map_hidden(SNUM(conn)) && IS_DOS_HIDDEN(dosmode))
                        result |= S_IXOTH;  
 
@@ -132,7 +162,8 @@ mode_t unix_mode(connection_struct *conn, int dosmode, const char *fname,
                }
        }
 
-       DEBUG(3,("unix_mode(%s) returning 0%o\n",fname,(int)result ));
+       DEBUG(3,("unix_mode(%s) returning 0%o\n", smb_fname_str_dbg(smb_fname),
+                (int)result));
        return(result);
 }
 
@@ -140,37 +171,38 @@ mode_t unix_mode(connection_struct *conn, int dosmode, const char *fname,
  Change a unix mode to a dos mode.
 ****************************************************************************/
 
-static uint32 dos_mode_from_sbuf(connection_struct *conn, const char *path, SMB_STRUCT_STAT *sbuf)
+static uint32 dos_mode_from_sbuf(connection_struct *conn,
+                                const struct smb_filename *smb_fname)
 {
        int result = 0;
        enum mapreadonly_options ro_opts = (enum mapreadonly_options)lp_map_readonly(SNUM(conn));
 
        if (ro_opts == MAP_READONLY_YES) {
                /* Original Samba method - map inverse of user "w" bit. */
-               if ((sbuf->st_mode & S_IWUSR) == 0) {
+               if ((smb_fname->st.st_ex_mode & S_IWUSR) == 0) {
                        result |= aRONLY;
                }
        } else if (ro_opts == MAP_READONLY_PERMISSIONS) {
                /* Check actual permissions for read-only. */
-               if (!can_write_to_file(conn, path, sbuf)) {
+               if (!can_write_to_file(conn, smb_fname)) {
                        result |= aRONLY;
                }
        } /* Else never set the readonly bit. */
 
-       if (MAP_ARCHIVE(conn) && ((sbuf->st_mode & S_IXUSR) != 0))
+       if (MAP_ARCHIVE(conn) && ((smb_fname->st.st_ex_mode & S_IXUSR) != 0))
                result |= aARCH;
 
-       if (MAP_SYSTEM(conn) && ((sbuf->st_mode & S_IXGRP) != 0))
+       if (MAP_SYSTEM(conn) && ((smb_fname->st.st_ex_mode & S_IXGRP) != 0))
                result |= aSYSTEM;
-       
-       if (MAP_HIDDEN(conn) && ((sbuf->st_mode & S_IXOTH) != 0))
+
+       if (MAP_HIDDEN(conn) && ((smb_fname->st.st_ex_mode & S_IXOTH) != 0))
                result |= aHIDDEN;   
-  
-       if (S_ISDIR(sbuf->st_mode))
+
+       if (S_ISDIR(smb_fname->st.st_ex_mode))
                result = aDIR | (result & aRONLY);
 
-       result |= set_sparse_flag(sbuf);
-       result |= set_link_read_only_flag(sbuf);
+       result |= set_sparse_flag(&smb_fname->st);
+       result |= set_link_read_only_flag(&smb_fname->st);
 
        DEBUG(8,("dos_mode_from_sbuf returning "));
 
@@ -179,20 +211,25 @@ static uint32 dos_mode_from_sbuf(connection_struct *conn, const char *path, SMB_
        if (result & aSYSTEM) DEBUG(8, ("s"));
        if (result & aDIR   ) DEBUG(8, ("d"));
        if (result & aARCH  ) DEBUG(8, ("a"));
-       
+
        DEBUG(8,("\n"));
        return result;
 }
 
 /****************************************************************************
  Get DOS attributes from an EA.
+ This can also pull the create time into the stat struct inside smb_fname.
 ****************************************************************************/
 
-static bool get_ea_dos_attribute(connection_struct *conn, const char *path,SMB_STRUCT_STAT *sbuf, uint32 *pattr)
+static bool get_ea_dos_attribute(connection_struct *conn,
+                                struct smb_filename *smb_fname,
+                                uint32 *pattr)
 {
+       struct xattr_DOSATTRIB dosattrib;
+       DATA_BLOB blob;
        ssize_t sizeret;
        fstring attrstr;
-       unsigned int dosattr;
+       uint32_t dosattr;
 
        if (!lp_store_dos_attributes(SNUM(conn))) {
                return False;
@@ -201,28 +238,82 @@ static bool get_ea_dos_attribute(connection_struct *conn, const char *path,SMB_S
        /* Don't reset pattr to zero as we may already have filename-based attributes we
           need to preserve. */
 
-       sizeret = SMB_VFS_GETXATTR(conn, path, SAMBA_XATTR_DOS_ATTRIB, attrstr, sizeof(attrstr));
+       sizeret = SMB_VFS_GETXATTR(conn, smb_fname->base_name,
+                                  SAMBA_XATTR_DOS_ATTRIB, attrstr,
+                                  sizeof(attrstr));
        if (sizeret == -1) {
-#if defined(ENOTSUP) && defined(ENOATTR)
-               if ((errno != ENOTSUP) && (errno != ENOATTR) && (errno != EACCES) && (errno != EPERM)) {
-                       DEBUG(1,("get_ea_dos_attributes: Cannot get attribute from EA on file %s: Error = %s\n",
-                               path, strerror(errno) ));
+               if (errno == ENOSYS
+#if defined(ENOTSUP)
+                       || errno == ENOTSUP) {
+#else
+                               ) {
+#endif
+                       DEBUG(1,("get_ea_dos_attributes: Cannot get attribute "
+                                "from EA on file %s: Error = %s\n",
+                                smb_fname_str_dbg(smb_fname),
+                                strerror(errno)));
                        set_store_dos_attributes(SNUM(conn), False);
                }
-#endif
                return False;
        }
-       /* Null terminate string. */
-       attrstr[sizeret] = 0;
-       DEBUG(10,("get_ea_dos_attribute: %s attrstr = %s\n", path, attrstr));
 
-       if (sizeret < 2 || attrstr[0] != '0' || attrstr[1] != 'x' ||
-                       sscanf(attrstr, "%x", &dosattr) != 1) {
-               DEBUG(1,("get_ea_dos_attributes: Badly formed DOSATTRIB on file %s - %s\n", path, attrstr));
-                return False;
-        }
+       blob.data = (uint8_t *)attrstr;
+       blob.length = sizeret;
+
+       DEBUG(10,("get_ea_dos_attribute: %s attr = %s\n",
+                 smb_fname_str_dbg(smb_fname), dosattrib.attrib_hex));
+
+       switch (dosattrib.version) {
+               case 0xFFFF:
+                       dosattr = dosattrib.info.compatinfoFFFF.attrib;
+                       break;
+               case 1:
+                       dosattr = dosattrib.info.info1.attrib;
+                       if (!null_nttime(dosattrib.info.info1.create_time)) {
+                               struct timespec create_time =
+                                       nt_time_to_unix_timespec(
+                                               &dosattrib.info.info1.create_time);
 
-       if (S_ISDIR(sbuf->st_mode)) {
+                               update_stat_ex_create_time(&smb_fname->st,
+                                                       create_time);
+
+                               DEBUG(10,("get_ea_dos_attributes: file %s case 1 "
+                                       "set btime %s\n",
+                                       smb_fname_str_dbg(smb_fname),
+                                       time_to_asc(convert_timespec_to_time_t(
+                                               create_time)) ));
+                       }
+                       break;
+               case 2:
+                       dosattr = dosattrib.info.oldinfo2.attrib;
+                       /* Don't know what flags to check for this case. */
+                       break;
+               case 3:
+                       dosattr = dosattrib.info.info3.attrib;
+                       if ((dosattrib.info.info3.valid_flags & XATTR_DOSINFO_CREATE_TIME) &&
+                                       !null_nttime(dosattrib.info.info3.create_time)) {
+                               struct timespec create_time =
+                                       nt_time_to_unix_timespec(
+                                               &dosattrib.info.info3.create_time);
+
+                               update_stat_ex_create_time(&smb_fname->st,
+                                                       create_time);
+
+                               DEBUG(10,("get_ea_dos_attributes: file %s case 3 "
+                                       "set btime %s\n",
+                                       smb_fname_str_dbg(smb_fname),
+                                       time_to_asc(convert_timespec_to_time_t(
+                                               create_time)) ));
+                       }
+                       break;
+                       default:
+                               DEBUG(1,("get_ea_dos_attributes: Badly formed DOSATTRIB on "
+                                        "file %s - %s\n", smb_fname_str_dbg(smb_fname),
+                                        attrstr));
+                       return false;
+       }
+
+       if (S_ISDIR(smb_fname->st.st_ex_mode)) {
                dosattr |= aDIR;
        }
        *pattr = (uint32)(dosattr & SAMBA_ATTRIBUTES_MASK);
@@ -234,7 +325,7 @@ static bool get_ea_dos_attribute(connection_struct *conn, const char *path,SMB_S
        if (dosattr & aSYSTEM) DEBUG(8, ("s"));
        if (dosattr & aDIR   ) DEBUG(8, ("d"));
        if (dosattr & aARCH  ) DEBUG(8, ("a"));
-       
+
        DEBUG(8,("\n"));
 
        return True;
@@ -242,20 +333,50 @@ static bool get_ea_dos_attribute(connection_struct *conn, const char *path,SMB_S
 
 /****************************************************************************
  Set DOS attributes in an EA.
+ Also sets the create time.
 ****************************************************************************/
 
-static bool set_ea_dos_attribute(connection_struct *conn, const char *path, SMB_STRUCT_STAT *sbuf, uint32 dosmode)
+static bool set_ea_dos_attribute(connection_struct *conn,
+                                struct smb_filename *smb_fname,
+                                uint32 dosmode)
 {
-       fstring attrstr;
+       struct xattr_DOSATTRIB dosattrib;
+       enum ndr_err_code ndr_err;
+       DATA_BLOB blob;
        files_struct *fsp = NULL;
-       bool ret = False;
+       bool ret = false;
 
        if (!lp_store_dos_attributes(SNUM(conn))) {
                return False;
        }
 
-       snprintf(attrstr, sizeof(attrstr)-1, "0x%x", dosmode & SAMBA_ATTRIBUTES_MASK);
-       if (SMB_VFS_SETXATTR(conn, path, SAMBA_XATTR_DOS_ATTRIB, attrstr, strlen(attrstr), 0) == -1) {
+       ZERO_STRUCT(dosattrib);
+       ZERO_STRUCT(blob);
+
+       dosattrib.version = 3;
+       dosattrib.info.info3.valid_flags = XATTR_DOSINFO_ATTRIB|
+                                       XATTR_DOSINFO_CREATE_TIME;
+       dosattrib.info.info3.attrib = dosmode;
+       unix_timespec_to_nt_time(&dosattrib.info.info3.create_time,
+                               smb_fname->st.st_ex_btime);
+
+       ndr_err = ndr_push_struct_blob(
+                       &blob, talloc_tos(), NULL, &dosattrib,
+                       (ndr_push_flags_fn_t)ndr_push_xattr_DOSATTRIB);
+
+       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+               DEBUG(5, ("create_acl_blob: ndr_push_xattr_DOSATTRIB failed: %s\n",
+                       ndr_errstr(ndr_err)));
+               return false;
+       }
+
+       if (blob.data == NULL || blob.length == 0) {
+               return false;
+       }
+
+       if (SMB_VFS_SETXATTR(conn, smb_fname->base_name,
+                            SAMBA_XATTR_DOS_ATTRIB, blob.data, blob.length,
+                            0) == -1) {
                if((errno != EPERM) && (errno != EACCES)) {
                        if (errno == ENOSYS
 #if defined(ENOTSUP)
@@ -263,9 +384,13 @@ static bool set_ea_dos_attribute(connection_struct *conn, const char *path, SMB_
 #else
                                ) {
 #endif
+                               DEBUG(1,("set_ea_dos_attributes: Cannot set "
+                                        "attribute EA on file %s: Error = %s\n",
+                                        smb_fname_str_dbg(smb_fname),
+                                        strerror(errno) ));
                                set_store_dos_attributes(SNUM(conn), False);
                        }
-                       return False;
+                       return false;
                }
 
                /* We want DOS semantics, ie allow non owner with write permission to change the
@@ -274,7 +399,7 @@ static bool set_ea_dos_attribute(connection_struct *conn, const char *path, SMB_
 
                /* Check if we have write access. */
                if(!CAN_WRITE(conn) || !lp_dos_filemode(SNUM(conn)))
-                       return False;
+                       return false;
 
                /*
                 * We need to open the file with write access whilst
@@ -282,58 +407,72 @@ static bool set_ea_dos_attribute(connection_struct *conn, const char *path, SMB_
                 * are not violating security in doing the setxattr.
                 */
 
-               if (!NT_STATUS_IS_OK(open_file_fchmod(NULL, conn, path, sbuf,
+               if (!NT_STATUS_IS_OK(open_file_fchmod(NULL, conn, smb_fname,
                                                      &fsp)))
                        return ret;
                become_root();
-               if (SMB_VFS_SETXATTR(conn, path, SAMBA_XATTR_DOS_ATTRIB, attrstr, strlen(attrstr), 0) == 0) {
-                       ret = True;
+               if (SMB_VFS_SETXATTR(conn, smb_fname->base_name,
+                                    SAMBA_XATTR_DOS_ATTRIB, blob.data,
+                                    blob.length, 0) == 0) {
+                       ret = true;
                }
                unbecome_root();
                close_file_fchmod(NULL, fsp);
                return ret;
        }
-       DEBUG(10,("set_ea_dos_attribute: set EA %s on file %s\n", attrstr, path));
-       return True;
+       DEBUG(10,("set_ea_dos_attribute: set EA 0x%x on file %s\n",
+               (unsigned int)dosmode,
+               smb_fname_str_dbg(smb_fname)));
+       return true;
 }
 
 /****************************************************************************
  Change a unix mode to a dos mode for an ms dfs link.
 ****************************************************************************/
 
-uint32 dos_mode_msdfs(connection_struct *conn, const char *path,SMB_STRUCT_STAT *sbuf)
+uint32 dos_mode_msdfs(connection_struct *conn,
+                     const struct smb_filename *smb_fname)
 {
        uint32 result = 0;
 
-       DEBUG(8,("dos_mode_msdfs: %s\n", path));
+       DEBUG(8,("dos_mode_msdfs: %s\n", smb_fname_str_dbg(smb_fname)));
 
-       if (!VALID_STAT(*sbuf)) {
+       if (!VALID_STAT(smb_fname->st)) {
                return 0;
        }
 
        /* First do any modifications that depend on the path name. */
        /* hide files with a name starting with a . */
        if (lp_hide_dot_files(SNUM(conn))) {
-               const char *p = strrchr_m(path,'/');
+               const char *p = strrchr_m(smb_fname->base_name, '/');
                if (p) {
                        p++;
                } else {
-                       p = path;
+                       p = smb_fname->base_name;
                }
-               
-               if (p[0] == '.' && p[1] != '.' && p[1] != 0) {
+
+               /* Only . and .. are not hidden. */
+               if (p[0] == '.' && !((p[1] == '\0') ||
+                               (p[1] == '.' && p[2] == '\0'))) {
                        result |= aHIDDEN;
                }
        }
-       
-       result |= dos_mode_from_sbuf(conn, path, sbuf);
+
+       result |= dos_mode_from_sbuf(conn, smb_fname);
 
        /* Optimization : Only call is_hidden_path if it's not already
           hidden. */
-       if (!(result & aHIDDEN) && IS_HIDDEN_PATH(conn,path)) {
+       if (!(result & aHIDDEN) &&
+           IS_HIDDEN_PATH(conn, smb_fname->base_name)) {
                result |= aHIDDEN;
        }
 
+       if (result == 0) {
+               result = FILE_ATTRIBUTE_NORMAL;
+       }
+
+       result = filter_mode_by_protocol(result);
+
        DEBUG(8,("dos_mode_msdfs returning "));
 
        if (result & aHIDDEN) DEBUG(8, ("h"));
@@ -342,7 +481,7 @@ uint32 dos_mode_msdfs(connection_struct *conn, const char *path,SMB_STRUCT_STAT
        if (result & aDIR   ) DEBUG(8, ("d"));
        if (result & aARCH  ) DEBUG(8, ("a"));
        if (result & FILE_ATTRIBUTE_SPARSE ) DEBUG(8, ("[sparse]"));
-       
+
        DEBUG(8,("\n"));
 
        return(result);
@@ -372,56 +511,55 @@ int dos_attributes_to_stat_dos_flags(uint32_t dosmode)
 }
 
 /****************************************************************************
- Gets DOS attributes, accessed via st_flags in the stat struct.
+ Gets DOS attributes, accessed via st_ex_flags in the stat struct.
 ****************************************************************************/
 
 static bool get_stat_dos_flags(connection_struct *conn,
-                              const char *fname,
-                              const SMB_STRUCT_STAT *sbuf,
+                              const struct smb_filename *smb_fname,
                               uint32_t *dosmode)
 {
-       SMB_ASSERT(sbuf && VALID_STAT(*sbuf));
+       SMB_ASSERT(VALID_STAT(smb_fname->st));
        SMB_ASSERT(dosmode);
 
        if (!lp_store_dos_attributes(SNUM(conn))) {
                return false;
        }
 
-       DEBUG(5, ("Getting stat dos attributes for %s.\n", fname));
+       DEBUG(5, ("Getting stat dos attributes for %s.\n",
+                 smb_fname_str_dbg(smb_fname)));
 
-       if (sbuf->st_flags & UF_DOS_ARCHIVE)
+       if (smb_fname->st.st_ex_flags & UF_DOS_ARCHIVE)
                *dosmode |= aARCH;
-       if (sbuf->st_flags & UF_DOS_HIDDEN)
+       if (smb_fname->st.st_ex_flags & UF_DOS_HIDDEN)
                *dosmode |= aHIDDEN;
-       if (sbuf->st_flags & UF_DOS_RO)
+       if (smb_fname->st.st_ex_flags & UF_DOS_RO)
                *dosmode |= aRONLY;
-       if (sbuf->st_flags & UF_DOS_SYSTEM)
+       if (smb_fname->st.st_ex_flags & UF_DOS_SYSTEM)
                *dosmode |= aSYSTEM;
-       if (sbuf->st_flags & UF_DOS_NOINDEX)
+       if (smb_fname->st.st_ex_flags & UF_DOS_NOINDEX)
                *dosmode |= FILE_ATTRIBUTE_NONINDEXED;
-       if (S_ISDIR(sbuf->st_mode))
+       if (S_ISDIR(smb_fname->st.st_ex_mode))
                *dosmode |= aDIR;
 
-       *dosmode |= set_sparse_flag(sbuf);
-       *dosmode |= set_link_read_only_flag(sbuf);
+       *dosmode |= set_sparse_flag(&smb_fname->st);
+       *dosmode |= set_link_read_only_flag(&smb_fname->st);
 
        return true;
 }
 
 /****************************************************************************
- Sets DOS attributes, stored in st_flags of the inode.
+ Sets DOS attributes, stored in st_ex_flags of the inode.
 ****************************************************************************/
 
 static bool set_stat_dos_flags(connection_struct *conn,
-                               const char *fname,
-                               SMB_STRUCT_STAT *sbuf,
-                               uint32_t dosmode,
-                               bool *attributes_changed)
+                              const struct smb_filename *smb_fname,
+                              uint32_t dosmode,
+                              bool *attributes_changed)
 {
        uint32_t new_flags = 0;
        int error = 0;
 
-       SMB_ASSERT(sbuf && VALID_STAT(*sbuf));
+       SMB_ASSERT(VALID_STAT(smb_fname->st));
        SMB_ASSERT(attributes_changed);
 
        *attributes_changed = false;
@@ -430,23 +568,25 @@ static bool set_stat_dos_flags(connection_struct *conn,
                return false;
        }
 
-       DEBUG(5, ("Setting stat dos attributes for %s.\n", fname));
+       DEBUG(5, ("Setting stat dos attributes for %s.\n",
+                 smb_fname_str_dbg(smb_fname)));
 
-       new_flags = (sbuf->st_flags & ~UF_DOS_FLAGS) |
+       new_flags = (smb_fname->st.st_ex_flags & ~UF_DOS_FLAGS) |
                     dos_attributes_to_stat_dos_flags(dosmode);
 
        /* Return early if no flags changed. */
-       if (new_flags == sbuf->st_flags)
+       if (new_flags == smb_fname->st.st_ex_flags)
                return true;
 
        DEBUG(5, ("Setting stat dos attributes=0x%x, prev=0x%x\n", new_flags,
-                 sbuf->st_flags));
+                 smb_fname->st.st_ex_flags));
 
        /* Set new flags with chflags. */
-       error = SMB_VFS_CHFLAGS(conn, fname, new_flags);
+       error = SMB_VFS_CHFLAGS(conn, smb_fname->base_name, new_flags);
        if (error) {
                DEBUG(0, ("Failed setting new stat dos attributes (0x%x) on "
-                         "file %s! errno=%d\n", new_flags, fname, errno));
+                         "file %s! errno=%d\n", new_flags,
+                         smb_fname_str_dbg(smb_fname), errno));
                return false;
        }
 
@@ -457,58 +597,68 @@ static bool set_stat_dos_flags(connection_struct *conn,
 
 /****************************************************************************
  Change a unix mode to a dos mode.
+ May also read the create timespec into the stat struct in smb_fname
+ if "store dos attributes" is true.
 ****************************************************************************/
 
-uint32 dos_mode(connection_struct *conn, const char *path,SMB_STRUCT_STAT *sbuf)
+uint32 dos_mode(connection_struct *conn, struct smb_filename *smb_fname)
 {
        uint32 result = 0;
        bool offline, used_stat_dos_flags = false;
 
-       DEBUG(8,("dos_mode: %s\n", path));
+       DEBUG(8,("dos_mode: %s\n", smb_fname_str_dbg(smb_fname)));
 
-       if (!VALID_STAT(*sbuf)) {
+       if (!VALID_STAT(smb_fname->st)) {
                return 0;
        }
 
        /* First do any modifications that depend on the path name. */
        /* hide files with a name starting with a . */
        if (lp_hide_dot_files(SNUM(conn))) {
-               const char *p = strrchr_m(path,'/');
+               const char *p = strrchr_m(smb_fname->base_name,'/');
                if (p) {
                        p++;
                } else {
-                       p = path;
+                       p = smb_fname->base_name;
                }
-               
-               if (p[0] == '.' && p[1] != '.' && p[1] != 0) {
+
+               /* Only . and .. are not hidden. */
+               if (p[0] == '.' && !((p[1] == '\0') ||
+                               (p[1] == '.' && p[2] == '\0'))) {
                        result |= aHIDDEN;
                }
        }
-       
+
 #ifdef HAVE_STAT_DOS_FLAGS
-       used_stat_dos_flags = get_stat_dos_flags(conn, path, sbuf, &result);
+       used_stat_dos_flags = get_stat_dos_flags(conn, smb_fname, &result);
 #endif
        if (!used_stat_dos_flags) {
                /* Get the DOS attributes from an EA by preference. */
-               if (get_ea_dos_attribute(conn, path, sbuf, &result)) {
-                       result |= set_sparse_flag(sbuf);
+               if (get_ea_dos_attribute(conn, smb_fname, &result)) {
+                       result |= set_sparse_flag(&smb_fname->st);
                } else {
-                       result |= dos_mode_from_sbuf(conn, path, sbuf);
+                       result |= dos_mode_from_sbuf(conn, smb_fname);
                }
        }
 
-       
-       offline = SMB_VFS_IS_OFFLINE(conn, path, sbuf);
-       if (S_ISREG(sbuf->st_mode) && offline) {
+       offline = SMB_VFS_IS_OFFLINE(conn, smb_fname->base_name, &smb_fname->st);
+       if (S_ISREG(smb_fname->st.st_ex_mode) && offline) {
                result |= FILE_ATTRIBUTE_OFFLINE;
        }
 
        /* Optimization : Only call is_hidden_path if it's not already
           hidden. */
-       if (!(result & aHIDDEN) && IS_HIDDEN_PATH(conn,path)) {
+       if (!(result & aHIDDEN) &&
+           IS_HIDDEN_PATH(conn, smb_fname->base_name)) {
                result |= aHIDDEN;
        }
 
+       if (result == 0) {
+               result = FILE_ATTRIBUTE_NORMAL;
+       }
+
+       result = filter_mode_by_protocol(result);
+
        DEBUG(8,("dos_mode returning "));
 
        if (result & aHIDDEN) DEBUG(8, ("h"));
@@ -517,7 +667,7 @@ uint32 dos_mode(connection_struct *conn, const char *path,SMB_STRUCT_STAT *sbuf)
        if (result & aDIR   ) DEBUG(8, ("d"));
        if (result & aARCH  ) DEBUG(8, ("a"));
        if (result & FILE_ATTRIBUTE_SPARSE ) DEBUG(8, ("[sparse]"));
-       
+
        DEBUG(8,("\n"));
 
        return(result);
@@ -525,54 +675,51 @@ uint32 dos_mode(connection_struct *conn, const char *path,SMB_STRUCT_STAT *sbuf)
 
 /*******************************************************************
  chmod a file - but preserve some bits.
+ If "store dos attributes" is also set it will store the create time
+ from the stat struct in smb_fname (in NTTIME format) in the EA
+ attribute also.
 ********************************************************************/
 
-int file_set_dosmode(connection_struct *conn, const char *fname,
-                    uint32 dosmode, SMB_STRUCT_STAT *st,
-                    const char *parent_dir,
-                    bool newfile)
+int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname,
+                    uint32 dosmode, const char *parent_dir, bool newfile)
 {
-       SMB_STRUCT_STAT st1;
        int mask=0;
        mode_t tmp;
        mode_t unixmode;
        int ret = -1, lret = -1;
        uint32_t old_mode;
+       struct timespec new_create_timespec;
 
        /* We only allow READONLY|HIDDEN|SYSTEM|DIRECTORY|ARCHIVE here. */
        dosmode &= (SAMBA_ATTRIBUTES_MASK | FILE_ATTRIBUTE_OFFLINE);
 
-       DEBUG(10,("file_set_dosmode: setting dos mode 0x%x on file %s\n", dosmode, fname));
-
-       if (st == NULL) {
-               SET_STAT_INVALID(st1);
-               st = &st1;
-       }
-
-       if (!VALID_STAT(*st)) {
-               if (SMB_VFS_STAT(conn,fname,st))
-                       return(-1);
-       }
+       DEBUG(10,("file_set_dosmode: setting dos mode 0x%x on file %s\n",
+                 dosmode, smb_fname_str_dbg(smb_fname)));
 
-       unixmode = st->st_mode;
+       unixmode = smb_fname->st.st_ex_mode;
 
-       get_acl_group_bits(conn, fname, &st->st_mode);
+       get_acl_group_bits(conn, smb_fname->base_name,
+                          &smb_fname->st.st_ex_mode);
 
-       if (S_ISDIR(st->st_mode))
+       if (S_ISDIR(smb_fname->st.st_ex_mode))
                dosmode |= aDIR;
        else
                dosmode &= ~aDIR;
 
-       old_mode = dos_mode(conn,fname,st);
-       
+       new_create_timespec = smb_fname->st.st_ex_btime;
+
+       old_mode = dos_mode(conn, smb_fname);
+
        if (dosmode & FILE_ATTRIBUTE_OFFLINE) {
                if (!(old_mode & FILE_ATTRIBUTE_OFFLINE)) {
-                       lret = SMB_VFS_SET_OFFLINE(conn, fname);
+                       lret = SMB_VFS_SET_OFFLINE(conn, smb_fname->base_name);
                        if (lret == -1) {
-                               DEBUG(0, ("set_dos_mode: client has asked to set "
-                                         "FILE_ATTRIBUTE_OFFLINE to %s/%s but there was "
-                                         "an error while setting it or it is not supported.\n",
-                                         parent_dir, fname));
+                               DEBUG(0, ("set_dos_mode: client has asked to "
+                                         "set FILE_ATTRIBUTE_OFFLINE to "
+                                         "%s/%s but there was an error while "
+                                         "setting it or it is not "
+                                         "supported.\n", parent_dir,
+                                         smb_fname_str_dbg(smb_fname)));
                        }
                }
        }
@@ -580,39 +727,44 @@ int file_set_dosmode(connection_struct *conn, const char *fname,
        dosmode  &= ~FILE_ATTRIBUTE_OFFLINE;
        old_mode &= ~FILE_ATTRIBUTE_OFFLINE;
 
-       if (old_mode == dosmode) {
-               st->st_mode = unixmode;
+       if (old_mode == dosmode &&
+                       (timespec_compare(&new_create_timespec,
+                               &smb_fname->st.st_ex_btime) == 0)) {
+               smb_fname->st.st_ex_mode = unixmode;
                return(0);
        }
 
+       smb_fname->st.st_ex_btime = new_create_timespec;
+
 #ifdef HAVE_STAT_DOS_FLAGS
        {
                bool attributes_changed;
 
-               if (set_stat_dos_flags(conn, fname, st, dosmode,
+               if (set_stat_dos_flags(conn, smb_fname, dosmode,
                                       &attributes_changed))
                {
                        if (!newfile && attributes_changed) {
                                notify_fname(conn, NOTIFY_ACTION_MODIFIED,
-                                   FILE_NOTIFY_CHANGE_ATTRIBUTES, fname);
+                                   FILE_NOTIFY_CHANGE_ATTRIBUTES,
+                                   smb_fname->base_name);
                        }
-                       st->st_mode = unixmode;
+                       smb_fname->st.st_ex_mode = unixmode;
                        return 0;
                }
        }
 #endif
-
        /* Store the DOS attributes in an EA by preference. */
-       if (set_ea_dos_attribute(conn, fname, st, dosmode)) {
+       if (set_ea_dos_attribute(conn, smb_fname, dosmode)) {
                if (!newfile) {
                        notify_fname(conn, NOTIFY_ACTION_MODIFIED,
-                               FILE_NOTIFY_CHANGE_ATTRIBUTES, fname);
+                                    FILE_NOTIFY_CHANGE_ATTRIBUTES,
+                                    smb_fname->base_name);
                }
-               st->st_mode = unixmode;
+               smb_fname->st.st_ex_mode = unixmode;
                return 0;
        }
 
-       unixmode = unix_mode(conn,dosmode,fname, parent_dir);
+       unixmode = unix_mode(conn, dosmode, smb_fname, parent_dir);
 
        /* preserve the s bits */
        mask |= (S_ISUID | S_ISGID);
@@ -630,10 +782,10 @@ int file_set_dosmode(connection_struct *conn, const char *fname,
        if (!MAP_HIDDEN(conn))
                mask |= S_IXOTH;
 
-       unixmode |= (st->st_mode & mask);
+       unixmode |= (smb_fname->st.st_ex_mode & mask);
 
        /* if we previously had any r bits set then leave them alone */
-       if ((tmp = st->st_mode & (S_IRUSR|S_IRGRP|S_IROTH))) {
+       if ((tmp = smb_fname->st.st_ex_mode & (S_IRUSR|S_IRGRP|S_IROTH))) {
                unixmode &= ~(S_IRUSR|S_IRGRP|S_IROTH);
                unixmode |= tmp;
        }
@@ -641,16 +793,17 @@ int file_set_dosmode(connection_struct *conn, const char *fname,
        /* if we previously had any w bits set then leave them alone 
                whilst adding in the new w bits, if the new mode is not rdonly */
        if (!IS_DOS_READONLY(dosmode)) {
-               unixmode |= (st->st_mode & (S_IWUSR|S_IWGRP|S_IWOTH));
+               unixmode |= (smb_fname->st.st_ex_mode & (S_IWUSR|S_IWGRP|S_IWOTH));
        }
 
-       ret = SMB_VFS_CHMOD(conn, fname, unixmode);
+       ret = SMB_VFS_CHMOD(conn, smb_fname->base_name, unixmode);
        if (ret == 0) {
                if(!newfile || (lret != -1)) {
                        notify_fname(conn, NOTIFY_ACTION_MODIFIED,
-                                    FILE_NOTIFY_CHANGE_ATTRIBUTES, fname);
+                                    FILE_NOTIFY_CHANGE_ATTRIBUTES,
+                                    smb_fname->base_name);
                }
-               st->st_mode = unixmode;
+               smb_fname->st.st_ex_mode = unixmode;
                return 0;
        }
 
@@ -675,8 +828,8 @@ int file_set_dosmode(connection_struct *conn, const char *fname,
                 * break batch oplocks open by others. JRA.
                 */
                files_struct *fsp;
-               if (!NT_STATUS_IS_OK(open_file_fchmod(NULL, conn, fname, st,
-                                                     &fsp)))
+               if (!NT_STATUS_IS_OK(open_file_fchmod(NULL, conn, smb_fname,
+                                    &fsp)))
                        return -1;
                become_root();
                ret = SMB_VFS_FCHMOD(fsp, unixmode);
@@ -684,10 +837,11 @@ int file_set_dosmode(connection_struct *conn, const char *fname,
                close_file_fchmod(NULL, fsp);
                if (!newfile) {
                        notify_fname(conn, NOTIFY_ACTION_MODIFIED,
-                               FILE_NOTIFY_CHANGE_ATTRIBUTES, fname);
+                                    FILE_NOTIFY_CHANGE_ATTRIBUTES,
+                                    smb_fname->base_name);
                }
                if (ret == 0) {
-                       st->st_mode = unixmode;
+                       smb_fname->st.st_ex_mode = unixmode;
                }
        }
 
@@ -699,18 +853,21 @@ int file_set_dosmode(connection_struct *conn, const char *fname,
  than POSIX.
 *******************************************************************/
 
-int file_ntimes(connection_struct *conn, const char *fname, const struct timespec ts[2])
+int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname,
+               struct smb_file_time *ft)
 {
-       SMB_STRUCT_STAT sbuf;
        int ret = -1;
 
        errno = 0;
-       ZERO_STRUCT(sbuf);
 
        DEBUG(6, ("file_ntime: actime: %s",
-                 time_to_asc(convert_timespec_to_time_t(ts[0]))));
+                 time_to_asc(convert_timespec_to_time_t(ft->atime))));
        DEBUG(6, ("file_ntime: modtime: %s",
-                 time_to_asc(convert_timespec_to_time_t(ts[1]))));
+                 time_to_asc(convert_timespec_to_time_t(ft->mtime))));
+       DEBUG(6, ("file_ntime: ctime: %s",
+                 time_to_asc(convert_timespec_to_time_t(ft->ctime))));
+       DEBUG(6, ("file_ntime: createtime: %s",
+                 time_to_asc(convert_timespec_to_time_t(ft->create_time))));
 
        /* Don't update the time on read-only shares */
        /* We need this as set_filetime (which can be called on
@@ -723,7 +880,7 @@ int file_ntimes(connection_struct *conn, const char *fname, const struct timespe
                return 0;
        }
 
-       if(SMB_VFS_NTIMES(conn, fname, ts) == 0) {
+       if(SMB_VFS_NTIMES(conn, smb_fname, ft) == 0) {
                return 0;
        }
 
@@ -742,10 +899,10 @@ int file_ntimes(connection_struct *conn, const char *fname, const struct timespe
         */
 
        /* Check if we have write access. */
-       if (can_write_to_file(conn, fname, &sbuf)) {
+       if (can_write_to_file(conn, smb_fname)) {
                /* We are allowed to become root and change the filetime. */
                become_root();
-               ret = SMB_VFS_NTIMES(conn, fname, ts);
+               ret = SMB_VFS_NTIMES(conn, smb_fname, ft);
                unbecome_root();
        }
 
@@ -757,8 +914,7 @@ int file_ntimes(connection_struct *conn, const char *fname, const struct timespe
  returned on all future write time queries and set on close.
 ******************************************************************/
 
-bool set_sticky_write_time_path(connection_struct *conn, const char *fname,
-                        struct file_id fileid, const struct timespec mtime)
+bool set_sticky_write_time_path(struct file_id fileid, struct timespec mtime)
 {
        if (null_timespec(mtime)) {
                return true;
@@ -776,27 +932,77 @@ bool set_sticky_write_time_path(connection_struct *conn, const char *fname,
  returned on all future write time queries and set on close.
 ******************************************************************/
 
-bool set_sticky_write_time_fsp(struct files_struct *fsp, const struct timespec mtime)
+bool set_sticky_write_time_fsp(struct files_struct *fsp, struct timespec mtime)
 {
+       if (null_timespec(mtime)) {
+               return true;
+       }
+
        fsp->write_time_forced = true;
        TALLOC_FREE(fsp->update_write_time_event);
 
-       return set_sticky_write_time_path(fsp->conn, fsp->fsp_name,
-                       fsp->file_id, mtime);
+       return set_sticky_write_time_path(fsp->file_id, mtime);
 }
 
 /******************************************************************
Update a write time immediately, without the 2 second delay.
Set a create time EA.
 ******************************************************************/
 
-bool update_write_time(struct files_struct *fsp)
+NTSTATUS set_create_timespec_ea(connection_struct *conn,
+                               const struct smb_filename *psmb_fname,
+                               struct timespec create_time)
 {
-       if (!set_write_time(fsp->file_id, timespec_current())) {
-               return false;
+       NTSTATUS status;
+       struct smb_filename *smb_fname = NULL;
+       uint32_t dosmode;
+       int ret;
+
+       if (!lp_store_dos_attributes(SNUM(conn))) {
+               return NT_STATUS_OK;
        }
 
-       notify_fname(fsp->conn, NOTIFY_ACTION_MODIFIED,
-                       FILE_NOTIFY_CHANGE_LAST_WRITE, fsp->fsp_name);
+       status = create_synthetic_smb_fname(talloc_tos(),
+                               psmb_fname->base_name,
+                               NULL, &psmb_fname->st,
+                               &smb_fname);
 
-       return true;
+       if (!NT_STATUS_IS_OK(status)) {
+               return status;
+       }
+
+       dosmode = dos_mode(conn, smb_fname);
+
+       smb_fname->st.st_ex_btime = create_time;
+
+       ret = file_set_dosmode(conn, smb_fname, dosmode, NULL, false);
+       if (ret == -1) {
+               map_nt_error_from_unix(errno);
+       }
+
+       DEBUG(10,("set_create_timespec_ea: wrote create time EA for file %s\n",
+               smb_fname_str_dbg(smb_fname)));
+
+       return NT_STATUS_OK;
+}
+
+/******************************************************************
+ Return a create time.
+******************************************************************/
+
+struct timespec get_create_timespec(connection_struct *conn,
+                               struct files_struct *fsp,
+                               const struct smb_filename *smb_fname)
+{
+       return smb_fname->st.st_ex_btime;
+}
+
+/******************************************************************
+ Return a change time (may look at EA in future).
+******************************************************************/
+
+struct timespec get_change_timespec(connection_struct *conn,
+                               struct files_struct *fsp,
+                               const struct smb_filename *smb_fname)
+{
+       return smb_fname->st.st_ex_mtime;
 }