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