diff options
author | Csaba Henk <csaba@gluster.com> | 2011-07-30 16:45:50 +0300 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-09-12 06:22:51 -0700 |
commit | 78170472e6c7f0bce95ab035cc4ed86ec662e80d (patch) | |
tree | 336328e8359b21bb41bf2f293100745410e87e5f /libglusterfs | |
parent | 32b96d66890a16fd23c8ae065297c7a98097d340 (diff) |
add --user-map-root option
This makes client fake that given user is a superuser,
by changing FUSE requests coming with uid of user so that uid
is set to 0.
User can be given in numeric form, in which case it's treated
as an uid directly, or else it's tried to be resolved to an
uid with getpwnam(3).
Implies --acl.
Change-Id: I2d5a3d3e178be7ffdf22b46a56f33a7eeaaa7fe1
BUG: 3242
Reviewed-on: http://review.gluster.com/127
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/glusterfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index 049bb8fc0..316fc086d 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -291,6 +291,8 @@ struct _cmd_args { char *dump_fuse; pid_t client_pid; int client_pid_set; + unsigned uid_map_root; + /* key args */ char *mount_point; |