blob: e9b0c59f9286431316a15810fdb0bd15c245a840 [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"
Trond Myklebust1f2d30b2013-08-13 11:34:01 -040052#include "nfs4trace.h"
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050053
54#define NFS_UINT_MAXLEN 11
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050055
Trond Myklebust17280172012-03-11 13:11:00 -040056static const struct cred *id_resolver_cache;
57static struct key_type key_type_id_resolver_legacy;
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050058
Bryan Schumakerc5066942012-08-09 14:05:49 -040059struct idmap_legacy_upcalldata {
60 struct rpc_pipe_msg pipe_msg;
61 struct idmap_msg idmap_msg;
Trond Myklebust0cac1202012-09-27 16:15:00 -040062 struct key_construction *key_cons;
Bryan Schumakerc5066942012-08-09 14:05:49 -040063 struct idmap *idmap;
64};
65
Trond Myklebust0cac1202012-09-27 16:15:00 -040066struct idmap {
67 struct rpc_pipe *idmap_pipe;
68 struct idmap_legacy_upcalldata *idmap_upcall_data;
69 struct mutex idmap_mutex;
70};
71
Trond Myklebust6926afd2012-01-07 13:22:46 -050072/**
73 * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields
74 * @fattr: fully initialised struct nfs_fattr
75 * @owner_name: owner name string cache
76 * @group_name: group name string cache
77 */
78void nfs_fattr_init_names(struct nfs_fattr *fattr,
79 struct nfs4_string *owner_name,
80 struct nfs4_string *group_name)
81{
82 fattr->owner_name = owner_name;
83 fattr->group_name = group_name;
84}
85
86static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr)
87{
88 fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME;
89 kfree(fattr->owner_name->data);
90}
91
92static void nfs_fattr_free_group_name(struct nfs_fattr *fattr)
93{
94 fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME;
95 kfree(fattr->group_name->data);
96}
97
98static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr)
99{
100 struct nfs4_string *owner = fattr->owner_name;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800101 kuid_t uid;
Trond Myklebust6926afd2012-01-07 13:22:46 -0500102
103 if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME))
104 return false;
105 if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) {
106 fattr->uid = uid;
107 fattr->valid |= NFS_ATTR_FATTR_OWNER;
108 }
109 return true;
110}
111
112static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr)
113{
114 struct nfs4_string *group = fattr->group_name;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800115 kgid_t gid;
Trond Myklebust6926afd2012-01-07 13:22:46 -0500116
117 if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME))
118 return false;
119 if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) {
120 fattr->gid = gid;
121 fattr->valid |= NFS_ATTR_FATTR_GROUP;
122 }
123 return true;
124}
125
126/**
127 * nfs_fattr_free_names - free up the NFSv4 owner and group strings
128 * @fattr: a fully initialised nfs_fattr structure
129 */
130void nfs_fattr_free_names(struct nfs_fattr *fattr)
131{
132 if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)
133 nfs_fattr_free_owner_name(fattr);
134 if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)
135 nfs_fattr_free_group_name(fattr);
136}
137
138/**
139 * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free
140 * @server: pointer to the filesystem nfs_server structure
141 * @fattr: a fully initialised nfs_fattr structure
142 *
143 * This helper maps the cached NFSv4 owner/group strings in fattr into
144 * their numeric uid/gid equivalents, and then frees the cached strings.
145 */
146void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr)
147{
148 if (nfs_fattr_map_owner_name(server, fattr))
149 nfs_fattr_free_owner_name(fattr);
150 if (nfs_fattr_map_group_name(server, fattr))
151 nfs_fattr_free_group_name(fattr);
152}
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800153
154static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res)
155{
156 unsigned long val;
157 char buf[16];
158
159 if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf))
160 return 0;
161 memcpy(buf, name, namelen);
162 buf[namelen] = '\0';
Daniel Walter7297cb62012-09-26 21:51:46 +0200163 if (kstrtoul(buf, 0, &val) != 0)
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800164 return 0;
165 *res = val;
166 return 1;
167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Trond Myklebustf0b85162011-02-22 15:44:31 -0800169static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
170{
171 return snprintf(buf, buflen, "%u", id);
172}
173
Trond Myklebust17280172012-03-11 13:11:00 -0400174static struct key_type key_type_id_resolver = {
Bryan Schumaker955a8572010-09-29 15:41:49 -0400175 .name = "id_resolver",
176 .instantiate = user_instantiate,
177 .match = user_match,
178 .revoke = user_revoke,
179 .destroy = user_destroy,
180 .describe = user_describe,
181 .read = user_read,
182};
183
Bryan Schumakere6499c62012-01-26 16:54:23 -0500184static int nfs_idmap_init_keyring(void)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400185{
186 struct cred *cred;
187 struct key *keyring;
188 int ret = 0;
189
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500190 printk(KERN_NOTICE "NFS: Registering the %s key type\n",
191 key_type_id_resolver.name);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400192
193 cred = prepare_kernel_cred(NULL);
194 if (!cred)
195 return -ENOMEM;
196
Eric W. Biederman4e963d42013-02-01 03:03:16 -0800197 keyring = keyring_alloc(".id_resolver",
198 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
David Howellsf8aa23a2012-10-02 19:24:56 +0100199 (KEY_POS_ALL & ~KEY_POS_SETATTR) |
200 KEY_USR_VIEW | KEY_USR_READ,
201 KEY_ALLOC_NOT_IN_QUOTA, NULL);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400202 if (IS_ERR(keyring)) {
203 ret = PTR_ERR(keyring);
204 goto failed_put_cred;
205 }
206
Bryan Schumaker955a8572010-09-29 15:41:49 -0400207 ret = register_key_type(&key_type_id_resolver);
208 if (ret < 0)
209 goto failed_put_key;
210
David Howellsa427b9e2012-07-25 16:53:36 +0100211 ret = register_key_type(&key_type_id_resolver_legacy);
212 if (ret < 0)
213 goto failed_reg_legacy;
214
David Howells700920e2012-01-18 15:31:45 +0000215 set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400216 cred->thread_keyring = keyring;
217 cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
218 id_resolver_cache = cred;
219 return 0;
220
David Howellsa427b9e2012-07-25 16:53:36 +0100221failed_reg_legacy:
222 unregister_key_type(&key_type_id_resolver);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400223failed_put_key:
224 key_put(keyring);
225failed_put_cred:
226 put_cred(cred);
227 return ret;
228}
229
Bryan Schumakere6499c62012-01-26 16:54:23 -0500230static void nfs_idmap_quit_keyring(void)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400231{
232 key_revoke(id_resolver_cache->thread_keyring);
233 unregister_key_type(&key_type_id_resolver);
David Howellsa427b9e2012-07-25 16:53:36 +0100234 unregister_key_type(&key_type_id_resolver_legacy);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400235 put_cred(id_resolver_cache);
236}
237
238/*
239 * Assemble the description to pass to request_key()
240 * This function will allocate a new string and update dest to point
241 * at it. The caller is responsible for freeing dest.
242 *
243 * On error 0 is returned. Otherwise, the length of dest is returned.
244 */
245static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen,
246 const char *type, size_t typelen, char **desc)
247{
248 char *cp;
249 size_t desclen = typelen + namelen + 2;
250
251 *desc = kmalloc(desclen, GFP_KERNEL);
Dan Carpenter8f0d97b2010-10-28 08:05:57 +0200252 if (!*desc)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400253 return -ENOMEM;
254
255 cp = *desc;
256 memcpy(cp, type, typelen);
257 cp += typelen;
258 *cp++ = ':';
259
260 memcpy(cp, name, namelen);
261 cp += namelen;
262 *cp = '\0';
263 return desclen;
264}
265
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400266static struct key *nfs_idmap_request_key(const char *name, size_t namelen,
267 const char *type, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400268{
Bryan Schumaker955a8572010-09-29 15:41:49 -0400269 char *desc;
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400270 struct key *rkey;
Bryan Schumaker955a8572010-09-29 15:41:49 -0400271 ssize_t ret;
272
273 ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc);
274 if (ret <= 0)
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400275 return ERR_PTR(ret);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400276
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400277 rkey = request_key(&key_type_id_resolver, desc, "");
278 if (IS_ERR(rkey)) {
279 mutex_lock(&idmap->idmap_mutex);
280 rkey = request_key_with_auxdata(&key_type_id_resolver_legacy,
281 desc, "", 0, idmap);
282 mutex_unlock(&idmap->idmap_mutex);
283 }
Bryan Schumaker57e62322012-02-24 14:14:51 -0500284
Bryan Schumaker955a8572010-09-29 15:41:49 -0400285 kfree(desc);
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400286 return rkey;
287}
288
289static ssize_t nfs_idmap_get_key(const char *name, size_t namelen,
290 const char *type, void *data,
291 size_t data_size, struct idmap *idmap)
292{
293 const struct cred *saved_cred;
294 struct key *rkey;
295 struct user_key_payload *payload;
296 ssize_t ret;
297
298 saved_cred = override_creds(id_resolver_cache);
299 rkey = nfs_idmap_request_key(name, namelen, type, idmap);
300 revert_creds(saved_cred);
301
Bryan Schumaker955a8572010-09-29 15:41:49 -0400302 if (IS_ERR(rkey)) {
303 ret = PTR_ERR(rkey);
304 goto out;
305 }
306
307 rcu_read_lock();
308 rkey->perm |= KEY_USR_VIEW;
309
310 ret = key_validate(rkey);
311 if (ret < 0)
312 goto out_up;
313
Trond Myklebust393faff2013-08-21 20:06:11 -0400314 payload = rcu_dereference(rkey->payload.rcudata);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400315 if (IS_ERR_OR_NULL(payload)) {
316 ret = PTR_ERR(payload);
317 goto out_up;
318 }
319
320 ret = payload->datalen;
321 if (ret > 0 && ret <= data_size)
322 memcpy(data, payload->data, ret);
323 else
324 ret = -EINVAL;
325
326out_up:
327 rcu_read_unlock();
328 key_put(rkey);
329out:
330 return ret;
331}
332
Bryan Schumaker955a8572010-09-29 15:41:49 -0400333/* ID -> Name */
Bryan Schumaker57e62322012-02-24 14:14:51 -0500334static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf,
335 size_t buflen, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400336{
337 char id_str[NFS_UINT_MAXLEN];
338 int id_len;
339 ssize_t ret;
340
341 id_len = snprintf(id_str, sizeof(id_str), "%u", id);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500342 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400343 if (ret < 0)
344 return -EINVAL;
345 return ret;
346}
347
348/* Name -> ID */
Bryan Schumaker57e62322012-02-24 14:14:51 -0500349static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type,
350 __u32 *id, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400351{
352 char id_str[NFS_UINT_MAXLEN];
353 long id_long;
354 ssize_t data_size;
355 int ret = 0;
356
Bryan Schumaker57e62322012-02-24 14:14:51 -0500357 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400358 if (data_size <= 0) {
359 ret = -EINVAL;
360 } else {
Daniel Walter7297cb62012-09-26 21:51:46 +0200361 ret = kstrtol(id_str, 10, &id_long);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400362 *id = (__u32)id_long;
363 }
364 return ret;
365}
366
Bryan Schumakere6499c62012-01-26 16:54:23 -0500367/* idmap classic begins here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Bryan Schumaker57e62322012-02-24 14:14:51 -0500369enum {
370 Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err
371};
372
373static const match_table_t nfs_idmap_tokens = {
374 { Opt_find_uid, "uid:%s" },
375 { Opt_find_gid, "gid:%s" },
376 { Opt_find_user, "user:%s" },
377 { Opt_find_group, "group:%s" },
378 { Opt_find_err, NULL }
379};
380
381static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *);
Chuck Lever369af0f2007-12-20 14:54:35 -0500382static ssize_t idmap_pipe_downcall(struct file *, const char __user *,
383 size_t);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400384static void idmap_release_pipe(struct inode *);
Chuck Lever369af0f2007-12-20 14:54:35 -0500385static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Trond Myklebustb693ba42009-08-09 15:14:15 -0400387static const struct rpc_pipe_ops idmap_upcall_ops = {
Peng Taoc1225152011-09-22 21:50:10 -0400388 .upcall = rpc_pipe_generic_upcall,
Chuck Lever369af0f2007-12-20 14:54:35 -0500389 .downcall = idmap_pipe_downcall,
Bryan Schumakerc5066942012-08-09 14:05:49 -0400390 .release_pipe = idmap_release_pipe,
Chuck Lever369af0f2007-12-20 14:54:35 -0500391 .destroy_msg = idmap_pipe_destroy_msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
Trond Myklebust17280172012-03-11 13:11:00 -0400394static struct key_type key_type_id_resolver_legacy = {
David Howellsa427b9e2012-07-25 16:53:36 +0100395 .name = "id_legacy",
Bryan Schumaker57e62322012-02-24 14:14:51 -0500396 .instantiate = user_instantiate,
397 .match = user_match,
398 .revoke = user_revoke,
399 .destroy = user_destroy,
400 .describe = user_describe,
401 .read = user_read,
402 .request_key = nfs_idmap_legacy_upcall,
403};
404
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400405static void __nfs_idmap_unregister(struct rpc_pipe *pipe)
406{
407 if (pipe->dentry)
408 rpc_unlink(pipe->dentry);
409}
410
411static int __nfs_idmap_register(struct dentry *dir,
412 struct idmap *idmap,
413 struct rpc_pipe *pipe)
414{
415 struct dentry *dentry;
416
417 dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe);
418 if (IS_ERR(dentry))
419 return PTR_ERR(dentry);
420 pipe->dentry = dentry;
421 return 0;
422}
423
424static void nfs_idmap_unregister(struct nfs_client *clp,
425 struct rpc_pipe *pipe)
426{
Chuck Lever73ea6662012-05-21 22:44:50 -0400427 struct net *net = clp->cl_net;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400428 struct super_block *pipefs_sb;
429
430 pipefs_sb = rpc_get_sb_net(net);
431 if (pipefs_sb) {
432 __nfs_idmap_unregister(pipe);
433 rpc_put_sb_net(net);
434 }
435}
436
437static int nfs_idmap_register(struct nfs_client *clp,
438 struct idmap *idmap,
439 struct rpc_pipe *pipe)
440{
Chuck Lever73ea6662012-05-21 22:44:50 -0400441 struct net *net = clp->cl_net;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400442 struct super_block *pipefs_sb;
443 int err = 0;
444
445 pipefs_sb = rpc_get_sb_net(net);
446 if (pipefs_sb) {
447 if (clp->cl_rpcclient->cl_dentry)
448 err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry,
449 idmap, pipe);
450 rpc_put_sb_net(net);
451 }
452 return err;
453}
454
David Howellsb7162792006-08-22 20:06:09 -0400455int
David Howellsadfa6f92006-08-22 20:06:08 -0400456nfs_idmap_new(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct idmap *idmap;
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300459 struct rpc_pipe *pipe;
David Howellsb7162792006-08-22 20:06:09 -0400460 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Chuck Lever369af0f2007-12-20 14:54:35 -0500462 idmap = kzalloc(sizeof(*idmap), GFP_KERNEL);
463 if (idmap == NULL)
464 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300466 pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0);
467 if (IS_ERR(pipe)) {
468 error = PTR_ERR(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 kfree(idmap);
David Howellsb7162792006-08-22 20:06:09 -0400470 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400472 error = nfs_idmap_register(clp, idmap, pipe);
473 if (error) {
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300474 rpc_destroy_pipe_data(pipe);
475 kfree(idmap);
476 return error;
477 }
478 idmap->idmap_pipe = pipe;
Bryan Schumakerb1027432012-06-20 14:35:28 -0400479 mutex_init(&idmap->idmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 clp->cl_idmap = idmap;
David Howellsb7162792006-08-22 20:06:09 -0400482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485void
David Howellsadfa6f92006-08-22 20:06:08 -0400486nfs_idmap_delete(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct idmap *idmap = clp->cl_idmap;
489
490 if (!idmap)
491 return;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400492 nfs_idmap_unregister(clp, idmap->idmap_pipe);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300493 rpc_destroy_pipe_data(idmap->idmap_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 clp->cl_idmap = NULL;
495 kfree(idmap);
496}
497
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400498static int __rpc_pipefs_event(struct nfs_client *clp, unsigned long event,
499 struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400501 int err = 0;
502
503 switch (event) {
504 case RPC_PIPEFS_MOUNT:
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400505 err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry,
506 clp->cl_idmap,
507 clp->cl_idmap->idmap_pipe);
508 break;
509 case RPC_PIPEFS_UMOUNT:
510 if (clp->cl_idmap->idmap_pipe) {
511 struct dentry *parent;
512
513 parent = clp->cl_idmap->idmap_pipe->dentry->d_parent;
514 __nfs_idmap_unregister(clp->cl_idmap->idmap_pipe);
515 /*
516 * Note: This is a dirty hack. SUNRPC hook has been
517 * called already but simple_rmdir() call for the
518 * directory returned with error because of idmap pipe
519 * inside. Thus now we have to remove this directory
520 * here.
521 */
522 if (rpc_rmdir(parent))
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500523 printk(KERN_ERR "NFS: %s: failed to remove "
524 "clnt dir!\n", __func__);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400525 }
526 break;
527 default:
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500528 printk(KERN_ERR "NFS: %s: unknown event: %ld\n", __func__,
529 event);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400530 return -ENOTSUPP;
531 }
532 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400535static struct nfs_client *nfs_get_client_for_event(struct net *net, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400537 struct nfs_net *nn = net_generic(net, nfs_net_id);
538 struct dentry *cl_dentry;
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400539 struct nfs_client *clp;
Trond Myklebust4697bd52012-05-23 13:24:36 -0400540 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Trond Myklebust4697bd52012-05-23 13:24:36 -0400542restart:
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000543 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000544 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
Trond Myklebust4697bd52012-05-23 13:24:36 -0400545 /* Wait for initialisation to finish */
546 if (clp->cl_cons_state == NFS_CS_INITING) {
547 atomic_inc(&clp->cl_count);
548 spin_unlock(&nn->nfs_client_lock);
549 err = nfs_wait_client_init_complete(clp);
550 nfs_put_client(clp);
551 if (err)
552 return NULL;
553 goto restart;
554 }
555 /* Skip nfs_clients that failed to initialise */
556 if (clp->cl_cons_state < 0)
557 continue;
Trond Myklebust54ac4712012-05-23 13:26:10 -0400558 smp_rmb();
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400559 if (clp->rpc_ops != &nfs_v4_clientops)
560 continue;
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400561 cl_dentry = clp->cl_idmap->idmap_pipe->dentry;
562 if (((event == RPC_PIPEFS_MOUNT) && cl_dentry) ||
563 ((event == RPC_PIPEFS_UMOUNT) && !cl_dentry))
564 continue;
565 atomic_inc(&clp->cl_count);
566 spin_unlock(&nn->nfs_client_lock);
567 return clp;
568 }
569 spin_unlock(&nn->nfs_client_lock);
570 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400573static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
574 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400576 struct super_block *sb = ptr;
577 struct nfs_client *clp;
578 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Stanislav Kinsbursky71dfc5f2012-04-28 19:32:21 +0400580 if (!try_module_get(THIS_MODULE))
581 return 0;
582
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400583 while ((clp = nfs_get_client_for_event(sb->s_fs_info, event))) {
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400584 error = __rpc_pipefs_event(clp, event, sb);
Stanislav Kinsburskye9dbca82012-02-27 22:05:37 +0400585 nfs_put_client(clp);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400586 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Stanislav Kinsbursky71dfc5f2012-04-28 19:32:21 +0400589 module_put(THIS_MODULE);
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400590 return error;
591}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400593#define PIPEFS_NFS_PRIO 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400595static struct notifier_block nfs_idmap_block = {
596 .notifier_call = rpc_pipefs_event,
597 .priority = SUNRPC_PIPEFS_NFS_PRIO,
598};
599
600int nfs_idmap_init(void)
601{
Bryan Schumakere6499c62012-01-26 16:54:23 -0500602 int ret;
603 ret = nfs_idmap_init_keyring();
604 if (ret != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto out;
Bryan Schumakere6499c62012-01-26 16:54:23 -0500606 ret = rpc_pipefs_notifier_register(&nfs_idmap_block);
607 if (ret != 0)
608 nfs_idmap_quit_keyring();
609out:
Chuck Lever369af0f2007-12-20 14:54:35 -0500610 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400613void nfs_idmap_quit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400615 rpc_pipefs_notifier_unregister(&nfs_idmap_block);
Bryan Schumakere6499c62012-01-26 16:54:23 -0500616 nfs_idmap_quit_keyring();
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400617}
618
Bryan Schumakerc5066942012-08-09 14:05:49 -0400619static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap,
620 struct idmap_msg *im,
Bryan Schumaker57e62322012-02-24 14:14:51 -0500621 struct rpc_pipe_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Bryan Schumaker57e62322012-02-24 14:14:51 -0500623 substring_t substr;
624 int token, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Bryan Schumaker57e62322012-02-24 14:14:51 -0500626 im->im_type = IDMAP_TYPE_GROUP;
627 token = match_token(desc, nfs_idmap_tokens, &substr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Bryan Schumaker57e62322012-02-24 14:14:51 -0500629 switch (token) {
630 case Opt_find_uid:
631 im->im_type = IDMAP_TYPE_USER;
632 case Opt_find_gid:
633 im->im_conv = IDMAP_CONV_NAMETOID;
634 ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ);
635 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bryan Schumaker57e62322012-02-24 14:14:51 -0500637 case Opt_find_user:
638 im->im_type = IDMAP_TYPE_USER;
639 case Opt_find_group:
640 im->im_conv = IDMAP_CONV_IDTONAME;
641 ret = match_int(&substr, &im->im_id);
642 break;
Trond Myklebust685f50f2012-02-08 13:39:15 -0500643
Bryan Schumaker57e62322012-02-24 14:14:51 -0500644 default:
645 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 goto out;
647 }
648
Bryan Schumaker57e62322012-02-24 14:14:51 -0500649 msg->data = im;
650 msg->len = sizeof(struct idmap_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Bryan Schumaker57e62322012-02-24 14:14:51 -0500652out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return ret;
654}
655
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400656static bool
657nfs_idmap_prepare_pipe_upcall(struct idmap *idmap,
Trond Myklebust0cac1202012-09-27 16:15:00 -0400658 struct idmap_legacy_upcalldata *data)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400659{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400660 if (idmap->idmap_upcall_data != NULL) {
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400661 WARN_ON_ONCE(1);
662 return false;
663 }
Trond Myklebust0cac1202012-09-27 16:15:00 -0400664 idmap->idmap_upcall_data = data;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400665 return true;
666}
667
668static void
669nfs_idmap_complete_pipe_upcall_locked(struct idmap *idmap, int ret)
670{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400671 struct key_construction *cons = idmap->idmap_upcall_data->key_cons;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400672
Trond Myklebust0cac1202012-09-27 16:15:00 -0400673 kfree(idmap->idmap_upcall_data);
674 idmap->idmap_upcall_data = NULL;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400675 complete_request_key(cons, ret);
676}
677
678static void
679nfs_idmap_abort_pipe_upcall(struct idmap *idmap, int ret)
680{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400681 if (idmap->idmap_upcall_data != NULL)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400682 nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
683}
684
Bryan Schumaker57e62322012-02-24 14:14:51 -0500685static int nfs_idmap_legacy_upcall(struct key_construction *cons,
686 const char *op,
687 void *aux)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Bryan Schumakerc5066942012-08-09 14:05:49 -0400689 struct idmap_legacy_upcalldata *data;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500690 struct rpc_pipe_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct idmap_msg *im;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500692 struct idmap *idmap = (struct idmap *)aux;
693 struct key *key = cons->key;
Dan Carpenter5abc03c2012-05-14 22:45:28 +0300694 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Bryan Schumaker57e62322012-02-24 14:14:51 -0500696 /* msg and im are freed in idmap_pipe_destroy_msg */
Bryan Schumaker57a51042012-08-09 14:05:51 -0400697 data = kzalloc(sizeof(*data), GFP_KERNEL);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400698 if (!data)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500699 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Bryan Schumakerc5066942012-08-09 14:05:49 -0400701 msg = &data->pipe_msg;
702 im = &data->idmap_msg;
703 data->idmap = idmap;
Bryan Schumakerddfc4e12012-10-02 16:01:38 -0400704 data->key_cons = cons;
Bryan Schumakerc5066942012-08-09 14:05:49 -0400705
706 ret = nfs_idmap_prepare_message(key->description, idmap, im, msg);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500707 if (ret < 0)
708 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400710 ret = -EAGAIN;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400711 if (!nfs_idmap_prepare_pipe_upcall(idmap, data))
Trond Myklebust0e24d842012-09-28 12:03:09 -0400712 goto out2;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500713
Bryan Schumaker11588f42012-03-12 11:33:00 -0400714 ret = rpc_queue_upcall(idmap->idmap_pipe, msg);
715 if (ret < 0)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400716 nfs_idmap_abort_pipe_upcall(idmap, ret);
Bryan Schumaker11588f42012-03-12 11:33:00 -0400717
718 return ret;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500719out2:
Bryan Schumakerc5066942012-08-09 14:05:49 -0400720 kfree(data);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500721out1:
David Howellsa427b9e2012-07-25 16:53:36 +0100722 complete_request_key(cons, ret);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500723 return ret;
724}
725
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500726static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data, size_t datalen)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500727{
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500728 return key_instantiate_and_link(key, data, datalen,
Bryan Schumaker57e62322012-02-24 14:14:51 -0500729 id_resolver_cache->thread_keyring,
730 authkey);
731}
732
Trond Myklebust0cac1202012-09-27 16:15:00 -0400733static int nfs_idmap_read_and_verify_message(struct idmap_msg *im,
734 struct idmap_msg *upcall,
735 struct key *key, struct key *authkey)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500736{
737 char id_str[NFS_UINT_MAXLEN];
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500738 size_t len;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400739 int ret = -ENOKEY;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500740
Trond Myklebust0cac1202012-09-27 16:15:00 -0400741 /* ret = -ENOKEY */
742 if (upcall->im_type != im->im_type || upcall->im_conv != im->im_conv)
743 goto out;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500744 switch (im->im_conv) {
745 case IDMAP_CONV_NAMETOID:
Trond Myklebust0cac1202012-09-27 16:15:00 -0400746 if (strcmp(upcall->im_name, im->im_name) != 0)
747 break;
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500748 /* Note: here we store the NUL terminator too */
749 len = sprintf(id_str, "%d", im->im_id) + 1;
750 ret = nfs_idmap_instantiate(key, authkey, id_str, len);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500751 break;
752 case IDMAP_CONV_IDTONAME:
Trond Myklebust0cac1202012-09-27 16:15:00 -0400753 if (upcall->im_id != im->im_id)
754 break;
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500755 len = strlen(im->im_name);
756 ret = nfs_idmap_instantiate(key, authkey, im->im_name, len);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500757 break;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400758 default:
759 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Trond Myklebust0cac1202012-09-27 16:15:00 -0400761out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return ret;
763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765static ssize_t
766idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
767{
Al Viro496ad9a2013-01-23 17:07:38 -0500768 struct rpc_inode *rpci = RPC_I(file_inode(filp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct idmap *idmap = (struct idmap *)rpci->private;
David Howellsa427b9e2012-07-25 16:53:36 +0100770 struct key_construction *cons;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500771 struct idmap_msg im;
Chuck Leverd24aae42007-12-20 14:54:49 -0500772 size_t namelen_in;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400773 int ret = -ENOKEY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
David Howellsa427b9e2012-07-25 16:53:36 +0100775 /* If instantiation is successful, anyone waiting for key construction
776 * will have been woken up and someone else may now have used
777 * idmap_key_cons - so after this point we may no longer touch it.
778 */
Trond Myklebust0cac1202012-09-27 16:15:00 -0400779 if (idmap->idmap_upcall_data == NULL)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400780 goto out_noupcall;
David Howellsa427b9e2012-07-25 16:53:36 +0100781
Trond Myklebust0cac1202012-09-27 16:15:00 -0400782 cons = idmap->idmap_upcall_data->key_cons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Bryan Schumaker57e62322012-02-24 14:14:51 -0500784 if (mlen != sizeof(im)) {
785 ret = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 goto out;
787 }
788
Bryan Schumaker57e62322012-02-24 14:14:51 -0500789 if (copy_from_user(&im, src, mlen) != 0) {
790 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 goto out;
792 }
793
Bryan Schumaker57e62322012-02-24 14:14:51 -0500794 if (!(im.im_status & IDMAP_STATUS_SUCCESS)) {
Bryan Schumaker12dfd082012-08-09 14:05:50 -0400795 ret = -ENOKEY;
796 goto out;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500797 }
798
799 namelen_in = strnlen(im.im_name, IDMAP_NAMESZ);
800 if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) {
801 ret = -EINVAL;
802 goto out;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400803}
Bryan Schumaker57e62322012-02-24 14:14:51 -0500804
Trond Myklebust0cac1202012-09-27 16:15:00 -0400805 ret = nfs_idmap_read_and_verify_message(&im,
806 &idmap->idmap_upcall_data->idmap_msg,
807 cons->key, cons->authkey);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500808 if (ret >= 0) {
809 key_set_timeout(cons->key, nfs_idmap_cache_timeout);
810 ret = mlen;
811 }
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813out:
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400814 nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
815out_noupcall:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return ret;
817}
818
Adrian Bunk75c96f82005-05-05 16:16:09 -0700819static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg)
821{
Bryan Schumakerc5066942012-08-09 14:05:49 -0400822 struct idmap_legacy_upcalldata *data = container_of(msg,
823 struct idmap_legacy_upcalldata,
824 pipe_msg);
825 struct idmap *idmap = data->idmap;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400826
827 if (msg->errno)
828 nfs_idmap_abort_pipe_upcall(idmap, msg->errno);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400829}
830
831static void
832idmap_release_pipe(struct inode *inode)
833{
834 struct rpc_inode *rpci = RPC_I(inode);
835 struct idmap *idmap = (struct idmap *)rpci->private;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400836
837 nfs_idmap_abort_pipe_upcall(idmap, -EPIPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800840int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, kuid_t *uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800842 struct idmap *idmap = server->nfs_client->cl_idmap;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800843 __u32 id = -1;
844 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800846 if (!nfs_map_string_to_numeric(name, namelen, &id))
847 ret = nfs_idmap_lookup_id(name, namelen, "uid", &id, idmap);
848 if (ret == 0) {
849 *uid = make_kuid(&init_user_ns, id);
850 if (!uid_valid(*uid))
851 ret = -ERANGE;
852 }
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400853 trace_nfs4_map_name_to_uid(name, namelen, id, ret);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800854 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800856
857int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, kgid_t *gid)
858{
859 struct idmap *idmap = server->nfs_client->cl_idmap;
860 __u32 id = -1;
861 int ret = 0;
862
863 if (!nfs_map_string_to_numeric(name, namelen, &id))
864 ret = nfs_idmap_lookup_id(name, namelen, "gid", &id, idmap);
865 if (ret == 0) {
866 *gid = make_kgid(&init_user_ns, id);
867 if (!gid_valid(*gid))
868 ret = -ERANGE;
869 }
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400870 trace_nfs4_map_group_to_gid(name, namelen, id, ret);
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800871 return ret;
872}
873
874int nfs_map_uid_to_name(const struct nfs_server *server, kuid_t uid, char *buf, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800876 struct idmap *idmap = server->nfs_client->cl_idmap;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800877 int ret = -EINVAL;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800878 __u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800880 id = from_kuid(&init_user_ns, uid);
Trond Myklebustb064eca22011-02-22 15:44:32 -0800881 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800882 ret = nfs_idmap_lookup_name(id, "user", buf, buflen, idmap);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800883 if (ret < 0)
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800884 ret = nfs_map_numeric_to_string(id, buf, buflen);
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400885 trace_nfs4_map_uid_to_name(buf, ret, id, ret);
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800886 return ret;
887}
888int nfs_map_gid_to_group(const struct nfs_server *server, kgid_t gid, char *buf, size_t buflen)
889{
890 struct idmap *idmap = server->nfs_client->cl_idmap;
891 int ret = -EINVAL;
892 __u32 id;
893
894 id = from_kgid(&init_user_ns, gid);
895 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
896 ret = nfs_idmap_lookup_name(id, "group", buf, buflen, idmap);
897 if (ret < 0)
898 ret = nfs_map_numeric_to_string(id, buf, buflen);
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400899 trace_nfs4_map_gid_to_group(buf, ret, id, ret);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800900 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}