The branch, master has been updated
       via  a770cae... Remove "store create time" code, cause create time to be 
stored in the "user.DOSATTRIB" EA. From the docs: In Samba 3.5.0 and above the 
"user.DOSATTRIB" extended attribute has been extended to store the create time 
for a file as well as the DOS attributes. This is done in a backwards 
compatible way so files created by Samba 3.5.0 and above can still have the DOS 
attribute read from this extended attribute by earlier versions of Samba, but 
they will not be able to read the create time stored there. Storing the create 
time separately from the normal filesystem meta-data allows Samba to faithfully 
reproduce NTFS semantics on top of a POSIX filesystem. Passes make test but 
will need more testing. Jeremy.
      from  a31838e... s4:WINREG RPC server - remove a "talloc_free"

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit a770caed0ff66ddc2d63ac83d20f4cd7fcc2caf5
Author: Jeremy Allison <[email protected]>
Date:   Tue Nov 17 14:55:02 2009 -0800

    Remove "store create time" code, cause create time to be stored
    in the "user.DOSATTRIB" EA. From the docs:
    In Samba 3.5.0 and above the "user.DOSATTRIB" extended attribute has been 
extended to store
    the create time for a file as well as the DOS attributes. This is done in a 
backwards compatible
    way so files created by Samba 3.5.0 and above can still have the DOS 
attribute read from this
    extended attribute by earlier versions of Samba, but they will not be able 
to read the create
    time stored there. Storing the create time separately from the normal 
filesystem meta-data
    allows Samba to faithfully reproduce NTFS semantics on top of a POSIX 
filesystem.
    Passes make test but will need more testing.
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 docs-xml/smbdotconf/filename/storecreatetime.xml   |   15 --
 .../smbdotconf/filename/storedosattributes.xml     |    7 +
 source3/include/proto.h                            |    8 +-
 source3/lib/system.c                               |    7 +
 source3/lib/time.c                                 |   27 +++
 source3/modules/onefs_open.c                       |    2 +-
 source3/modules/vfs_default.c                      |    4 +-
 source3/param/loadparm.c                           |   12 -
 source3/printing/printfsp.c                        |    9 +-
 source3/smbd/dosmode.c                             |  244 ++++++++++++--------
 source3/smbd/nttrans.c                             |   18 +-
 source3/smbd/open.c                                |   20 +--
 source3/smbd/reply.c                               |    3 +-
 source3/smbd/smb2_create.c                         |   40 ++--
 source3/smbd/trans2.c                              |    2 +-
 15 files changed, 238 insertions(+), 180 deletions(-)
 delete mode 100644 docs-xml/smbdotconf/filename/storecreatetime.xml


Changeset truncated at 500 lines:

diff --git a/docs-xml/smbdotconf/filename/storecreatetime.xml 
b/docs-xml/smbdotconf/filename/storecreatetime.xml
deleted file mode 100644
index 5957a5d..0000000
--- a/docs-xml/smbdotconf/filename/storecreatetime.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<samba:parameter name="store create time"
-                 context="S"
-                type="boolean"
-                 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc";>
-<description>
-       <para>
-       If this parameter is set Samba attempts to store a create timestamp on 
any file or directory created by Samba
-       in a filesystem extended attribute. The data is written as an 8 byte 
Windows timestamp in little-endian form
-       in attribute named "user.DosTimestamps". This extended attribute is 
explicitly hidden from smbd clients requesting an
-       EA list. On Linux the filesystem must have been mounted with the mount 
option user_xattr in order for
-       extended attributes to work, also extended attributes must be compiled 
into the Linux kernel.
-       </para>
-</description>
-<value type="default">no</value>
-</samba:parameter>
diff --git a/docs-xml/smbdotconf/filename/storedosattributes.xml 
b/docs-xml/smbdotconf/filename/storedosattributes.xml
index 6fcab82..621b4ac 100644
--- a/docs-xml/smbdotconf/filename/storedosattributes.xml
+++ b/docs-xml/smbdotconf/filename/storedosattributes.xml
@@ -14,6 +14,13 @@
        attribute named "user.DOSATTRIB". This extended attribute is explicitly 
hidden from smbd clients requesting an
        EA list. On Linux the filesystem must have been mounted with the mount 
option user_xattr in order for
        extended attributes to work, also extended attributes must be compiled 
into the Linux kernel.
+
+       In Samba 3.5.0 and above the "user.DOSATTRIB" extended attribute has 
been extended to store
+       the create time for a file as well as the DOS attributes. This is done 
in a backwards compatible
+       way so files created by Samba 3.5.0 and above can still have the DOS 
attribute read from this
+       extended attribute by earlier versions of Samba, but they will not be 
able to read the create
+       time stored there. Storing the create time separately from the normal 
filesystem meta-data
+       allows Samba to faithfully reproduce NTFS semantics on top of a POSIX 
filesystem.
        </para>
 </description>
 <value type="default">no</value>
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 4e347d6..6f971c3 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -926,6 +926,7 @@ ssize_t sys_recvfrom(int s, void *buf, size_t len, int 
flags, struct sockaddr *f
 int sys_fcntl_ptr(int fd, int cmd, void *arg);
 int sys_fcntl_long(int fd, int cmd, long arg);
 void update_stat_ex_mtime(struct stat_ex *dst, struct timespec write_ts);
+void update_stat_ex_create_time(struct stat_ex *dst, struct timespec 
create_time);
 int sys_stat(const char *fname,SMB_STRUCT_STAT *sbuf);
 int sys_fstat(int fd,SMB_STRUCT_STAT *sbuf);
 int sys_lstat(const char *fname,SMB_STRUCT_STAT *sbuf);
@@ -4196,7 +4197,6 @@ bool lp_administrative_share(int );
 bool lp_print_ok(int );
 bool lp_map_hidden(int );
 bool lp_map_archive(int );
-bool lp_store_create_time(int );
 bool lp_store_dos_attributes(int );
 bool lp_dmapi_support(int );
 bool lp_locking(const struct share_params *p );
@@ -4927,8 +4927,7 @@ bool sysv_cache_reload(void);
 
 NTSTATUS print_fsp_open(struct smb_request *req, connection_struct *conn,
                        const char *fname,
-                       uint16_t current_vuid, files_struct *fsp,
-                       SMB_STRUCT_STAT *psbuf);
+                       uint16_t current_vuid, files_struct *fsp);
 void print_fsp_end(files_struct *fsp, enum file_close_type close_type);
 
 /* The following definitions come from printing/printing.c  */
@@ -6252,7 +6251,7 @@ mode_t unix_mode(connection_struct *conn, int dosmode,
 uint32 dos_mode_msdfs(connection_struct *conn,
                      const struct smb_filename *smb_fname);
 int dos_attributes_to_stat_dos_flags(uint32_t dosmode);
-uint32 dos_mode(connection_struct *conn, const struct smb_filename *smb_fname);
+uint32 dos_mode(connection_struct *conn, struct smb_filename *smb_fname);
 int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname,
                     uint32 dosmode, const char *parent_dir, bool newfile);
 int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname,
@@ -6262,7 +6261,6 @@ bool set_sticky_write_time_fsp(struct files_struct *fsp,
                               struct timespec mtime);
 
 NTSTATUS set_create_timespec_ea(connection_struct *conn,
-                               struct files_struct *fsp,
                                const struct smb_filename *smb_fname,
                                struct timespec create_time);
 
diff --git a/source3/lib/system.c b/source3/lib/system.c
index 4331691..8abcb3d 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -504,6 +504,13 @@ void update_stat_ex_mtime(struct stat_ex *dst,
        }
 }
 
+void update_stat_ex_create_time(struct stat_ex *dst,
+                                struct timespec create_time)
+{
+       dst->st_ex_btime = create_time;
+       dst->st_ex_calculated_birthtime = false;
+}
+
 static void init_stat_ex_from_stat (struct stat_ex *dst,
                                    const struct stat *src)
 {
diff --git a/source3/lib/time.c b/source3/lib/time.c
index f6ff6d3..1d2fae3 100644
--- a/source3/lib/time.c
+++ b/source3/lib/time.c
@@ -680,6 +680,33 @@ void unix_timespec_to_nt_time(NTTIME *nt, struct timespec 
ts)
        *nt = d;
 }
 
+#if 0
+void nt_time_to_unix_timespec(struct timespec *ts, NTTIME t)
+{
+       if (ts == NULL) {
+               return;
+       }
+
+       /* t starts in 100 nsec units since 1601-01-01. */
+
+       t *= 100;
+       /* t is now in nsec units since 1601-01-01. */
+
+       t -= TIME_FIXUP_CONSTANT*1000*1000*100;
+       /* t is now in nsec units since the UNIX epoch 1970-01-01. */
+
+       ts->tv_sec  = t / 1000000000LL;
+
+       if (TIME_T_MIN > ts->tv_sec || ts->tv_sec > TIME_T_MAX) {
+               ts->tv_sec  = 0;
+               ts->tv_nsec = 0;
+               return;
+       }
+
+       ts->tv_nsec = t - ts->tv_sec*1000000000LL;
+}
+#endif
+
 /****************************************************************************
  Convert a time_t to a NTTIME structure
 
diff --git a/source3/modules/onefs_open.c b/source3/modules/onefs_open.c
index d90f165..fd12fff 100644
--- a/source3/modules/onefs_open.c
+++ b/source3/modules/onefs_open.c
@@ -489,7 +489,7 @@ NTSTATUS onefs_open_file_ntcreate(connection_struct *conn,
                           smb_fname_str_dbg(smb_fname)));
 
                return print_fsp_open(req, conn, smb_fname->base_name,
-                                     req->vuid, fsp, &smb_fname->st);
+                                     req->vuid, fsp);
        }
 
        if (!parent_dirname(talloc_tos(), smb_fname->base_name, &parent_dir,
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index 17237ac..8fbea0c 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -853,10 +853,8 @@ static int vfswrap_ntimes(vfs_handle_struct *handle,
                ft->mtime = smb_fname->st.st_ex_mtime;
        }
 
-       if (!null_timespec(ft->create_time) &&
-                       lp_store_create_time(SNUM(handle->conn))) {
+       if (!null_timespec(ft->create_time)) {
                set_create_timespec_ea(handle->conn,
-                               NULL,
                                smb_fname,
                                ft->create_time);
        }
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index c62deb5..c024603 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -452,7 +452,6 @@ struct service {
        bool bMap_system;
        bool bMap_hidden;
        bool bMap_archive;
-       bool bStoreCreateTime;
        bool bStoreDosAttributes;
        bool bDmapiSupport;
        bool bLocking;
@@ -596,7 +595,6 @@ static struct service sDefault = {
        False,                  /* bMap_system */
        False,                  /* bMap_hidden */
        True,                   /* bMap_archive */
-       False,                  /* bStoreCreateTime */
        False,                  /* bStoreDosAttributes */
        False,                  /* bDmapiSupport */
        True,                   /* bLocking */
@@ -3083,15 +3081,6 @@ static struct parm_struct parm_table[] = {
                .flags          = FLAG_ADVANCED,
        },
        {
-               .label          = "store create time",
-               .type           = P_BOOL,
-               .p_class        = P_LOCAL,
-               .ptr            = &sDefault.bStoreCreateTime,
-               .special        = NULL,
-               .enum_list      = NULL,
-               .flags          = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
-       },
-       {
                .label          = "store dos attributes",
                .type           = P_BOOL,
                .p_class        = P_LOCAL,
@@ -5618,7 +5607,6 @@ FN_LOCAL_BOOL(lp_administrative_share, 
bAdministrative_share)
 FN_LOCAL_BOOL(lp_print_ok, bPrint_ok)
 FN_LOCAL_BOOL(lp_map_hidden, bMap_hidden)
 FN_LOCAL_BOOL(lp_map_archive, bMap_archive)
-FN_LOCAL_BOOL(lp_store_create_time, bStoreCreateTime)
 FN_LOCAL_BOOL(lp_store_dos_attributes, bStoreDosAttributes)
 FN_LOCAL_BOOL(lp_dmapi_support, bDmapiSupport)
 FN_LOCAL_PARM_BOOL(lp_locking, bLocking)
diff --git a/source3/printing/printfsp.c b/source3/printing/printfsp.c
index 9185fc8..b9fe492 100644
--- a/source3/printing/printfsp.c
+++ b/source3/printing/printfsp.c
@@ -27,8 +27,7 @@ print_job_start().
 
 NTSTATUS print_fsp_open(struct smb_request *req, connection_struct *conn,
                        const char *fname,
-                       uint16_t current_vuid, files_struct *fsp,
-                       SMB_STRUCT_STAT *psbuf)
+                       uint16_t current_vuid, files_struct *fsp)
 {
        int jobid;
        fstring name;
@@ -80,9 +79,9 @@ NTSTATUS print_fsp_open(struct smb_request *req, 
connection_struct *conn,
        fsp->sent_oplock_break = NO_BREAK_SENT;
        fsp->is_directory = False;
        fsp->wcp = NULL;
-       SMB_VFS_FSTAT(fsp, psbuf);
-       fsp->mode = psbuf->st_ex_mode;
-       fsp->file_id = vfs_file_id_from_sbuf(conn, psbuf);
+       SMB_VFS_FSTAT(fsp, &fsp->fsp_name->st);
+       fsp->mode = fsp->fsp_name->st.st_ex_mode;
+       fsp->file_id = vfs_file_id_from_sbuf(conn, &fsp->fsp_name->st);
 
        return NT_STATUS_OK;
 }
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c
index e10f239..0f31973 100644
--- a/source3/smbd/dosmode.c
+++ b/source3/smbd/dosmode.c
@@ -19,6 +19,7 @@
 */
 
 #include "includes.h"
+#include "librpc/gen_ndr/ndr_xattr.h"
 
 static int set_sparse_flag(const SMB_STRUCT_STAT * const sbuf)
 {
@@ -205,15 +206,19 @@ static uint32 dos_mode_from_sbuf(connection_struct *conn,
 
 /****************************************************************************
  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 struct smb_filename *smb_fname,
+                                struct smb_filename *smb_fname,
                                 uint32 *pattr)
 {
+       struct xattr_DOSATTRIB dosattrib;
+       enum ndr_err_code ndr_err;
+       DATA_BLOB blob;
        ssize_t sizeret;
        fstring attrstr;
-       unsigned int dosattr;
+       uint32_t dosattr;
 
        if (!lp_store_dos_attributes(SNUM(conn))) {
                return False;
@@ -240,18 +245,65 @@ static bool get_ea_dos_attribute(connection_struct *conn,
                }
                return False;
        }
-       /* Null terminate string. */
-       attrstr[sizeret] = 0;
-       DEBUG(10,("get_ea_dos_attribute: %s attrstr = %s\n",
-                 smb_fname_str_dbg(smb_fname), 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", smb_fname_str_dbg(smb_fname),
-                        attrstr));
-                return False;
-        }
+       blob.data = (uint8_t *)attrstr;
+       blob.length = sizeret;
+
+       ndr_err = ndr_pull_struct_blob(&blob, talloc_tos(), NULL, &dosattrib,
+                       (ndr_pull_flags_fn_t)ndr_pull_xattr_DOSATTRIB);
+
+       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);
+
+                               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;
@@ -273,23 +325,49 @@ static bool get_ea_dos_attribute(connection_struct *conn,
 
 /****************************************************************************
  Set DOS attributes in an EA.
+ Also sets the create time.
 ****************************************************************************/
 
 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);
+       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, attrstr, strlen(attrstr),
+                            SAMBA_XATTR_DOS_ATTRIB, blob.data, blob.length,
                             0) == -1) {
                if((errno != EPERM) && (errno != EACCES)) {
                        if (errno == ENOSYS
@@ -304,7 +382,7 @@ static bool set_ea_dos_attribute(connection_struct *conn,
                                         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
@@ -313,7 +391,7 @@ static bool set_ea_dos_attribute(connection_struct *conn,
 
                /* 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
@@ -326,17 +404,18 @@ static bool set_ea_dos_attribute(connection_struct *conn,
                        return ret;
                become_root();
                if (SMB_VFS_SETXATTR(conn, smb_fname->base_name,
-                                    SAMBA_XATTR_DOS_ATTRIB, attrstr,
-                                    strlen(attrstr), 0) == 0) {
-                       ret = True;
+                                    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,
-                 smb_fname_str_dbg(smb_fname)));
-       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;
 }
 
 /****************************************************************************
@@ -510,11 +589,12 @@ 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 struct smb_filename *smb_fname)
+uint32 dos_mode(connection_struct *conn, struct smb_filename *smb_fname)
 {
-       SMB_STRUCT_STAT sbuf;
        uint32 result = 0;
        bool offline, used_stat_dos_flags = false;
 
@@ -553,9 +633,8 @@ uint32 dos_mode(connection_struct *conn, const struct 
smb_filename *smb_fname)
                }
        }
 
-       sbuf = smb_fname->st;
-       offline = SMB_VFS_IS_OFFLINE(conn, smb_fname->base_name, &sbuf);
-       if (S_ISREG(sbuf.st_ex_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;
        }
 
@@ -588,6 +667,9 @@ uint32 dos_mode(connection_struct *conn, const struct 
smb_filename *smb_fname)
 
 /*******************************************************************
  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, struct smb_filename *smb_fname,
@@ -598,6 +680,7 @@ int file_set_dosmode(connection_struct *conn, struct 
smb_filename *smb_fname,
        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);
@@ -605,11 +688,6 @@ int file_set_dosmode(connection_struct *conn, struct 
smb_filename *smb_fname,
        DEBUG(10,("file_set_dosmode: setting dos mode 0x%x on file %s\n",
                  dosmode, smb_fname_str_dbg(smb_fname)));
 
-       if (!VALID_STAT(smb_fname->st)) {


-- 
Samba Shared Repository

Reply via email to