4 * Mapping of UID/GIDs to name and vice versa.
6 * Copyright (c) 2002, 2003 The Regents of the University of
7 * Michigan. All rights reserved.
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/config.h>
38 #include <linux/module.h>
39 #include <linux/init.h>
42 #include <linux/utsname.h>
43 #include <linux/errno.h>
44 #include <linux/string.h>
45 #include <linux/sunrpc/clnt.h>
46 #include <linux/nfs.h>
47 #include <linux/nfs4.h>
48 #include <linux/nfs_fs.h>
49 #include <linux/nfs_page.h>
50 #include <linux/smp_lock.h>
51 #include <linux/sunrpc/cache.h>
52 #include <linux/nfsd_idmap.h>
53 #include <linux/list.h>
54 #include <linux/sched.h>
55 #include <linux/time.h>
56 #include <linux/seq_file.h>
57 #include <linux/sunrpc/svcauth.h>
64 * XXX we know that IDMAP_NAMESZ < PAGE_SIZE, but it's ugly to rely on
68 #define IDMAP_TYPE_USER 0
69 #define IDMAP_TYPE_GROUP 1
73 int type; /* User / Group */
75 char name[IDMAP_NAMESZ];
76 char authname[IDMAP_NAMESZ];
79 #define DefineSimpleCacheLookupMap(STRUCT, FUNC) \
80 DefineCacheLookup(struct STRUCT, h, FUNC##_lookup, \
81 (struct STRUCT *item, int set), /*no setup */, \
82 & FUNC##_cache, FUNC##_hash(item), FUNC##_match(item, tmp), \
83 STRUCT##_init(new, item), STRUCT##_update(tmp, item), 0)
85 /* Common entry handling */
87 #define ENT_HASHBITS 8
88 #define ENT_HASHMAX (1 << ENT_HASHBITS)
89 #define ENT_HASHMASK (ENT_HASHMAX - 1)
92 ent_init(struct ent *new, struct ent *itm)
95 new->type = itm->type;
97 strlcpy(new->name, itm->name, sizeof(new->name));
98 strlcpy(new->authname, itm->authname, sizeof(new->name));
102 ent_update(struct ent *new, struct ent *itm)
108 ent_put(struct cache_head *ch, struct cache_detail *cd)
110 if (cache_put(ch, cd)) {
111 struct ent *map = container_of(ch, struct ent, h);
120 static struct cache_head *idtoname_table[ENT_HASHMAX];
123 idtoname_hash(struct ent *ent)
127 hash = hash_str(ent->authname, ENT_HASHBITS);
128 hash = hash_long(hash ^ ent->id, ENT_HASHBITS);
130 /* Flip LSB for user/group */
131 if (ent->type == IDMAP_TYPE_GROUP)
138 idtoname_request(struct cache_detail *cd, struct cache_head *ch, char **bpp,
141 struct ent *ent = container_of(ch, struct ent, h);
144 qword_add(bpp, blen, ent->authname);
145 snprintf(idstr, sizeof(idstr), "%d", ent->id);
146 qword_add(bpp, blen, ent->type == IDMAP_TYPE_GROUP ? "group" : "user");
147 qword_add(bpp, blen, idstr);
153 idtoname_match(struct ent *a, struct ent *b)
155 return (a->id == b->id && a->type == b->type &&
156 strcmp(a->authname, b->authname) == 0);
160 idtoname_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h)
165 seq_puts(m, "#domain type id [name]\n");
168 ent = container_of(h, struct ent, h);
169 seq_printf(m, "%s %s %d", ent->authname,
170 ent->type == IDMAP_TYPE_GROUP ? "group" : "user",
172 if (test_bit(CACHE_VALID, &h->flags))
173 seq_printf(m, " %s", ent->name);
179 warn_no_idmapd(struct cache_detail *detail)
181 printk("nfsd: nfsv4 idmapping failing: has idmapd %s?\n",
182 detail->last_close? "died" : "not been started");
186 static int idtoname_parse(struct cache_detail *, char *, int);
187 static struct ent *idtoname_lookup(struct ent *, int);
189 static struct cache_detail idtoname_cache = {
190 .hash_size = ENT_HASHMAX,
191 .hash_table = idtoname_table,
192 .name = "nfs4.idtoname",
193 .cache_put = ent_put,
194 .cache_request = idtoname_request,
195 .cache_parse = idtoname_parse,
196 .cache_show = idtoname_show,
197 .warn_no_listener = warn_no_idmapd,
201 idtoname_parse(struct cache_detail *cd, char *buf, int buflen)
203 struct ent ent, *res;
207 if (buf[buflen - 1] != '\n')
209 buf[buflen - 1]= '\0';
211 buf1 = kmalloc(PAGE_SIZE, GFP_KERNEL);
215 memset(&ent, 0, sizeof(ent));
217 /* Authentication name */
218 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
220 memcpy(ent.authname, buf1, sizeof(ent.authname));
223 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
225 ent.type = strcmp(buf1, "user") == 0 ?
226 IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
229 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
231 ent.id = simple_strtoul(buf1, &bp, 10);
236 ent.h.expiry_time = get_expiry(&buf);
237 if (ent.h.expiry_time == 0)
241 error = qword_get(&buf, buf1, PAGE_SIZE);
242 if (error == -EINVAL)
244 if (error == -ENOENT)
245 set_bit(CACHE_NEGATIVE, &ent.h.flags);
247 if (error >= IDMAP_NAMESZ) {
251 memcpy(ent.name, buf1, sizeof(ent.name));
254 if ((res = idtoname_lookup(&ent, 1)) == NULL)
257 ent_put(&res->h, &idtoname_cache);
266 static DefineSimpleCacheLookupMap(ent, idtoname);
272 static struct cache_head *nametoid_table[ENT_HASHMAX];
275 nametoid_hash(struct ent *ent)
277 return hash_str(ent->name, ENT_HASHBITS);
281 nametoid_request(struct cache_detail *cd, struct cache_head *ch, char **bpp,
284 struct ent *ent = container_of(ch, struct ent, h);
286 qword_add(bpp, blen, ent->authname);
287 qword_add(bpp, blen, ent->type == IDMAP_TYPE_GROUP ? "group" : "user");
288 qword_add(bpp, blen, ent->name);
294 nametoid_match(struct ent *a, struct ent *b)
296 return (a->type == b->type && strcmp(a->name, b->name) == 0 &&
297 strcmp(a->authname, b->authname) == 0);
301 nametoid_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h)
306 seq_puts(m, "#domain type name [id]\n");
309 ent = container_of(h, struct ent, h);
310 seq_printf(m, "%s %s %s", ent->authname,
311 ent->type == IDMAP_TYPE_GROUP ? "group" : "user",
313 if (test_bit(CACHE_VALID, &h->flags))
314 seq_printf(m, " %d", ent->id);
319 static struct ent *nametoid_lookup(struct ent *, int);
320 static int nametoid_parse(struct cache_detail *, char *, int);
322 static struct cache_detail nametoid_cache = {
323 .hash_size = ENT_HASHMAX,
324 .hash_table = nametoid_table,
325 .name = "nfs4.nametoid",
326 .cache_put = ent_put,
327 .cache_request = nametoid_request,
328 .cache_parse = nametoid_parse,
329 .cache_show = nametoid_show,
330 .warn_no_listener = warn_no_idmapd,
334 nametoid_parse(struct cache_detail *cd, char *buf, int buflen)
336 struct ent ent, *res;
340 if (buf[buflen - 1] != '\n')
342 buf[buflen - 1]= '\0';
344 buf1 = kmalloc(PAGE_SIZE, GFP_KERNEL);
348 memset(&ent, 0, sizeof(ent));
350 /* Authentication name */
351 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
353 memcpy(ent.authname, buf1, sizeof(ent.authname));
356 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
358 ent.type = strcmp(buf1, "user") == 0 ?
359 IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
362 error = qword_get(&buf, buf1, PAGE_SIZE);
363 if (error <= 0 || error >= IDMAP_NAMESZ)
365 memcpy(ent.name, buf1, sizeof(ent.name));
368 ent.h.expiry_time = get_expiry(&buf);
369 if (ent.h.expiry_time == 0)
373 error = get_int(&buf, &ent.id);
374 if (error == -EINVAL)
376 if (error == -ENOENT)
377 set_bit(CACHE_NEGATIVE, &ent.h.flags);
380 if ((res = nametoid_lookup(&ent, 1)) == NULL)
383 ent_put(&res->h, &nametoid_cache);
391 static DefineSimpleCacheLookupMap(ent, nametoid);
398 nfsd_idmap_init(void)
400 cache_register(&idtoname_cache);
401 cache_register(&nametoid_cache);
405 nfsd_idmap_shutdown(void)
407 cache_unregister(&idtoname_cache);
408 cache_unregister(&nametoid_cache);
412 * Deferred request handling
415 struct idmap_defer_req {
416 struct cache_req req;
417 struct cache_deferred_req deferred_req;
418 wait_queue_head_t waitq;
423 put_mdr(struct idmap_defer_req *mdr)
425 if (atomic_dec_and_test(&mdr->count))
430 get_mdr(struct idmap_defer_req *mdr)
432 atomic_inc(&mdr->count);
436 idmap_revisit(struct cache_deferred_req *dreq, int toomany)
438 struct idmap_defer_req *mdr =
439 container_of(dreq, struct idmap_defer_req, deferred_req);
441 wake_up(&mdr->waitq);
445 static struct cache_deferred_req *
446 idmap_defer(struct cache_req *req)
448 struct idmap_defer_req *mdr =
449 container_of(req, struct idmap_defer_req, req);
451 mdr->deferred_req.revisit = idmap_revisit;
453 return (&mdr->deferred_req);
457 do_idmap_lookup(struct ent *(*lookup_fn)(struct ent *, int), struct ent *key,
458 struct cache_detail *detail, struct ent **item,
459 struct idmap_defer_req *mdr)
461 *item = lookup_fn(key, 0);
464 return cache_check(detail, &(*item)->h, &mdr->req);
468 do_idmap_lookup_nowait(struct ent *(*lookup_fn)(struct ent *, int),
469 struct ent *key, struct cache_detail *detail,
474 *item = lookup_fn(key, 0);
478 if (!test_bit(CACHE_VALID, &(*item)->h.flags)
479 || (*item)->h.expiry_time < get_seconds()
480 || detail->flush_time > (*item)->h.last_refresh)
483 if (test_bit(CACHE_NEGATIVE, &(*item)->h.flags))
487 ent_put(&(*item)->h, detail);
494 idmap_lookup(struct svc_rqst *rqstp,
495 struct ent *(*lookup_fn)(struct ent *, int), struct ent *key,
496 struct cache_detail *detail, struct ent **item)
498 struct idmap_defer_req *mdr;
501 mdr = kmalloc(sizeof(*mdr), GFP_KERNEL);
504 memset(mdr, 0, sizeof(*mdr));
505 atomic_set(&mdr->count, 1);
506 init_waitqueue_head(&mdr->waitq);
507 mdr->req.defer = idmap_defer;
508 ret = do_idmap_lookup(lookup_fn, key, detail, item, mdr);
509 if (ret == -EAGAIN) {
510 wait_event_interruptible_timeout(mdr->waitq,
511 test_bit(CACHE_VALID, &(*item)->h.flags), 1 * HZ);
512 ret = do_idmap_lookup_nowait(lookup_fn, key, detail, item);
519 idmap_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen,
522 struct ent *item, key = {
527 if (namelen + 1 > sizeof(key.name))
529 memcpy(key.name, name, namelen);
530 key.name[namelen] = '\0';
531 strlcpy(key.authname, rqstp->rq_client->name, sizeof(key.authname));
532 ret = idmap_lookup(rqstp, nametoid_lookup, &key, &nametoid_cache, &item);
534 ret = -ESRCH; /* nfserr_badname */
538 ent_put(&item->h, &nametoid_cache);
543 idmap_id_to_name(struct svc_rqst *rqstp, int type, uid_t id, char *name)
545 struct ent *item, key = {
551 strlcpy(key.authname, rqstp->rq_client->name, sizeof(key.authname));
552 ret = idmap_lookup(rqstp, idtoname_lookup, &key, &idtoname_cache, &item);
554 return sprintf(name, "%u", id);
557 ret = strlen(item->name);
558 BUG_ON(ret > IDMAP_NAMESZ);
559 memcpy(name, item->name, ret);
560 ent_put(&item->h, &idtoname_cache);
565 nfsd_map_name_to_uid(struct svc_rqst *rqstp, const char *name, size_t namelen,
568 return idmap_name_to_id(rqstp, IDMAP_TYPE_USER, name, namelen, id);
572 nfsd_map_name_to_gid(struct svc_rqst *rqstp, const char *name, size_t namelen,
575 return idmap_name_to_id(rqstp, IDMAP_TYPE_GROUP, name, namelen, id);
579 nfsd_map_uid_to_name(struct svc_rqst *rqstp, __u32 id, char *name)
581 return idmap_id_to_name(rqstp, IDMAP_TYPE_USER, id, name);
585 nfsd_map_gid_to_name(struct svc_rqst *rqstp, __u32 id, char *name)
587 return idmap_id_to_name(rqstp, IDMAP_TYPE_GROUP, id, name);