nfs4idmap.c 19.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
 * fs/nfs/idmap.c
 *
 *  UID and GID to name mapping for clients.
 *
 *  Copyright (c) 2002 The Regents of the University of Michigan.
 *  All rights reserved.
 *
 *  Marius Aamodt Eriksen <marius@umich.edu>
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *  3. Neither the name of the University nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
36
#include <linux/types.h>
37 38 39 40
#include <linux/parser.h>
#include <linux/fs.h>
#include <net/net_namespace.h>
#include <linux/sunrpc/rpc_pipe_fs.h>
41
#include <linux/nfs_fs.h>
42
#include <linux/nfs_fs_sb.h>
43
#include <linux/key.h>
44 45 46 47
#include <linux/keyctl.h>
#include <linux/key-type.h>
#include <keys/user-type.h>
#include <linux/module.h>
48

49
#include "internal.h"
50
#include "netns.h"
51
#include "nfs4idmap.h"
52
#include "nfs4trace.h"
53 54 55

#define NFS_UINT_MAXLEN 11

56 57
static const struct cred *id_resolver_cache;
static struct key_type key_type_id_resolver_legacy;
58

59 60 61
struct idmap_legacy_upcalldata {
	struct rpc_pipe_msg pipe_msg;
	struct idmap_msg idmap_msg;
62
	struct key_construction	*key_cons;
63 64 65
	struct idmap *idmap;
};

66
struct idmap {
67
	struct rpc_pipe_dir_object idmap_pdo;
68 69 70 71 72
	struct rpc_pipe		*idmap_pipe;
	struct idmap_legacy_upcalldata *idmap_upcall_data;
	struct mutex		idmap_mutex;
};

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
/**
 * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields
 * @fattr: fully initialised struct nfs_fattr
 * @owner_name: owner name string cache
 * @group_name: group name string cache
 */
void nfs_fattr_init_names(struct nfs_fattr *fattr,
		struct nfs4_string *owner_name,
		struct nfs4_string *group_name)
{
	fattr->owner_name = owner_name;
	fattr->group_name = group_name;
}

static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr)
{
	fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME;
	kfree(fattr->owner_name->data);
}

static void nfs_fattr_free_group_name(struct nfs_fattr *fattr)
{
	fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME;
	kfree(fattr->group_name->data);
}

static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr)
{
	struct nfs4_string *owner = fattr->owner_name;
102
	kuid_t uid;
103 104 105 106 107 108 109 110 111 112 113 114 115

	if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME))
		return false;
	if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) {
		fattr->uid = uid;
		fattr->valid |= NFS_ATTR_FATTR_OWNER;
	}
	return true;
}

static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr)
{
	struct nfs4_string *group = fattr->group_name;
116
	kgid_t gid;
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

	if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME))
		return false;
	if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) {
		fattr->gid = gid;
		fattr->valid |= NFS_ATTR_FATTR_GROUP;
	}
	return true;
}

/**
 * nfs_fattr_free_names - free up the NFSv4 owner and group strings
 * @fattr: a fully initialised nfs_fattr structure
 */
void nfs_fattr_free_names(struct nfs_fattr *fattr)
{
	if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)
		nfs_fattr_free_owner_name(fattr);
	if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)
		nfs_fattr_free_group_name(fattr);
}

/**
 * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free
 * @server: pointer to the filesystem nfs_server structure
 * @fattr: a fully initialised nfs_fattr structure
 *
 * This helper maps the cached NFSv4 owner/group strings in fattr into
 * their numeric uid/gid equivalents, and then frees the cached strings.
 */
void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr)
{
	if (nfs_fattr_map_owner_name(server, fattr))
		nfs_fattr_free_owner_name(fattr);
	if (nfs_fattr_map_group_name(server, fattr))
		nfs_fattr_free_group_name(fattr);
}
154

155
int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res)
156 157 158 159 160 161 162 163
{
	unsigned long val;
	char buf[16];

	if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf))
		return 0;
	memcpy(buf, name, namelen);
	buf[namelen] = '\0';
164
	if (kstrtoul(buf, 0, &val) != 0)
165 166 167 168
		return 0;
	*res = val;
	return 1;
}
169
EXPORT_SYMBOL_GPL(nfs_map_string_to_numeric);
L
Linus Torvalds 已提交
170

171 172 173 174 175
static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
{
	return snprintf(buf, buflen, "%u", id);
}

176
static struct key_type key_type_id_resolver = {
B
Bryan Schumaker 已提交
177
	.name		= "id_resolver",
D
David Howells 已提交
178 179 180
	.preparse	= user_preparse,
	.free_preparse	= user_free_preparse,
	.instantiate	= generic_key_instantiate,
B
Bryan Schumaker 已提交
181 182 183 184 185 186
	.revoke		= user_revoke,
	.destroy	= user_destroy,
	.describe	= user_describe,
	.read		= user_read,
};

187
int nfs_idmap_init(void)
B
Bryan Schumaker 已提交
188 189 190 191 192
{
	struct cred *cred;
	struct key *keyring;
	int ret = 0;

193 194
	printk(KERN_NOTICE "NFS: Registering the %s key type\n",
		key_type_id_resolver.name);
B
Bryan Schumaker 已提交
195 196 197 198 199

	cred = prepare_kernel_cred(NULL);
	if (!cred)
		return -ENOMEM;

200 201
	keyring = keyring_alloc(".id_resolver",
				GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
202 203
				(KEY_POS_ALL & ~KEY_POS_SETATTR) |
				KEY_USR_VIEW | KEY_USR_READ,
204
				KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
B
Bryan Schumaker 已提交
205 206 207 208 209 210 211 212 213
	if (IS_ERR(keyring)) {
		ret = PTR_ERR(keyring);
		goto failed_put_cred;
	}

	ret = register_key_type(&key_type_id_resolver);
	if (ret < 0)
		goto failed_put_key;

214 215 216 217
	ret = register_key_type(&key_type_id_resolver_legacy);
	if (ret < 0)
		goto failed_reg_legacy;

218
	set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
B
Bryan Schumaker 已提交
219 220 221 222 223
	cred->thread_keyring = keyring;
	cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
	id_resolver_cache = cred;
	return 0;

224 225
failed_reg_legacy:
	unregister_key_type(&key_type_id_resolver);
B
Bryan Schumaker 已提交
226 227 228 229 230 231 232
failed_put_key:
	key_put(keyring);
failed_put_cred:
	put_cred(cred);
	return ret;
}

233
void nfs_idmap_quit(void)
B
Bryan Schumaker 已提交
234 235 236
{
	key_revoke(id_resolver_cache->thread_keyring);
	unregister_key_type(&key_type_id_resolver);
237
	unregister_key_type(&key_type_id_resolver_legacy);
B
Bryan Schumaker 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
	put_cred(id_resolver_cache);
}

/*
 * Assemble the description to pass to request_key()
 * This function will allocate a new string and update dest to point
 * at it.  The caller is responsible for freeing dest.
 *
 * On error 0 is returned.  Otherwise, the length of dest is returned.
 */
static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen,
				const char *type, size_t typelen, char **desc)
{
	char *cp;
	size_t desclen = typelen + namelen + 2;

	*desc = kmalloc(desclen, GFP_KERNEL);
D
Dan Carpenter 已提交
255
	if (!*desc)
B
Bryan Schumaker 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268
		return -ENOMEM;

	cp = *desc;
	memcpy(cp, type, typelen);
	cp += typelen;
	*cp++ = ':';

	memcpy(cp, name, namelen);
	cp += namelen;
	*cp = '\0';
	return desclen;
}

269 270
static struct key *nfs_idmap_request_key(const char *name, size_t namelen,
					 const char *type, struct idmap *idmap)
B
Bryan Schumaker 已提交
271 272
{
	char *desc;
273
	struct key *rkey;
B
Bryan Schumaker 已提交
274 275 276
	ssize_t ret;

	ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc);
277
	if (ret < 0)
278 279 280 281 282 283 284 285 286
		return ERR_PTR(ret);

	rkey = request_key(&key_type_id_resolver, desc, "");
	if (IS_ERR(rkey)) {
		mutex_lock(&idmap->idmap_mutex);
		rkey = request_key_with_auxdata(&key_type_id_resolver_legacy,
						desc, "", 0, idmap);
		mutex_unlock(&idmap->idmap_mutex);
	}
287 288
	if (!IS_ERR(rkey))
		set_bit(KEY_FLAG_ROOT_CAN_INVAL, &rkey->flags);
289 290 291 292 293 294 295 296 297 298 299

	kfree(desc);
	return rkey;
}

static ssize_t nfs_idmap_get_key(const char *name, size_t namelen,
				 const char *type, void *data,
				 size_t data_size, struct idmap *idmap)
{
	const struct cred *saved_cred;
	struct key *rkey;
300
	const struct user_key_payload *payload;
301
	ssize_t ret;
B
Bryan Schumaker 已提交
302 303

	saved_cred = override_creds(id_resolver_cache);
304
	rkey = nfs_idmap_request_key(name, namelen, type, idmap);
B
Bryan Schumaker 已提交
305
	revert_creds(saved_cred);
306

B
Bryan Schumaker 已提交
307 308 309 310 311 312 313 314 315 316 317 318
	if (IS_ERR(rkey)) {
		ret = PTR_ERR(rkey);
		goto out;
	}

	rcu_read_lock();
	rkey->perm |= KEY_USR_VIEW;

	ret = key_validate(rkey);
	if (ret < 0)
		goto out_up;

319
	payload = user_key_payload_rcu(rkey);
B
Bryan Schumaker 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
	if (IS_ERR_OR_NULL(payload)) {
		ret = PTR_ERR(payload);
		goto out_up;
	}

	ret = payload->datalen;
	if (ret > 0 && ret <= data_size)
		memcpy(data, payload->data, ret);
	else
		ret = -EINVAL;

out_up:
	rcu_read_unlock();
	key_put(rkey);
out:
	return ret;
}

/* ID -> Name */
339 340
static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf,
				     size_t buflen, struct idmap *idmap)
B
Bryan Schumaker 已提交
341 342 343 344 345 346
{
	char id_str[NFS_UINT_MAXLEN];
	int id_len;
	ssize_t ret;

	id_len = snprintf(id_str, sizeof(id_str), "%u", id);
347
	ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap);
B
Bryan Schumaker 已提交
348 349 350 351 352 353
	if (ret < 0)
		return -EINVAL;
	return ret;
}

/* Name -> ID */
354 355
static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type,
			       __u32 *id, struct idmap *idmap)
B
Bryan Schumaker 已提交
356 357 358 359 360 361
{
	char id_str[NFS_UINT_MAXLEN];
	long id_long;
	ssize_t data_size;
	int ret = 0;

362
	data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap);
B
Bryan Schumaker 已提交
363 364 365
	if (data_size <= 0) {
		ret = -EINVAL;
	} else {
366
		ret = kstrtol(id_str, 10, &id_long);
367 368
		if (!ret)
			*id = (__u32)id_long;
B
Bryan Schumaker 已提交
369 370 371 372
	}
	return ret;
}

373
/* idmap classic begins here */
374

375 376
enum {
	Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err
L
Linus Torvalds 已提交
377 378
};

379 380 381 382 383 384
static const match_table_t nfs_idmap_tokens = {
	{ Opt_find_uid, "uid:%s" },
	{ Opt_find_gid, "gid:%s" },
	{ Opt_find_user, "user:%s" },
	{ Opt_find_group, "group:%s" },
	{ Opt_find_err, NULL }
L
Linus Torvalds 已提交
385 386
};

387
static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *);
C
Chuck Lever 已提交
388 389
static ssize_t idmap_pipe_downcall(struct file *, const char __user *,
				   size_t);
390
static void idmap_release_pipe(struct inode *);
C
Chuck Lever 已提交
391
static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *);
L
Linus Torvalds 已提交
392

393
static const struct rpc_pipe_ops idmap_upcall_ops = {
394
	.upcall		= rpc_pipe_generic_upcall,
C
Chuck Lever 已提交
395
	.downcall	= idmap_pipe_downcall,
396
	.release_pipe	= idmap_release_pipe,
C
Chuck Lever 已提交
397
	.destroy_msg	= idmap_pipe_destroy_msg,
L
Linus Torvalds 已提交
398 399
};

400
static struct key_type key_type_id_resolver_legacy = {
401
	.name		= "id_legacy",
D
David Howells 已提交
402 403 404
	.preparse	= user_preparse,
	.free_preparse	= user_free_preparse,
	.instantiate	= generic_key_instantiate,
405 406 407 408 409 410 411
	.revoke		= user_revoke,
	.destroy	= user_destroy,
	.describe	= user_describe,
	.read		= user_read,
	.request_key	= nfs_idmap_legacy_upcall,
};

412 413
static void nfs_idmap_pipe_destroy(struct dentry *dir,
		struct rpc_pipe_dir_object *pdo)
414
{
415 416 417
	struct idmap *idmap = pdo->pdo_data;
	struct rpc_pipe *pipe = idmap->idmap_pipe;

418
	if (pipe->dentry) {
419
		rpc_unlink(pipe->dentry);
420 421
		pipe->dentry = NULL;
	}
422 423
}

424 425
static int nfs_idmap_pipe_create(struct dentry *dir,
		struct rpc_pipe_dir_object *pdo)
426
{
427 428
	struct idmap *idmap = pdo->pdo_data;
	struct rpc_pipe *pipe = idmap->idmap_pipe;
429 430 431 432 433 434 435 436 437
	struct dentry *dentry;

	dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe);
	if (IS_ERR(dentry))
		return PTR_ERR(dentry);
	pipe->dentry = dentry;
	return 0;
}

438 439 440 441
static const struct rpc_pipe_dir_object_ops nfs_idmap_pipe_dir_object_ops = {
	.create = nfs_idmap_pipe_create,
	.destroy = nfs_idmap_pipe_destroy,
};
442

443
int
444
nfs_idmap_new(struct nfs_client *clp)
L
Linus Torvalds 已提交
445 446
{
	struct idmap *idmap;
447
	struct rpc_pipe *pipe;
448
	int error;
L
Linus Torvalds 已提交
449

C
Chuck Lever 已提交
450 451 452
	idmap = kzalloc(sizeof(*idmap), GFP_KERNEL);
	if (idmap == NULL)
		return -ENOMEM;
L
Linus Torvalds 已提交
453

454 455 456 457
	rpc_init_pipe_dir_object(&idmap->idmap_pdo,
			&nfs_idmap_pipe_dir_object_ops,
			idmap);

458 459 460
	pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0);
	if (IS_ERR(pipe)) {
		error = PTR_ERR(pipe);
461
		goto err;
462 463
	}
	idmap->idmap_pipe = pipe;
464
	mutex_init(&idmap->idmap_mutex);
L
Linus Torvalds 已提交
465

466 467 468 469 470 471
	error = rpc_add_pipe_dir_object(clp->cl_net,
			&clp->cl_rpcclient->cl_pipedir_objects,
			&idmap->idmap_pdo);
	if (error)
		goto err_destroy_pipe;

L
Linus Torvalds 已提交
472
	clp->cl_idmap = idmap;
473
	return 0;
474 475 476 477 478
err_destroy_pipe:
	rpc_destroy_pipe_data(idmap->idmap_pipe);
err:
	kfree(idmap);
	return error;
L
Linus Torvalds 已提交
479 480 481
}

void
482
nfs_idmap_delete(struct nfs_client *clp)
L
Linus Torvalds 已提交
483 484 485 486 487 488
{
	struct idmap *idmap = clp->cl_idmap;

	if (!idmap)
		return;
	clp->cl_idmap = NULL;
489 490 491 492
	rpc_remove_pipe_dir_object(clp->cl_net,
			&clp->cl_rpcclient->cl_pipedir_objects,
			&idmap->idmap_pdo);
	rpc_destroy_pipe_data(idmap->idmap_pipe);
L
Linus Torvalds 已提交
493 494 495
	kfree(idmap);
}

496 497
static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap,
				     struct idmap_msg *im,
498
				     struct rpc_pipe_msg *msg)
L
Linus Torvalds 已提交
499
{
500 501
	substring_t substr;
	int token, ret;
L
Linus Torvalds 已提交
502

503 504
	im->im_type = IDMAP_TYPE_GROUP;
	token = match_token(desc, nfs_idmap_tokens, &substr);
L
Linus Torvalds 已提交
505

506 507 508 509 510 511 512
	switch (token) {
	case Opt_find_uid:
		im->im_type = IDMAP_TYPE_USER;
	case Opt_find_gid:
		im->im_conv = IDMAP_CONV_NAMETOID;
		ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ);
		break;
L
Linus Torvalds 已提交
513

514 515 516 517 518 519
	case Opt_find_user:
		im->im_type = IDMAP_TYPE_USER;
	case Opt_find_group:
		im->im_conv = IDMAP_CONV_IDTONAME;
		ret = match_int(&substr, &im->im_id);
		break;
L
Linus Torvalds 已提交
520

521 522
	default:
		ret = -EINVAL;
L
Linus Torvalds 已提交
523 524 525
		goto out;
	}

526 527
	msg->data = im;
	msg->len  = sizeof(struct idmap_msg);
L
Linus Torvalds 已提交
528

529
out:
C
Chuck Lever 已提交
530
	return ret;
L
Linus Torvalds 已提交
531 532
}

533 534
static bool
nfs_idmap_prepare_pipe_upcall(struct idmap *idmap,
535
		struct idmap_legacy_upcalldata *data)
536
{
537
	if (idmap->idmap_upcall_data != NULL) {
538 539 540
		WARN_ON_ONCE(1);
		return false;
	}
541
	idmap->idmap_upcall_data = data;
542 543 544 545 546 547
	return true;
}

static void
nfs_idmap_complete_pipe_upcall_locked(struct idmap *idmap, int ret)
{
548
	struct key_construction *cons = idmap->idmap_upcall_data->key_cons;
549

550 551
	kfree(idmap->idmap_upcall_data);
	idmap->idmap_upcall_data = NULL;
552 553 554 555 556 557
	complete_request_key(cons, ret);
}

static void
nfs_idmap_abort_pipe_upcall(struct idmap *idmap, int ret)
{
558
	if (idmap->idmap_upcall_data != NULL)
559 560 561
		nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
}

562 563 564
static int nfs_idmap_legacy_upcall(struct key_construction *cons,
				   const char *op,
				   void *aux)
L
Linus Torvalds 已提交
565
{
566
	struct idmap_legacy_upcalldata *data;
567
	struct rpc_pipe_msg *msg;
L
Linus Torvalds 已提交
568
	struct idmap_msg *im;
569 570
	struct idmap *idmap = (struct idmap *)aux;
	struct key *key = cons->key;
571
	int ret = -ENOMEM;
L
Linus Torvalds 已提交
572

573
	/* msg and im are freed in idmap_pipe_destroy_msg */
574
	data = kzalloc(sizeof(*data), GFP_KERNEL);
575
	if (!data)
576
		goto out1;
L
Linus Torvalds 已提交
577

578 579 580
	msg = &data->pipe_msg;
	im = &data->idmap_msg;
	data->idmap = idmap;
581
	data->key_cons = cons;
582 583

	ret = nfs_idmap_prepare_message(key->description, idmap, im, msg);
584 585
	if (ret < 0)
		goto out2;
L
Linus Torvalds 已提交
586

587
	ret = -EAGAIN;
588
	if (!nfs_idmap_prepare_pipe_upcall(idmap, data))
589
		goto out2;
L
Linus Torvalds 已提交
590

591 592
	ret = rpc_queue_upcall(idmap->idmap_pipe, msg);
	if (ret < 0)
593
		nfs_idmap_abort_pipe_upcall(idmap, ret);
L
Linus Torvalds 已提交
594

595
	return ret;
596
out2:
597
	kfree(data);
598
out1:
599
	complete_request_key(cons, ret);
C
Chuck Lever 已提交
600
	return ret;
L
Linus Torvalds 已提交
601 602
}

603
static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data, size_t datalen)
L
Linus Torvalds 已提交
604
{
605
	return key_instantiate_and_link(key, data, datalen,
606 607 608
					id_resolver_cache->thread_keyring,
					authkey);
}
L
Linus Torvalds 已提交
609

610 611 612
static int nfs_idmap_read_and_verify_message(struct idmap_msg *im,
		struct idmap_msg *upcall,
		struct key *key, struct key *authkey)
613 614
{
	char id_str[NFS_UINT_MAXLEN];
615
	size_t len;
616
	int ret = -ENOKEY;
L
Linus Torvalds 已提交
617

618 619 620
	/* ret = -ENOKEY */
	if (upcall->im_type != im->im_type || upcall->im_conv != im->im_conv)
		goto out;
621 622
	switch (im->im_conv) {
	case IDMAP_CONV_NAMETOID:
623 624
		if (strcmp(upcall->im_name, im->im_name) != 0)
			break;
625 626 627
		/* Note: here we store the NUL terminator too */
		len = sprintf(id_str, "%d", im->im_id) + 1;
		ret = nfs_idmap_instantiate(key, authkey, id_str, len);
628 629
		break;
	case IDMAP_CONV_IDTONAME:
630 631
		if (upcall->im_id != im->im_id)
			break;
632 633
		len = strlen(im->im_name);
		ret = nfs_idmap_instantiate(key, authkey, im->im_name, len);
634
		break;
635 636
	default:
		ret = -EINVAL;
L
Linus Torvalds 已提交
637
	}
638
out:
L
Linus Torvalds 已提交
639 640 641 642 643 644
	return ret;
}

static ssize_t
idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
{
A
Al Viro 已提交
645
	struct rpc_inode *rpci = RPC_I(file_inode(filp));
L
Linus Torvalds 已提交
646
	struct idmap *idmap = (struct idmap *)rpci->private;
647
	struct key_construction *cons;
648
	struct idmap_msg im;
649
	size_t namelen_in;
650
	int ret = -ENOKEY;
L
Linus Torvalds 已提交
651

652 653 654 655
	/* If instantiation is successful, anyone waiting for key construction
	 * will have been woken up and someone else may now have used
	 * idmap_key_cons - so after this point we may no longer touch it.
	 */
656
	if (idmap->idmap_upcall_data == NULL)
657
		goto out_noupcall;
658

659
	cons = idmap->idmap_upcall_data->key_cons;
660

661 662
	if (mlen != sizeof(im)) {
		ret = -ENOSPC;
L
Linus Torvalds 已提交
663 664 665
		goto out;
	}

666 667
	if (copy_from_user(&im, src, mlen) != 0) {
		ret = -EFAULT;
L
Linus Torvalds 已提交
668
		goto out;
669
	}
L
Linus Torvalds 已提交
670

671
	if (!(im.im_status & IDMAP_STATUS_SUCCESS)) {
672 673
		ret = -ENOKEY;
		goto out;
L
Linus Torvalds 已提交
674 675
	}

676 677 678
	namelen_in = strnlen(im.im_name, IDMAP_NAMESZ);
	if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) {
		ret = -EINVAL;
L
Linus Torvalds 已提交
679
		goto out;
680
}
L
Linus Torvalds 已提交
681

682 683 684
	ret = nfs_idmap_read_and_verify_message(&im,
			&idmap->idmap_upcall_data->idmap_msg,
			cons->key, cons->authkey);
685 686 687 688 689
	if (ret >= 0) {
		key_set_timeout(cons->key, nfs_idmap_cache_timeout);
		ret = mlen;
	}

L
Linus Torvalds 已提交
690
out:
691 692
	nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
out_noupcall:
L
Linus Torvalds 已提交
693 694 695
	return ret;
}

A
Adrian Bunk 已提交
696
static void
L
Linus Torvalds 已提交
697 698
idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg)
{
699 700 701 702
	struct idmap_legacy_upcalldata *data = container_of(msg,
			struct idmap_legacy_upcalldata,
			pipe_msg);
	struct idmap *idmap = data->idmap;
703 704 705

	if (msg->errno)
		nfs_idmap_abort_pipe_upcall(idmap, msg->errno);
706 707 708 709 710 711 712
}

static void
idmap_release_pipe(struct inode *inode)
{
	struct rpc_inode *rpci = RPC_I(inode);
	struct idmap *idmap = (struct idmap *)rpci->private;
713 714

	nfs_idmap_abort_pipe_upcall(idmap, -EPIPE);
L
Linus Torvalds 已提交
715 716
}

717
int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, kuid_t *uid)
L
Linus Torvalds 已提交
718
{
719
	struct idmap *idmap = server->nfs_client->cl_idmap;
720 721
	__u32 id = -1;
	int ret = 0;
L
Linus Torvalds 已提交
722

723 724 725 726 727 728 729
	if (!nfs_map_string_to_numeric(name, namelen, &id))
		ret = nfs_idmap_lookup_id(name, namelen, "uid", &id, idmap);
	if (ret == 0) {
		*uid = make_kuid(&init_user_ns, id);
		if (!uid_valid(*uid))
			ret = -ERANGE;
	}
730
	trace_nfs4_map_name_to_uid(name, namelen, id, ret);
731
	return ret;
L
Linus Torvalds 已提交
732 733
}

734
int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, kgid_t *gid)
L
Linus Torvalds 已提交
735
{
736
	struct idmap *idmap = server->nfs_client->cl_idmap;
737 738
	__u32 id = -1;
	int ret = 0;
L
Linus Torvalds 已提交
739

740 741 742 743 744 745 746
	if (!nfs_map_string_to_numeric(name, namelen, &id))
		ret = nfs_idmap_lookup_id(name, namelen, "gid", &id, idmap);
	if (ret == 0) {
		*gid = make_kgid(&init_user_ns, id);
		if (!gid_valid(*gid))
			ret = -ERANGE;
	}
747
	trace_nfs4_map_group_to_gid(name, namelen, id, ret);
748
	return ret;
L
Linus Torvalds 已提交
749 750
}

751
int nfs_map_uid_to_name(const struct nfs_server *server, kuid_t uid, char *buf, size_t buflen)
L
Linus Torvalds 已提交
752
{
753
	struct idmap *idmap = server->nfs_client->cl_idmap;
754
	int ret = -EINVAL;
755
	__u32 id;
L
Linus Torvalds 已提交
756

757
	id = from_kuid(&init_user_ns, uid);
758
	if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
759
		ret = nfs_idmap_lookup_name(id, "user", buf, buflen, idmap);
760
	if (ret < 0)
761
		ret = nfs_map_numeric_to_string(id, buf, buflen);
762
	trace_nfs4_map_uid_to_name(buf, ret, id, ret);
763
	return ret;
L
Linus Torvalds 已提交
764
}
765
int nfs_map_gid_to_group(const struct nfs_server *server, kgid_t gid, char *buf, size_t buflen)
L
Linus Torvalds 已提交
766
{
767
	struct idmap *idmap = server->nfs_client->cl_idmap;
768
	int ret = -EINVAL;
769
	__u32 id;
L
Linus Torvalds 已提交
770

771
	id = from_kgid(&init_user_ns, gid);
772
	if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
773
		ret = nfs_idmap_lookup_name(id, "group", buf, buflen, idmap);
774
	if (ret < 0)
775
		ret = nfs_map_numeric_to_string(id, buf, buflen);
776
	trace_nfs4_map_gid_to_group(buf, ret, id, ret);
777
	return ret;
L
Linus Torvalds 已提交
778
}