From e6f4a6879a6f9bb11e6774182b211b57f1a827fa Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Tue, 5 May 2009 16:01:47 +0530 Subject: booster: Add fchown API Signed-off-by: Anand V. Avati --- booster/src/booster.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/booster/src/booster.c b/booster/src/booster.c index 680d45668..4e41e50e1 100644 --- a/booster/src/booster.c +++ b/booster/src/booster.c @@ -153,6 +153,8 @@ static int (*real_rmdir) (const char *pathname); static int (*real_chmod) (const char *pathname, mode_t mode); static int (*real_chown) (const char *pathname, uid_t owner, gid_t group); static int (*real_fchmod) (int fd, mode_t mode); +static int (*real_fchown) (int fd, uid_t, gid_t gid); + #define RESOLVE(sym) do { \ if (!real_##sym) \ real_##sym = dlsym (RTLD_NEXT, #sym); \ @@ -1083,6 +1085,28 @@ chown (const char *pathname, uid_t owner, gid_t group) return ret; } +int +fchown (int fd, uid_t owner, gid_t group) +{ + int ret = -1; + glusterfs_file_t fh = NULL; + + fh = booster_get_glfs_fd (booster_glfs_fdtable, fd); + if (!fh) { + if (real_fchown == NULL) { + errno = ENOSYS; + ret = -1; + } else + ret = real_fchown (fd, owner, group); + } else { + ret = glusterfs_fchown (fh, owner, group); + booster_put_glfs_fd (fh); + } + + return ret; +} + + #define MOUNT_TABLE_HASH_SIZE 256 @@ -1276,6 +1300,7 @@ _init (void) RESOLVE (chmod); RESOLVE (chown); RESOLVE (fchmod); + RESOLVE (fchown); /* This must be called after resolving real functions * above so that the socket based IO calls in libglusterfsclient -- cgit