]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/nfs/idmap.c
NFSv4: Remove BUG_ON() and ACCESS_ONCE() calls in the idmapper
[mirror_ubuntu-bionic-kernel.git] / fs / nfs / idmap.c
CommitLineData
1da177e4
LT
1/*
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 */
5cf36cfd 36#include <linux/types.h>
57e62324
BS
37#include <linux/parser.h>
38#include <linux/fs.h>
e44ba033 39#include <linux/nfs_idmap.h>
57e62324
BS
40#include <net/net_namespace.h>
41#include <linux/sunrpc/rpc_pipe_fs.h>
6926afd1 42#include <linux/nfs_fs.h>
3cd0f37a 43#include <linux/nfs_fs_sb.h>
57e62324 44#include <linux/key.h>
3cd0f37a
BS
45#include <linux/keyctl.h>
46#include <linux/key-type.h>
3cd0f37a 47#include <keys/user-type.h>
3cd0f37a 48#include <linux/module.h>
57e62324 49
3cd0f37a 50#include "internal.h"
17347d03 51#include "netns.h"
3cd0f37a
BS
52
53#define NFS_UINT_MAXLEN 11
3cd0f37a 54
17280175
TM
55static const struct cred *id_resolver_cache;
56static struct key_type key_type_id_resolver_legacy;
3cd0f37a 57
b1027439
BS
58struct idmap {
59 struct rpc_pipe *idmap_pipe;
60 struct key_construction *idmap_key_cons;
61 struct mutex idmap_mutex;
62};
6926afd1 63
c5066945
BS
64struct idmap_legacy_upcalldata {
65 struct rpc_pipe_msg pipe_msg;
66 struct idmap_msg idmap_msg;
67 struct idmap *idmap;
68};
69
6926afd1
TM
70/**
71 * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields
72 * @fattr: fully initialised struct nfs_fattr
73 * @owner_name: owner name string cache
74 * @group_name: group name string cache
75 */
76void nfs_fattr_init_names(struct nfs_fattr *fattr,
77 struct nfs4_string *owner_name,
78 struct nfs4_string *group_name)
79{
80 fattr->owner_name = owner_name;
81 fattr->group_name = group_name;
82}
83
84static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr)
85{
86 fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME;
87 kfree(fattr->owner_name->data);
88}
89
90static void nfs_fattr_free_group_name(struct nfs_fattr *fattr)
91{
92 fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME;
93 kfree(fattr->group_name->data);
94}
95
96static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr)
97{
98 struct nfs4_string *owner = fattr->owner_name;
99 __u32 uid;
100
101 if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME))
102 return false;
103 if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) {
104 fattr->uid = uid;
105 fattr->valid |= NFS_ATTR_FATTR_OWNER;
106 }
107 return true;
108}
109
110static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr)
111{
112 struct nfs4_string *group = fattr->group_name;
113 __u32 gid;
114
115 if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME))
116 return false;
117 if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) {
118 fattr->gid = gid;
119 fattr->valid |= NFS_ATTR_FATTR_GROUP;
120 }
121 return true;
122}
123
124/**
125 * nfs_fattr_free_names - free up the NFSv4 owner and group strings
126 * @fattr: a fully initialised nfs_fattr structure
127 */
128void nfs_fattr_free_names(struct nfs_fattr *fattr)
129{
130 if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)
131 nfs_fattr_free_owner_name(fattr);
132 if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)
133 nfs_fattr_free_group_name(fattr);
134}
135
136/**
137 * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free
138 * @server: pointer to the filesystem nfs_server structure
139 * @fattr: a fully initialised nfs_fattr structure
140 *
141 * This helper maps the cached NFSv4 owner/group strings in fattr into
142 * their numeric uid/gid equivalents, and then frees the cached strings.
143 */
144void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr)
145{
146 if (nfs_fattr_map_owner_name(server, fattr))
147 nfs_fattr_free_owner_name(fattr);
148 if (nfs_fattr_map_group_name(server, fattr))
149 nfs_fattr_free_group_name(fattr);
150}
5cf36cfd
TM
151
152static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res)
153{
154 unsigned long val;
155 char buf[16];
156
157 if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf))
158 return 0;
159 memcpy(buf, name, namelen);
160 buf[namelen] = '\0';
161 if (strict_strtoul(buf, 0, &val) != 0)
162 return 0;
163 *res = val;
164 return 1;
165}
1da177e4 166
f0b85168
TM
167static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
168{
169 return snprintf(buf, buflen, "%u", id);
170}
171
17280175 172static struct key_type key_type_id_resolver = {
955a857e
BS
173 .name = "id_resolver",
174 .instantiate = user_instantiate,
175 .match = user_match,
176 .revoke = user_revoke,
177 .destroy = user_destroy,
178 .describe = user_describe,
179 .read = user_read,
180};
181
e6499c6f 182static int nfs_idmap_init_keyring(void)
955a857e
BS
183{
184 struct cred *cred;
185 struct key *keyring;
186 int ret = 0;
187
f9fd2d9c
WAA
188 printk(KERN_NOTICE "NFS: Registering the %s key type\n",
189 key_type_id_resolver.name);
955a857e
BS
190
191 cred = prepare_kernel_cred(NULL);
192 if (!cred)
193 return -ENOMEM;
194
195 keyring = key_alloc(&key_type_keyring, ".id_resolver", 0, 0, cred,
196 (KEY_POS_ALL & ~KEY_POS_SETATTR) |
197 KEY_USR_VIEW | KEY_USR_READ,
198 KEY_ALLOC_NOT_IN_QUOTA);
199 if (IS_ERR(keyring)) {
200 ret = PTR_ERR(keyring);
201 goto failed_put_cred;
202 }
203
204 ret = key_instantiate_and_link(keyring, NULL, 0, NULL, NULL);
205 if (ret < 0)
206 goto failed_put_key;
207
208 ret = register_key_type(&key_type_id_resolver);
209 if (ret < 0)
210 goto failed_put_key;
211
a427b9ec
DH
212 ret = register_key_type(&key_type_id_resolver_legacy);
213 if (ret < 0)
214 goto failed_reg_legacy;
215
700920eb 216 set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
955a857e
BS
217 cred->thread_keyring = keyring;
218 cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
219 id_resolver_cache = cred;
220 return 0;
221
a427b9ec
DH
222failed_reg_legacy:
223 unregister_key_type(&key_type_id_resolver);
955a857e
BS
224failed_put_key:
225 key_put(keyring);
226failed_put_cred:
227 put_cred(cred);
228 return ret;
229}
230
e6499c6f 231static void nfs_idmap_quit_keyring(void)
955a857e
BS
232{
233 key_revoke(id_resolver_cache->thread_keyring);
234 unregister_key_type(&key_type_id_resolver);
a427b9ec 235 unregister_key_type(&key_type_id_resolver_legacy);
955a857e
BS
236 put_cred(id_resolver_cache);
237}
238
239/*
240 * Assemble the description to pass to request_key()
241 * This function will allocate a new string and update dest to point
242 * at it. The caller is responsible for freeing dest.
243 *
244 * On error 0 is returned. Otherwise, the length of dest is returned.
245 */
246static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen,
247 const char *type, size_t typelen, char **desc)
248{
249 char *cp;
250 size_t desclen = typelen + namelen + 2;
251
252 *desc = kmalloc(desclen, GFP_KERNEL);
8f0d97b4 253 if (!*desc)
955a857e
BS
254 return -ENOMEM;
255
256 cp = *desc;
257 memcpy(cp, type, typelen);
258 cp += typelen;
259 *cp++ = ':';
260
261 memcpy(cp, name, namelen);
262 cp += namelen;
263 *cp = '\0';
264 return desclen;
265}
266
57e62324
BS
267static ssize_t nfs_idmap_request_key(struct key_type *key_type,
268 const char *name, size_t namelen,
269 const char *type, void *data,
270 size_t data_size, struct idmap *idmap)
955a857e
BS
271{
272 const struct cred *saved_cred;
273 struct key *rkey;
274 char *desc;
275 struct user_key_payload *payload;
276 ssize_t ret;
277
278 ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc);
279 if (ret <= 0)
280 goto out;
281
282 saved_cred = override_creds(id_resolver_cache);
57e62324
BS
283 if (idmap)
284 rkey = request_key_with_auxdata(key_type, desc, "", 0, idmap);
285 else
286 rkey = request_key(&key_type_id_resolver, desc, "");
955a857e 287 revert_creds(saved_cred);
57e62324 288
955a857e
BS
289 kfree(desc);
290 if (IS_ERR(rkey)) {
291 ret = PTR_ERR(rkey);
292 goto out;
293 }
294
295 rcu_read_lock();
296 rkey->perm |= KEY_USR_VIEW;
297
298 ret = key_validate(rkey);
299 if (ret < 0)
300 goto out_up;
301
302 payload = rcu_dereference(rkey->payload.data);
303 if (IS_ERR_OR_NULL(payload)) {
304 ret = PTR_ERR(payload);
305 goto out_up;
306 }
307
308 ret = payload->datalen;
309 if (ret > 0 && ret <= data_size)
310 memcpy(data, payload->data, ret);
311 else
312 ret = -EINVAL;
313
314out_up:
315 rcu_read_unlock();
316 key_put(rkey);
317out:
318 return ret;
319}
320
57e62324
BS
321static ssize_t nfs_idmap_get_key(const char *name, size_t namelen,
322 const char *type, void *data,
323 size_t data_size, struct idmap *idmap)
324{
325 ssize_t ret = nfs_idmap_request_key(&key_type_id_resolver,
326 name, namelen, type, data,
327 data_size, NULL);
328 if (ret < 0) {
b1027439 329 mutex_lock(&idmap->idmap_mutex);
57e62324
BS
330 ret = nfs_idmap_request_key(&key_type_id_resolver_legacy,
331 name, namelen, type, data,
332 data_size, idmap);
c5066945 333 idmap->idmap_key_cons = NULL;
b1027439 334 mutex_unlock(&idmap->idmap_mutex);
57e62324
BS
335 }
336 return ret;
337}
955a857e
BS
338
339/* ID -> Name */
57e62324
BS
340static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf,
341 size_t buflen, struct idmap *idmap)
955a857e
BS
342{
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);
57e62324 348 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap);
955a857e
BS
349 if (ret < 0)
350 return -EINVAL;
351 return ret;
352}
353
354/* Name -> ID */
57e62324
BS
355static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type,
356 __u32 *id, struct idmap *idmap)
955a857e
BS
357{
358 char id_str[NFS_UINT_MAXLEN];
359 long id_long;
360 ssize_t data_size;
361 int ret = 0;
362
57e62324 363 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap);
955a857e
BS
364 if (data_size <= 0) {
365 ret = -EINVAL;
366 } else {
367 ret = strict_strtol(id_str, 10, &id_long);
368 *id = (__u32)id_long;
369 }
370 return ret;
371}
372
e6499c6f 373/* idmap classic begins here */
f0b85168 374
57e62324
BS
375enum {
376 Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err
1da177e4
LT
377};
378
57e62324
BS
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 }
1da177e4
LT
385};
386
57e62324 387static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *);
369af0f1
CL
388static ssize_t idmap_pipe_downcall(struct file *, const char __user *,
389 size_t);
c5066945 390static void idmap_release_pipe(struct inode *);
369af0f1 391static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *);
1da177e4 392
b693ba4a 393static const struct rpc_pipe_ops idmap_upcall_ops = {
c1225158 394 .upcall = rpc_pipe_generic_upcall,
369af0f1 395 .downcall = idmap_pipe_downcall,
c5066945 396 .release_pipe = idmap_release_pipe,
369af0f1 397 .destroy_msg = idmap_pipe_destroy_msg,
1da177e4
LT
398};
399
17280175 400static struct key_type key_type_id_resolver_legacy = {
a427b9ec 401 .name = "id_legacy",
57e62324
BS
402 .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
4929d1d3
SK
411static 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{
73ea666c 433 struct net *net = clp->cl_net;
4929d1d3
SK
434 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{
73ea666c 447 struct net *net = clp->cl_net;
4929d1d3
SK
448 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
b7162792 461int
adfa6f98 462nfs_idmap_new(struct nfs_client *clp)
1da177e4
LT
463{
464 struct idmap *idmap;
c239d83b 465 struct rpc_pipe *pipe;
b7162792 466 int error;
1da177e4 467
369af0f1
CL
468 idmap = kzalloc(sizeof(*idmap), GFP_KERNEL);
469 if (idmap == NULL)
470 return -ENOMEM;
1da177e4 471
c239d83b
SK
472 pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0);
473 if (IS_ERR(pipe)) {
474 error = PTR_ERR(pipe);
1da177e4 475 kfree(idmap);
b7162792 476 return error;
1da177e4 477 }
4929d1d3
SK
478 error = nfs_idmap_register(clp, idmap, pipe);
479 if (error) {
c239d83b
SK
480 rpc_destroy_pipe_data(pipe);
481 kfree(idmap);
482 return error;
483 }
484 idmap->idmap_pipe = pipe;
b1027439 485 mutex_init(&idmap->idmap_mutex);
1da177e4
LT
486
487 clp->cl_idmap = idmap;
b7162792 488 return 0;
1da177e4
LT
489}
490
491void
adfa6f98 492nfs_idmap_delete(struct nfs_client *clp)
1da177e4
LT
493{
494 struct idmap *idmap = clp->cl_idmap;
495
496 if (!idmap)
497 return;
4929d1d3 498 nfs_idmap_unregister(clp, idmap->idmap_pipe);
c239d83b 499 rpc_destroy_pipe_data(idmap->idmap_pipe);
1da177e4
LT
500 clp->cl_idmap = NULL;
501 kfree(idmap);
502}
503
eee17325
SK
504static int __rpc_pipefs_event(struct nfs_client *clp, unsigned long event,
505 struct super_block *sb)
1da177e4 506{
eee17325 507 int err = 0;
1da177e4 508
eee17325
SK
509 switch (event) {
510 case RPC_PIPEFS_MOUNT:
eee17325
SK
511 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))
a030889a
WAA
529 printk(KERN_ERR "NFS: %s: failed to remove "
530 "clnt dir!\n", __func__);
eee17325
SK
531 }
532 break;
533 default:
a030889a
WAA
534 printk(KERN_ERR "NFS: %s: unknown event: %ld\n", __func__,
535 event);
eee17325
SK
536 return -ENOTSUPP;
537 }
538 return err;
539}
540
e9dbca8d 541static struct nfs_client *nfs_get_client_for_event(struct net *net, int event)
eee17325 542{
e9dbca8d
SK
543 struct nfs_net *nn = net_generic(net, nfs_net_id);
544 struct dentry *cl_dentry;
eee17325 545 struct nfs_client *clp;
4697bd5e 546 int err;
eee17325 547
4697bd5e 548restart:
dc030858 549 spin_lock(&nn->nfs_client_lock);
6b13168b 550 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
4697bd5e
TM
551 /* 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;
54ac471c 564 smp_rmb();
eee17325
SK
565 if (clp->rpc_ops != &nfs_v4_clientops)
566 continue;
e9dbca8d
SK
567 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;
1da177e4
LT
577}
578
e9dbca8d
SK
579static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
580 void *ptr)
1da177e4 581{
e9dbca8d
SK
582 struct super_block *sb = ptr;
583 struct nfs_client *clp;
584 int error = 0;
1da177e4 585
71dfc5fa
SK
586 if (!try_module_get(THIS_MODULE))
587 return 0;
588
e9dbca8d 589 while ((clp = nfs_get_client_for_event(sb->s_fs_info, event))) {
eee17325 590 error = __rpc_pipefs_event(clp, event, sb);
e9dbca8d 591 nfs_put_client(clp);
eee17325
SK
592 if (error)
593 break;
594 }
71dfc5fa 595 module_put(THIS_MODULE);
eee17325 596 return error;
1da177e4
LT
597}
598
eee17325
SK
599#define PIPEFS_NFS_PRIO 1
600
601static struct notifier_block nfs_idmap_block = {
602 .notifier_call = rpc_pipefs_event,
603 .priority = SUNRPC_PIPEFS_NFS_PRIO,
604};
1da177e4 605
eee17325 606int nfs_idmap_init(void)
1da177e4 607{
e6499c6f
BS
608 int ret;
609 ret = nfs_idmap_init_keyring();
610 if (ret != 0)
611 goto out;
612 ret = rpc_pipefs_notifier_register(&nfs_idmap_block);
613 if (ret != 0)
614 nfs_idmap_quit_keyring();
615out:
616 return ret;
1da177e4
LT
617}
618
eee17325 619void nfs_idmap_quit(void)
1da177e4 620{
eee17325 621 rpc_pipefs_notifier_unregister(&nfs_idmap_block);
e6499c6f 622 nfs_idmap_quit_keyring();
1da177e4
LT
623}
624
c5066945
BS
625static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap,
626 struct idmap_msg *im,
57e62324 627 struct rpc_pipe_msg *msg)
1da177e4 628{
57e62324
BS
629 substring_t substr;
630 int token, ret;
1da177e4 631
57e62324
BS
632 memset(im, 0, sizeof(*im));
633 memset(msg, 0, sizeof(*msg));
1da177e4 634
57e62324
BS
635 im->im_type = IDMAP_TYPE_GROUP;
636 token = match_token(desc, nfs_idmap_tokens, &substr);
1da177e4 637
57e62324
BS
638 switch (token) {
639 case Opt_find_uid:
640 im->im_type = IDMAP_TYPE_USER;
641 case Opt_find_gid:
642 im->im_conv = IDMAP_CONV_NAMETOID;
643 ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ);
644 break;
1da177e4 645
57e62324
BS
646 case Opt_find_user:
647 im->im_type = IDMAP_TYPE_USER;
648 case Opt_find_group:
649 im->im_conv = IDMAP_CONV_IDTONAME;
650 ret = match_int(&substr, &im->im_id);
651 break;
1da177e4 652
57e62324
BS
653 default:
654 ret = -EINVAL;
1da177e4
LT
655 goto out;
656 }
657
57e62324
BS
658 msg->data = im;
659 msg->len = sizeof(struct idmap_msg);
1da177e4 660
57e62324 661out:
369af0f1 662 return ret;
1da177e4
LT
663}
664
57e62324
BS
665static int nfs_idmap_legacy_upcall(struct key_construction *cons,
666 const char *op,
667 void *aux)
1da177e4 668{
c5066945 669 struct idmap_legacy_upcalldata *data;
57e62324 670 struct rpc_pipe_msg *msg;
1da177e4 671 struct idmap_msg *im;
57e62324
BS
672 struct idmap *idmap = (struct idmap *)aux;
673 struct key *key = cons->key;
5abc03cd 674 int ret = -ENOMEM;
1da177e4 675
57e62324 676 /* msg and im are freed in idmap_pipe_destroy_msg */
c5066945
BS
677 data = kmalloc(sizeof(*data), GFP_KERNEL);
678 if (!data)
57e62324 679 goto out1;
1da177e4 680
c5066945
BS
681 msg = &data->pipe_msg;
682 im = &data->idmap_msg;
683 data->idmap = idmap;
684
685 ret = nfs_idmap_prepare_message(key->description, idmap, im, msg);
57e62324
BS
686 if (ret < 0)
687 goto out2;
1da177e4 688
0e24d849
TM
689 if (idmap->idmap_key_cons != NULL) {
690 WARN_ON_ONCE(1);
691 ret = -EAGAIN;
692 goto out2;
693 }
57e62324 694 idmap->idmap_key_cons = cons;
1da177e4 695
11588f49
BS
696 ret = rpc_queue_upcall(idmap->idmap_pipe, msg);
697 if (ret < 0)
c5066945 698 goto out3;
1da177e4 699
11588f49 700 return ret;
57e62324 701
c5066945
BS
702out3:
703 idmap->idmap_key_cons = NULL;
57e62324 704out2:
c5066945 705 kfree(data);
57e62324 706out1:
a427b9ec 707 complete_request_key(cons, ret);
369af0f1 708 return ret;
1da177e4
LT
709}
710
57e62324 711static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data)
1da177e4 712{
57e62324
BS
713 return key_instantiate_and_link(key, data, strlen(data) + 1,
714 id_resolver_cache->thread_keyring,
715 authkey);
716}
1da177e4 717
57e62324
BS
718static int nfs_idmap_read_message(struct idmap_msg *im, struct key *key, struct key *authkey)
719{
720 char id_str[NFS_UINT_MAXLEN];
721 int ret = -EINVAL;
1da177e4 722
57e62324
BS
723 switch (im->im_conv) {
724 case IDMAP_CONV_NAMETOID:
725 sprintf(id_str, "%d", im->im_id);
726 ret = nfs_idmap_instantiate(key, authkey, id_str);
727 break;
728 case IDMAP_CONV_IDTONAME:
729 ret = nfs_idmap_instantiate(key, authkey, im->im_name);
730 break;
1da177e4
LT
731 }
732
1da177e4
LT
733 return ret;
734}
735
1da177e4
LT
736static ssize_t
737idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
738{
369af0f1 739 struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode);
1da177e4 740 struct idmap *idmap = (struct idmap *)rpci->private;
a427b9ec 741 struct key_construction *cons;
57e62324 742 struct idmap_msg im;
d24aae41 743 size_t namelen_in;
1da177e4
LT
744 int ret;
745
a427b9ec
DH
746 /* If instantiation is successful, anyone waiting for key construction
747 * will have been woken up and someone else may now have used
748 * idmap_key_cons - so after this point we may no longer touch it.
749 */
0e24d849 750 cons = idmap->idmap_key_cons;
a427b9ec
DH
751 idmap->idmap_key_cons = NULL;
752
57e62324
BS
753 if (mlen != sizeof(im)) {
754 ret = -ENOSPC;
1da177e4
LT
755 goto out;
756 }
757
57e62324
BS
758 if (copy_from_user(&im, src, mlen) != 0) {
759 ret = -EFAULT;
1da177e4 760 goto out;
57e62324 761 }
1da177e4 762
57e62324 763 if (!(im.im_status & IDMAP_STATUS_SUCCESS)) {
12dfd080
BS
764 ret = -ENOKEY;
765 goto out;
1da177e4
LT
766 }
767
57e62324
BS
768 namelen_in = strnlen(im.im_name, IDMAP_NAMESZ);
769 if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) {
770 ret = -EINVAL;
1da177e4
LT
771 goto out;
772 }
773
57e62324
BS
774 ret = nfs_idmap_read_message(&im, cons->key, cons->authkey);
775 if (ret >= 0) {
776 key_set_timeout(cons->key, nfs_idmap_cache_timeout);
777 ret = mlen;
778 }
779
1da177e4 780out:
a427b9ec 781 complete_request_key(cons, ret);
1da177e4
LT
782 return ret;
783}
784
75c96f85 785static void
1da177e4
LT
786idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg)
787{
c5066945
BS
788 struct idmap_legacy_upcalldata *data = container_of(msg,
789 struct idmap_legacy_upcalldata,
790 pipe_msg);
791 struct idmap *idmap = data->idmap;
792 struct key_construction *cons;
793 if (msg->errno) {
0e24d849 794 cons = idmap->idmap_key_cons;
c5066945
BS
795 idmap->idmap_key_cons = NULL;
796 complete_request_key(cons, msg->errno);
797 }
57e62324 798 /* Free memory allocated in nfs_idmap_legacy_upcall() */
c5066945
BS
799 kfree(data);
800}
801
802static void
803idmap_release_pipe(struct inode *inode)
804{
805 struct rpc_inode *rpci = RPC_I(inode);
806 struct idmap *idmap = (struct idmap *)rpci->private;
807 idmap->idmap_key_cons = NULL;
1da177e4
LT
808}
809
e4fd72a1 810int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *uid)
1da177e4 811{
e4fd72a1 812 struct idmap *idmap = server->nfs_client->cl_idmap;
1da177e4 813
5cf36cfd
TM
814 if (nfs_map_string_to_numeric(name, namelen, uid))
815 return 0;
57e62324 816 return nfs_idmap_lookup_id(name, namelen, "uid", uid, idmap);
1da177e4
LT
817}
818
e6499c6f 819int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *gid)
1da177e4 820{
e4fd72a1 821 struct idmap *idmap = server->nfs_client->cl_idmap;
1da177e4 822
e6499c6f 823 if (nfs_map_string_to_numeric(name, namelen, gid))
5cf36cfd 824 return 0;
57e62324 825 return nfs_idmap_lookup_id(name, namelen, "gid", gid, idmap);
1da177e4
LT
826}
827
e4fd72a1 828int nfs_map_uid_to_name(const struct nfs_server *server, __u32 uid, char *buf, size_t buflen)
1da177e4 829{
e4fd72a1 830 struct idmap *idmap = server->nfs_client->cl_idmap;
b064eca2 831 int ret = -EINVAL;
1da177e4 832
b064eca2 833 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
57e62324 834 ret = nfs_idmap_lookup_name(uid, "user", buf, buflen, idmap);
f0b85168
TM
835 if (ret < 0)
836 ret = nfs_map_numeric_to_string(uid, buf, buflen);
837 return ret;
1da177e4 838}
e6499c6f 839int nfs_map_gid_to_group(const struct nfs_server *server, __u32 gid, char *buf, size_t buflen)
1da177e4 840{
e4fd72a1 841 struct idmap *idmap = server->nfs_client->cl_idmap;
b064eca2 842 int ret = -EINVAL;
1da177e4 843
b064eca2 844 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
57e62324 845 ret = nfs_idmap_lookup_name(gid, "group", buf, buflen, idmap);
f0b85168 846 if (ret < 0)
e6499c6f 847 ret = nfs_map_numeric_to_string(gid, buf, buflen);
f0b85168 848 return ret;
1da177e4 849}