blob: 9cc4a3fbf4b0d4ab3106b7584ba756776005e6f8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/idmap.c
3 *
4 * UID and GID to name mapping for clients.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Marius Aamodt Eriksen <marius@umich.edu>
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
Trond Myklebust5cf36cf2011-02-22 15:44:31 -080036#include <linux/types.h>
Bryan Schumaker57e62322012-02-24 14:14:51 -050037#include <linux/parser.h>
38#include <linux/fs.h>
Vitaliy Ivanove44ba032011-06-20 16:08:07 +020039#include <linux/nfs_idmap.h>
Bryan Schumaker57e62322012-02-24 14:14:51 -050040#include <net/net_namespace.h>
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050041#include <linux/sunrpc/rpc_pipe_fs.h>
Trond Myklebust6926afd2012-01-07 13:22:46 -050042#include <linux/nfs_fs.h>
Bryan Schumaker57e62322012-02-24 14:14:51 -050043#include <linux/nfs_fs_sb.h>
44#include <linux/key.h>
45#include <linux/keyctl.h>
46#include <linux/key-type.h>
47#include <keys/user-type.h>
48#include <linux/module.h>
49
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050050#include "internal.h"
Stanislav Kinsbursky17347d02012-01-26 15:11:41 +040051#include "netns.h"
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050052
53#define NFS_UINT_MAXLEN 11
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050054
Trond Myklebust17280172012-03-11 13:11:00 -040055static const struct cred *id_resolver_cache;
56static struct key_type key_type_id_resolver_legacy;
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050057
Bryan Schumakerc5066942012-08-09 14:05:49 -040058struct idmap_legacy_upcalldata {
59 struct rpc_pipe_msg pipe_msg;
60 struct idmap_msg idmap_msg;
Trond Myklebust0cac1202012-09-27 16:15:00 -040061 struct key_construction *key_cons;
Bryan Schumakerc5066942012-08-09 14:05:49 -040062 struct idmap *idmap;
63};
64
Trond Myklebust0cac1202012-09-27 16:15:00 -040065struct idmap {
66 struct rpc_pipe *idmap_pipe;
67 struct idmap_legacy_upcalldata *idmap_upcall_data;
68 struct mutex idmap_mutex;
69};
70
Trond Myklebust6926afd2012-01-07 13:22:46 -050071/**
72 * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields
73 * @fattr: fully initialised struct nfs_fattr
74 * @owner_name: owner name string cache
75 * @group_name: group name string cache
76 */
77void nfs_fattr_init_names(struct nfs_fattr *fattr,
78 struct nfs4_string *owner_name,
79 struct nfs4_string *group_name)
80{
81 fattr->owner_name = owner_name;
82 fattr->group_name = group_name;
83}
84
85static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr)
86{
87 fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME;
88 kfree(fattr->owner_name->data);
89}
90
91static void nfs_fattr_free_group_name(struct nfs_fattr *fattr)
92{
93 fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME;
94 kfree(fattr->group_name->data);
95}
96
97static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr)
98{
99 struct nfs4_string *owner = fattr->owner_name;
100 __u32 uid;
101
102 if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME))
103 return false;
104 if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) {
105 fattr->uid = uid;
106 fattr->valid |= NFS_ATTR_FATTR_OWNER;
107 }
108 return true;
109}
110
111static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr)
112{
113 struct nfs4_string *group = fattr->group_name;
114 __u32 gid;
115
116 if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME))
117 return false;
118 if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) {
119 fattr->gid = gid;
120 fattr->valid |= NFS_ATTR_FATTR_GROUP;
121 }
122 return true;
123}
124
125/**
126 * nfs_fattr_free_names - free up the NFSv4 owner and group strings
127 * @fattr: a fully initialised nfs_fattr structure
128 */
129void nfs_fattr_free_names(struct nfs_fattr *fattr)
130{
131 if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)
132 nfs_fattr_free_owner_name(fattr);
133 if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)
134 nfs_fattr_free_group_name(fattr);
135}
136
137/**
138 * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free
139 * @server: pointer to the filesystem nfs_server structure
140 * @fattr: a fully initialised nfs_fattr structure
141 *
142 * This helper maps the cached NFSv4 owner/group strings in fattr into
143 * their numeric uid/gid equivalents, and then frees the cached strings.
144 */
145void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr)
146{
147 if (nfs_fattr_map_owner_name(server, fattr))
148 nfs_fattr_free_owner_name(fattr);
149 if (nfs_fattr_map_group_name(server, fattr))
150 nfs_fattr_free_group_name(fattr);
151}
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800152
153static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res)
154{
155 unsigned long val;
156 char buf[16];
157
158 if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf))
159 return 0;
160 memcpy(buf, name, namelen);
161 buf[namelen] = '\0';
Daniel Walter7297cb62012-09-26 21:51:46 +0200162 if (kstrtoul(buf, 0, &val) != 0)
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800163 return 0;
164 *res = val;
165 return 1;
166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Trond Myklebustf0b85162011-02-22 15:44:31 -0800168static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
169{
170 return snprintf(buf, buflen, "%u", id);
171}
172
Trond Myklebust17280172012-03-11 13:11:00 -0400173static struct key_type key_type_id_resolver = {
Bryan Schumaker955a8572010-09-29 15:41:49 -0400174 .name = "id_resolver",
175 .instantiate = user_instantiate,
176 .match = user_match,
177 .revoke = user_revoke,
178 .destroy = user_destroy,
179 .describe = user_describe,
180 .read = user_read,
181};
182
Bryan Schumakere6499c62012-01-26 16:54:23 -0500183static int nfs_idmap_init_keyring(void)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400184{
185 struct cred *cred;
186 struct key *keyring;
187 int ret = 0;
188
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500189 printk(KERN_NOTICE "NFS: Registering the %s key type\n",
190 key_type_id_resolver.name);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400191
192 cred = prepare_kernel_cred(NULL);
193 if (!cred)
194 return -ENOMEM;
195
196 keyring = key_alloc(&key_type_keyring, ".id_resolver", 0, 0, cred,
197 (KEY_POS_ALL & ~KEY_POS_SETATTR) |
198 KEY_USR_VIEW | KEY_USR_READ,
199 KEY_ALLOC_NOT_IN_QUOTA);
200 if (IS_ERR(keyring)) {
201 ret = PTR_ERR(keyring);
202 goto failed_put_cred;
203 }
204
205 ret = key_instantiate_and_link(keyring, NULL, 0, NULL, NULL);
206 if (ret < 0)
207 goto failed_put_key;
208
209 ret = register_key_type(&key_type_id_resolver);
210 if (ret < 0)
211 goto failed_put_key;
212
David Howellsa427b9e2012-07-25 16:53:36 +0100213 ret = register_key_type(&key_type_id_resolver_legacy);
214 if (ret < 0)
215 goto failed_reg_legacy;
216
David Howells700920e2012-01-18 15:31:45 +0000217 set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400218 cred->thread_keyring = keyring;
219 cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
220 id_resolver_cache = cred;
221 return 0;
222
David Howellsa427b9e2012-07-25 16:53:36 +0100223failed_reg_legacy:
224 unregister_key_type(&key_type_id_resolver);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400225failed_put_key:
226 key_put(keyring);
227failed_put_cred:
228 put_cred(cred);
229 return ret;
230}
231
Bryan Schumakere6499c62012-01-26 16:54:23 -0500232static void nfs_idmap_quit_keyring(void)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400233{
234 key_revoke(id_resolver_cache->thread_keyring);
235 unregister_key_type(&key_type_id_resolver);
David Howellsa427b9e2012-07-25 16:53:36 +0100236 unregister_key_type(&key_type_id_resolver_legacy);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400237 put_cred(id_resolver_cache);
238}
239
240/*
241 * Assemble the description to pass to request_key()
242 * This function will allocate a new string and update dest to point
243 * at it. The caller is responsible for freeing dest.
244 *
245 * On error 0 is returned. Otherwise, the length of dest is returned.
246 */
247static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen,
248 const char *type, size_t typelen, char **desc)
249{
250 char *cp;
251 size_t desclen = typelen + namelen + 2;
252
253 *desc = kmalloc(desclen, GFP_KERNEL);
Dan Carpenter8f0d97b2010-10-28 08:05:57 +0200254 if (!*desc)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400255 return -ENOMEM;
256
257 cp = *desc;
258 memcpy(cp, type, typelen);
259 cp += typelen;
260 *cp++ = ':';
261
262 memcpy(cp, name, namelen);
263 cp += namelen;
264 *cp = '\0';
265 return desclen;
266}
267
Bryan Schumaker57e62322012-02-24 14:14:51 -0500268static ssize_t nfs_idmap_request_key(struct key_type *key_type,
269 const char *name, size_t namelen,
270 const char *type, void *data,
271 size_t data_size, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400272{
273 const struct cred *saved_cred;
274 struct key *rkey;
275 char *desc;
276 struct user_key_payload *payload;
277 ssize_t ret;
278
279 ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc);
280 if (ret <= 0)
281 goto out;
282
283 saved_cred = override_creds(id_resolver_cache);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500284 if (idmap)
285 rkey = request_key_with_auxdata(key_type, desc, "", 0, idmap);
286 else
287 rkey = request_key(&key_type_id_resolver, desc, "");
Bryan Schumaker955a8572010-09-29 15:41:49 -0400288 revert_creds(saved_cred);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500289
Bryan Schumaker955a8572010-09-29 15:41:49 -0400290 kfree(desc);
291 if (IS_ERR(rkey)) {
292 ret = PTR_ERR(rkey);
293 goto out;
294 }
295
296 rcu_read_lock();
297 rkey->perm |= KEY_USR_VIEW;
298
299 ret = key_validate(rkey);
300 if (ret < 0)
301 goto out_up;
302
303 payload = rcu_dereference(rkey->payload.data);
304 if (IS_ERR_OR_NULL(payload)) {
305 ret = PTR_ERR(payload);
306 goto out_up;
307 }
308
309 ret = payload->datalen;
310 if (ret > 0 && ret <= data_size)
311 memcpy(data, payload->data, ret);
312 else
313 ret = -EINVAL;
314
315out_up:
316 rcu_read_unlock();
317 key_put(rkey);
318out:
319 return ret;
320}
321
Bryan Schumaker57e62322012-02-24 14:14:51 -0500322static ssize_t nfs_idmap_get_key(const char *name, size_t namelen,
323 const char *type, void *data,
324 size_t data_size, struct idmap *idmap)
325{
326 ssize_t ret = nfs_idmap_request_key(&key_type_id_resolver,
327 name, namelen, type, data,
328 data_size, NULL);
329 if (ret < 0) {
Bryan Schumakerb1027432012-06-20 14:35:28 -0400330 mutex_lock(&idmap->idmap_mutex);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500331 ret = nfs_idmap_request_key(&key_type_id_resolver_legacy,
332 name, namelen, type, data,
333 data_size, idmap);
Bryan Schumakerb1027432012-06-20 14:35:28 -0400334 mutex_unlock(&idmap->idmap_mutex);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500335 }
336 return ret;
337}
Bryan Schumaker955a8572010-09-29 15:41:49 -0400338
339/* ID -> Name */
Bryan Schumaker57e62322012-02-24 14:14:51 -0500340static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf,
341 size_t buflen, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400342{
343 char id_str[NFS_UINT_MAXLEN];
344 int id_len;
345 ssize_t ret;
346
347 id_len = snprintf(id_str, sizeof(id_str), "%u", id);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500348 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400349 if (ret < 0)
350 return -EINVAL;
351 return ret;
352}
353
354/* Name -> ID */
Bryan Schumaker57e62322012-02-24 14:14:51 -0500355static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type,
356 __u32 *id, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400357{
358 char id_str[NFS_UINT_MAXLEN];
359 long id_long;
360 ssize_t data_size;
361 int ret = 0;
362
Bryan Schumaker57e62322012-02-24 14:14:51 -0500363 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400364 if (data_size <= 0) {
365 ret = -EINVAL;
366 } else {
Daniel Walter7297cb62012-09-26 21:51:46 +0200367 ret = kstrtol(id_str, 10, &id_long);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400368 *id = (__u32)id_long;
369 }
370 return ret;
371}
372
Bryan Schumakere6499c62012-01-26 16:54:23 -0500373/* idmap classic begins here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Bryan Schumaker57e62322012-02-24 14:14:51 -0500375enum {
376 Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err
377};
378
379static const match_table_t nfs_idmap_tokens = {
380 { Opt_find_uid, "uid:%s" },
381 { Opt_find_gid, "gid:%s" },
382 { Opt_find_user, "user:%s" },
383 { Opt_find_group, "group:%s" },
384 { Opt_find_err, NULL }
385};
386
387static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *);
Chuck Lever369af0f2007-12-20 14:54:35 -0500388static ssize_t idmap_pipe_downcall(struct file *, const char __user *,
389 size_t);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400390static void idmap_release_pipe(struct inode *);
Chuck Lever369af0f2007-12-20 14:54:35 -0500391static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Trond Myklebustb693ba42009-08-09 15:14:15 -0400393static const struct rpc_pipe_ops idmap_upcall_ops = {
Peng Taoc1225152011-09-22 21:50:10 -0400394 .upcall = rpc_pipe_generic_upcall,
Chuck Lever369af0f2007-12-20 14:54:35 -0500395 .downcall = idmap_pipe_downcall,
Bryan Schumakerc5066942012-08-09 14:05:49 -0400396 .release_pipe = idmap_release_pipe,
Chuck Lever369af0f2007-12-20 14:54:35 -0500397 .destroy_msg = idmap_pipe_destroy_msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
Trond Myklebust17280172012-03-11 13:11:00 -0400400static struct key_type key_type_id_resolver_legacy = {
David Howellsa427b9e2012-07-25 16:53:36 +0100401 .name = "id_legacy",
Bryan Schumaker57e62322012-02-24 14:14:51 -0500402 .instantiate = user_instantiate,
403 .match = user_match,
404 .revoke = user_revoke,
405 .destroy = user_destroy,
406 .describe = user_describe,
407 .read = user_read,
408 .request_key = nfs_idmap_legacy_upcall,
409};
410
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400411static void __nfs_idmap_unregister(struct rpc_pipe *pipe)
412{
413 if (pipe->dentry)
414 rpc_unlink(pipe->dentry);
415}
416
417static int __nfs_idmap_register(struct dentry *dir,
418 struct idmap *idmap,
419 struct rpc_pipe *pipe)
420{
421 struct dentry *dentry;
422
423 dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe);
424 if (IS_ERR(dentry))
425 return PTR_ERR(dentry);
426 pipe->dentry = dentry;
427 return 0;
428}
429
430static void nfs_idmap_unregister(struct nfs_client *clp,
431 struct rpc_pipe *pipe)
432{
Chuck Lever73ea6662012-05-21 22:44:50 -0400433 struct net *net = clp->cl_net;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400434 struct super_block *pipefs_sb;
435
436 pipefs_sb = rpc_get_sb_net(net);
437 if (pipefs_sb) {
438 __nfs_idmap_unregister(pipe);
439 rpc_put_sb_net(net);
440 }
441}
442
443static int nfs_idmap_register(struct nfs_client *clp,
444 struct idmap *idmap,
445 struct rpc_pipe *pipe)
446{
Chuck Lever73ea6662012-05-21 22:44:50 -0400447 struct net *net = clp->cl_net;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400448 struct super_block *pipefs_sb;
449 int err = 0;
450
451 pipefs_sb = rpc_get_sb_net(net);
452 if (pipefs_sb) {
453 if (clp->cl_rpcclient->cl_dentry)
454 err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry,
455 idmap, pipe);
456 rpc_put_sb_net(net);
457 }
458 return err;
459}
460
David Howellsb7162792006-08-22 20:06:09 -0400461int
David Howellsadfa6f92006-08-22 20:06:08 -0400462nfs_idmap_new(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct idmap *idmap;
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300465 struct rpc_pipe *pipe;
David Howellsb7162792006-08-22 20:06:09 -0400466 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Chuck Lever369af0f2007-12-20 14:54:35 -0500468 idmap = kzalloc(sizeof(*idmap), GFP_KERNEL);
469 if (idmap == NULL)
470 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300472 pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0);
473 if (IS_ERR(pipe)) {
474 error = PTR_ERR(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 kfree(idmap);
David Howellsb7162792006-08-22 20:06:09 -0400476 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400478 error = nfs_idmap_register(clp, idmap, pipe);
479 if (error) {
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300480 rpc_destroy_pipe_data(pipe);
481 kfree(idmap);
482 return error;
483 }
484 idmap->idmap_pipe = pipe;
Bryan Schumakerb1027432012-06-20 14:35:28 -0400485 mutex_init(&idmap->idmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 clp->cl_idmap = idmap;
David Howellsb7162792006-08-22 20:06:09 -0400488 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491void
David Howellsadfa6f92006-08-22 20:06:08 -0400492nfs_idmap_delete(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 struct idmap *idmap = clp->cl_idmap;
495
496 if (!idmap)
497 return;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400498 nfs_idmap_unregister(clp, idmap->idmap_pipe);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300499 rpc_destroy_pipe_data(idmap->idmap_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 clp->cl_idmap = NULL;
501 kfree(idmap);
502}
503
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400504static int __rpc_pipefs_event(struct nfs_client *clp, unsigned long event,
505 struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400507 int err = 0;
508
509 switch (event) {
510 case RPC_PIPEFS_MOUNT:
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400511 err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry,
512 clp->cl_idmap,
513 clp->cl_idmap->idmap_pipe);
514 break;
515 case RPC_PIPEFS_UMOUNT:
516 if (clp->cl_idmap->idmap_pipe) {
517 struct dentry *parent;
518
519 parent = clp->cl_idmap->idmap_pipe->dentry->d_parent;
520 __nfs_idmap_unregister(clp->cl_idmap->idmap_pipe);
521 /*
522 * Note: This is a dirty hack. SUNRPC hook has been
523 * called already but simple_rmdir() call for the
524 * directory returned with error because of idmap pipe
525 * inside. Thus now we have to remove this directory
526 * here.
527 */
528 if (rpc_rmdir(parent))
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500529 printk(KERN_ERR "NFS: %s: failed to remove "
530 "clnt dir!\n", __func__);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400531 }
532 break;
533 default:
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500534 printk(KERN_ERR "NFS: %s: unknown event: %ld\n", __func__,
535 event);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400536 return -ENOTSUPP;
537 }
538 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400541static struct nfs_client *nfs_get_client_for_event(struct net *net, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400543 struct nfs_net *nn = net_generic(net, nfs_net_id);
544 struct dentry *cl_dentry;
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400545 struct nfs_client *clp;
Trond Myklebust4697bd52012-05-23 13:24:36 -0400546 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Trond Myklebust4697bd52012-05-23 13:24:36 -0400548restart:
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000549 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000550 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
Trond Myklebust4697bd52012-05-23 13:24:36 -0400551 /* Wait for initialisation to finish */
552 if (clp->cl_cons_state == NFS_CS_INITING) {
553 atomic_inc(&clp->cl_count);
554 spin_unlock(&nn->nfs_client_lock);
555 err = nfs_wait_client_init_complete(clp);
556 nfs_put_client(clp);
557 if (err)
558 return NULL;
559 goto restart;
560 }
561 /* Skip nfs_clients that failed to initialise */
562 if (clp->cl_cons_state < 0)
563 continue;
Trond Myklebust54ac4712012-05-23 13:26:10 -0400564 smp_rmb();
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400565 if (clp->rpc_ops != &nfs_v4_clientops)
566 continue;
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400567 cl_dentry = clp->cl_idmap->idmap_pipe->dentry;
568 if (((event == RPC_PIPEFS_MOUNT) && cl_dentry) ||
569 ((event == RPC_PIPEFS_UMOUNT) && !cl_dentry))
570 continue;
571 atomic_inc(&clp->cl_count);
572 spin_unlock(&nn->nfs_client_lock);
573 return clp;
574 }
575 spin_unlock(&nn->nfs_client_lock);
576 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400579static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
580 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400582 struct super_block *sb = ptr;
583 struct nfs_client *clp;
584 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Stanislav Kinsbursky71dfc5f2012-04-28 19:32:21 +0400586 if (!try_module_get(THIS_MODULE))
587 return 0;
588
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400589 while ((clp = nfs_get_client_for_event(sb->s_fs_info, event))) {
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400590 error = __rpc_pipefs_event(clp, event, sb);
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400591 nfs_put_client(clp);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400592 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
Stanislav Kinsbursky71dfc5f2012-04-28 19:32:21 +0400595 module_put(THIS_MODULE);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400596 return error;
597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400599#define PIPEFS_NFS_PRIO 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400601static struct notifier_block nfs_idmap_block = {
602 .notifier_call = rpc_pipefs_event,
603 .priority = SUNRPC_PIPEFS_NFS_PRIO,
604};
605
606int nfs_idmap_init(void)
607{
Bryan Schumakere6499c62012-01-26 16:54:23 -0500608 int ret;
609 ret = nfs_idmap_init_keyring();
610 if (ret != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 goto out;
Bryan Schumakere6499c62012-01-26 16:54:23 -0500612 ret = rpc_pipefs_notifier_register(&nfs_idmap_block);
613 if (ret != 0)
614 nfs_idmap_quit_keyring();
615out:
Chuck Lever369af0f2007-12-20 14:54:35 -0500616 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400619void nfs_idmap_quit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400621 rpc_pipefs_notifier_unregister(&nfs_idmap_block);
Bryan Schumakere6499c62012-01-26 16:54:23 -0500622 nfs_idmap_quit_keyring();
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400623}
624
Bryan Schumakerc5066942012-08-09 14:05:49 -0400625static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap,
626 struct idmap_msg *im,
Bryan Schumaker57e62322012-02-24 14:14:51 -0500627 struct rpc_pipe_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Bryan Schumaker57e62322012-02-24 14:14:51 -0500629 substring_t substr;
630 int token, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Bryan Schumaker57e62322012-02-24 14:14:51 -0500632 im->im_type = IDMAP_TYPE_GROUP;
633 token = match_token(desc, nfs_idmap_tokens, &substr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Bryan Schumaker57e62322012-02-24 14:14:51 -0500635 switch (token) {
636 case Opt_find_uid:
637 im->im_type = IDMAP_TYPE_USER;
638 case Opt_find_gid:
639 im->im_conv = IDMAP_CONV_NAMETOID;
640 ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ);
641 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Bryan Schumaker57e62322012-02-24 14:14:51 -0500643 case Opt_find_user:
644 im->im_type = IDMAP_TYPE_USER;
645 case Opt_find_group:
646 im->im_conv = IDMAP_CONV_IDTONAME;
647 ret = match_int(&substr, &im->im_id);
648 break;
Trond Myklebust685f50f2012-02-08 13:39:15 -0500649
Bryan Schumaker57e62322012-02-24 14:14:51 -0500650 default:
651 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 goto out;
653 }
654
Bryan Schumaker57e62322012-02-24 14:14:51 -0500655 msg->data = im;
656 msg->len = sizeof(struct idmap_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Bryan Schumaker57e62322012-02-24 14:14:51 -0500658out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return ret;
660}
661
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400662static bool
663nfs_idmap_prepare_pipe_upcall(struct idmap *idmap,
Trond Myklebust0cac1202012-09-27 16:15:00 -0400664 struct idmap_legacy_upcalldata *data)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400665{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400666 if (idmap->idmap_upcall_data != NULL) {
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400667 WARN_ON_ONCE(1);
668 return false;
669 }
Trond Myklebust0cac1202012-09-27 16:15:00 -0400670 idmap->idmap_upcall_data = data;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400671 return true;
672}
673
674static void
675nfs_idmap_complete_pipe_upcall_locked(struct idmap *idmap, int ret)
676{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400677 struct key_construction *cons = idmap->idmap_upcall_data->key_cons;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400678
Trond Myklebust0cac1202012-09-27 16:15:00 -0400679 kfree(idmap->idmap_upcall_data);
680 idmap->idmap_upcall_data = NULL;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400681 complete_request_key(cons, ret);
682}
683
684static void
685nfs_idmap_abort_pipe_upcall(struct idmap *idmap, int ret)
686{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400687 if (idmap->idmap_upcall_data != NULL)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400688 nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
689}
690
Bryan Schumaker57e62322012-02-24 14:14:51 -0500691static int nfs_idmap_legacy_upcall(struct key_construction *cons,
692 const char *op,
693 void *aux)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Bryan Schumakerc5066942012-08-09 14:05:49 -0400695 struct idmap_legacy_upcalldata *data;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500696 struct rpc_pipe_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct idmap_msg *im;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500698 struct idmap *idmap = (struct idmap *)aux;
699 struct key *key = cons->key;
Dan Carpenter5abc03c2012-05-14 22:45:28 +0300700 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Bryan Schumaker57e62322012-02-24 14:14:51 -0500702 /* msg and im are freed in idmap_pipe_destroy_msg */
Bryan Schumaker57a51042012-08-09 14:05:51 -0400703 data = kzalloc(sizeof(*data), GFP_KERNEL);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400704 if (!data)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500705 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Bryan Schumakerc5066942012-08-09 14:05:49 -0400707 msg = &data->pipe_msg;
708 im = &data->idmap_msg;
709 data->idmap = idmap;
Bryan Schumakerddfc4e12012-10-02 16:01:38 -0400710 data->key_cons = cons;
Bryan Schumakerc5066942012-08-09 14:05:49 -0400711
712 ret = nfs_idmap_prepare_message(key->description, idmap, im, msg);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500713 if (ret < 0)
714 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400716 ret = -EAGAIN;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400717 if (!nfs_idmap_prepare_pipe_upcall(idmap, data))
Trond Myklebust0e24d842012-09-28 12:03:09 -0400718 goto out2;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500719
Bryan Schumaker11588f42012-03-12 11:33:00 -0400720 ret = rpc_queue_upcall(idmap->idmap_pipe, msg);
721 if (ret < 0)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400722 nfs_idmap_abort_pipe_upcall(idmap, ret);
Bryan Schumaker11588f42012-03-12 11:33:00 -0400723
724 return ret;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500725out2:
Bryan Schumakerc5066942012-08-09 14:05:49 -0400726 kfree(data);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500727out1:
David Howellsa427b9e2012-07-25 16:53:36 +0100728 complete_request_key(cons, ret);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500729 return ret;
730}
731
732static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data)
733{
734 return key_instantiate_and_link(key, data, strlen(data) + 1,
735 id_resolver_cache->thread_keyring,
736 authkey);
737}
738
Trond Myklebust0cac1202012-09-27 16:15:00 -0400739static int nfs_idmap_read_and_verify_message(struct idmap_msg *im,
740 struct idmap_msg *upcall,
741 struct key *key, struct key *authkey)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500742{
743 char id_str[NFS_UINT_MAXLEN];
Trond Myklebust0cac1202012-09-27 16:15:00 -0400744 int ret = -ENOKEY;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500745
Trond Myklebust0cac1202012-09-27 16:15:00 -0400746 /* ret = -ENOKEY */
747 if (upcall->im_type != im->im_type || upcall->im_conv != im->im_conv)
748 goto out;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500749 switch (im->im_conv) {
750 case IDMAP_CONV_NAMETOID:
Trond Myklebust0cac1202012-09-27 16:15:00 -0400751 if (strcmp(upcall->im_name, im->im_name) != 0)
752 break;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500753 sprintf(id_str, "%d", im->im_id);
754 ret = nfs_idmap_instantiate(key, authkey, id_str);
755 break;
756 case IDMAP_CONV_IDTONAME:
Trond Myklebust0cac1202012-09-27 16:15:00 -0400757 if (upcall->im_id != im->im_id)
758 break;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500759 ret = nfs_idmap_instantiate(key, authkey, im->im_name);
760 break;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400761 default:
762 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
Trond Myklebust0cac1202012-09-27 16:15:00 -0400764out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return ret;
766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768static ssize_t
769idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
770{
Chuck Lever369af0f2007-12-20 14:54:35 -0500771 struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct idmap *idmap = (struct idmap *)rpci->private;
David Howellsa427b9e2012-07-25 16:53:36 +0100773 struct key_construction *cons;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500774 struct idmap_msg im;
Chuck Leverd24aae42007-12-20 14:54:49 -0500775 size_t namelen_in;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400776 int ret = -ENOKEY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
David Howellsa427b9e2012-07-25 16:53:36 +0100778 /* If instantiation is successful, anyone waiting for key construction
779 * will have been woken up and someone else may now have used
780 * idmap_key_cons - so after this point we may no longer touch it.
781 */
Trond Myklebust0cac1202012-09-27 16:15:00 -0400782 if (idmap->idmap_upcall_data == NULL)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400783 goto out_noupcall;
David Howellsa427b9e2012-07-25 16:53:36 +0100784
Trond Myklebust0cac1202012-09-27 16:15:00 -0400785 cons = idmap->idmap_upcall_data->key_cons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Bryan Schumaker57e62322012-02-24 14:14:51 -0500787 if (mlen != sizeof(im)) {
788 ret = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 goto out;
790 }
791
Bryan Schumaker57e62322012-02-24 14:14:51 -0500792 if (copy_from_user(&im, src, mlen) != 0) {
793 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 goto out;
795 }
796
Bryan Schumaker57e62322012-02-24 14:14:51 -0500797 if (!(im.im_status & IDMAP_STATUS_SUCCESS)) {
Bryan Schumaker12dfd082012-08-09 14:05:50 -0400798 ret = -ENOKEY;
799 goto out;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500800 }
801
802 namelen_in = strnlen(im.im_name, IDMAP_NAMESZ);
803 if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) {
804 ret = -EINVAL;
805 goto out;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400806}
Bryan Schumaker57e62322012-02-24 14:14:51 -0500807
Trond Myklebust0cac1202012-09-27 16:15:00 -0400808 ret = nfs_idmap_read_and_verify_message(&im,
809 &idmap->idmap_upcall_data->idmap_msg,
810 cons->key, cons->authkey);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500811 if (ret >= 0) {
812 key_set_timeout(cons->key, nfs_idmap_cache_timeout);
813 ret = mlen;
814 }
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816out:
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400817 nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
818out_noupcall:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return ret;
820}
821
Adrian Bunk75c96f82005-05-05 16:16:09 -0700822static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg)
824{
Bryan Schumakerc5066942012-08-09 14:05:49 -0400825 struct idmap_legacy_upcalldata *data = container_of(msg,
826 struct idmap_legacy_upcalldata,
827 pipe_msg);
828 struct idmap *idmap = data->idmap;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400829
830 if (msg->errno)
831 nfs_idmap_abort_pipe_upcall(idmap, msg->errno);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400832}
833
834static void
835idmap_release_pipe(struct inode *inode)
836{
837 struct rpc_inode *rpci = RPC_I(inode);
838 struct idmap *idmap = (struct idmap *)rpci->private;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400839
840 nfs_idmap_abort_pipe_upcall(idmap, -EPIPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800843int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800845 struct idmap *idmap = server->nfs_client->cl_idmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800847 if (nfs_map_string_to_numeric(name, namelen, uid))
848 return 0;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500849 return nfs_idmap_lookup_id(name, namelen, "uid", uid, idmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Bryan Schumakere6499c62012-01-26 16:54:23 -0500852int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800854 struct idmap *idmap = server->nfs_client->cl_idmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Bryan Schumakere6499c62012-01-26 16:54:23 -0500856 if (nfs_map_string_to_numeric(name, namelen, gid))
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800857 return 0;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500858 return nfs_idmap_lookup_id(name, namelen, "gid", gid, idmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800861int nfs_map_uid_to_name(const struct nfs_server *server, __u32 uid, char *buf, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800863 struct idmap *idmap = server->nfs_client->cl_idmap;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800864 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Trond Myklebustb064eca22011-02-22 15:44:32 -0800866 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
Bryan Schumaker57e62322012-02-24 14:14:51 -0500867 ret = nfs_idmap_lookup_name(uid, "user", buf, buflen, idmap);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800868 if (ret < 0)
869 ret = nfs_map_numeric_to_string(uid, buf, buflen);
870 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
Bryan Schumakere6499c62012-01-26 16:54:23 -0500872int nfs_map_gid_to_group(const struct nfs_server *server, __u32 gid, char *buf, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800874 struct idmap *idmap = server->nfs_client->cl_idmap;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800875 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Trond Myklebustb064eca22011-02-22 15:44:32 -0800877 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
Bryan Schumaker57e62322012-02-24 14:14:51 -0500878 ret = nfs_idmap_lookup_name(gid, "group", buf, buflen, idmap);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800879 if (ret < 0)
Bryan Schumakere6499c62012-01-26 16:54:23 -0500880 ret = nfs_map_numeric_to_string(gid, buf, buflen);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800881 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}