blob: b5f02f1560880271e96f114e845a85dae4c46551 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/idmap.c
3 *
4 * UID and GID to name mapping for clients.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Marius Aamodt Eriksen <marius@umich.edu>
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
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.
23 *
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.
35 */
Trond Myklebust5cf36cf2011-02-22 15:44:31 -080036#include <linux/types.h>
Bryan Schumaker57e62322012-02-24 14:14:51 -050037#include <linux/parser.h>
38#include <linux/fs.h>
Bryan Schumaker57e62322012-02-24 14:14:51 -050039#include <net/net_namespace.h>
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050040#include <linux/sunrpc/rpc_pipe_fs.h>
Trond Myklebust6926afd2012-01-07 13:22:46 -050041#include <linux/nfs_fs.h>
Bryan Schumaker57e62322012-02-24 14:14:51 -050042#include <linux/nfs_fs_sb.h>
43#include <linux/key.h>
44#include <linux/keyctl.h>
45#include <linux/key-type.h>
46#include <keys/user-type.h>
47#include <linux/module.h>
48
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050049#include "internal.h"
Stanislav Kinsbursky17347d02012-01-26 15:11:41 +040050#include "netns.h"
Anna Schumaker40c64c22015-04-15 13:00:05 -040051#include "nfs4idmap.h"
Trond Myklebust1f2d30b2013-08-13 11:34:01 -040052#include "nfs4trace.h"
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050053
54#define NFS_UINT_MAXLEN 11
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050055
Trond Myklebust17280172012-03-11 13:11:00 -040056static const struct cred *id_resolver_cache;
57static struct key_type key_type_id_resolver_legacy;
Bryan Schumaker3cd0f372012-01-26 16:54:24 -050058
Bryan Schumakerc5066942012-08-09 14:05:49 -040059struct idmap_legacy_upcalldata {
60 struct rpc_pipe_msg pipe_msg;
61 struct idmap_msg idmap_msg;
Trond Myklebust0cac1202012-09-27 16:15:00 -040062 struct key_construction *key_cons;
Bryan Schumakerc5066942012-08-09 14:05:49 -040063 struct idmap *idmap;
64};
65
Trond Myklebust0cac1202012-09-27 16:15:00 -040066struct idmap {
Trond Myklebust2127d822013-08-26 17:16:17 -040067 struct rpc_pipe_dir_object idmap_pdo;
Trond Myklebust0cac1202012-09-27 16:15:00 -040068 struct rpc_pipe *idmap_pipe;
69 struct idmap_legacy_upcalldata *idmap_upcall_data;
70 struct mutex idmap_mutex;
71};
72
Trond Myklebust6926afd2012-01-07 13:22:46 -050073/**
74 * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields
75 * @fattr: fully initialised struct nfs_fattr
76 * @owner_name: owner name string cache
77 * @group_name: group name string cache
78 */
79void nfs_fattr_init_names(struct nfs_fattr *fattr,
80 struct nfs4_string *owner_name,
81 struct nfs4_string *group_name)
82{
83 fattr->owner_name = owner_name;
84 fattr->group_name = group_name;
85}
86
87static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr)
88{
89 fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME;
90 kfree(fattr->owner_name->data);
91}
92
93static void nfs_fattr_free_group_name(struct nfs_fattr *fattr)
94{
95 fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME;
96 kfree(fattr->group_name->data);
97}
98
99static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr)
100{
101 struct nfs4_string *owner = fattr->owner_name;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800102 kuid_t uid;
Trond Myklebust6926afd2012-01-07 13:22:46 -0500103
104 if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME))
105 return false;
106 if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) {
107 fattr->uid = uid;
108 fattr->valid |= NFS_ATTR_FATTR_OWNER;
109 }
110 return true;
111}
112
113static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr)
114{
115 struct nfs4_string *group = fattr->group_name;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800116 kgid_t gid;
Trond Myklebust6926afd2012-01-07 13:22:46 -0500117
118 if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME))
119 return false;
120 if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) {
121 fattr->gid = gid;
122 fattr->valid |= NFS_ATTR_FATTR_GROUP;
123 }
124 return true;
125}
126
127/**
128 * nfs_fattr_free_names - free up the NFSv4 owner and group strings
129 * @fattr: a fully initialised nfs_fattr structure
130 */
131void nfs_fattr_free_names(struct nfs_fattr *fattr)
132{
133 if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)
134 nfs_fattr_free_owner_name(fattr);
135 if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)
136 nfs_fattr_free_group_name(fattr);
137}
138
139/**
140 * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free
141 * @server: pointer to the filesystem nfs_server structure
142 * @fattr: a fully initialised nfs_fattr structure
143 *
144 * This helper maps the cached NFSv4 owner/group strings in fattr into
145 * their numeric uid/gid equivalents, and then frees the cached strings.
146 */
147void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr)
148{
149 if (nfs_fattr_map_owner_name(server, fattr))
150 nfs_fattr_free_owner_name(fattr);
151 if (nfs_fattr_map_group_name(server, fattr))
152 nfs_fattr_free_group_name(fattr);
153}
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800154
Tom Haynesd67ae822014-12-11 17:02:04 -0500155int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res)
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800156{
157 unsigned long val;
158 char buf[16];
159
160 if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf))
161 return 0;
162 memcpy(buf, name, namelen);
163 buf[namelen] = '\0';
Daniel Walter7297cb62012-09-26 21:51:46 +0200164 if (kstrtoul(buf, 0, &val) != 0)
Trond Myklebust5cf36cf2011-02-22 15:44:31 -0800165 return 0;
166 *res = val;
167 return 1;
168}
Tom Haynesd67ae822014-12-11 17:02:04 -0500169EXPORT_SYMBOL_GPL(nfs_map_string_to_numeric);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Trond Myklebustf0b85162011-02-22 15:44:31 -0800171static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
172{
173 return snprintf(buf, buflen, "%u", id);
174}
175
Trond Myklebust17280172012-03-11 13:11:00 -0400176static struct key_type key_type_id_resolver = {
Bryan Schumaker955a8572010-09-29 15:41:49 -0400177 .name = "id_resolver",
David Howellsf9167782014-07-18 18:56:35 +0100178 .preparse = user_preparse,
179 .free_preparse = user_free_preparse,
180 .instantiate = generic_key_instantiate,
Bryan Schumaker955a8572010-09-29 15:41:49 -0400181 .revoke = user_revoke,
182 .destroy = user_destroy,
183 .describe = user_describe,
184 .read = user_read,
185};
186
Anna Schumakerfb2a5252015-07-13 14:01:29 -0400187int nfs_idmap_init(void)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400188{
189 struct cred *cred;
190 struct key *keyring;
191 int ret = 0;
192
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500193 printk(KERN_NOTICE "NFS: Registering the %s key type\n",
194 key_type_id_resolver.name);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400195
196 cred = prepare_kernel_cred(NULL);
197 if (!cred)
198 return -ENOMEM;
199
Eric W. Biederman4e963d42013-02-01 03:03:16 -0800200 keyring = keyring_alloc(".id_resolver",
201 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
David Howellsf8aa23a2012-10-02 19:24:56 +0100202 (KEY_POS_ALL & ~KEY_POS_SETATTR) |
203 KEY_USR_VIEW | KEY_USR_READ,
David Howells5ac7eac2016-04-06 16:14:24 +0100204 KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400205 if (IS_ERR(keyring)) {
206 ret = PTR_ERR(keyring);
207 goto failed_put_cred;
208 }
209
Bryan Schumaker955a8572010-09-29 15:41:49 -0400210 ret = register_key_type(&key_type_id_resolver);
211 if (ret < 0)
212 goto failed_put_key;
213
David Howellsa427b9e2012-07-25 16:53:36 +0100214 ret = register_key_type(&key_type_id_resolver_legacy);
215 if (ret < 0)
216 goto failed_reg_legacy;
217
David Howells700920e2012-01-18 15:31:45 +0000218 set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400219 cred->thread_keyring = keyring;
220 cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
221 id_resolver_cache = cred;
222 return 0;
223
David Howellsa427b9e2012-07-25 16:53:36 +0100224failed_reg_legacy:
225 unregister_key_type(&key_type_id_resolver);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400226failed_put_key:
227 key_put(keyring);
228failed_put_cred:
229 put_cred(cred);
230 return ret;
231}
232
Anna Schumakerfb2a5252015-07-13 14:01:29 -0400233void nfs_idmap_quit(void)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400234{
235 key_revoke(id_resolver_cache->thread_keyring);
236 unregister_key_type(&key_type_id_resolver);
David Howellsa427b9e2012-07-25 16:53:36 +0100237 unregister_key_type(&key_type_id_resolver_legacy);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400238 put_cred(id_resolver_cache);
239}
240
241/*
242 * Assemble the description to pass to request_key()
243 * This function will allocate a new string and update dest to point
244 * at it. The caller is responsible for freeing dest.
245 *
246 * On error 0 is returned. Otherwise, the length of dest is returned.
247 */
248static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen,
249 const char *type, size_t typelen, char **desc)
250{
251 char *cp;
252 size_t desclen = typelen + namelen + 2;
253
254 *desc = kmalloc(desclen, GFP_KERNEL);
Dan Carpenter8f0d97b2010-10-28 08:05:57 +0200255 if (!*desc)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400256 return -ENOMEM;
257
258 cp = *desc;
259 memcpy(cp, type, typelen);
260 cp += typelen;
261 *cp++ = ':';
262
263 memcpy(cp, name, namelen);
264 cp += namelen;
265 *cp = '\0';
266 return desclen;
267}
268
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400269static struct key *nfs_idmap_request_key(const char *name, size_t namelen,
270 const char *type, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400271{
Bryan Schumaker955a8572010-09-29 15:41:49 -0400272 char *desc;
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400273 struct key *rkey;
Bryan Schumaker955a8572010-09-29 15:41:49 -0400274 ssize_t ret;
275
276 ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc);
277 if (ret <= 0)
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400278 return ERR_PTR(ret);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400279
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400280 rkey = request_key(&key_type_id_resolver, desc, "");
281 if (IS_ERR(rkey)) {
282 mutex_lock(&idmap->idmap_mutex);
283 rkey = request_key_with_auxdata(&key_type_id_resolver_legacy,
284 desc, "", 0, idmap);
285 mutex_unlock(&idmap->idmap_mutex);
286 }
David Howells0c7774a2014-07-17 20:45:08 +0100287 if (!IS_ERR(rkey))
288 set_bit(KEY_FLAG_ROOT_CAN_INVAL, &rkey->flags);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500289
Bryan Schumaker955a8572010-09-29 15:41:49 -0400290 kfree(desc);
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400291 return rkey;
292}
293
294static ssize_t nfs_idmap_get_key(const char *name, size_t namelen,
295 const char *type, void *data,
296 size_t data_size, struct idmap *idmap)
297{
298 const struct cred *saved_cred;
299 struct key *rkey;
David Howells146aa8b2015-10-21 14:04:48 +0100300 const struct user_key_payload *payload;
Bryan Schumakerffa57b92013-06-26 14:09:46 -0400301 ssize_t ret;
302
303 saved_cred = override_creds(id_resolver_cache);
304 rkey = nfs_idmap_request_key(name, namelen, type, idmap);
305 revert_creds(saved_cred);
306
Bryan Schumaker955a8572010-09-29 15:41:49 -0400307 if (IS_ERR(rkey)) {
308 ret = PTR_ERR(rkey);
309 goto out;
310 }
311
312 rcu_read_lock();
313 rkey->perm |= KEY_USR_VIEW;
314
315 ret = key_validate(rkey);
316 if (ret < 0)
317 goto out_up;
318
Hyojun Kim63da4202017-10-06 17:10:08 -0700319 payload = user_key_payload_rcu(rkey);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400320 if (IS_ERR_OR_NULL(payload)) {
321 ret = PTR_ERR(payload);
322 goto out_up;
323 }
324
325 ret = payload->datalen;
326 if (ret > 0 && ret <= data_size)
327 memcpy(data, payload->data, ret);
328 else
329 ret = -EINVAL;
330
331out_up:
332 rcu_read_unlock();
333 key_put(rkey);
334out:
335 return ret;
336}
337
Bryan Schumaker955a8572010-09-29 15:41:49 -0400338/* ID -> Name */
Bryan Schumaker57e62322012-02-24 14:14:51 -0500339static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf,
340 size_t buflen, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400341{
342 char id_str[NFS_UINT_MAXLEN];
343 int id_len;
344 ssize_t ret;
345
Dave Wysochanski5b7f5822018-05-29 17:47:30 -0400346 id_len = nfs_map_numeric_to_string(id, id_str, sizeof(id_str));
Bryan Schumaker57e62322012-02-24 14:14:51 -0500347 ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400348 if (ret < 0)
349 return -EINVAL;
350 return ret;
351}
352
353/* Name -> ID */
Bryan Schumaker57e62322012-02-24 14:14:51 -0500354static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type,
355 __u32 *id, struct idmap *idmap)
Bryan Schumaker955a8572010-09-29 15:41:49 -0400356{
357 char id_str[NFS_UINT_MAXLEN];
358 long id_long;
359 ssize_t data_size;
360 int ret = 0;
361
Bryan Schumaker57e62322012-02-24 14:14:51 -0500362 data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400363 if (data_size <= 0) {
364 ret = -EINVAL;
365 } else {
Daniel Walter7297cb62012-09-26 21:51:46 +0200366 ret = kstrtol(id_str, 10, &id_long);
Bryan Schumaker955a8572010-09-29 15:41:49 -0400367 *id = (__u32)id_long;
368 }
369 return ret;
370}
371
Bryan Schumakere6499c62012-01-26 16:54:23 -0500372/* idmap classic begins here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Bryan Schumaker57e62322012-02-24 14:14:51 -0500374enum {
375 Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err
376};
377
378static const match_table_t nfs_idmap_tokens = {
379 { Opt_find_uid, "uid:%s" },
380 { Opt_find_gid, "gid:%s" },
381 { Opt_find_user, "user:%s" },
382 { Opt_find_group, "group:%s" },
383 { Opt_find_err, NULL }
384};
385
386static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *);
Chuck Lever369af0f2007-12-20 14:54:35 -0500387static ssize_t idmap_pipe_downcall(struct file *, const char __user *,
388 size_t);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400389static void idmap_release_pipe(struct inode *);
Chuck Lever369af0f2007-12-20 14:54:35 -0500390static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Trond Myklebustb693ba42009-08-09 15:14:15 -0400392static const struct rpc_pipe_ops idmap_upcall_ops = {
Peng Taoc1225152011-09-22 21:50:10 -0400393 .upcall = rpc_pipe_generic_upcall,
Chuck Lever369af0f2007-12-20 14:54:35 -0500394 .downcall = idmap_pipe_downcall,
Bryan Schumakerc5066942012-08-09 14:05:49 -0400395 .release_pipe = idmap_release_pipe,
Chuck Lever369af0f2007-12-20 14:54:35 -0500396 .destroy_msg = idmap_pipe_destroy_msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397};
398
Trond Myklebust17280172012-03-11 13:11:00 -0400399static struct key_type key_type_id_resolver_legacy = {
David Howellsa427b9e2012-07-25 16:53:36 +0100400 .name = "id_legacy",
David Howellsf9167782014-07-18 18:56:35 +0100401 .preparse = user_preparse,
402 .free_preparse = user_free_preparse,
403 .instantiate = generic_key_instantiate,
Bryan Schumaker57e62322012-02-24 14:14:51 -0500404 .revoke = user_revoke,
405 .destroy = user_destroy,
406 .describe = user_describe,
407 .read = user_read,
408 .request_key = nfs_idmap_legacy_upcall,
409};
410
Trond Myklebust2127d822013-08-26 17:16:17 -0400411static void nfs_idmap_pipe_destroy(struct dentry *dir,
412 struct rpc_pipe_dir_object *pdo)
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400413{
Trond Myklebust2127d822013-08-26 17:16:17 -0400414 struct idmap *idmap = pdo->pdo_data;
415 struct rpc_pipe *pipe = idmap->idmap_pipe;
416
Trond Myklebustd7631252013-08-26 17:26:51 -0400417 if (pipe->dentry) {
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400418 rpc_unlink(pipe->dentry);
Trond Myklebustd7631252013-08-26 17:26:51 -0400419 pipe->dentry = NULL;
420 }
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400421}
422
Trond Myklebust2127d822013-08-26 17:16:17 -0400423static int nfs_idmap_pipe_create(struct dentry *dir,
424 struct rpc_pipe_dir_object *pdo)
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400425{
Trond Myklebust2127d822013-08-26 17:16:17 -0400426 struct idmap *idmap = pdo->pdo_data;
427 struct rpc_pipe *pipe = idmap->idmap_pipe;
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400428 struct dentry *dentry;
429
430 dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe);
431 if (IS_ERR(dentry))
432 return PTR_ERR(dentry);
433 pipe->dentry = dentry;
434 return 0;
435}
436
Trond Myklebust2127d822013-08-26 17:16:17 -0400437static const struct rpc_pipe_dir_object_ops nfs_idmap_pipe_dir_object_ops = {
438 .create = nfs_idmap_pipe_create,
439 .destroy = nfs_idmap_pipe_destroy,
440};
Stanislav Kinsbursky4929d1d2012-01-10 16:13:11 +0400441
David Howellsb7162792006-08-22 20:06:09 -0400442int
David Howellsadfa6f92006-08-22 20:06:08 -0400443nfs_idmap_new(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct idmap *idmap;
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300446 struct rpc_pipe *pipe;
David Howellsb7162792006-08-22 20:06:09 -0400447 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Chuck Lever369af0f2007-12-20 14:54:35 -0500449 idmap = kzalloc(sizeof(*idmap), GFP_KERNEL);
450 if (idmap == NULL)
451 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Trond Myklebust2127d822013-08-26 17:16:17 -0400453 rpc_init_pipe_dir_object(&idmap->idmap_pdo,
454 &nfs_idmap_pipe_dir_object_ops,
455 idmap);
456
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300457 pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0);
458 if (IS_ERR(pipe)) {
459 error = PTR_ERR(pipe);
Trond Myklebust2127d822013-08-26 17:16:17 -0400460 goto err;
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300461 }
462 idmap->idmap_pipe = pipe;
Bryan Schumakerb1027432012-06-20 14:35:28 -0400463 mutex_init(&idmap->idmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Trond Myklebust2127d822013-08-26 17:16:17 -0400465 error = rpc_add_pipe_dir_object(clp->cl_net,
466 &clp->cl_rpcclient->cl_pipedir_objects,
467 &idmap->idmap_pdo);
468 if (error)
469 goto err_destroy_pipe;
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 clp->cl_idmap = idmap;
David Howellsb7162792006-08-22 20:06:09 -0400472 return 0;
Trond Myklebust2127d822013-08-26 17:16:17 -0400473err_destroy_pipe:
474 rpc_destroy_pipe_data(idmap->idmap_pipe);
475err:
476 kfree(idmap);
477 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480void
David Howellsadfa6f92006-08-22 20:06:08 -0400481nfs_idmap_delete(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct idmap *idmap = clp->cl_idmap;
484
485 if (!idmap)
486 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 clp->cl_idmap = NULL;
Trond Myklebust2127d822013-08-26 17:16:17 -0400488 rpc_remove_pipe_dir_object(clp->cl_net,
489 &clp->cl_rpcclient->cl_pipedir_objects,
490 &idmap->idmap_pdo);
491 rpc_destroy_pipe_data(idmap->idmap_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 kfree(idmap);
493}
494
Bryan Schumakerc5066942012-08-09 14:05:49 -0400495static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap,
496 struct idmap_msg *im,
Bryan Schumaker57e62322012-02-24 14:14:51 -0500497 struct rpc_pipe_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Bryan Schumaker57e62322012-02-24 14:14:51 -0500499 substring_t substr;
500 int token, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Bryan Schumaker57e62322012-02-24 14:14:51 -0500502 im->im_type = IDMAP_TYPE_GROUP;
503 token = match_token(desc, nfs_idmap_tokens, &substr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Bryan Schumaker57e62322012-02-24 14:14:51 -0500505 switch (token) {
506 case Opt_find_uid:
507 im->im_type = IDMAP_TYPE_USER;
508 case Opt_find_gid:
509 im->im_conv = IDMAP_CONV_NAMETOID;
510 ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ);
511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Bryan Schumaker57e62322012-02-24 14:14:51 -0500513 case Opt_find_user:
514 im->im_type = IDMAP_TYPE_USER;
515 case Opt_find_group:
516 im->im_conv = IDMAP_CONV_IDTONAME;
517 ret = match_int(&substr, &im->im_id);
518 break;
Trond Myklebust685f50f2012-02-08 13:39:15 -0500519
Bryan Schumaker57e62322012-02-24 14:14:51 -0500520 default:
521 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto out;
523 }
524
Bryan Schumaker57e62322012-02-24 14:14:51 -0500525 msg->data = im;
526 msg->len = sizeof(struct idmap_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Bryan Schumaker57e62322012-02-24 14:14:51 -0500528out:
Chuck Lever369af0f2007-12-20 14:54:35 -0500529 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400532static bool
533nfs_idmap_prepare_pipe_upcall(struct idmap *idmap,
Trond Myklebust0cac1202012-09-27 16:15:00 -0400534 struct idmap_legacy_upcalldata *data)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400535{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400536 if (idmap->idmap_upcall_data != NULL) {
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400537 WARN_ON_ONCE(1);
538 return false;
539 }
Trond Myklebust0cac1202012-09-27 16:15:00 -0400540 idmap->idmap_upcall_data = data;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400541 return true;
542}
543
544static void
545nfs_idmap_complete_pipe_upcall_locked(struct idmap *idmap, int ret)
546{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400547 struct key_construction *cons = idmap->idmap_upcall_data->key_cons;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400548
Trond Myklebust0cac1202012-09-27 16:15:00 -0400549 kfree(idmap->idmap_upcall_data);
550 idmap->idmap_upcall_data = NULL;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400551 complete_request_key(cons, ret);
552}
553
554static void
555nfs_idmap_abort_pipe_upcall(struct idmap *idmap, int ret)
556{
Trond Myklebust0cac1202012-09-27 16:15:00 -0400557 if (idmap->idmap_upcall_data != NULL)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400558 nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
559}
560
Bryan Schumaker57e62322012-02-24 14:14:51 -0500561static int nfs_idmap_legacy_upcall(struct key_construction *cons,
562 const char *op,
563 void *aux)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Bryan Schumakerc5066942012-08-09 14:05:49 -0400565 struct idmap_legacy_upcalldata *data;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500566 struct rpc_pipe_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 struct idmap_msg *im;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500568 struct idmap *idmap = (struct idmap *)aux;
569 struct key *key = cons->key;
Eric Biggers967f6502018-01-19 15:15:34 -0800570 int ret = -ENOKEY;
571
572 if (!aux)
573 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Bryan Schumaker57e62322012-02-24 14:14:51 -0500575 /* msg and im are freed in idmap_pipe_destroy_msg */
Eric Biggers967f6502018-01-19 15:15:34 -0800576 ret = -ENOMEM;
Bryan Schumaker57a51042012-08-09 14:05:51 -0400577 data = kzalloc(sizeof(*data), GFP_KERNEL);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400578 if (!data)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500579 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Bryan Schumakerc5066942012-08-09 14:05:49 -0400581 msg = &data->pipe_msg;
582 im = &data->idmap_msg;
583 data->idmap = idmap;
Bryan Schumakerddfc4e12012-10-02 16:01:38 -0400584 data->key_cons = cons;
Bryan Schumakerc5066942012-08-09 14:05:49 -0400585
586 ret = nfs_idmap_prepare_message(key->description, idmap, im, msg);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500587 if (ret < 0)
588 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400590 ret = -EAGAIN;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400591 if (!nfs_idmap_prepare_pipe_upcall(idmap, data))
Trond Myklebust0e24d842012-09-28 12:03:09 -0400592 goto out2;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500593
Bryan Schumaker11588f42012-03-12 11:33:00 -0400594 ret = rpc_queue_upcall(idmap->idmap_pipe, msg);
595 if (ret < 0)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400596 nfs_idmap_abort_pipe_upcall(idmap, ret);
Bryan Schumaker11588f42012-03-12 11:33:00 -0400597
598 return ret;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500599out2:
Bryan Schumakerc5066942012-08-09 14:05:49 -0400600 kfree(data);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500601out1:
David Howellsa427b9e2012-07-25 16:53:36 +0100602 complete_request_key(cons, ret);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500603 return ret;
604}
605
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500606static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data, size_t datalen)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500607{
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500608 return key_instantiate_and_link(key, data, datalen,
Bryan Schumaker57e62322012-02-24 14:14:51 -0500609 id_resolver_cache->thread_keyring,
610 authkey);
611}
612
Trond Myklebust0cac1202012-09-27 16:15:00 -0400613static int nfs_idmap_read_and_verify_message(struct idmap_msg *im,
614 struct idmap_msg *upcall,
615 struct key *key, struct key *authkey)
Bryan Schumaker57e62322012-02-24 14:14:51 -0500616{
617 char id_str[NFS_UINT_MAXLEN];
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500618 size_t len;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400619 int ret = -ENOKEY;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500620
Trond Myklebust0cac1202012-09-27 16:15:00 -0400621 /* ret = -ENOKEY */
622 if (upcall->im_type != im->im_type || upcall->im_conv != im->im_conv)
623 goto out;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500624 switch (im->im_conv) {
625 case IDMAP_CONV_NAMETOID:
Trond Myklebust0cac1202012-09-27 16:15:00 -0400626 if (strcmp(upcall->im_name, im->im_name) != 0)
627 break;
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500628 /* Note: here we store the NUL terminator too */
Dave Wysochanski5b7f5822018-05-29 17:47:30 -0400629 len = 1 + nfs_map_numeric_to_string(im->im_id, id_str,
630 sizeof(id_str));
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500631 ret = nfs_idmap_instantiate(key, authkey, id_str, len);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500632 break;
633 case IDMAP_CONV_IDTONAME:
Trond Myklebust0cac1202012-09-27 16:15:00 -0400634 if (upcall->im_id != im->im_id)
635 break;
Trond Myklebustcf4ab532013-03-08 12:56:37 -0500636 len = strlen(im->im_name);
637 ret = nfs_idmap_instantiate(key, authkey, im->im_name, len);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500638 break;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400639 default:
640 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Trond Myklebust0cac1202012-09-27 16:15:00 -0400642out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return ret;
644}
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646static ssize_t
647idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
648{
Al Viro496ad9a2013-01-23 17:07:38 -0500649 struct rpc_inode *rpci = RPC_I(file_inode(filp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct idmap *idmap = (struct idmap *)rpci->private;
David Howellsa427b9e2012-07-25 16:53:36 +0100651 struct key_construction *cons;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500652 struct idmap_msg im;
Chuck Leverd24aae42007-12-20 14:54:49 -0500653 size_t namelen_in;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400654 int ret = -ENOKEY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
David Howellsa427b9e2012-07-25 16:53:36 +0100656 /* If instantiation is successful, anyone waiting for key construction
657 * will have been woken up and someone else may now have used
658 * idmap_key_cons - so after this point we may no longer touch it.
659 */
Trond Myklebust0cac1202012-09-27 16:15:00 -0400660 if (idmap->idmap_upcall_data == NULL)
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400661 goto out_noupcall;
David Howellsa427b9e2012-07-25 16:53:36 +0100662
Trond Myklebust0cac1202012-09-27 16:15:00 -0400663 cons = idmap->idmap_upcall_data->key_cons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Bryan Schumaker57e62322012-02-24 14:14:51 -0500665 if (mlen != sizeof(im)) {
666 ret = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 goto out;
668 }
669
Bryan Schumaker57e62322012-02-24 14:14:51 -0500670 if (copy_from_user(&im, src, mlen) != 0) {
671 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 goto out;
673 }
674
Bryan Schumaker57e62322012-02-24 14:14:51 -0500675 if (!(im.im_status & IDMAP_STATUS_SUCCESS)) {
Bryan Schumaker12dfd082012-08-09 14:05:50 -0400676 ret = -ENOKEY;
677 goto out;
Bryan Schumaker57e62322012-02-24 14:14:51 -0500678 }
679
680 namelen_in = strnlen(im.im_name, IDMAP_NAMESZ);
681 if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) {
682 ret = -EINVAL;
683 goto out;
Trond Myklebust0cac1202012-09-27 16:15:00 -0400684}
Bryan Schumaker57e62322012-02-24 14:14:51 -0500685
Trond Myklebust0cac1202012-09-27 16:15:00 -0400686 ret = nfs_idmap_read_and_verify_message(&im,
687 &idmap->idmap_upcall_data->idmap_msg,
688 cons->key, cons->authkey);
Bryan Schumaker57e62322012-02-24 14:14:51 -0500689 if (ret >= 0) {
690 key_set_timeout(cons->key, nfs_idmap_cache_timeout);
691 ret = mlen;
692 }
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694out:
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400695 nfs_idmap_complete_pipe_upcall_locked(idmap, ret);
696out_noupcall:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return ret;
698}
699
Adrian Bunk75c96f82005-05-05 16:16:09 -0700700static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg)
702{
Bryan Schumakerc5066942012-08-09 14:05:49 -0400703 struct idmap_legacy_upcalldata *data = container_of(msg,
704 struct idmap_legacy_upcalldata,
705 pipe_msg);
706 struct idmap *idmap = data->idmap;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400707
708 if (msg->errno)
709 nfs_idmap_abort_pipe_upcall(idmap, msg->errno);
Bryan Schumakerc5066942012-08-09 14:05:49 -0400710}
711
712static void
713idmap_release_pipe(struct inode *inode)
714{
715 struct rpc_inode *rpci = RPC_I(inode);
716 struct idmap *idmap = (struct idmap *)rpci->private;
Trond Myklebuste9ab41b62012-09-27 15:44:19 -0400717
718 nfs_idmap_abort_pipe_upcall(idmap, -EPIPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800721int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, kuid_t *uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800723 struct idmap *idmap = server->nfs_client->cl_idmap;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800724 __u32 id = -1;
725 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800727 if (!nfs_map_string_to_numeric(name, namelen, &id))
728 ret = nfs_idmap_lookup_id(name, namelen, "uid", &id, idmap);
729 if (ret == 0) {
730 *uid = make_kuid(&init_user_ns, id);
731 if (!uid_valid(*uid))
732 ret = -ERANGE;
733 }
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400734 trace_nfs4_map_name_to_uid(name, namelen, id, ret);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800735 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800737
738int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, kgid_t *gid)
739{
740 struct idmap *idmap = server->nfs_client->cl_idmap;
741 __u32 id = -1;
742 int ret = 0;
743
744 if (!nfs_map_string_to_numeric(name, namelen, &id))
745 ret = nfs_idmap_lookup_id(name, namelen, "gid", &id, idmap);
746 if (ret == 0) {
747 *gid = make_kgid(&init_user_ns, id);
748 if (!gid_valid(*gid))
749 ret = -ERANGE;
750 }
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400751 trace_nfs4_map_group_to_gid(name, namelen, id, ret);
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800752 return ret;
753}
754
755int nfs_map_uid_to_name(const struct nfs_server *server, kuid_t uid, char *buf, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800757 struct idmap *idmap = server->nfs_client->cl_idmap;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800758 int ret = -EINVAL;
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800759 __u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800761 id = from_kuid(&init_user_ns, uid);
Trond Myklebustb064eca22011-02-22 15:44:32 -0800762 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800763 ret = nfs_idmap_lookup_name(id, "user", buf, buflen, idmap);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800764 if (ret < 0)
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800765 ret = nfs_map_numeric_to_string(id, buf, buflen);
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400766 trace_nfs4_map_uid_to_name(buf, ret, id, ret);
Eric W. Biederman9f309c82013-02-01 03:21:47 -0800767 return ret;
768}
769int nfs_map_gid_to_group(const struct nfs_server *server, kgid_t gid, char *buf, size_t buflen)
770{
771 struct idmap *idmap = server->nfs_client->cl_idmap;
772 int ret = -EINVAL;
773 __u32 id;
774
775 id = from_kgid(&init_user_ns, gid);
776 if (!(server->caps & NFS_CAP_UIDGID_NOMAP))
777 ret = nfs_idmap_lookup_name(id, "group", buf, buflen, idmap);
778 if (ret < 0)
779 ret = nfs_map_numeric_to_string(id, buf, buflen);
Trond Myklebust1f2d30b2013-08-13 11:34:01 -0400780 trace_nfs4_map_gid_to_group(buf, ret, id, ret);
Trond Myklebustf0b85162011-02-22 15:44:31 -0800781 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}