diff options
author | Shehjar Tikoo <shehjart@zresearch.com> | 2009-05-05 16:01:40 +0530 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-05-05 17:45:39 +0530 |
commit | 8fa2a984c315418b940c481ea7729c00ed0b033a (patch) | |
tree | 239a2c64089722d63cfe1009ff055eb1677b1e42 /booster | |
parent | ad4f864c448a3bbcec67d3fb3c44e07993cd70e7 (diff) |
booster: Add fchmod API
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'booster')
-rw-r--r-- | booster/src/booster.c | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/booster/src/booster.c b/booster/src/booster.c index eb4f81114..680d45668 100644 --- a/booster/src/booster.c +++ b/booster/src/booster.c @@ -152,7 +152,7 @@ static int (*real_mkdir) (const char *pathname, mode_t mode); 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); #define RESOLVE(sym) do { \ if (!real_##sym) \ real_##sym = dlsym (RTLD_NEXT, #sym); \ @@ -1201,7 +1201,26 @@ booster_cleanup (void) booster_mount_table = NULL; } +int +fchmod (int fd, mode_t mode) +{ + int ret = -1; + glusterfs_file_t fh = NULL; + + fh = booster_get_glfs_fd (booster_glfs_fdtable, fd); + if (!fh) { + if (real_fchmod == NULL) { + errno = ENOSYS; + ret = -1; + } else + ret = real_fchmod (fd, mode); + } else { + ret = glusterfs_fchmod (fh, mode); + booster_put_glfs_fd (fh); + } + return ret; +} pid_t fork (void) @@ -1256,6 +1275,7 @@ _init (void) RESOLVE (rmdir); RESOLVE (chmod); RESOLVE (chown); + RESOLVE (fchmod); /* This must be called after resolving real functions * above so that the socket based IO calls in libglusterfsclient |