Introduce "struct stat_ex" as a replacement for SMB_STRUCT_STAT
authorVolker Lendecke <vl@samba.org>
Thu, 14 May 2009 13:34:42 +0000 (15:34 +0200)
committerVolker Lendecke <vl@samba.org>
Tue, 26 May 2009 15:48:23 +0000 (17:48 +0200)
commit49ca690b4b22ee6e597179059c9442e94c5bd423
treead233a9bcfee2d467824290448ca366219dbd301
parent52f2f9449f8d53aa9181d656a4b54a007c80fa81
Introduce "struct stat_ex" as a replacement for SMB_STRUCT_STAT

This patch introduces

struct stat_ex {
        dev_t           st_ex_dev;
        ino_t           st_ex_ino;
        mode_t          st_ex_mode;
        nlink_t         st_ex_nlink;
        uid_t           st_ex_uid;
        gid_t           st_ex_gid;
        dev_t           st_ex_rdev;
        off_t           st_ex_size;
        struct timespec st_ex_atime;
        struct timespec st_ex_mtime;
        struct timespec st_ex_ctime;
        struct timespec st_ex_btime; /* birthtime */
        blksize_t       st_ex_blksize;
        blkcnt_t        st_ex_blocks;
};
typedef struct stat_ex SMB_STRUCT_STAT;

It is really large because due to the friendly libc headers playing macro
tricks with fields like st_ino, so I renamed them to st_ex_xxx.

Why this change? To support birthtime, we already have quite a few #ifdef's at
places where it does not really belong. With a stat struct that we control, we
can consolidate the nanosecond timestamps and the birthtime deep in the VFS
stat calls.

At this moment it is triggered by a request to support the birthtime field for
GPFS. GPFS does not extend the system level struct stat, but instead has a
separate call that gets us the additional information beyond posix. Without
being able to do that within the VFS stat calls, that support would have to be
scattered around the main smbd code.

It will very likely break all the onefs modules, but I think the changes will
be reasonably easy to do.
53 files changed:
source3/client/client.c
source3/client/clitar.c
source3/include/includes.h
source3/include/proto.h
source3/include/smb_macros.h
source3/lib/debug.c
source3/lib/system.c
source3/lib/time.c
source3/lib/util.c
source3/libsmb/clifile.c
source3/libsmb/clirap.c
source3/libsmb/libsmb_stat.c
source3/modules/nfs4_acls.c
source3/modules/vfs_acl_tdb.c
source3/modules/vfs_acl_xattr.c
source3/modules/vfs_afsacl.c
source3/modules/vfs_commit.c
source3/modules/vfs_default.c
source3/modules/vfs_fake_perms.c
source3/modules/vfs_fileid.c
source3/modules/vfs_gpfs.c
source3/modules/vfs_hpuxacl.c
source3/modules/vfs_netatalk.c
source3/modules/vfs_recycle.c
source3/modules/vfs_shadow_copy2.c
source3/modules/vfs_streams_depot.c
source3/modules/vfs_streams_xattr.c
source3/modules/vfs_tsmsm.c
source3/param/loadparm.c
source3/passdb/pdb_smbpasswd.c
source3/printing/nt_printing.c
source3/printing/printfsp.c
source3/printing/printing.c
source3/registry/regfio.c
source3/smbd/close.c
source3/smbd/dir.c
source3/smbd/dosmode.c
source3/smbd/file_access.c
source3/smbd/fileio.c
source3/smbd/filename.c
source3/smbd/msdfs.c
source3/smbd/nttrans.c
source3/smbd/open.c
source3/smbd/posix_acls.c
source3/smbd/reply.c
source3/smbd/service.c
source3/smbd/trans2.c
source3/smbd/vfs.c
source3/torture/cmd_vfs.c
source3/utils/net_conf.c
source3/utils/net_usershare.c
source3/utils/testparm.c
source3/web/cgi.c