Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 36 | #include <linux/types.h> |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 37 | #include <linux/parser.h> |
| 38 | #include <linux/fs.h> |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 39 | #include <net/net_namespace.h> |
Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 40 | #include <linux/sunrpc/rpc_pipe_fs.h> |
Trond Myklebust | 6926afd1 | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 41 | #include <linux/nfs_fs.h> |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 42 | #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> |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 47 | #include <keys/request_key_auth-type.h> |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 48 | #include <linux/module.h> |
Sargun Dhillon | 61ca2c4 | 2020-10-12 14:43:39 -0700 | [diff] [blame] | 49 | #include <linux/user_namespace.h> |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 50 | |
Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 51 | #include "internal.h" |
Stanislav Kinsbursky | 17347d0 | 2012-01-26 15:11:41 +0400 | [diff] [blame] | 52 | #include "netns.h" |
Anna Schumaker | 40c64c2 | 2015-04-15 13:00:05 -0400 | [diff] [blame] | 53 | #include "nfs4idmap.h" |
Trond Myklebust | 1f2d30b | 2013-08-13 11:34:01 -0400 | [diff] [blame] | 54 | #include "nfs4trace.h" |
Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 55 | |
| 56 | #define NFS_UINT_MAXLEN 11 |
Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 57 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 58 | static const struct cred *id_resolver_cache; |
| 59 | static struct key_type key_type_id_resolver_legacy; |
Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 60 | |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 61 | struct idmap_legacy_upcalldata { |
| 62 | struct rpc_pipe_msg pipe_msg; |
| 63 | struct idmap_msg idmap_msg; |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 64 | struct key *authkey; |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 65 | struct idmap *idmap; |
| 66 | }; |
| 67 | |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 68 | struct idmap { |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 69 | struct rpc_pipe_dir_object idmap_pdo; |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 70 | struct rpc_pipe *idmap_pipe; |
| 71 | struct idmap_legacy_upcalldata *idmap_upcall_data; |
| 72 | struct mutex idmap_mutex; |
Sargun Dhillon | 61ca2c4 | 2020-10-12 14:43:39 -0700 | [diff] [blame] | 73 | struct user_namespace *user_ns; |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 74 | }; |
| 75 | |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 76 | static struct user_namespace *idmap_userns(const struct idmap *idmap) |
| 77 | { |
Sargun Dhillon | 61ca2c4 | 2020-10-12 14:43:39 -0700 | [diff] [blame] | 78 | if (idmap && idmap->user_ns) |
| 79 | return idmap->user_ns; |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 80 | return &init_user_ns; |
| 81 | } |
| 82 | |
Trond Myklebust | 6926afd1 | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 83 | /** |
| 84 | * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields |
| 85 | * @fattr: fully initialised struct nfs_fattr |
| 86 | * @owner_name: owner name string cache |
| 87 | * @group_name: group name string cache |
| 88 | */ |
| 89 | void nfs_fattr_init_names(struct nfs_fattr *fattr, |
| 90 | struct nfs4_string *owner_name, |
| 91 | struct nfs4_string *group_name) |
| 92 | { |
| 93 | fattr->owner_name = owner_name; |
| 94 | fattr->group_name = group_name; |
| 95 | } |
| 96 | |
| 97 | static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr) |
| 98 | { |
| 99 | fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME; |
| 100 | kfree(fattr->owner_name->data); |
| 101 | } |
| 102 | |
| 103 | static void nfs_fattr_free_group_name(struct nfs_fattr *fattr) |
| 104 | { |
| 105 | fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME; |
| 106 | kfree(fattr->group_name->data); |
| 107 | } |
| 108 | |
| 109 | static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr) |
| 110 | { |
| 111 | struct nfs4_string *owner = fattr->owner_name; |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 112 | kuid_t uid; |
Trond Myklebust | 6926afd1 | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 113 | |
| 114 | if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)) |
| 115 | return false; |
| 116 | if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) { |
| 117 | fattr->uid = uid; |
| 118 | fattr->valid |= NFS_ATTR_FATTR_OWNER; |
| 119 | } |
| 120 | return true; |
| 121 | } |
| 122 | |
| 123 | static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr) |
| 124 | { |
| 125 | struct nfs4_string *group = fattr->group_name; |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 126 | kgid_t gid; |
Trond Myklebust | 6926afd1 | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 127 | |
| 128 | if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)) |
| 129 | return false; |
| 130 | if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) { |
| 131 | fattr->gid = gid; |
| 132 | fattr->valid |= NFS_ATTR_FATTR_GROUP; |
| 133 | } |
| 134 | return true; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * nfs_fattr_free_names - free up the NFSv4 owner and group strings |
| 139 | * @fattr: a fully initialised nfs_fattr structure |
| 140 | */ |
| 141 | void nfs_fattr_free_names(struct nfs_fattr *fattr) |
| 142 | { |
| 143 | if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME) |
| 144 | nfs_fattr_free_owner_name(fattr); |
| 145 | if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME) |
| 146 | nfs_fattr_free_group_name(fattr); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free |
| 151 | * @server: pointer to the filesystem nfs_server structure |
| 152 | * @fattr: a fully initialised nfs_fattr structure |
| 153 | * |
| 154 | * This helper maps the cached NFSv4 owner/group strings in fattr into |
| 155 | * their numeric uid/gid equivalents, and then frees the cached strings. |
| 156 | */ |
| 157 | void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr) |
| 158 | { |
| 159 | if (nfs_fattr_map_owner_name(server, fattr)) |
| 160 | nfs_fattr_free_owner_name(fattr); |
| 161 | if (nfs_fattr_map_group_name(server, fattr)) |
| 162 | nfs_fattr_free_group_name(fattr); |
| 163 | } |
Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 164 | |
Tom Haynes | d67ae82 | 2014-12-11 17:02:04 -0500 | [diff] [blame] | 165 | int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res) |
Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 166 | { |
| 167 | unsigned long val; |
| 168 | char buf[16]; |
| 169 | |
| 170 | if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf)) |
| 171 | return 0; |
| 172 | memcpy(buf, name, namelen); |
| 173 | buf[namelen] = '\0'; |
Daniel Walter | 7297cb6 | 2012-09-26 21:51:46 +0200 | [diff] [blame] | 174 | if (kstrtoul(buf, 0, &val) != 0) |
Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 175 | return 0; |
| 176 | *res = val; |
| 177 | return 1; |
| 178 | } |
Tom Haynes | d67ae82 | 2014-12-11 17:02:04 -0500 | [diff] [blame] | 179 | EXPORT_SYMBOL_GPL(nfs_map_string_to_numeric); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 181 | static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen) |
| 182 | { |
| 183 | return snprintf(buf, buflen, "%u", id); |
| 184 | } |
| 185 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 186 | static struct key_type key_type_id_resolver = { |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 187 | .name = "id_resolver", |
David Howells | f916778 | 2014-07-18 18:56:35 +0100 | [diff] [blame] | 188 | .preparse = user_preparse, |
| 189 | .free_preparse = user_free_preparse, |
| 190 | .instantiate = generic_key_instantiate, |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 191 | .revoke = user_revoke, |
| 192 | .destroy = user_destroy, |
| 193 | .describe = user_describe, |
| 194 | .read = user_read, |
| 195 | }; |
| 196 | |
Anna Schumaker | fb2a525 | 2015-07-13 14:01:29 -0400 | [diff] [blame] | 197 | int nfs_idmap_init(void) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 198 | { |
| 199 | struct cred *cred; |
| 200 | struct key *keyring; |
| 201 | int ret = 0; |
| 202 | |
Weston Andros Adamson | f9fd2d9 | 2012-01-26 13:32:22 -0500 | [diff] [blame] | 203 | printk(KERN_NOTICE "NFS: Registering the %s key type\n", |
| 204 | key_type_id_resolver.name); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 205 | |
| 206 | cred = prepare_kernel_cred(NULL); |
| 207 | if (!cred) |
| 208 | return -ENOMEM; |
| 209 | |
Eric W. Biederman | 4e963d4 | 2013-02-01 03:03:16 -0800 | [diff] [blame] | 210 | keyring = keyring_alloc(".id_resolver", |
| 211 | GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred, |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 212 | (KEY_POS_ALL & ~KEY_POS_SETATTR) | |
| 213 | KEY_USR_VIEW | KEY_USR_READ, |
David Howells | 5ac7eac | 2016-04-06 16:14:24 +0100 | [diff] [blame] | 214 | KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 215 | if (IS_ERR(keyring)) { |
| 216 | ret = PTR_ERR(keyring); |
| 217 | goto failed_put_cred; |
| 218 | } |
| 219 | |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 220 | ret = register_key_type(&key_type_id_resolver); |
| 221 | if (ret < 0) |
| 222 | goto failed_put_key; |
| 223 | |
David Howells | a427b9e | 2012-07-25 16:53:36 +0100 | [diff] [blame] | 224 | ret = register_key_type(&key_type_id_resolver_legacy); |
| 225 | if (ret < 0) |
| 226 | goto failed_reg_legacy; |
| 227 | |
David Howells | 700920e | 2012-01-18 15:31:45 +0000 | [diff] [blame] | 228 | set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 229 | cred->thread_keyring = keyring; |
| 230 | cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; |
| 231 | id_resolver_cache = cred; |
| 232 | return 0; |
| 233 | |
David Howells | a427b9e | 2012-07-25 16:53:36 +0100 | [diff] [blame] | 234 | failed_reg_legacy: |
| 235 | unregister_key_type(&key_type_id_resolver); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 236 | failed_put_key: |
| 237 | key_put(keyring); |
| 238 | failed_put_cred: |
| 239 | put_cred(cred); |
| 240 | return ret; |
| 241 | } |
| 242 | |
Anna Schumaker | fb2a525 | 2015-07-13 14:01:29 -0400 | [diff] [blame] | 243 | void nfs_idmap_quit(void) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 244 | { |
| 245 | key_revoke(id_resolver_cache->thread_keyring); |
| 246 | unregister_key_type(&key_type_id_resolver); |
David Howells | a427b9e | 2012-07-25 16:53:36 +0100 | [diff] [blame] | 247 | unregister_key_type(&key_type_id_resolver_legacy); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 248 | put_cred(id_resolver_cache); |
| 249 | } |
| 250 | |
| 251 | /* |
| 252 | * Assemble the description to pass to request_key() |
| 253 | * This function will allocate a new string and update dest to point |
| 254 | * at it. The caller is responsible for freeing dest. |
| 255 | * |
| 256 | * On error 0 is returned. Otherwise, the length of dest is returned. |
| 257 | */ |
| 258 | static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen, |
| 259 | const char *type, size_t typelen, char **desc) |
| 260 | { |
| 261 | char *cp; |
| 262 | size_t desclen = typelen + namelen + 2; |
| 263 | |
| 264 | *desc = kmalloc(desclen, GFP_KERNEL); |
Dan Carpenter | 8f0d97b | 2010-10-28 08:05:57 +0200 | [diff] [blame] | 265 | if (!*desc) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 266 | return -ENOMEM; |
| 267 | |
| 268 | cp = *desc; |
| 269 | memcpy(cp, type, typelen); |
| 270 | cp += typelen; |
| 271 | *cp++ = ':'; |
| 272 | |
| 273 | memcpy(cp, name, namelen); |
| 274 | cp += namelen; |
| 275 | *cp = '\0'; |
| 276 | return desclen; |
| 277 | } |
| 278 | |
Bryan Schumaker | ffa57b9 | 2013-06-26 14:09:46 -0400 | [diff] [blame] | 279 | static struct key *nfs_idmap_request_key(const char *name, size_t namelen, |
| 280 | const char *type, struct idmap *idmap) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 281 | { |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 282 | char *desc; |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 283 | struct key *rkey = ERR_PTR(-EAGAIN); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 284 | ssize_t ret; |
| 285 | |
| 286 | ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc); |
Dan Carpenter | cdb2e53 | 2017-09-21 00:53:46 +0300 | [diff] [blame] | 287 | if (ret < 0) |
Bryan Schumaker | ffa57b9 | 2013-06-26 14:09:46 -0400 | [diff] [blame] | 288 | return ERR_PTR(ret); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 289 | |
Sargun Dhillon | 61ca2c4 | 2020-10-12 14:43:39 -0700 | [diff] [blame] | 290 | if (!idmap->user_ns || idmap->user_ns == &init_user_ns) |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 291 | rkey = request_key(&key_type_id_resolver, desc, ""); |
Bryan Schumaker | ffa57b9 | 2013-06-26 14:09:46 -0400 | [diff] [blame] | 292 | if (IS_ERR(rkey)) { |
| 293 | mutex_lock(&idmap->idmap_mutex); |
| 294 | rkey = request_key_with_auxdata(&key_type_id_resolver_legacy, |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 295 | desc, NULL, "", 0, idmap); |
Bryan Schumaker | ffa57b9 | 2013-06-26 14:09:46 -0400 | [diff] [blame] | 296 | mutex_unlock(&idmap->idmap_mutex); |
| 297 | } |
David Howells | 0c7774a | 2014-07-17 20:45:08 +0100 | [diff] [blame] | 298 | if (!IS_ERR(rkey)) |
| 299 | set_bit(KEY_FLAG_ROOT_CAN_INVAL, &rkey->flags); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 300 | |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 301 | kfree(desc); |
Bryan Schumaker | ffa57b9 | 2013-06-26 14:09:46 -0400 | [diff] [blame] | 302 | return rkey; |
| 303 | } |
| 304 | |
| 305 | static ssize_t nfs_idmap_get_key(const char *name, size_t namelen, |
| 306 | const char *type, void *data, |
| 307 | size_t data_size, struct idmap *idmap) |
| 308 | { |
| 309 | const struct cred *saved_cred; |
| 310 | struct key *rkey; |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 311 | const struct user_key_payload *payload; |
Bryan Schumaker | ffa57b9 | 2013-06-26 14:09:46 -0400 | [diff] [blame] | 312 | ssize_t ret; |
| 313 | |
| 314 | saved_cred = override_creds(id_resolver_cache); |
| 315 | rkey = nfs_idmap_request_key(name, namelen, type, idmap); |
| 316 | revert_creds(saved_cred); |
| 317 | |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 318 | if (IS_ERR(rkey)) { |
| 319 | ret = PTR_ERR(rkey); |
| 320 | goto out; |
| 321 | } |
| 322 | |
| 323 | rcu_read_lock(); |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 324 | rkey->perm |= KEY_USR_VIEW; |
| 325 | |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 326 | ret = key_validate(rkey); |
| 327 | if (ret < 0) |
| 328 | goto out_up; |
| 329 | |
David Howells | 0837e49 | 2017-03-01 15:11:23 +0000 | [diff] [blame] | 330 | payload = user_key_payload_rcu(rkey); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 331 | if (IS_ERR_OR_NULL(payload)) { |
| 332 | ret = PTR_ERR(payload); |
| 333 | goto out_up; |
| 334 | } |
| 335 | |
| 336 | ret = payload->datalen; |
| 337 | if (ret > 0 && ret <= data_size) |
| 338 | memcpy(data, payload->data, ret); |
| 339 | else |
| 340 | ret = -EINVAL; |
| 341 | |
| 342 | out_up: |
| 343 | rcu_read_unlock(); |
| 344 | key_put(rkey); |
| 345 | out: |
| 346 | return ret; |
| 347 | } |
| 348 | |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 349 | /* ID -> Name */ |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 350 | static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf, |
| 351 | size_t buflen, struct idmap *idmap) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 352 | { |
| 353 | char id_str[NFS_UINT_MAXLEN]; |
| 354 | int id_len; |
| 355 | ssize_t ret; |
| 356 | |
Dave Wysochanski | d688948 | 2018-05-29 17:47:30 -0400 | [diff] [blame] | 357 | id_len = nfs_map_numeric_to_string(id, id_str, sizeof(id_str)); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 358 | ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 359 | if (ret < 0) |
| 360 | return -EINVAL; |
| 361 | return ret; |
| 362 | } |
| 363 | |
| 364 | /* Name -> ID */ |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 365 | static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type, |
| 366 | __u32 *id, struct idmap *idmap) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 367 | { |
| 368 | char id_str[NFS_UINT_MAXLEN]; |
| 369 | long id_long; |
| 370 | ssize_t data_size; |
| 371 | int ret = 0; |
| 372 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 373 | data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 374 | if (data_size <= 0) { |
| 375 | ret = -EINVAL; |
| 376 | } else { |
Daniel Walter | 7297cb6 | 2012-09-26 21:51:46 +0200 | [diff] [blame] | 377 | ret = kstrtol(id_str, 10, &id_long); |
Dan Carpenter | 4cd1ec9 | 2017-06-23 18:16:25 +0300 | [diff] [blame] | 378 | if (!ret) |
| 379 | *id = (__u32)id_long; |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 380 | } |
| 381 | return ret; |
| 382 | } |
| 383 | |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 384 | /* idmap classic begins here */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 386 | enum { |
| 387 | Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err |
| 388 | }; |
| 389 | |
| 390 | static const match_table_t nfs_idmap_tokens = { |
| 391 | { Opt_find_uid, "uid:%s" }, |
| 392 | { Opt_find_gid, "gid:%s" }, |
| 393 | { Opt_find_user, "user:%s" }, |
| 394 | { Opt_find_group, "group:%s" }, |
| 395 | { Opt_find_err, NULL } |
| 396 | }; |
| 397 | |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 398 | static int nfs_idmap_legacy_upcall(struct key *, void *); |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 399 | static ssize_t idmap_pipe_downcall(struct file *, const char __user *, |
| 400 | size_t); |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 401 | static void idmap_release_pipe(struct inode *); |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 402 | static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Trond Myklebust | b693ba4 | 2009-08-09 15:14:15 -0400 | [diff] [blame] | 404 | static const struct rpc_pipe_ops idmap_upcall_ops = { |
Peng Tao | c122515 | 2011-09-22 21:50:10 -0400 | [diff] [blame] | 405 | .upcall = rpc_pipe_generic_upcall, |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 406 | .downcall = idmap_pipe_downcall, |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 407 | .release_pipe = idmap_release_pipe, |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 408 | .destroy_msg = idmap_pipe_destroy_msg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | }; |
| 410 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 411 | static struct key_type key_type_id_resolver_legacy = { |
David Howells | a427b9e | 2012-07-25 16:53:36 +0100 | [diff] [blame] | 412 | .name = "id_legacy", |
David Howells | f916778 | 2014-07-18 18:56:35 +0100 | [diff] [blame] | 413 | .preparse = user_preparse, |
| 414 | .free_preparse = user_free_preparse, |
| 415 | .instantiate = generic_key_instantiate, |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 416 | .revoke = user_revoke, |
| 417 | .destroy = user_destroy, |
| 418 | .describe = user_describe, |
| 419 | .read = user_read, |
| 420 | .request_key = nfs_idmap_legacy_upcall, |
| 421 | }; |
| 422 | |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 423 | static void nfs_idmap_pipe_destroy(struct dentry *dir, |
| 424 | struct rpc_pipe_dir_object *pdo) |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 425 | { |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 426 | struct idmap *idmap = pdo->pdo_data; |
| 427 | struct rpc_pipe *pipe = idmap->idmap_pipe; |
| 428 | |
Trond Myklebust | d763125 | 2013-08-26 17:26:51 -0400 | [diff] [blame] | 429 | if (pipe->dentry) { |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 430 | rpc_unlink(pipe->dentry); |
Trond Myklebust | d763125 | 2013-08-26 17:26:51 -0400 | [diff] [blame] | 431 | pipe->dentry = NULL; |
| 432 | } |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 433 | } |
| 434 | |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 435 | static int nfs_idmap_pipe_create(struct dentry *dir, |
| 436 | struct rpc_pipe_dir_object *pdo) |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 437 | { |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 438 | struct idmap *idmap = pdo->pdo_data; |
| 439 | struct rpc_pipe *pipe = idmap->idmap_pipe; |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 440 | struct dentry *dentry; |
| 441 | |
| 442 | dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe); |
| 443 | if (IS_ERR(dentry)) |
| 444 | return PTR_ERR(dentry); |
| 445 | pipe->dentry = dentry; |
| 446 | return 0; |
| 447 | } |
| 448 | |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 449 | static const struct rpc_pipe_dir_object_ops nfs_idmap_pipe_dir_object_ops = { |
| 450 | .create = nfs_idmap_pipe_create, |
| 451 | .destroy = nfs_idmap_pipe_destroy, |
| 452 | }; |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 453 | |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 454 | int |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 455 | nfs_idmap_new(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
| 457 | struct idmap *idmap; |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 458 | struct rpc_pipe *pipe; |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 459 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 461 | idmap = kzalloc(sizeof(*idmap), GFP_KERNEL); |
| 462 | if (idmap == NULL) |
| 463 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 465 | mutex_init(&idmap->idmap_mutex); |
Sargun Dhillon | 61ca2c4 | 2020-10-12 14:43:39 -0700 | [diff] [blame] | 466 | idmap->user_ns = get_user_ns(clp->cl_rpcclient->cl_cred->user_ns); |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 467 | |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 468 | rpc_init_pipe_dir_object(&idmap->idmap_pdo, |
| 469 | &nfs_idmap_pipe_dir_object_ops, |
| 470 | idmap); |
| 471 | |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 472 | pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0); |
| 473 | if (IS_ERR(pipe)) { |
| 474 | error = PTR_ERR(pipe); |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 475 | goto err; |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 476 | } |
| 477 | idmap->idmap_pipe = pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 479 | error = rpc_add_pipe_dir_object(clp->cl_net, |
| 480 | &clp->cl_rpcclient->cl_pipedir_objects, |
| 481 | &idmap->idmap_pdo); |
| 482 | if (error) |
| 483 | goto err_destroy_pipe; |
| 484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | clp->cl_idmap = idmap; |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 486 | return 0; |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 487 | err_destroy_pipe: |
| 488 | rpc_destroy_pipe_data(idmap->idmap_pipe); |
| 489 | err: |
Alexey Gladkov | d5f458a | 2021-10-14 18:02:30 +0200 | [diff] [blame] | 490 | put_user_ns(idmap->user_ns); |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 491 | kfree(idmap); |
| 492 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | void |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 496 | nfs_idmap_delete(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
| 498 | struct idmap *idmap = clp->cl_idmap; |
| 499 | |
| 500 | if (!idmap) |
| 501 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | clp->cl_idmap = NULL; |
Trond Myklebust | 2127d82 | 2013-08-26 17:16:17 -0400 | [diff] [blame] | 503 | rpc_remove_pipe_dir_object(clp->cl_net, |
| 504 | &clp->cl_rpcclient->cl_pipedir_objects, |
| 505 | &idmap->idmap_pdo); |
| 506 | rpc_destroy_pipe_data(idmap->idmap_pipe); |
Sargun Dhillon | 61ca2c4 | 2020-10-12 14:43:39 -0700 | [diff] [blame] | 507 | put_user_ns(idmap->user_ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | kfree(idmap); |
| 509 | } |
| 510 | |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 511 | static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap, |
| 512 | struct idmap_msg *im, |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 513 | struct rpc_pipe_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | { |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 515 | substring_t substr; |
| 516 | int token, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 518 | im->im_type = IDMAP_TYPE_GROUP; |
| 519 | token = match_token(desc, nfs_idmap_tokens, &substr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 521 | switch (token) { |
| 522 | case Opt_find_uid: |
| 523 | im->im_type = IDMAP_TYPE_USER; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 524 | fallthrough; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 525 | case Opt_find_gid: |
| 526 | im->im_conv = IDMAP_CONV_NAMETOID; |
| 527 | ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ); |
| 528 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 530 | case Opt_find_user: |
| 531 | im->im_type = IDMAP_TYPE_USER; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 532 | fallthrough; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 533 | case Opt_find_group: |
| 534 | im->im_conv = IDMAP_CONV_IDTONAME; |
| 535 | ret = match_int(&substr, &im->im_id); |
Chengguang Xu | 12b289c | 2018-06-28 11:09:45 +0800 | [diff] [blame] | 536 | if (ret) |
| 537 | goto out; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 538 | break; |
Trond Myklebust | 685f50f | 2012-02-08 13:39:15 -0500 | [diff] [blame] | 539 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 540 | default: |
| 541 | ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | goto out; |
| 543 | } |
| 544 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 545 | msg->data = im; |
| 546 | msg->len = sizeof(struct idmap_msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 548 | out: |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 549 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } |
| 551 | |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 552 | static bool |
| 553 | nfs_idmap_prepare_pipe_upcall(struct idmap *idmap, |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 554 | struct idmap_legacy_upcalldata *data) |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 555 | { |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 556 | if (idmap->idmap_upcall_data != NULL) { |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 557 | WARN_ON_ONCE(1); |
| 558 | return false; |
| 559 | } |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 560 | idmap->idmap_upcall_data = data; |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 561 | return true; |
| 562 | } |
| 563 | |
| 564 | static void |
| 565 | nfs_idmap_complete_pipe_upcall_locked(struct idmap *idmap, int ret) |
| 566 | { |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 567 | struct key *authkey = idmap->idmap_upcall_data->authkey; |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 568 | |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 569 | kfree(idmap->idmap_upcall_data); |
| 570 | idmap->idmap_upcall_data = NULL; |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 571 | complete_request_key(authkey, ret); |
| 572 | key_put(authkey); |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | static void |
| 576 | nfs_idmap_abort_pipe_upcall(struct idmap *idmap, int ret) |
| 577 | { |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 578 | if (idmap->idmap_upcall_data != NULL) |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 579 | nfs_idmap_complete_pipe_upcall_locked(idmap, ret); |
| 580 | } |
| 581 | |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 582 | static int nfs_idmap_legacy_upcall(struct key *authkey, void *aux) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 584 | struct idmap_legacy_upcalldata *data; |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 585 | struct request_key_auth *rka = get_request_key_auth(authkey); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 586 | struct rpc_pipe_msg *msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | struct idmap_msg *im; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 588 | struct idmap *idmap = (struct idmap *)aux; |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 589 | struct key *key = rka->target_key; |
Eric Biggers | 49686cb | 2018-01-19 15:15:34 -0800 | [diff] [blame] | 590 | int ret = -ENOKEY; |
| 591 | |
| 592 | if (!aux) |
| 593 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 595 | /* msg and im are freed in idmap_pipe_destroy_msg */ |
Eric Biggers | 49686cb | 2018-01-19 15:15:34 -0800 | [diff] [blame] | 596 | ret = -ENOMEM; |
Bryan Schumaker | 57a5104 | 2012-08-09 14:05:51 -0400 | [diff] [blame] | 597 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 598 | if (!data) |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 599 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 601 | msg = &data->pipe_msg; |
| 602 | im = &data->idmap_msg; |
| 603 | data->idmap = idmap; |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 604 | data->authkey = key_get(authkey); |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 605 | |
| 606 | ret = nfs_idmap_prepare_message(key->description, idmap, im, msg); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 607 | if (ret < 0) |
| 608 | goto out2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 610 | ret = -EAGAIN; |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 611 | if (!nfs_idmap_prepare_pipe_upcall(idmap, data)) |
Trond Myklebust | 0e24d84 | 2012-09-28 12:03:09 -0400 | [diff] [blame] | 612 | goto out2; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 613 | |
Bryan Schumaker | 11588f4 | 2012-03-12 11:33:00 -0400 | [diff] [blame] | 614 | ret = rpc_queue_upcall(idmap->idmap_pipe, msg); |
| 615 | if (ret < 0) |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 616 | nfs_idmap_abort_pipe_upcall(idmap, ret); |
Bryan Schumaker | 11588f4 | 2012-03-12 11:33:00 -0400 | [diff] [blame] | 617 | |
| 618 | return ret; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 619 | out2: |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 620 | kfree(data); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 621 | out1: |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 622 | complete_request_key(authkey, ret); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 623 | return ret; |
| 624 | } |
| 625 | |
Trond Myklebust | cf4ab53 | 2013-03-08 12:56:37 -0500 | [diff] [blame] | 626 | static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data, size_t datalen) |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 627 | { |
Trond Myklebust | cf4ab53 | 2013-03-08 12:56:37 -0500 | [diff] [blame] | 628 | return key_instantiate_and_link(key, data, datalen, |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 629 | id_resolver_cache->thread_keyring, |
| 630 | authkey); |
| 631 | } |
| 632 | |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 633 | static int nfs_idmap_read_and_verify_message(struct idmap_msg *im, |
| 634 | struct idmap_msg *upcall, |
| 635 | struct key *key, struct key *authkey) |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 636 | { |
| 637 | char id_str[NFS_UINT_MAXLEN]; |
Trond Myklebust | cf4ab53 | 2013-03-08 12:56:37 -0500 | [diff] [blame] | 638 | size_t len; |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 639 | int ret = -ENOKEY; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 640 | |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 641 | /* ret = -ENOKEY */ |
| 642 | if (upcall->im_type != im->im_type || upcall->im_conv != im->im_conv) |
| 643 | goto out; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 644 | switch (im->im_conv) { |
| 645 | case IDMAP_CONV_NAMETOID: |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 646 | if (strcmp(upcall->im_name, im->im_name) != 0) |
| 647 | break; |
Trond Myklebust | cf4ab53 | 2013-03-08 12:56:37 -0500 | [diff] [blame] | 648 | /* Note: here we store the NUL terminator too */ |
Dave Wysochanski | d688948 | 2018-05-29 17:47:30 -0400 | [diff] [blame] | 649 | len = 1 + nfs_map_numeric_to_string(im->im_id, id_str, |
| 650 | sizeof(id_str)); |
Trond Myklebust | cf4ab53 | 2013-03-08 12:56:37 -0500 | [diff] [blame] | 651 | ret = nfs_idmap_instantiate(key, authkey, id_str, len); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 652 | break; |
| 653 | case IDMAP_CONV_IDTONAME: |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 654 | if (upcall->im_id != im->im_id) |
| 655 | break; |
Trond Myklebust | cf4ab53 | 2013-03-08 12:56:37 -0500 | [diff] [blame] | 656 | len = strlen(im->im_name); |
| 657 | ret = nfs_idmap_instantiate(key, authkey, im->im_name, len); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 658 | break; |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 659 | default: |
| 660 | ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 662 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | return ret; |
| 664 | } |
| 665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | static ssize_t |
| 667 | idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) |
| 668 | { |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 669 | struct request_key_auth *rka; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 670 | struct rpc_inode *rpci = RPC_I(file_inode(filp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | struct idmap *idmap = (struct idmap *)rpci->private; |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 672 | struct key *authkey; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 673 | struct idmap_msg im; |
Chuck Lever | d24aae4 | 2007-12-20 14:54:49 -0500 | [diff] [blame] | 674 | size_t namelen_in; |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 675 | int ret = -ENOKEY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
David Howells | a427b9e | 2012-07-25 16:53:36 +0100 | [diff] [blame] | 677 | /* If instantiation is successful, anyone waiting for key construction |
| 678 | * will have been woken up and someone else may now have used |
| 679 | * idmap_key_cons - so after this point we may no longer touch it. |
| 680 | */ |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 681 | if (idmap->idmap_upcall_data == NULL) |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 682 | goto out_noupcall; |
David Howells | a427b9e | 2012-07-25 16:53:36 +0100 | [diff] [blame] | 683 | |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 684 | authkey = idmap->idmap_upcall_data->authkey; |
| 685 | rka = get_request_key_auth(authkey); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 687 | if (mlen != sizeof(im)) { |
| 688 | ret = -ENOSPC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | goto out; |
| 690 | } |
| 691 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 692 | if (copy_from_user(&im, src, mlen) != 0) { |
| 693 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | goto out; |
| 695 | } |
| 696 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 697 | if (!(im.im_status & IDMAP_STATUS_SUCCESS)) { |
Bryan Schumaker | 12dfd08 | 2012-08-09 14:05:50 -0400 | [diff] [blame] | 698 | ret = -ENOKEY; |
| 699 | goto out; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | namelen_in = strnlen(im.im_name, IDMAP_NAMESZ); |
| 703 | if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) { |
| 704 | ret = -EINVAL; |
| 705 | goto out; |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 706 | } |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 707 | |
Trond Myklebust | 0cac1202 | 2012-09-27 16:15:00 -0400 | [diff] [blame] | 708 | ret = nfs_idmap_read_and_verify_message(&im, |
| 709 | &idmap->idmap_upcall_data->idmap_msg, |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 710 | rka->target_key, authkey); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 711 | if (ret >= 0) { |
David Howells | 822ad64 | 2019-02-14 16:20:25 +0000 | [diff] [blame] | 712 | key_set_timeout(rka->target_key, nfs_idmap_cache_timeout); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 713 | ret = mlen; |
| 714 | } |
| 715 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | out: |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 717 | nfs_idmap_complete_pipe_upcall_locked(idmap, ret); |
| 718 | out_noupcall: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return ret; |
| 720 | } |
| 721 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 722 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg) |
| 724 | { |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 725 | struct idmap_legacy_upcalldata *data = container_of(msg, |
| 726 | struct idmap_legacy_upcalldata, |
| 727 | pipe_msg); |
| 728 | struct idmap *idmap = data->idmap; |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 729 | |
| 730 | if (msg->errno) |
| 731 | nfs_idmap_abort_pipe_upcall(idmap, msg->errno); |
Bryan Schumaker | c506694 | 2012-08-09 14:05:49 -0400 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | static void |
| 735 | idmap_release_pipe(struct inode *inode) |
| 736 | { |
| 737 | struct rpc_inode *rpci = RPC_I(inode); |
| 738 | struct idmap *idmap = (struct idmap *)rpci->private; |
Trond Myklebust | e9ab41b6 | 2012-09-27 15:44:19 -0400 | [diff] [blame] | 739 | |
| 740 | nfs_idmap_abort_pipe_upcall(idmap, -EPIPE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | } |
| 742 | |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 743 | int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, kuid_t *uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | { |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 745 | struct idmap *idmap = server->nfs_client->cl_idmap; |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 746 | __u32 id = -1; |
| 747 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 749 | if (!nfs_map_string_to_numeric(name, namelen, &id)) |
| 750 | ret = nfs_idmap_lookup_id(name, namelen, "uid", &id, idmap); |
| 751 | if (ret == 0) { |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 752 | *uid = make_kuid(idmap_userns(idmap), id); |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 753 | if (!uid_valid(*uid)) |
| 754 | ret = -ERANGE; |
| 755 | } |
Trond Myklebust | 1f2d30b | 2013-08-13 11:34:01 -0400 | [diff] [blame] | 756 | trace_nfs4_map_name_to_uid(name, namelen, id, ret); |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 757 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 759 | |
| 760 | int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, kgid_t *gid) |
| 761 | { |
| 762 | struct idmap *idmap = server->nfs_client->cl_idmap; |
| 763 | __u32 id = -1; |
| 764 | int ret = 0; |
| 765 | |
| 766 | if (!nfs_map_string_to_numeric(name, namelen, &id)) |
| 767 | ret = nfs_idmap_lookup_id(name, namelen, "gid", &id, idmap); |
| 768 | if (ret == 0) { |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 769 | *gid = make_kgid(idmap_userns(idmap), id); |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 770 | if (!gid_valid(*gid)) |
| 771 | ret = -ERANGE; |
| 772 | } |
Trond Myklebust | 1f2d30b | 2013-08-13 11:34:01 -0400 | [diff] [blame] | 773 | trace_nfs4_map_group_to_gid(name, namelen, id, ret); |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 774 | return ret; |
| 775 | } |
| 776 | |
| 777 | int nfs_map_uid_to_name(const struct nfs_server *server, kuid_t uid, char *buf, size_t buflen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | { |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 779 | struct idmap *idmap = server->nfs_client->cl_idmap; |
Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 780 | int ret = -EINVAL; |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 781 | __u32 id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 783 | id = from_kuid_munged(idmap_userns(idmap), uid); |
Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 784 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 785 | ret = nfs_idmap_lookup_name(id, "user", buf, buflen, idmap); |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 786 | if (ret < 0) |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 787 | ret = nfs_map_numeric_to_string(id, buf, buflen); |
Trond Myklebust | 1f2d30b | 2013-08-13 11:34:01 -0400 | [diff] [blame] | 788 | trace_nfs4_map_uid_to_name(buf, ret, id, ret); |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 789 | return ret; |
| 790 | } |
| 791 | int nfs_map_gid_to_group(const struct nfs_server *server, kgid_t gid, char *buf, size_t buflen) |
| 792 | { |
| 793 | struct idmap *idmap = server->nfs_client->cl_idmap; |
| 794 | int ret = -EINVAL; |
| 795 | __u32 id; |
| 796 | |
Trond Myklebust | 5800239 | 2019-04-24 17:46:47 -0400 | [diff] [blame] | 797 | id = from_kgid_munged(idmap_userns(idmap), gid); |
Eric W. Biederman | 9f309c8 | 2013-02-01 03:21:47 -0800 | [diff] [blame] | 798 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) |
| 799 | ret = nfs_idmap_lookup_name(id, "group", buf, buflen, idmap); |
| 800 | if (ret < 0) |
| 801 | ret = nfs_map_numeric_to_string(id, buf, buflen); |
Trond Myklebust | 1f2d30b | 2013-08-13 11:34:01 -0400 | [diff] [blame] | 802 | trace_nfs4_map_gid_to_group(buf, ret, id, ret); |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 803 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | } |