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 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/types.h>
40 #include <linux/slab.h>
41 #include <linux/socket.h>
43 #include <linux/sched.h>
45 #include <linux/sunrpc/clnt.h>
46 #include <linux/workqueue.h>
47 #include <linux/sunrpc/rpc_pipe_fs.h>
49 #include <linux/nfs_fs_sb.h>
50 #include <linux/nfs_fs.h>
52 #include <linux/nfs_idmap.h>
55 #define IDMAP_HASH_SZ 128
57 struct idmap_hashent
{
60 char ih_name
[IDMAP_NAMESZ
];
63 struct idmap_hashtable
{
65 struct idmap_hashent h_entries
[IDMAP_HASH_SZ
];
70 struct dentry
*idmap_dentry
;
71 wait_queue_head_t idmap_wq
;
72 struct idmap_msg idmap_im
;
73 struct semaphore idmap_lock
; /* Serializes upcalls */
74 struct semaphore idmap_im_lock
; /* Protects the hashtable */
75 struct idmap_hashtable idmap_user_hash
;
76 struct idmap_hashtable idmap_group_hash
;
79 static ssize_t
idmap_pipe_upcall(struct file
*, struct rpc_pipe_msg
*,
80 char __user
*, size_t);
81 static ssize_t
idmap_pipe_downcall(struct file
*, const char __user
*,
83 static void idmap_pipe_destroy_msg(struct rpc_pipe_msg
*);
85 static unsigned int fnvhash32(const void *, size_t);
87 static struct rpc_pipe_ops idmap_upcall_ops
= {
88 .upcall
= idmap_pipe_upcall
,
89 .downcall
= idmap_pipe_downcall
,
90 .destroy_msg
= idmap_pipe_destroy_msg
,
94 nfs_idmap_new(struct nfs4_client
*clp
)
98 if (clp
->cl_idmap
!= NULL
)
100 if ((idmap
= kmalloc(sizeof(*idmap
), GFP_KERNEL
)) == NULL
)
103 memset(idmap
, 0, sizeof(*idmap
));
105 snprintf(idmap
->idmap_path
, sizeof(idmap
->idmap_path
),
106 "%s/idmap", clp
->cl_rpcclient
->cl_pathname
);
108 idmap
->idmap_dentry
= rpc_mkpipe(idmap
->idmap_path
,
109 idmap
, &idmap_upcall_ops
, 0);
110 if (IS_ERR(idmap
->idmap_dentry
)) {
115 init_MUTEX(&idmap
->idmap_lock
);
116 init_MUTEX(&idmap
->idmap_im_lock
);
117 init_waitqueue_head(&idmap
->idmap_wq
);
118 idmap
->idmap_user_hash
.h_type
= IDMAP_TYPE_USER
;
119 idmap
->idmap_group_hash
.h_type
= IDMAP_TYPE_GROUP
;
121 clp
->cl_idmap
= idmap
;
125 nfs_idmap_delete(struct nfs4_client
*clp
)
127 struct idmap
*idmap
= clp
->cl_idmap
;
131 rpc_unlink(idmap
->idmap_path
);
132 clp
->cl_idmap
= NULL
;
137 * Helper routines for manipulating the hashtable
139 static inline struct idmap_hashent
*
140 idmap_name_hash(struct idmap_hashtable
* h
, const char *name
, size_t len
)
142 return &h
->h_entries
[fnvhash32(name
, len
) % IDMAP_HASH_SZ
];
145 static struct idmap_hashent
*
146 idmap_lookup_name(struct idmap_hashtable
*h
, const char *name
, size_t len
)
148 struct idmap_hashent
*he
= idmap_name_hash(h
, name
, len
);
150 if (he
->ih_namelen
!= len
|| memcmp(he
->ih_name
, name
, len
) != 0)
155 static inline struct idmap_hashent
*
156 idmap_id_hash(struct idmap_hashtable
* h
, __u32 id
)
158 return &h
->h_entries
[fnvhash32(&id
, sizeof(id
)) % IDMAP_HASH_SZ
];
161 static struct idmap_hashent
*
162 idmap_lookup_id(struct idmap_hashtable
*h
, __u32 id
)
164 struct idmap_hashent
*he
= idmap_id_hash(h
, id
);
165 if (he
->ih_id
!= id
|| he
->ih_namelen
== 0)
171 * Routines for allocating new entries in the hashtable.
172 * For now, we just have 1 entry per bucket, so it's all
175 static inline struct idmap_hashent
*
176 idmap_alloc_name(struct idmap_hashtable
*h
, char *name
, unsigned len
)
178 return idmap_name_hash(h
, name
, len
);
181 static inline struct idmap_hashent
*
182 idmap_alloc_id(struct idmap_hashtable
*h
, __u32 id
)
184 return idmap_id_hash(h
, id
);
188 idmap_update_entry(struct idmap_hashent
*he
, const char *name
,
189 size_t namelen
, __u32 id
)
192 memcpy(he
->ih_name
, name
, namelen
);
193 he
->ih_name
[namelen
] = '\0';
194 he
->ih_namelen
= namelen
;
201 nfs_idmap_id(struct idmap
*idmap
, struct idmap_hashtable
*h
,
202 const char *name
, size_t namelen
, __u32
*id
)
204 struct rpc_pipe_msg msg
;
205 struct idmap_msg
*im
;
206 struct idmap_hashent
*he
;
207 DECLARE_WAITQUEUE(wq
, current
);
210 im
= &idmap
->idmap_im
;
213 * String sanity checks
214 * Note that the userland daemon expects NUL terminated strings
219 if (name
[namelen
-1] != '\0')
223 if (namelen
>= IDMAP_NAMESZ
)
226 down(&idmap
->idmap_lock
);
227 down(&idmap
->idmap_im_lock
);
229 he
= idmap_lookup_name(h
, name
, namelen
);
236 memset(im
, 0, sizeof(*im
));
237 memcpy(im
->im_name
, name
, namelen
);
239 im
->im_type
= h
->h_type
;
240 im
->im_conv
= IDMAP_CONV_NAMETOID
;
242 memset(&msg
, 0, sizeof(msg
));
244 msg
.len
= sizeof(*im
);
246 add_wait_queue(&idmap
->idmap_wq
, &wq
);
247 if (rpc_queue_upcall(idmap
->idmap_dentry
->d_inode
, &msg
) < 0) {
248 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
252 set_current_state(TASK_UNINTERRUPTIBLE
);
253 up(&idmap
->idmap_im_lock
);
255 current
->state
= TASK_RUNNING
;
256 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
257 down(&idmap
->idmap_im_lock
);
259 if (im
->im_status
& IDMAP_STATUS_SUCCESS
) {
265 memset(im
, 0, sizeof(*im
));
266 up(&idmap
->idmap_im_lock
);
267 up(&idmap
->idmap_lock
);
275 nfs_idmap_name(struct idmap
*idmap
, struct idmap_hashtable
*h
,
276 __u32 id
, char *name
)
278 struct rpc_pipe_msg msg
;
279 struct idmap_msg
*im
;
280 struct idmap_hashent
*he
;
281 DECLARE_WAITQUEUE(wq
, current
);
285 im
= &idmap
->idmap_im
;
287 down(&idmap
->idmap_lock
);
288 down(&idmap
->idmap_im_lock
);
290 he
= idmap_lookup_id(h
, id
);
292 memcpy(name
, he
->ih_name
, he
->ih_namelen
);
293 ret
= he
->ih_namelen
;
297 memset(im
, 0, sizeof(*im
));
298 im
->im_type
= h
->h_type
;
299 im
->im_conv
= IDMAP_CONV_IDTONAME
;
302 memset(&msg
, 0, sizeof(msg
));
304 msg
.len
= sizeof(*im
);
306 add_wait_queue(&idmap
->idmap_wq
, &wq
);
308 if (rpc_queue_upcall(idmap
->idmap_dentry
->d_inode
, &msg
) < 0) {
309 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
313 set_current_state(TASK_UNINTERRUPTIBLE
);
314 up(&idmap
->idmap_im_lock
);
316 current
->state
= TASK_RUNNING
;
317 remove_wait_queue(&idmap
->idmap_wq
, &wq
);
318 down(&idmap
->idmap_im_lock
);
320 if (im
->im_status
& IDMAP_STATUS_SUCCESS
) {
321 if ((len
= strnlen(im
->im_name
, IDMAP_NAMESZ
)) == 0)
323 memcpy(name
, im
->im_name
, len
);
328 memset(im
, 0, sizeof(*im
));
329 up(&idmap
->idmap_im_lock
);
330 up(&idmap
->idmap_lock
);
334 /* RPC pipefs upcall/downcall routines */
336 idmap_pipe_upcall(struct file
*filp
, struct rpc_pipe_msg
*msg
,
337 char __user
*dst
, size_t buflen
)
339 char *data
= (char *)msg
->data
+ msg
->copied
;
340 ssize_t mlen
= msg
->len
- msg
->copied
;
346 left
= copy_to_user(dst
, data
, mlen
);
358 idmap_pipe_downcall(struct file
*filp
, const char __user
*src
, size_t mlen
)
360 struct rpc_inode
*rpci
= RPC_I(filp
->f_dentry
->d_inode
);
361 struct idmap
*idmap
= (struct idmap
*)rpci
->private;
362 struct idmap_msg im_in
, *im
= &idmap
->idmap_im
;
363 struct idmap_hashtable
*h
;
364 struct idmap_hashent
*he
= NULL
;
368 if (mlen
!= sizeof(im_in
))
371 if (copy_from_user(&im_in
, src
, mlen
) != 0)
374 down(&idmap
->idmap_im_lock
);
377 im
->im_status
= im_in
.im_status
;
378 /* If we got an error, terminate now, and wake up pending upcalls */
379 if (!(im_in
.im_status
& IDMAP_STATUS_SUCCESS
)) {
380 wake_up(&idmap
->idmap_wq
);
384 /* Sanity checking of strings */
386 namelen_in
= strnlen(im_in
.im_name
, IDMAP_NAMESZ
);
387 if (namelen_in
== 0 || namelen_in
== IDMAP_NAMESZ
)
390 switch (im_in
.im_type
) {
391 case IDMAP_TYPE_USER
:
392 h
= &idmap
->idmap_user_hash
;
394 case IDMAP_TYPE_GROUP
:
395 h
= &idmap
->idmap_group_hash
;
401 switch (im_in
.im_conv
) {
402 case IDMAP_CONV_IDTONAME
:
403 /* Did we match the current upcall? */
404 if (im
->im_conv
== IDMAP_CONV_IDTONAME
405 && im
->im_type
== im_in
.im_type
406 && im
->im_id
== im_in
.im_id
) {
407 /* Yes: copy string, including the terminating '\0' */
408 memcpy(im
->im_name
, im_in
.im_name
, namelen_in
);
409 im
->im_name
[namelen_in
] = '\0';
410 wake_up(&idmap
->idmap_wq
);
412 he
= idmap_alloc_id(h
, im_in
.im_id
);
414 case IDMAP_CONV_NAMETOID
:
415 /* Did we match the current upcall? */
416 if (im
->im_conv
== IDMAP_CONV_NAMETOID
417 && im
->im_type
== im_in
.im_type
418 && strnlen(im
->im_name
, IDMAP_NAMESZ
) == namelen_in
419 && memcmp(im
->im_name
, im_in
.im_name
, namelen_in
) == 0) {
420 im
->im_id
= im_in
.im_id
;
421 wake_up(&idmap
->idmap_wq
);
423 he
= idmap_alloc_name(h
, im_in
.im_name
, namelen_in
);
429 /* If the entry is valid, also copy it to the cache */
431 idmap_update_entry(he
, im_in
.im_name
, namelen_in
, im_in
.im_id
);
434 up(&idmap
->idmap_im_lock
);
439 idmap_pipe_destroy_msg(struct rpc_pipe_msg
*msg
)
441 struct idmap_msg
*im
= msg
->data
;
442 struct idmap
*idmap
= container_of(im
, struct idmap
, idmap_im
);
446 down(&idmap
->idmap_im_lock
);
447 im
->im_status
= IDMAP_STATUS_LOOKUPFAIL
;
448 wake_up(&idmap
->idmap_wq
);
449 up(&idmap
->idmap_im_lock
);
453 * Fowler/Noll/Vo hash
454 * http://www.isthe.com/chongo/tech/comp/fnv/
457 #define FNV_P_32 ((unsigned int)0x01000193) /* 16777619 */
458 #define FNV_1_32 ((unsigned int)0x811c9dc5) /* 2166136261 */
460 static unsigned int fnvhash32(const void *buf
, size_t buflen
)
462 const unsigned char *p
, *end
= (const unsigned char *)buf
+ buflen
;
463 unsigned int hash
= FNV_1_32
;
465 for (p
= buf
; p
< end
; p
++) {
467 hash
^= (unsigned int)*p
;
473 int nfs_map_name_to_uid(struct nfs4_client
*clp
, const char *name
, size_t namelen
, __u32
*uid
)
475 struct idmap
*idmap
= clp
->cl_idmap
;
477 return nfs_idmap_id(idmap
, &idmap
->idmap_user_hash
, name
, namelen
, uid
);
480 int nfs_map_group_to_gid(struct nfs4_client
*clp
, const char *name
, size_t namelen
, __u32
*uid
)
482 struct idmap
*idmap
= clp
->cl_idmap
;
484 return nfs_idmap_id(idmap
, &idmap
->idmap_group_hash
, name
, namelen
, uid
);
487 int nfs_map_uid_to_name(struct nfs4_client
*clp
, __u32 uid
, char *buf
)
489 struct idmap
*idmap
= clp
->cl_idmap
;
491 return nfs_idmap_name(idmap
, &idmap
->idmap_user_hash
, uid
, buf
);
493 int nfs_map_gid_to_group(struct nfs4_client
*clp
, __u32 uid
, char *buf
)
495 struct idmap
*idmap
= clp
->cl_idmap
;
497 return nfs_idmap_name(idmap
, &idmap
->idmap_group_hash
, uid
, buf
);