4 * UID and GID to name mapping for clients.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
9 * Marius Aamodt Eriksen <marius@umich.edu>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
37 #ifdef CONFIG_NFS_USE_NEW_IDMAPPER
39 #include <linux/slab.h>
40 #include <linux/cred.h>
41 #include <linux/nfs_idmap.h>
42 #include <linux/keyctl.h>
43 #include <linux/key-type.h>
44 #include <linux/rcupdate.h>
45 #include <linux/kernel.h>
46 #include <linux/err.h>
48 #include <keys/user-type.h>
50 #define NFS_UINT_MAXLEN 11
52 const struct cred
*id_resolver_cache
;
54 struct key_type key_type_id_resolver
= {
55 .name
= "id_resolver",
56 .instantiate
= user_instantiate
,
58 .revoke
= user_revoke
,
59 .destroy
= user_destroy
,
60 .describe
= user_describe
,
64 int nfs_idmap_init(void)
70 printk(KERN_NOTICE
"Registering the %s key type\n", key_type_id_resolver
.name
);
72 cred
= prepare_kernel_cred(NULL
);
76 keyring
= key_alloc(&key_type_keyring
, ".id_resolver", 0, 0, cred
,
77 (KEY_POS_ALL
& ~KEY_POS_SETATTR
) |
78 KEY_USR_VIEW
| KEY_USR_READ
,
79 KEY_ALLOC_NOT_IN_QUOTA
);
80 if (IS_ERR(keyring
)) {
81 ret
= PTR_ERR(keyring
);
85 ret
= key_instantiate_and_link(keyring
, NULL
, 0, NULL
, NULL
);
89 ret
= register_key_type(&key_type_id_resolver
);
93 cred
->thread_keyring
= keyring
;
94 cred
->jit_keyring
= KEY_REQKEY_DEFL_THREAD_KEYRING
;
95 id_resolver_cache
= cred
;
105 void nfs_idmap_quit(void)
107 key_revoke(id_resolver_cache
->thread_keyring
);
108 unregister_key_type(&key_type_id_resolver
);
109 put_cred(id_resolver_cache
);
113 * Assemble the description to pass to request_key()
114 * This function will allocate a new string and update dest to point
115 * at it. The caller is responsible for freeing dest.
117 * On error 0 is returned. Otherwise, the length of dest is returned.
119 static ssize_t
nfs_idmap_get_desc(const char *name
, size_t namelen
,
120 const char *type
, size_t typelen
, char **desc
)
123 size_t desclen
= typelen
+ namelen
+ 2;
125 *desc
= kmalloc(desclen
, GFP_KERNEL
);
130 memcpy(cp
, type
, typelen
);
134 memcpy(cp
, name
, namelen
);
140 static ssize_t
nfs_idmap_request_key(const char *name
, size_t namelen
,
141 const char *type
, void *data
, size_t data_size
)
143 const struct cred
*saved_cred
;
146 struct user_key_payload
*payload
;
149 ret
= nfs_idmap_get_desc(name
, namelen
, type
, strlen(type
), &desc
);
153 saved_cred
= override_creds(id_resolver_cache
);
154 rkey
= request_key(&key_type_id_resolver
, desc
, "");
155 revert_creds(saved_cred
);
163 rkey
->perm
|= KEY_USR_VIEW
;
165 ret
= key_validate(rkey
);
169 payload
= rcu_dereference(rkey
->payload
.data
);
170 if (IS_ERR_OR_NULL(payload
)) {
171 ret
= PTR_ERR(payload
);
175 ret
= payload
->datalen
;
176 if (ret
> 0 && ret
<= data_size
)
177 memcpy(data
, payload
->data
, ret
);
190 static ssize_t
nfs_idmap_lookup_name(__u32 id
, const char *type
, char *buf
, size_t buflen
)
192 char id_str
[NFS_UINT_MAXLEN
];
196 id_len
= snprintf(id_str
, sizeof(id_str
), "%u", id
);
197 ret
= nfs_idmap_request_key(id_str
, id_len
, type
, buf
, buflen
);
204 static int nfs_idmap_lookup_id(const char *name
, size_t namelen
,
205 const char *type
, __u32
*id
)
207 char id_str
[NFS_UINT_MAXLEN
];
212 data_size
= nfs_idmap_request_key(name
, namelen
, type
, id_str
, NFS_UINT_MAXLEN
);
213 if (data_size
<= 0) {
216 ret
= strict_strtol(id_str
, 10, &id_long
);
217 *id
= (__u32
)id_long
;
222 int nfs_map_name_to_uid(struct nfs_client
*clp
, const char *name
, size_t namelen
, __u32
*uid
)
224 return nfs_idmap_lookup_id(name
, namelen
, "uid", uid
);
227 int nfs_map_group_to_gid(struct nfs_client
*clp
, const char *name
, size_t namelen
, __u32
*gid
)
229 return nfs_idmap_lookup_id(name
, namelen
, "gid", gid
);
232 int nfs_map_uid_to_name(struct nfs_client
*clp
, __u32 uid
, char *buf
, size_t buflen
)
234 return nfs_idmap_lookup_name(uid
, "user", buf
, buflen
);
236 int nfs_map_gid_to_group(struct nfs_client
*clp
, __u32 gid
, char *buf
, size_t buflen
)
238 return nfs_idmap_lookup_name(gid
, "group", buf
, buflen
);
241 #else /* CONFIG_NFS_USE_IDMAPPER not defined */
243 #include <linux/module.h>
244 #include <linux/mutex.h>
245 #include <linux/init.h>
246 #include <linux/types.h>
247 #include <linux/slab.h>
248 #include <linux/socket.h>
249 #include <linux/in.h>
250 #include <linux/sched.h>
252 #include <linux/sunrpc/clnt.h>
253 #include <linux/workqueue.h>
254 #include <linux/sunrpc/rpc_pipe_fs.h>
256 #include <linux/nfs_fs.h>
258 #include <linux/nfs_idmap.h>
261 #define IDMAP_HASH_SZ 128
263 /* Default cache timeout is 10 minutes */
264 unsigned int nfs_idmap_cache_timeout
= 600 * HZ
;
266 static int param_set_idmap_timeout(const char *val
, struct kernel_param
*kp
)
269 int num
= simple_strtol(val
, &endp
, 0);
271 if (endp
== val
|| *endp
|| num
< 0 || jif
< num
)
273 *((int *)kp
->arg
) = jif
;
277 module_param_call(idmap_cache_timeout
, param_set_idmap_timeout
, param_get_int
,
278 &nfs_idmap_cache_timeout
, 0644);
280 struct idmap_hashent
{
281 unsigned long ih_expires
;
284 char ih_name
[IDMAP_NAMESZ
];
287 struct idmap_hashtable
{
289 struct idmap_hashent h_entries
[IDMAP_HASH_SZ
];
293 struct dentry
*idmap_dentry
;
294 wait_queue_head_t idmap_wq
;
295 struct idmap_msg idmap_im
;
296 struct mutex idmap_lock
; /* Serializes upcalls */
297 struct mutex idmap_im_lock
; /* Protects the hashtable */
298 struct idmap_hashtable idmap_user_hash
;
299 struct idmap_hashtable idmap_group_hash
;
302 static ssize_t
idmap_pipe_upcall(struct file
*, struct rpc_pipe_msg
*,
303 char __user
*, size_t);
304 static ssize_t
idmap_pipe_downcall(struct file
*, const char __user
*,
306 static void idmap_pipe_destroy_msg(struct rpc_pipe_msg
*);
308 static unsigned int fnvhash32(const void *, size_t);
310 static const struct rpc_pipe_ops idmap_upcall_ops
= {
311 .upcall
= idmap_pipe_upcall
,
312 .downcall
= idmap_pipe_downcall
,
313 .destroy_msg
= idmap_pipe_destroy_msg
,
317 nfs_idmap_new(struct nfs_client
*clp
)
322 BUG_ON(clp
->cl_idmap
!= NULL
);
324 idmap
= kzalloc(sizeof(*idmap
), GFP_KERNEL
);
328 idmap
->idmap_dentry
= rpc_mkpipe(clp
->cl_rpcclient
->cl_path
.dentry
,
329 "idmap", idmap
, &idmap_upcall_ops
, 0);
330 if (IS_ERR(idmap
->idmap_dentry
)) {
331 error
= PTR_ERR(idmap
->idmap_dentry
);
336 mutex_init(&idmap
->idmap_lock
);
337 mutex_init(&idmap
->idmap_im_lock
);
338 init_waitqueue_head(&idmap
->idmap_wq
);
339 idmap
->idmap_user_hash
.h_type
= IDMAP_TYPE_USER
;
340 idmap
->idmap_group_hash
.h_type
= IDMAP_TYPE_GROUP
;
342 clp
->cl_idmap
= idmap
;
347 nfs_idmap_delete(struct nfs_client
*clp
)
349 struct idmap
*idmap
= clp
->cl_idmap
;
353 rpc_unlink(idmap
->idmap_dentry
);
354 clp
->cl_idmap
= NULL
;
359 * Helper routines for manipulating the hashtable
361 static inline struct idmap_hashent
*
362 idmap_name_hash(struct idmap_hashtable
* h
, const char *name
, size_t len
)
364 return &h
->h_entries
[fnvhash32(name
, len
) % IDMAP_HASH_SZ
];
367 static struct idmap_hashent
*
368 idmap_lookup_name(struct idmap_hashtable
*h
, const char *name
, size_t len
)
370 struct idmap_hashent
*he
= idmap_name_hash(h
, name
, len
);
372 if (he
->ih_namelen
!= len
|| memcmp(he
->ih_name
, name
, len
) != 0)
374 if (time_after(jiffies
, he
->ih_expires
))
379 static inline struct idmap_hashent
*
380 idmap_id_hash(struct idmap_hashtable
* h
, __u32 id
)
382 return &h
->h_entries
[fnvhash32(&id
, sizeof(id
)) % IDMAP_HASH_SZ
];
385 static struct idmap_hashent
*
386 idmap_lookup_id(struct idmap_hashtable
*h
, __u32 id
)
388 struct idmap_hashent
*he
= idmap_id_hash(h
, id
);
389 if (he
->ih_id
!= id
|| he
->ih_namelen
== 0)
391 if (time_after(jiffies
, he
->ih_expires
))
397 * Routines for allocating new entries in the hashtable.
398 * For now, we just have 1 entry per bucket, so it's all
401 static inline struct idmap_hashent
*
402 idmap_alloc_name(struct idmap_hashtable
*h
, char *name
, size_t len
)
404 return idmap_name_hash(h
, name
, len
);
407 static inline struct idmap_hashent
*
408 idmap_alloc_id(struct idmap_hashtable
*h
, __u32 id
)
410 return idmap_id_hash(h
, id
);
414 idmap_update_entry(struct idmap_hashent
*he
, const char *name
,
415 size_t namelen
, __u32 id
)
418 memcpy(he
->ih_name
, name
, namelen
);
419 he
->ih_name
[namelen
] = '\0';
420 he
->ih_namelen
= namelen
;
421 he
->ih_expires
= jiffies
+ nfs_idmap_cache_timeout
;
428 nfs_idmap_id(struct idmap
*idmap
, struct idmap_hashtable
*h
,
429 const char *name
, size_t namelen
, __u32
*id
)
431 struct rpc_pipe_msg msg
;
432 struct idmap_msg
*im
;
433 struct idmap_hashent
*he
;
434 DECLARE_WAITQUEUE(wq
, current
);
437 im
= &idmap
->idmap_im
;
440 * String sanity checks
441 * Note that the userland daemon expects NUL terminated strings
446 if (name
[namelen
-1] != '\0')
450 if (namelen
>= IDMAP_NAMESZ
)
453 mutex_lock(&idmap
->idmap_lock
);
454 mutex_lock(&idmap
->idmap_im_lock
);
456 he
= idmap_lookup_name(h
, name
, namelen
);
463 memset(im
, 0, sizeof(*im
));
464 memcpy(im
->im_name
, name
, namelen
);
466 im
->im_type
= h
->h_type
;
467 im
->im_conv
= IDMAP_CONV_NAMETOID
;
469 memset(&msg
, 0, sizeof(msg
));
471 msg
.len
= sizeof(*im
);
473 add_wait_queue(&idmap
->idmap_wq
, &wq
);
474 if (rpc_queue_upcall(idmap
->idmap_dentry
->d_inode
, &msg
) < 0) {
475 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
479 set_current_state(TASK_UNINTERRUPTIBLE
);
480 mutex_unlock(&idmap
->idmap_im_lock
);
482 __set_current_state(TASK_RUNNING
);
483 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
484 mutex_lock(&idmap
->idmap_im_lock
);
486 if (im
->im_status
& IDMAP_STATUS_SUCCESS
) {
492 memset(im
, 0, sizeof(*im
));
493 mutex_unlock(&idmap
->idmap_im_lock
);
494 mutex_unlock(&idmap
->idmap_lock
);
502 nfs_idmap_name(struct idmap
*idmap
, struct idmap_hashtable
*h
,
503 __u32 id
, char *name
)
505 struct rpc_pipe_msg msg
;
506 struct idmap_msg
*im
;
507 struct idmap_hashent
*he
;
508 DECLARE_WAITQUEUE(wq
, current
);
512 im
= &idmap
->idmap_im
;
514 mutex_lock(&idmap
->idmap_lock
);
515 mutex_lock(&idmap
->idmap_im_lock
);
517 he
= idmap_lookup_id(h
, id
);
519 memcpy(name
, he
->ih_name
, he
->ih_namelen
);
520 ret
= he
->ih_namelen
;
524 memset(im
, 0, sizeof(*im
));
525 im
->im_type
= h
->h_type
;
526 im
->im_conv
= IDMAP_CONV_IDTONAME
;
529 memset(&msg
, 0, sizeof(msg
));
531 msg
.len
= sizeof(*im
);
533 add_wait_queue(&idmap
->idmap_wq
, &wq
);
535 if (rpc_queue_upcall(idmap
->idmap_dentry
->d_inode
, &msg
) < 0) {
536 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
540 set_current_state(TASK_UNINTERRUPTIBLE
);
541 mutex_unlock(&idmap
->idmap_im_lock
);
543 __set_current_state(TASK_RUNNING
);
544 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
545 mutex_lock(&idmap
->idmap_im_lock
);
547 if (im
->im_status
& IDMAP_STATUS_SUCCESS
) {
548 if ((len
= strnlen(im
->im_name
, IDMAP_NAMESZ
)) == 0)
550 memcpy(name
, im
->im_name
, len
);
555 memset(im
, 0, sizeof(*im
));
556 mutex_unlock(&idmap
->idmap_im_lock
);
557 mutex_unlock(&idmap
->idmap_lock
);
561 /* RPC pipefs upcall/downcall routines */
563 idmap_pipe_upcall(struct file
*filp
, struct rpc_pipe_msg
*msg
,
564 char __user
*dst
, size_t buflen
)
566 char *data
= (char *)msg
->data
+ msg
->copied
;
567 size_t mlen
= min(msg
->len
, buflen
);
570 left
= copy_to_user(dst
, data
, mlen
);
572 msg
->errno
= -EFAULT
;
583 idmap_pipe_downcall(struct file
*filp
, const char __user
*src
, size_t mlen
)
585 struct rpc_inode
*rpci
= RPC_I(filp
->f_path
.dentry
->d_inode
);
586 struct idmap
*idmap
= (struct idmap
*)rpci
->private;
587 struct idmap_msg im_in
, *im
= &idmap
->idmap_im
;
588 struct idmap_hashtable
*h
;
589 struct idmap_hashent
*he
= NULL
;
593 if (mlen
!= sizeof(im_in
))
596 if (copy_from_user(&im_in
, src
, mlen
) != 0)
599 mutex_lock(&idmap
->idmap_im_lock
);
602 im
->im_status
= im_in
.im_status
;
603 /* If we got an error, terminate now, and wake up pending upcalls */
604 if (!(im_in
.im_status
& IDMAP_STATUS_SUCCESS
)) {
605 wake_up(&idmap
->idmap_wq
);
609 /* Sanity checking of strings */
611 namelen_in
= strnlen(im_in
.im_name
, IDMAP_NAMESZ
);
612 if (namelen_in
== 0 || namelen_in
== IDMAP_NAMESZ
)
615 switch (im_in
.im_type
) {
616 case IDMAP_TYPE_USER
:
617 h
= &idmap
->idmap_user_hash
;
619 case IDMAP_TYPE_GROUP
:
620 h
= &idmap
->idmap_group_hash
;
626 switch (im_in
.im_conv
) {
627 case IDMAP_CONV_IDTONAME
:
628 /* Did we match the current upcall? */
629 if (im
->im_conv
== IDMAP_CONV_IDTONAME
630 && im
->im_type
== im_in
.im_type
631 && im
->im_id
== im_in
.im_id
) {
632 /* Yes: copy string, including the terminating '\0' */
633 memcpy(im
->im_name
, im_in
.im_name
, namelen_in
);
634 im
->im_name
[namelen_in
] = '\0';
635 wake_up(&idmap
->idmap_wq
);
637 he
= idmap_alloc_id(h
, im_in
.im_id
);
639 case IDMAP_CONV_NAMETOID
:
640 /* Did we match the current upcall? */
641 if (im
->im_conv
== IDMAP_CONV_NAMETOID
642 && im
->im_type
== im_in
.im_type
643 && strnlen(im
->im_name
, IDMAP_NAMESZ
) == namelen_in
644 && memcmp(im
->im_name
, im_in
.im_name
, namelen_in
) == 0) {
645 im
->im_id
= im_in
.im_id
;
646 wake_up(&idmap
->idmap_wq
);
648 he
= idmap_alloc_name(h
, im_in
.im_name
, namelen_in
);
654 /* If the entry is valid, also copy it to the cache */
656 idmap_update_entry(he
, im_in
.im_name
, namelen_in
, im_in
.im_id
);
659 mutex_unlock(&idmap
->idmap_im_lock
);
664 idmap_pipe_destroy_msg(struct rpc_pipe_msg
*msg
)
666 struct idmap_msg
*im
= msg
->data
;
667 struct idmap
*idmap
= container_of(im
, struct idmap
, idmap_im
);
671 mutex_lock(&idmap
->idmap_im_lock
);
672 im
->im_status
= IDMAP_STATUS_LOOKUPFAIL
;
673 wake_up(&idmap
->idmap_wq
);
674 mutex_unlock(&idmap
->idmap_im_lock
);
678 * Fowler/Noll/Vo hash
679 * http://www.isthe.com/chongo/tech/comp/fnv/
682 #define FNV_P_32 ((unsigned int)0x01000193) /* 16777619 */
683 #define FNV_1_32 ((unsigned int)0x811c9dc5) /* 2166136261 */
685 static unsigned int fnvhash32(const void *buf
, size_t buflen
)
687 const unsigned char *p
, *end
= (const unsigned char *)buf
+ buflen
;
688 unsigned int hash
= FNV_1_32
;
690 for (p
= buf
; p
< end
; p
++) {
692 hash
^= (unsigned int)*p
;
698 int nfs_map_name_to_uid(struct nfs_client
*clp
, const char *name
, size_t namelen
, __u32
*uid
)
700 struct idmap
*idmap
= clp
->cl_idmap
;
702 return nfs_idmap_id(idmap
, &idmap
->idmap_user_hash
, name
, namelen
, uid
);
705 int nfs_map_group_to_gid(struct nfs_client
*clp
, const char *name
, size_t namelen
, __u32
*uid
)
707 struct idmap
*idmap
= clp
->cl_idmap
;
709 return nfs_idmap_id(idmap
, &idmap
->idmap_group_hash
, name
, namelen
, uid
);
712 int nfs_map_uid_to_name(struct nfs_client
*clp
, __u32 uid
, char *buf
, size_t buflen
)
714 struct idmap
*idmap
= clp
->cl_idmap
;
716 return nfs_idmap_name(idmap
, &idmap
->idmap_user_hash
, uid
, buf
);
718 int nfs_map_gid_to_group(struct nfs_client
*clp
, __u32 uid
, char *buf
, size_t buflen
)
720 struct idmap
*idmap
= clp
->cl_idmap
;
722 return nfs_idmap_name(idmap
, &idmap
->idmap_group_hash
, uid
, buf
);
725 #endif /* CONFIG_NFS_USE_NEW_IDMAPPER */