blob: d37405f7000a18474bec2892d106c658f331940b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Mapping of UID/GIDs to name and vice versa.
3 *
4 * Copyright (c) 2002, 2003 The Regents of the University of
5 * Michigan. All rights reserved.
6 *
7 * Marius Aamodt Eriksen <marius@umich.edu>
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 *
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/seq_file.h>
Boaz Harrosh341eb182009-12-03 20:29:12 +020037#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Stanislav Kinsburskyf5c8593b2011-12-07 12:57:56 +030039#include <net/net_namespace.h>
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050040#include "idmap.h"
J. Bruce Fields3c726022011-01-04 17:53:52 -050041#include "nfsd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -040044 * Turn off idmapping when using AUTH_SYS.
45 */
46static bool nfs4_disable_idmapping = true;
47module_param(nfs4_disable_idmapping, bool, 0644);
48MODULE_PARM_DESC(nfs4_disable_idmapping,
49 "Turn off server's NFSv4 idmapping when using 'sec=sys'");
50
51/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Cache entry
53 */
54
55/*
56 * XXX we know that IDMAP_NAMESZ < PAGE_SIZE, but it's ugly to rely on
57 * that.
58 */
59
60#define IDMAP_TYPE_USER 0
61#define IDMAP_TYPE_GROUP 1
62
63struct ent {
64 struct cache_head h;
65 int type; /* User / Group */
66 uid_t id;
67 char name[IDMAP_NAMESZ];
68 char authname[IDMAP_NAMESZ];
69};
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Common entry handling */
72
73#define ENT_HASHBITS 8
74#define ENT_HASHMAX (1 << ENT_HASHBITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
NeilBrownf9ecc922006-03-27 01:15:06 -080076static void
77ent_init(struct cache_head *cnew, struct cache_head *citm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
NeilBrownf9ecc922006-03-27 01:15:06 -080079 struct ent *new = container_of(cnew, struct ent, h);
80 struct ent *itm = container_of(citm, struct ent, h);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 new->id = itm->id;
83 new->type = itm->type;
84
85 strlcpy(new->name, itm->name, sizeof(new->name));
86 strlcpy(new->authname, itm->authname, sizeof(new->name));
87}
88
NeilBrownfd39ca92005-06-23 22:04:03 -070089static void
NeilBrownbaab9352006-03-27 01:15:09 -080090ent_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
NeilBrownbaab9352006-03-27 01:15:09 -080092 struct ent *map = container_of(ref, struct ent, h.ref);
93 kfree(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
NeilBrownf9ecc922006-03-27 01:15:06 -080096static struct cache_head *
97ent_alloc(void)
98{
99 struct ent *e = kmalloc(sizeof(*e), GFP_KERNEL);
100 if (e)
101 return &e->h;
102 else
103 return NULL;
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * ID -> Name cache
108 */
109
110static struct cache_head *idtoname_table[ENT_HASHMAX];
111
112static uint32_t
113idtoname_hash(struct ent *ent)
114{
115 uint32_t hash;
116
117 hash = hash_str(ent->authname, ENT_HASHBITS);
118 hash = hash_long(hash ^ ent->id, ENT_HASHBITS);
119
120 /* Flip LSB for user/group */
121 if (ent->type == IDMAP_TYPE_GROUP)
122 hash ^= 1;
123
124 return hash;
125}
126
127static void
128idtoname_request(struct cache_detail *cd, struct cache_head *ch, char **bpp,
129 int *blen)
130{
131 struct ent *ent = container_of(ch, struct ent, h);
132 char idstr[11];
133
134 qword_add(bpp, blen, ent->authname);
J. Bruce Fields0a725fc2007-07-31 00:37:52 -0700135 snprintf(idstr, sizeof(idstr), "%u", ent->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 qword_add(bpp, blen, ent->type == IDMAP_TYPE_GROUP ? "group" : "user");
137 qword_add(bpp, blen, idstr);
138
139 (*bpp)[-1] = '\n';
140}
141
NeilBrownf9ecc922006-03-27 01:15:06 -0800142static int
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400143idtoname_upcall(struct cache_detail *cd, struct cache_head *ch)
144{
145 return sunrpc_cache_pipe_upcall(cd, ch, idtoname_request);
146}
147
148static int
NeilBrownf9ecc922006-03-27 01:15:06 -0800149idtoname_match(struct cache_head *ca, struct cache_head *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
NeilBrownf9ecc922006-03-27 01:15:06 -0800151 struct ent *a = container_of(ca, struct ent, h);
152 struct ent *b = container_of(cb, struct ent, h);
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return (a->id == b->id && a->type == b->type &&
155 strcmp(a->authname, b->authname) == 0);
156}
157
158static int
159idtoname_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h)
160{
161 struct ent *ent;
162
163 if (h == NULL) {
164 seq_puts(m, "#domain type id [name]\n");
165 return 0;
166 }
167 ent = container_of(h, struct ent, h);
J. Bruce Fields0a725fc2007-07-31 00:37:52 -0700168 seq_printf(m, "%s %s %u", ent->authname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 ent->type == IDMAP_TYPE_GROUP ? "group" : "user",
170 ent->id);
171 if (test_bit(CACHE_VALID, &h->flags))
172 seq_printf(m, " %s", ent->name);
173 seq_printf(m, "\n");
174 return 0;
175}
176
177static void
Trond Myklebust2da8ca22009-08-09 15:14:26 -0400178warn_no_idmapd(struct cache_detail *detail, int has_died)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 printk("nfsd: nfsv4 idmapping failing: has idmapd %s?\n",
Trond Myklebust2da8ca22009-08-09 15:14:26 -0400181 has_died ? "died" : "not been started");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184
185static int idtoname_parse(struct cache_detail *, char *, int);
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400186static struct ent *idtoname_lookup(struct cache_detail *, struct ent *);
187static struct ent *idtoname_update(struct cache_detail *, struct ent *,
188 struct ent *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
NeilBrownfd39ca92005-06-23 22:04:03 -0700190static struct cache_detail idtoname_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700191 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 .hash_size = ENT_HASHMAX,
193 .hash_table = idtoname_table,
194 .name = "nfs4.idtoname",
195 .cache_put = ent_put,
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400196 .cache_upcall = idtoname_upcall,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .cache_parse = idtoname_parse,
198 .cache_show = idtoname_show,
199 .warn_no_listener = warn_no_idmapd,
NeilBrownf9ecc922006-03-27 01:15:06 -0800200 .match = idtoname_match,
201 .init = ent_init,
202 .update = ent_init,
203 .alloc = ent_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204};
205
Harvey Harrisona254b242008-02-20 12:49:00 -0800206static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207idtoname_parse(struct cache_detail *cd, char *buf, int buflen)
208{
209 struct ent ent, *res;
210 char *buf1, *bp;
J. Bruce Fieldsc9b6cbe2007-07-27 16:36:45 -0400211 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 int error = -EINVAL;
213
214 if (buf[buflen - 1] != '\n')
215 return (-EINVAL);
216 buf[buflen - 1]= '\0';
217
218 buf1 = kmalloc(PAGE_SIZE, GFP_KERNEL);
219 if (buf1 == NULL)
220 return (-ENOMEM);
221
222 memset(&ent, 0, sizeof(ent));
223
224 /* Authentication name */
225 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
226 goto out;
227 memcpy(ent.authname, buf1, sizeof(ent.authname));
228
229 /* Type */
230 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
231 goto out;
232 ent.type = strcmp(buf1, "user") == 0 ?
233 IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
234
235 /* ID */
236 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
237 goto out;
238 ent.id = simple_strtoul(buf1, &bp, 10);
239 if (bp == buf1)
240 goto out;
241
242 /* expiry */
243 ent.h.expiry_time = get_expiry(&buf);
244 if (ent.h.expiry_time == 0)
245 goto out;
246
NeilBrownf9ecc922006-03-27 01:15:06 -0800247 error = -ENOMEM;
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400248 res = idtoname_lookup(cd, &ent);
NeilBrownf9ecc922006-03-27 01:15:06 -0800249 if (!res)
250 goto out;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* Name */
J. Bruce Fieldsc9b6cbe2007-07-27 16:36:45 -0400253 error = -EINVAL;
254 len = qword_get(&buf, buf1, PAGE_SIZE);
255 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto out;
J. Bruce Fieldsc9b6cbe2007-07-27 16:36:45 -0400257 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 set_bit(CACHE_NEGATIVE, &ent.h.flags);
J. Bruce Fieldsd4395e02007-10-26 13:32:50 -0400259 else if (len >= IDMAP_NAMESZ)
260 goto out;
261 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 memcpy(ent.name, buf1, sizeof(ent.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 error = -ENOMEM;
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400264 res = idtoname_update(cd, &ent, res);
NeilBrownf9ecc922006-03-27 01:15:06 -0800265 if (res == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 goto out;
267
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400268 cache_put(&res->h, cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 error = 0;
271out:
272 kfree(buf1);
273
274 return error;
275}
276
NeilBrownf9ecc922006-03-27 01:15:06 -0800277
278static struct ent *
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400279idtoname_lookup(struct cache_detail *cd, struct ent *item)
NeilBrownf9ecc922006-03-27 01:15:06 -0800280{
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400281 struct cache_head *ch = sunrpc_cache_lookup(cd, &item->h,
NeilBrownf9ecc922006-03-27 01:15:06 -0800282 idtoname_hash(item));
283 if (ch)
284 return container_of(ch, struct ent, h);
285 else
286 return NULL;
287}
288
289static struct ent *
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400290idtoname_update(struct cache_detail *cd, struct ent *new, struct ent *old)
NeilBrownf9ecc922006-03-27 01:15:06 -0800291{
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400292 struct cache_head *ch = sunrpc_cache_update(cd, &new->h, &old->h,
NeilBrownf9ecc922006-03-27 01:15:06 -0800293 idtoname_hash(new));
294 if (ch)
295 return container_of(ch, struct ent, h);
296 else
297 return NULL;
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301/*
302 * Name -> ID cache
303 */
304
305static struct cache_head *nametoid_table[ENT_HASHMAX];
306
307static inline int
308nametoid_hash(struct ent *ent)
309{
310 return hash_str(ent->name, ENT_HASHBITS);
311}
312
NeilBrownfd39ca92005-06-23 22:04:03 -0700313static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314nametoid_request(struct cache_detail *cd, struct cache_head *ch, char **bpp,
315 int *blen)
316{
317 struct ent *ent = container_of(ch, struct ent, h);
318
319 qword_add(bpp, blen, ent->authname);
320 qword_add(bpp, blen, ent->type == IDMAP_TYPE_GROUP ? "group" : "user");
321 qword_add(bpp, blen, ent->name);
322
323 (*bpp)[-1] = '\n';
324}
325
NeilBrownf9ecc922006-03-27 01:15:06 -0800326static int
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400327nametoid_upcall(struct cache_detail *cd, struct cache_head *ch)
328{
329 return sunrpc_cache_pipe_upcall(cd, ch, nametoid_request);
330}
331
332static int
NeilBrownf9ecc922006-03-27 01:15:06 -0800333nametoid_match(struct cache_head *ca, struct cache_head *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
NeilBrownf9ecc922006-03-27 01:15:06 -0800335 struct ent *a = container_of(ca, struct ent, h);
336 struct ent *b = container_of(cb, struct ent, h);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return (a->type == b->type && strcmp(a->name, b->name) == 0 &&
339 strcmp(a->authname, b->authname) == 0);
340}
341
342static int
343nametoid_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h)
344{
345 struct ent *ent;
346
347 if (h == NULL) {
348 seq_puts(m, "#domain type name [id]\n");
349 return 0;
350 }
351 ent = container_of(h, struct ent, h);
352 seq_printf(m, "%s %s %s", ent->authname,
353 ent->type == IDMAP_TYPE_GROUP ? "group" : "user",
354 ent->name);
355 if (test_bit(CACHE_VALID, &h->flags))
J. Bruce Fields0a725fc2007-07-31 00:37:52 -0700356 seq_printf(m, " %u", ent->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 seq_printf(m, "\n");
358 return 0;
359}
360
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400361static struct ent *nametoid_lookup(struct cache_detail *, struct ent *);
362static struct ent *nametoid_update(struct cache_detail *, struct ent *,
363 struct ent *);
NeilBrownfd39ca92005-06-23 22:04:03 -0700364static int nametoid_parse(struct cache_detail *, char *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
NeilBrownfd39ca92005-06-23 22:04:03 -0700366static struct cache_detail nametoid_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700367 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .hash_size = ENT_HASHMAX,
369 .hash_table = nametoid_table,
370 .name = "nfs4.nametoid",
371 .cache_put = ent_put,
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400372 .cache_upcall = nametoid_upcall,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .cache_parse = nametoid_parse,
374 .cache_show = nametoid_show,
375 .warn_no_listener = warn_no_idmapd,
NeilBrownf9ecc922006-03-27 01:15:06 -0800376 .match = nametoid_match,
377 .init = ent_init,
378 .update = ent_init,
379 .alloc = ent_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
NeilBrownfd39ca92005-06-23 22:04:03 -0700382static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383nametoid_parse(struct cache_detail *cd, char *buf, int buflen)
384{
385 struct ent ent, *res;
386 char *buf1;
387 int error = -EINVAL;
388
389 if (buf[buflen - 1] != '\n')
390 return (-EINVAL);
391 buf[buflen - 1]= '\0';
392
393 buf1 = kmalloc(PAGE_SIZE, GFP_KERNEL);
394 if (buf1 == NULL)
395 return (-ENOMEM);
396
397 memset(&ent, 0, sizeof(ent));
398
399 /* Authentication name */
400 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
401 goto out;
402 memcpy(ent.authname, buf1, sizeof(ent.authname));
403
404 /* Type */
405 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
406 goto out;
407 ent.type = strcmp(buf1, "user") == 0 ?
408 IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
409
410 /* Name */
411 error = qword_get(&buf, buf1, PAGE_SIZE);
412 if (error <= 0 || error >= IDMAP_NAMESZ)
413 goto out;
414 memcpy(ent.name, buf1, sizeof(ent.name));
415
416 /* expiry */
417 ent.h.expiry_time = get_expiry(&buf);
418 if (ent.h.expiry_time == 0)
419 goto out;
420
421 /* ID */
422 error = get_int(&buf, &ent.id);
423 if (error == -EINVAL)
424 goto out;
425 if (error == -ENOENT)
426 set_bit(CACHE_NEGATIVE, &ent.h.flags);
427
428 error = -ENOMEM;
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400429 res = nametoid_lookup(cd, &ent);
NeilBrownf9ecc922006-03-27 01:15:06 -0800430 if (res == NULL)
431 goto out;
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400432 res = nametoid_update(cd, &ent, res);
NeilBrownf9ecc922006-03-27 01:15:06 -0800433 if (res == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto out;
435
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400436 cache_put(&res->h, cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 error = 0;
438out:
439 kfree(buf1);
440
441 return (error);
442}
443
NeilBrownf9ecc922006-03-27 01:15:06 -0800444
445static struct ent *
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400446nametoid_lookup(struct cache_detail *cd, struct ent *item)
NeilBrownf9ecc922006-03-27 01:15:06 -0800447{
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400448 struct cache_head *ch = sunrpc_cache_lookup(cd, &item->h,
NeilBrownf9ecc922006-03-27 01:15:06 -0800449 nametoid_hash(item));
450 if (ch)
451 return container_of(ch, struct ent, h);
452 else
453 return NULL;
454}
455
456static struct ent *
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400457nametoid_update(struct cache_detail *cd, struct ent *new, struct ent *old)
NeilBrownf9ecc922006-03-27 01:15:06 -0800458{
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400459 struct cache_head *ch = sunrpc_cache_update(cd, &new->h, &old->h,
NeilBrownf9ecc922006-03-27 01:15:06 -0800460 nametoid_hash(new));
461 if (ch)
462 return container_of(ch, struct ent, h);
463 else
464 return NULL;
465}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467/*
468 * Exported API
469 */
470
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -0500471int
Stanislav Kinsbursky43ec1a22012-04-11 17:32:44 +0400472nfsd_idmap_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -0500474 int rv;
475
Stanislav Kinsbursky43ec1a22012-04-11 17:32:44 +0400476 rv = cache_register_net(&idtoname_cache, net);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -0500477 if (rv)
478 return rv;
Stanislav Kinsbursky43ec1a22012-04-11 17:32:44 +0400479 rv = cache_register_net(&nametoid_cache, net);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -0500480 if (rv)
Stanislav Kinsbursky43ec1a22012-04-11 17:32:44 +0400481 cache_unregister_net(&idtoname_cache, net);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -0500482 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485void
Stanislav Kinsbursky43ec1a22012-04-11 17:32:44 +0400486nfsd_idmap_shutdown(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Stanislav Kinsbursky43ec1a22012-04-11 17:32:44 +0400488 cache_unregister_net(&idtoname_cache, net);
489 cache_unregister_net(&nametoid_cache, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static int
493idmap_lookup(struct svc_rqst *rqstp,
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400494 struct ent *(*lookup_fn)(struct cache_detail *, struct ent *),
495 struct ent *key, struct cache_detail *detail, struct ent **item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 int ret;
498
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400499 *item = lookup_fn(detail, key);
NeilBrown839049a2010-08-12 17:04:06 +1000500 if (!*item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -ENOMEM;
NeilBrown839049a2010-08-12 17:04:06 +1000502 retry:
503 ret = cache_check(detail, &(*item)->h, &rqstp->rq_chandle);
504
505 if (ret == -ETIMEDOUT) {
506 struct ent *prev_item = *item;
Stanislav Kinsburskyf890edb2012-03-29 19:34:16 +0400507 *item = lookup_fn(detail, key);
NeilBrown839049a2010-08-12 17:04:06 +1000508 if (*item != prev_item)
509 goto retry;
510 cache_put(&(*item)->h, detail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return ret;
513}
514
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700515static char *
516rqst_authname(struct svc_rqst *rqstp)
517{
518 struct auth_domain *clp;
519
520 clp = rqstp->rq_gssclient ? rqstp->rq_gssclient : rqstp->rq_client;
521 return clp->name;
522}
523
J. Bruce Fields3c726022011-01-04 17:53:52 -0500524static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525idmap_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen,
526 uid_t *id)
527{
528 struct ent *item, key = {
529 .type = type,
530 };
531 int ret;
532
533 if (namelen + 1 > sizeof(key.name))
J. Bruce Fields3c726022011-01-04 17:53:52 -0500534 return nfserr_badowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 memcpy(key.name, name, namelen);
536 key.name[namelen] = '\0';
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700537 strlcpy(key.authname, rqst_authname(rqstp), sizeof(key.authname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 ret = idmap_lookup(rqstp, nametoid_lookup, &key, &nametoid_cache, &item);
539 if (ret == -ENOENT)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500540 return nfserr_badowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (ret)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500542 return nfserrno(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 *id = item->id;
NeilBrownbaab9352006-03-27 01:15:09 -0800544 cache_put(&item->h, &nametoid_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return 0;
546}
547
548static int
549idmap_id_to_name(struct svc_rqst *rqstp, int type, uid_t id, char *name)
550{
551 struct ent *item, key = {
552 .id = id,
553 .type = type,
554 };
555 int ret;
556
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700557 strlcpy(key.authname, rqst_authname(rqstp), sizeof(key.authname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 ret = idmap_lookup(rqstp, idtoname_lookup, &key, &idtoname_cache, &item);
559 if (ret == -ENOENT)
560 return sprintf(name, "%u", id);
561 if (ret)
562 return ret;
563 ret = strlen(item->name);
564 BUG_ON(ret > IDMAP_NAMESZ);
565 memcpy(name, item->name, ret);
NeilBrownbaab9352006-03-27 01:15:09 -0800566 cache_put(&item->h, &idtoname_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return ret;
568}
569
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -0400570static bool
571numeric_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen, uid_t *id)
572{
573 int ret;
574 char buf[11];
575
576 if (namelen + 1 > sizeof(buf))
577 /* too long to represent a 32-bit id: */
578 return false;
579 /* Just to make sure it's null-terminated: */
580 memcpy(buf, name, namelen);
581 buf[namelen] = '\0';
Dan Carpenter3af70612012-03-28 13:44:59 +0300582 ret = kstrtouint(name, 10, id);
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -0400583 return ret == 0;
584}
585
586static __be32
587do_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen, uid_t *id)
588{
589 if (nfs4_disable_idmapping && rqstp->rq_flavor < RPC_AUTH_GSS)
590 if (numeric_name_to_id(rqstp, type, name, namelen, id))
591 return 0;
592 /*
593 * otherwise, fall through and try idmapping, for
594 * backwards compatibility with clients sending names:
595 */
596 return idmap_name_to_id(rqstp, type, name, namelen, id);
597}
598
599static int
600do_id_to_name(struct svc_rqst *rqstp, int type, uid_t id, char *name)
601{
602 if (nfs4_disable_idmapping && rqstp->rq_flavor < RPC_AUTH_GSS)
603 return sprintf(name, "%u", id);
604 return idmap_id_to_name(rqstp, type, id, name);
605}
606
J. Bruce Fields3c726022011-01-04 17:53:52 -0500607__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608nfsd_map_name_to_uid(struct svc_rqst *rqstp, const char *name, size_t namelen,
609 __u32 *id)
610{
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -0400611 return do_name_to_id(rqstp, IDMAP_TYPE_USER, name, namelen, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
J. Bruce Fields3c726022011-01-04 17:53:52 -0500614__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615nfsd_map_name_to_gid(struct svc_rqst *rqstp, const char *name, size_t namelen,
616 __u32 *id)
617{
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -0400618 return do_name_to_id(rqstp, IDMAP_TYPE_GROUP, name, namelen, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621int
622nfsd_map_uid_to_name(struct svc_rqst *rqstp, __u32 id, char *name)
623{
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -0400624 return do_id_to_name(rqstp, IDMAP_TYPE_USER, id, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627int
628nfsd_map_gid_to_name(struct svc_rqst *rqstp, __u32 id, char *name)
629{
J. Bruce Fieldse9541ce2012-03-22 16:07:18 -0400630 return do_id_to_name(rqstp, IDMAP_TYPE_GROUP, id, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}