aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2011-02-22 18:44:31 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2011-03-11 15:39:26 -0500
commitf0b851689a5da2354f19bcbbac30cd2cab45c4a1 (patch)
tree3084bdb2c1ceb99888952371c2b19b66064889df /fs
parent5cf36cfdc8caa2724738ad0842c5c3dd02f309dc (diff)
NFSv4: Send unmapped uid/gids to the server if the idmapper fails
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfs/idmap.c30
1 files changed, 26 insertions, 4 deletions
diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c
index cbe6e2fa8cef..8518573c3ffc 100644
--- a/fs/nfs/idmap.c
+++ b/fs/nfs/idmap.c
@@ -52,6 +52,11 @@ static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *re
52 return 1; 52 return 1;
53} 53}
54 54
55static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
56{
57 return snprintf(buf, buflen, "%u", id);
58}
59
55#ifdef CONFIG_NFS_USE_NEW_IDMAPPER 60#ifdef CONFIG_NFS_USE_NEW_IDMAPPER
56 61
57#include <linux/slab.h> 62#include <linux/slab.h>
@@ -252,11 +257,20 @@ int nfs_map_group_to_gid(struct nfs_client *clp, const char *name, size_t namele
252 257
253int nfs_map_uid_to_name(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen) 258int nfs_map_uid_to_name(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen)
254{ 259{
255 return nfs_idmap_lookup_name(uid, "user", buf, buflen); 260 int ret;
261 ret = nfs_idmap_lookup_name(uid, "user", buf, buflen);
262 if (ret < 0)
263 ret = nfs_map_numeric_to_string(uid, buf, buflen);
264 return ret;
256} 265}
257int nfs_map_gid_to_group(struct nfs_client *clp, __u32 gid, char *buf, size_t buflen) 266int nfs_map_gid_to_group(struct nfs_client *clp, __u32 gid, char *buf, size_t buflen)
258{ 267{
259 return nfs_idmap_lookup_name(gid, "group", buf, buflen); 268 int ret;
269
270 ret = nfs_idmap_lookup_name(gid, "group", buf, buflen);
271 if (ret < 0)
272 ret = nfs_map_numeric_to_string(gid, buf, buflen);
273 return ret;
260} 274}
261 275
262#else /* CONFIG_NFS_USE_NEW_IDMAPPER not defined */ 276#else /* CONFIG_NFS_USE_NEW_IDMAPPER not defined */
@@ -736,14 +750,22 @@ int nfs_map_group_to_gid(struct nfs_client *clp, const char *name, size_t namele
736int nfs_map_uid_to_name(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen) 750int nfs_map_uid_to_name(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen)
737{ 751{
738 struct idmap *idmap = clp->cl_idmap; 752 struct idmap *idmap = clp->cl_idmap;
753 int ret;
739 754
740 return nfs_idmap_name(idmap, &idmap->idmap_user_hash, uid, buf); 755 ret = nfs_idmap_name(idmap, &idmap->idmap_user_hash, uid, buf);
756 if (ret < 0)
757 ret = nfs_map_numeric_to_string(uid, buf, buflen);
758 return ret;
741} 759}
742int nfs_map_gid_to_group(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen) 760int nfs_map_gid_to_group(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen)
743{ 761{
744 struct idmap *idmap = clp->cl_idmap; 762 struct idmap *idmap = clp->cl_idmap;
763 int ret;
745 764
746 return nfs_idmap_name(idmap, &idmap->idmap_group_hash, uid, buf); 765 ret = nfs_idmap_name(idmap, &idmap->idmap_group_hash, uid, buf);
766 if (ret < 0)
767 ret = nfs_map_numeric_to_string(uid, buf, buflen);
768 return ret;
747} 769}
748 770
749#endif /* CONFIG_NFS_USE_NEW_IDMAPPER */ 771#endif /* CONFIG_NFS_USE_NEW_IDMAPPER */