summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_gpfs.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-05-29 00:20:10 +0200
committerVolker Lendecke <vl@samba.org>2009-06-02 18:15:20 +0200
commite0a6a344be326c58dc9307f286226f76f15f78e8 (patch)
tree377082be89aca0b64a8d1eef0a33b0fba82033fe /source3/modules/vfs_gpfs.c
parent8d966fac41ff88f8c26c221fb03da4f9afba5897 (diff)
downloadsamba-e0a6a344be326c58dc9307f286226f76f15f78e8.tar.gz
samba-e0a6a344be326c58dc9307f286226f76f15f78e8.tar.bz2
samba-e0a6a344be326c58dc9307f286226f76f15f78e8.zip
Support getting gpfs birthtime
Diffstat (limited to 'source3/modules/vfs_gpfs.c')
-rw-r--r--source3/modules/vfs_gpfs.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index 4215e13200..26f9688909 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -966,6 +966,62 @@ static size_t gpfs_get_xattr(struct vfs_handle_struct *handle, const char *path
return size;
}
+static int vfs_gpfs_stat(struct vfs_handle_struct *handle, const char *fname,
+ SMB_STRUCT_STAT *sbuf)
+{
+ struct gpfs_winattr attrs;
+ int ret;
+
+ ret = SMB_VFS_NEXT_STAT(handle, fname, sbuf);
+ if (ret == -1) {
+ return -1;
+ }
+ ret = get_gpfs_winattrs(CONST_DISCARD(char *, fname), &attrs);
+ if (ret == 0) {
+ sbuf->st_ex_btime.tv_sec = attrs.creationTime.tv_sec;
+ sbuf->st_ex_btime.tv_nsec = attrs.creationTime.tv_nsec;
+ }
+ return 0;
+}
+
+static int vfs_gpfs_fstat(struct vfs_handle_struct *handle,
+ struct files_struct *fsp, SMB_STRUCT_STAT *sbuf)
+{
+ struct gpfs_winattr attrs;
+ int ret;
+
+ ret = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
+ if (ret == -1) {
+ return -1;
+ }
+ if ((fsp->fh == NULL) || (fsp->fh->fd == -1)) {
+ return 0;
+ }
+ ret = smbd_fget_gpfs_winattrs(fsp->fh->fd, &attrs);
+ if (ret == 0) {
+ sbuf->st_ex_btime.tv_sec = attrs.creationTime.tv_sec;
+ sbuf->st_ex_btime.tv_nsec = attrs.creationTime.tv_nsec;
+ }
+ return 0;
+}
+
+static int vfs_gpfs_lstat(struct vfs_handle_struct *handle, const char *path,
+ SMB_STRUCT_STAT *sbuf)
+{
+ struct gpfs_winattr attrs;
+ int ret;
+
+ ret = SMB_VFS_NEXT_LSTAT(handle, path, sbuf);
+ if (ret == -1) {
+ return -1;
+ }
+ ret = get_gpfs_winattrs(CONST_DISCARD(char *, path), &attrs);
+ if (ret == 0) {
+ sbuf->st_ex_btime.tv_sec = attrs.creationTime.tv_sec;
+ sbuf->st_ex_btime.tv_nsec = attrs.creationTime.tv_nsec;
+ }
+ return 0;
+}
/* VFS operations structure */
@@ -1035,6 +1091,18 @@ static vfs_op_tuple gpfs_op_tuples[] = {
SMB_VFS_OP_GETXATTR,
SMB_VFS_LAYER_TRANSPARENT },
+ { SMB_VFS_OP(vfs_gpfs_stat),
+ SMB_VFS_OP_STAT,
+ SMB_VFS_LAYER_TRANSPARENT },
+
+ { SMB_VFS_OP(vfs_gpfs_fstat),
+ SMB_VFS_OP_FSTAT,
+ SMB_VFS_LAYER_TRANSPARENT },
+
+ { SMB_VFS_OP(vfs_gpfs_lstat),
+ SMB_VFS_OP_LSTAT,
+ SMB_VFS_LAYER_TRANSPARENT },
+
{ SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP }
};