| 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" | 
| Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 52 |  | 
|  | 53 | #define NFS_UINT_MAXLEN 11 | 
| Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 54 |  | 
|  | 55 | /* Default cache timeout is 10 minutes */ | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 56 | unsigned int nfs_idmap_cache_timeout = 600; | 
| Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 57 | static const struct cred *id_resolver_cache; | 
|  | 58 | static struct key_type key_type_id_resolver_legacy; | 
| Bryan Schumaker | 3cd0f37 | 2012-01-26 16:54:24 -0500 | [diff] [blame] | 59 |  | 
| Trond Myklebust | 6926afd | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 60 |  | 
|  | 61 | /** | 
|  | 62 | * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields | 
|  | 63 | * @fattr: fully initialised struct nfs_fattr | 
|  | 64 | * @owner_name: owner name string cache | 
|  | 65 | * @group_name: group name string cache | 
|  | 66 | */ | 
|  | 67 | void nfs_fattr_init_names(struct nfs_fattr *fattr, | 
|  | 68 | struct nfs4_string *owner_name, | 
|  | 69 | struct nfs4_string *group_name) | 
|  | 70 | { | 
|  | 71 | fattr->owner_name = owner_name; | 
|  | 72 | fattr->group_name = group_name; | 
|  | 73 | } | 
|  | 74 |  | 
|  | 75 | static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr) | 
|  | 76 | { | 
|  | 77 | fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME; | 
|  | 78 | kfree(fattr->owner_name->data); | 
|  | 79 | } | 
|  | 80 |  | 
|  | 81 | static void nfs_fattr_free_group_name(struct nfs_fattr *fattr) | 
|  | 82 | { | 
|  | 83 | fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME; | 
|  | 84 | kfree(fattr->group_name->data); | 
|  | 85 | } | 
|  | 86 |  | 
|  | 87 | static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr) | 
|  | 88 | { | 
|  | 89 | struct nfs4_string *owner = fattr->owner_name; | 
|  | 90 | __u32 uid; | 
|  | 91 |  | 
|  | 92 | if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)) | 
|  | 93 | return false; | 
|  | 94 | if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) { | 
|  | 95 | fattr->uid = uid; | 
|  | 96 | fattr->valid |= NFS_ATTR_FATTR_OWNER; | 
|  | 97 | } | 
|  | 98 | return true; | 
|  | 99 | } | 
|  | 100 |  | 
|  | 101 | static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr) | 
|  | 102 | { | 
|  | 103 | struct nfs4_string *group = fattr->group_name; | 
|  | 104 | __u32 gid; | 
|  | 105 |  | 
|  | 106 | if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)) | 
|  | 107 | return false; | 
|  | 108 | if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) { | 
|  | 109 | fattr->gid = gid; | 
|  | 110 | fattr->valid |= NFS_ATTR_FATTR_GROUP; | 
|  | 111 | } | 
|  | 112 | return true; | 
|  | 113 | } | 
|  | 114 |  | 
|  | 115 | /** | 
|  | 116 | * nfs_fattr_free_names - free up the NFSv4 owner and group strings | 
|  | 117 | * @fattr: a fully initialised nfs_fattr structure | 
|  | 118 | */ | 
|  | 119 | void nfs_fattr_free_names(struct nfs_fattr *fattr) | 
|  | 120 | { | 
|  | 121 | if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME) | 
|  | 122 | nfs_fattr_free_owner_name(fattr); | 
|  | 123 | if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME) | 
|  | 124 | nfs_fattr_free_group_name(fattr); | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 | /** | 
|  | 128 | * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free | 
|  | 129 | * @server: pointer to the filesystem nfs_server structure | 
|  | 130 | * @fattr: a fully initialised nfs_fattr structure | 
|  | 131 | * | 
|  | 132 | * This helper maps the cached NFSv4 owner/group strings in fattr into | 
|  | 133 | * their numeric uid/gid equivalents, and then frees the cached strings. | 
|  | 134 | */ | 
|  | 135 | void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr) | 
|  | 136 | { | 
|  | 137 | if (nfs_fattr_map_owner_name(server, fattr)) | 
|  | 138 | nfs_fattr_free_owner_name(fattr); | 
|  | 139 | if (nfs_fattr_map_group_name(server, fattr)) | 
|  | 140 | nfs_fattr_free_group_name(fattr); | 
|  | 141 | } | 
| Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 142 |  | 
|  | 143 | static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res) | 
|  | 144 | { | 
|  | 145 | unsigned long val; | 
|  | 146 | char buf[16]; | 
|  | 147 |  | 
|  | 148 | if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf)) | 
|  | 149 | return 0; | 
|  | 150 | memcpy(buf, name, namelen); | 
|  | 151 | buf[namelen] = '\0'; | 
|  | 152 | if (strict_strtoul(buf, 0, &val) != 0) | 
|  | 153 | return 0; | 
|  | 154 | *res = val; | 
|  | 155 | return 1; | 
|  | 156 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 |  | 
| Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 158 | static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen) | 
|  | 159 | { | 
|  | 160 | return snprintf(buf, buflen, "%u", id); | 
|  | 161 | } | 
|  | 162 |  | 
| Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 163 | static struct key_type key_type_id_resolver = { | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 164 | .name		= "id_resolver", | 
|  | 165 | .instantiate	= user_instantiate, | 
|  | 166 | .match		= user_match, | 
|  | 167 | .revoke		= user_revoke, | 
|  | 168 | .destroy	= user_destroy, | 
|  | 169 | .describe	= user_describe, | 
|  | 170 | .read		= user_read, | 
|  | 171 | }; | 
|  | 172 |  | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 173 | static int nfs_idmap_init_keyring(void) | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 174 | { | 
|  | 175 | struct cred *cred; | 
|  | 176 | struct key *keyring; | 
|  | 177 | int ret = 0; | 
|  | 178 |  | 
| Weston Andros Adamson | f9fd2d9 | 2012-01-26 13:32:22 -0500 | [diff] [blame] | 179 | printk(KERN_NOTICE "NFS: Registering the %s key type\n", | 
|  | 180 | key_type_id_resolver.name); | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 181 |  | 
|  | 182 | cred = prepare_kernel_cred(NULL); | 
|  | 183 | if (!cred) | 
|  | 184 | return -ENOMEM; | 
|  | 185 |  | 
|  | 186 | keyring = key_alloc(&key_type_keyring, ".id_resolver", 0, 0, cred, | 
|  | 187 | (KEY_POS_ALL & ~KEY_POS_SETATTR) | | 
|  | 188 | KEY_USR_VIEW | KEY_USR_READ, | 
|  | 189 | KEY_ALLOC_NOT_IN_QUOTA); | 
|  | 190 | if (IS_ERR(keyring)) { | 
|  | 191 | ret = PTR_ERR(keyring); | 
|  | 192 | goto failed_put_cred; | 
|  | 193 | } | 
|  | 194 |  | 
|  | 195 | ret = key_instantiate_and_link(keyring, NULL, 0, NULL, NULL); | 
|  | 196 | if (ret < 0) | 
|  | 197 | goto failed_put_key; | 
|  | 198 |  | 
|  | 199 | ret = register_key_type(&key_type_id_resolver); | 
|  | 200 | if (ret < 0) | 
|  | 201 | goto failed_put_key; | 
|  | 202 |  | 
| David Howells | 700920e | 2012-01-18 15:31:45 +0000 | [diff] [blame] | 203 | set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags); | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 204 | cred->thread_keyring = keyring; | 
|  | 205 | cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; | 
|  | 206 | id_resolver_cache = cred; | 
|  | 207 | return 0; | 
|  | 208 |  | 
|  | 209 | failed_put_key: | 
|  | 210 | key_put(keyring); | 
|  | 211 | failed_put_cred: | 
|  | 212 | put_cred(cred); | 
|  | 213 | return ret; | 
|  | 214 | } | 
|  | 215 |  | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 216 | static void nfs_idmap_quit_keyring(void) | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 217 | { | 
|  | 218 | key_revoke(id_resolver_cache->thread_keyring); | 
|  | 219 | unregister_key_type(&key_type_id_resolver); | 
|  | 220 | put_cred(id_resolver_cache); | 
|  | 221 | } | 
|  | 222 |  | 
|  | 223 | /* | 
|  | 224 | * Assemble the description to pass to request_key() | 
|  | 225 | * This function will allocate a new string and update dest to point | 
|  | 226 | * at it.  The caller is responsible for freeing dest. | 
|  | 227 | * | 
|  | 228 | * On error 0 is returned.  Otherwise, the length of dest is returned. | 
|  | 229 | */ | 
|  | 230 | static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen, | 
|  | 231 | const char *type, size_t typelen, char **desc) | 
|  | 232 | { | 
|  | 233 | char *cp; | 
|  | 234 | size_t desclen = typelen + namelen + 2; | 
|  | 235 |  | 
|  | 236 | *desc = kmalloc(desclen, GFP_KERNEL); | 
| Dan Carpenter | 8f0d97b | 2010-10-28 08:05:57 +0200 | [diff] [blame] | 237 | if (!*desc) | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 238 | return -ENOMEM; | 
|  | 239 |  | 
|  | 240 | cp = *desc; | 
|  | 241 | memcpy(cp, type, typelen); | 
|  | 242 | cp += typelen; | 
|  | 243 | *cp++ = ':'; | 
|  | 244 |  | 
|  | 245 | memcpy(cp, name, namelen); | 
|  | 246 | cp += namelen; | 
|  | 247 | *cp = '\0'; | 
|  | 248 | return desclen; | 
|  | 249 | } | 
|  | 250 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 251 | static ssize_t nfs_idmap_request_key(struct key_type *key_type, | 
|  | 252 | const char *name, size_t namelen, | 
|  | 253 | const char *type, void *data, | 
|  | 254 | size_t data_size, struct idmap *idmap) | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 255 | { | 
|  | 256 | const struct cred *saved_cred; | 
|  | 257 | struct key *rkey; | 
|  | 258 | char *desc; | 
|  | 259 | struct user_key_payload *payload; | 
|  | 260 | ssize_t ret; | 
|  | 261 |  | 
|  | 262 | ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc); | 
|  | 263 | if (ret <= 0) | 
|  | 264 | goto out; | 
|  | 265 |  | 
|  | 266 | saved_cred = override_creds(id_resolver_cache); | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 267 | if (idmap) | 
|  | 268 | rkey = request_key_with_auxdata(key_type, desc, "", 0, idmap); | 
|  | 269 | else | 
|  | 270 | rkey = request_key(&key_type_id_resolver, desc, ""); | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 271 | revert_creds(saved_cred); | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 272 |  | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 273 | kfree(desc); | 
|  | 274 | if (IS_ERR(rkey)) { | 
|  | 275 | ret = PTR_ERR(rkey); | 
|  | 276 | goto out; | 
|  | 277 | } | 
|  | 278 |  | 
|  | 279 | rcu_read_lock(); | 
|  | 280 | rkey->perm |= KEY_USR_VIEW; | 
|  | 281 |  | 
|  | 282 | ret = key_validate(rkey); | 
|  | 283 | if (ret < 0) | 
|  | 284 | goto out_up; | 
|  | 285 |  | 
|  | 286 | payload = rcu_dereference(rkey->payload.data); | 
|  | 287 | if (IS_ERR_OR_NULL(payload)) { | 
|  | 288 | ret = PTR_ERR(payload); | 
|  | 289 | goto out_up; | 
|  | 290 | } | 
|  | 291 |  | 
|  | 292 | ret = payload->datalen; | 
|  | 293 | if (ret > 0 && ret <= data_size) | 
|  | 294 | memcpy(data, payload->data, ret); | 
|  | 295 | else | 
|  | 296 | ret = -EINVAL; | 
|  | 297 |  | 
|  | 298 | out_up: | 
|  | 299 | rcu_read_unlock(); | 
|  | 300 | key_put(rkey); | 
|  | 301 | out: | 
|  | 302 | return ret; | 
|  | 303 | } | 
|  | 304 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 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 | ssize_t ret = nfs_idmap_request_key(&key_type_id_resolver, | 
|  | 310 | name, namelen, type, data, | 
|  | 311 | data_size, NULL); | 
|  | 312 | if (ret < 0) { | 
|  | 313 | ret = nfs_idmap_request_key(&key_type_id_resolver_legacy, | 
|  | 314 | name, namelen, type, data, | 
|  | 315 | data_size, idmap); | 
|  | 316 | } | 
|  | 317 | return ret; | 
|  | 318 | } | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 319 |  | 
|  | 320 | /* ID -> Name */ | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 321 | static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf, | 
|  | 322 | size_t buflen, struct idmap *idmap) | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 323 | { | 
|  | 324 | char id_str[NFS_UINT_MAXLEN]; | 
|  | 325 | int id_len; | 
|  | 326 | ssize_t ret; | 
|  | 327 |  | 
|  | 328 | id_len = snprintf(id_str, sizeof(id_str), "%u", id); | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 329 | 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] | 330 | if (ret < 0) | 
|  | 331 | return -EINVAL; | 
|  | 332 | return ret; | 
|  | 333 | } | 
|  | 334 |  | 
|  | 335 | /* Name -> ID */ | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 336 | static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type, | 
|  | 337 | __u32 *id, struct idmap *idmap) | 
| Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 338 | { | 
|  | 339 | char id_str[NFS_UINT_MAXLEN]; | 
|  | 340 | long id_long; | 
|  | 341 | ssize_t data_size; | 
|  | 342 | int ret = 0; | 
|  | 343 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 344 | 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] | 345 | if (data_size <= 0) { | 
|  | 346 | ret = -EINVAL; | 
|  | 347 | } else { | 
|  | 348 | ret = strict_strtol(id_str, 10, &id_long); | 
|  | 349 | *id = (__u32)id_long; | 
|  | 350 | } | 
|  | 351 | return ret; | 
|  | 352 | } | 
|  | 353 |  | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 354 | /* idmap classic begins here */ | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 355 | module_param(nfs_idmap_cache_timeout, int, 0644); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 |  | 
|  | 357 | struct idmap { | 
| Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 358 | struct rpc_pipe		*idmap_pipe; | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 359 | struct key_construction	*idmap_key_cons; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | }; | 
|  | 361 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 362 | enum { | 
|  | 363 | Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err | 
|  | 364 | }; | 
|  | 365 |  | 
|  | 366 | static const match_table_t nfs_idmap_tokens = { | 
|  | 367 | { Opt_find_uid, "uid:%s" }, | 
|  | 368 | { Opt_find_gid, "gid:%s" }, | 
|  | 369 | { Opt_find_user, "user:%s" }, | 
|  | 370 | { Opt_find_group, "group:%s" }, | 
|  | 371 | { Opt_find_err, NULL } | 
|  | 372 | }; | 
|  | 373 |  | 
|  | 374 | static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *); | 
| Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 375 | static ssize_t idmap_pipe_downcall(struct file *, const char __user *, | 
|  | 376 | size_t); | 
|  | 377 | static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 |  | 
| Trond Myklebust | b693ba4 | 2009-08-09 15:14:15 -0400 | [diff] [blame] | 379 | static const struct rpc_pipe_ops idmap_upcall_ops = { | 
| Peng Tao | c122515 | 2011-09-22 21:50:10 -0400 | [diff] [blame] | 380 | .upcall		= rpc_pipe_generic_upcall, | 
| Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 381 | .downcall	= idmap_pipe_downcall, | 
|  | 382 | .destroy_msg	= idmap_pipe_destroy_msg, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | }; | 
|  | 384 |  | 
| Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 385 | static struct key_type key_type_id_resolver_legacy = { | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 386 | .name		= "id_resolver", | 
|  | 387 | .instantiate	= user_instantiate, | 
|  | 388 | .match		= user_match, | 
|  | 389 | .revoke		= user_revoke, | 
|  | 390 | .destroy	= user_destroy, | 
|  | 391 | .describe	= user_describe, | 
|  | 392 | .read		= user_read, | 
|  | 393 | .request_key	= nfs_idmap_legacy_upcall, | 
|  | 394 | }; | 
|  | 395 |  | 
| Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 396 | static void __nfs_idmap_unregister(struct rpc_pipe *pipe) | 
|  | 397 | { | 
|  | 398 | if (pipe->dentry) | 
|  | 399 | rpc_unlink(pipe->dentry); | 
|  | 400 | } | 
|  | 401 |  | 
|  | 402 | static int __nfs_idmap_register(struct dentry *dir, | 
|  | 403 | struct idmap *idmap, | 
|  | 404 | struct rpc_pipe *pipe) | 
|  | 405 | { | 
|  | 406 | struct dentry *dentry; | 
|  | 407 |  | 
|  | 408 | dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe); | 
|  | 409 | if (IS_ERR(dentry)) | 
|  | 410 | return PTR_ERR(dentry); | 
|  | 411 | pipe->dentry = dentry; | 
|  | 412 | return 0; | 
|  | 413 | } | 
|  | 414 |  | 
|  | 415 | static void nfs_idmap_unregister(struct nfs_client *clp, | 
|  | 416 | struct rpc_pipe *pipe) | 
|  | 417 | { | 
| Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 418 | struct net *net = clp->cl_net; | 
| Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 419 | struct super_block *pipefs_sb; | 
|  | 420 |  | 
|  | 421 | pipefs_sb = rpc_get_sb_net(net); | 
|  | 422 | if (pipefs_sb) { | 
|  | 423 | __nfs_idmap_unregister(pipe); | 
|  | 424 | rpc_put_sb_net(net); | 
|  | 425 | } | 
|  | 426 | } | 
|  | 427 |  | 
|  | 428 | static int nfs_idmap_register(struct nfs_client *clp, | 
|  | 429 | struct idmap *idmap, | 
|  | 430 | struct rpc_pipe *pipe) | 
|  | 431 | { | 
| Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 432 | struct net *net = clp->cl_net; | 
| Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 433 | struct super_block *pipefs_sb; | 
|  | 434 | int err = 0; | 
|  | 435 |  | 
|  | 436 | pipefs_sb = rpc_get_sb_net(net); | 
|  | 437 | if (pipefs_sb) { | 
|  | 438 | if (clp->cl_rpcclient->cl_dentry) | 
|  | 439 | err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry, | 
|  | 440 | idmap, pipe); | 
|  | 441 | rpc_put_sb_net(net); | 
|  | 442 | } | 
|  | 443 | return err; | 
|  | 444 | } | 
|  | 445 |  | 
| David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 446 | int | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 447 | nfs_idmap_new(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | { | 
|  | 449 | struct idmap *idmap; | 
| Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 450 | struct rpc_pipe *pipe; | 
| David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 451 | int error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 453 | BUG_ON(clp->cl_idmap != NULL); | 
| David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 454 |  | 
| Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 455 | idmap = kzalloc(sizeof(*idmap), GFP_KERNEL); | 
|  | 456 | if (idmap == NULL) | 
|  | 457 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 |  | 
| Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 459 | pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0); | 
|  | 460 | if (IS_ERR(pipe)) { | 
|  | 461 | error = PTR_ERR(pipe); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | kfree(idmap); | 
| David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 463 | return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } | 
| Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 465 | error = nfs_idmap_register(clp, idmap, pipe); | 
|  | 466 | if (error) { | 
| Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 467 | rpc_destroy_pipe_data(pipe); | 
|  | 468 | kfree(idmap); | 
|  | 469 | return error; | 
|  | 470 | } | 
|  | 471 | idmap->idmap_pipe = pipe; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 |  | 
|  | 473 | clp->cl_idmap = idmap; | 
| David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 474 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } | 
|  | 476 |  | 
|  | 477 | void | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 478 | nfs_idmap_delete(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | { | 
|  | 480 | struct idmap *idmap = clp->cl_idmap; | 
|  | 481 |  | 
|  | 482 | if (!idmap) | 
|  | 483 | return; | 
| Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 484 | nfs_idmap_unregister(clp, idmap->idmap_pipe); | 
| Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 485 | rpc_destroy_pipe_data(idmap->idmap_pipe); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | clp->cl_idmap = NULL; | 
|  | 487 | kfree(idmap); | 
|  | 488 | } | 
|  | 489 |  | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 490 | static int __rpc_pipefs_event(struct nfs_client *clp, unsigned long event, | 
|  | 491 | struct super_block *sb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 493 | int err = 0; | 
|  | 494 |  | 
|  | 495 | switch (event) { | 
|  | 496 | case RPC_PIPEFS_MOUNT: | 
|  | 497 | BUG_ON(clp->cl_rpcclient->cl_dentry == NULL); | 
|  | 498 | err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry, | 
|  | 499 | clp->cl_idmap, | 
|  | 500 | clp->cl_idmap->idmap_pipe); | 
|  | 501 | break; | 
|  | 502 | case RPC_PIPEFS_UMOUNT: | 
|  | 503 | if (clp->cl_idmap->idmap_pipe) { | 
|  | 504 | struct dentry *parent; | 
|  | 505 |  | 
|  | 506 | parent = clp->cl_idmap->idmap_pipe->dentry->d_parent; | 
|  | 507 | __nfs_idmap_unregister(clp->cl_idmap->idmap_pipe); | 
|  | 508 | /* | 
|  | 509 | * Note: This is a dirty hack. SUNRPC hook has been | 
|  | 510 | * called already but simple_rmdir() call for the | 
|  | 511 | * directory returned with error because of idmap pipe | 
|  | 512 | * inside. Thus now we have to remove this directory | 
|  | 513 | * here. | 
|  | 514 | */ | 
|  | 515 | if (rpc_rmdir(parent)) | 
| Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 516 | printk(KERN_ERR "NFS: %s: failed to remove " | 
|  | 517 | "clnt dir!\n", __func__); | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 518 | } | 
|  | 519 | break; | 
|  | 520 | default: | 
| Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 521 | printk(KERN_ERR "NFS: %s: unknown event: %ld\n", __func__, | 
|  | 522 | event); | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 523 | return -ENOTSUPP; | 
|  | 524 | } | 
|  | 525 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } | 
|  | 527 |  | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 528 | static struct nfs_client *nfs_get_client_for_event(struct net *net, int event) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 530 | struct nfs_net *nn = net_generic(net, nfs_net_id); | 
|  | 531 | struct dentry *cl_dentry; | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 532 | struct nfs_client *clp; | 
| Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 533 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 |  | 
| Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 535 | restart: | 
| Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 536 | spin_lock(&nn->nfs_client_lock); | 
| Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 537 | list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) { | 
| Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 538 | /* Wait for initialisation to finish */ | 
|  | 539 | if (clp->cl_cons_state == NFS_CS_INITING) { | 
|  | 540 | atomic_inc(&clp->cl_count); | 
|  | 541 | spin_unlock(&nn->nfs_client_lock); | 
|  | 542 | err = nfs_wait_client_init_complete(clp); | 
|  | 543 | nfs_put_client(clp); | 
|  | 544 | if (err) | 
|  | 545 | return NULL; | 
|  | 546 | goto restart; | 
|  | 547 | } | 
|  | 548 | /* Skip nfs_clients that failed to initialise */ | 
|  | 549 | if (clp->cl_cons_state < 0) | 
|  | 550 | continue; | 
| Trond Myklebust | 54ac471 | 2012-05-23 13:26:10 -0400 | [diff] [blame] | 551 | smp_rmb(); | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 552 | if (clp->rpc_ops != &nfs_v4_clientops) | 
|  | 553 | continue; | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 554 | cl_dentry = clp->cl_idmap->idmap_pipe->dentry; | 
|  | 555 | if (((event == RPC_PIPEFS_MOUNT) && cl_dentry) || | 
|  | 556 | ((event == RPC_PIPEFS_UMOUNT) && !cl_dentry)) | 
|  | 557 | continue; | 
|  | 558 | atomic_inc(&clp->cl_count); | 
|  | 559 | spin_unlock(&nn->nfs_client_lock); | 
|  | 560 | return clp; | 
|  | 561 | } | 
|  | 562 | spin_unlock(&nn->nfs_client_lock); | 
|  | 563 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | } | 
|  | 565 |  | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 566 | static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event, | 
|  | 567 | void *ptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 569 | struct super_block *sb = ptr; | 
|  | 570 | struct nfs_client *clp; | 
|  | 571 | int error = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 |  | 
| Stanislav Kinsbursky | 71dfc5f | 2012-04-28 19:32:21 +0400 | [diff] [blame] | 573 | if (!try_module_get(THIS_MODULE)) | 
|  | 574 | return 0; | 
|  | 575 |  | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 576 | while ((clp = nfs_get_client_for_event(sb->s_fs_info, event))) { | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 577 | error = __rpc_pipefs_event(clp, event, sb); | 
| Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 578 | nfs_put_client(clp); | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 579 | if (error) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } | 
| Stanislav Kinsbursky | 71dfc5f | 2012-04-28 19:32:21 +0400 | [diff] [blame] | 582 | module_put(THIS_MODULE); | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 583 | return error; | 
|  | 584 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 |  | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 586 | #define PIPEFS_NFS_PRIO		1 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 |  | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 588 | static struct notifier_block nfs_idmap_block = { | 
|  | 589 | .notifier_call	= rpc_pipefs_event, | 
|  | 590 | .priority	= SUNRPC_PIPEFS_NFS_PRIO, | 
|  | 591 | }; | 
|  | 592 |  | 
|  | 593 | int nfs_idmap_init(void) | 
|  | 594 | { | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 595 | int ret; | 
|  | 596 | ret = nfs_idmap_init_keyring(); | 
|  | 597 | if (ret != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | goto out; | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 599 | ret = rpc_pipefs_notifier_register(&nfs_idmap_block); | 
|  | 600 | if (ret != 0) | 
|  | 601 | nfs_idmap_quit_keyring(); | 
|  | 602 | out: | 
| Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 603 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } | 
|  | 605 |  | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 606 | void nfs_idmap_quit(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | { | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 608 | rpc_pipefs_notifier_unregister(&nfs_idmap_block); | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 609 | nfs_idmap_quit_keyring(); | 
| Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 610 | } | 
|  | 611 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 612 | static int nfs_idmap_prepare_message(char *desc, struct idmap_msg *im, | 
|  | 613 | struct rpc_pipe_msg *msg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | { | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 615 | substring_t substr; | 
|  | 616 | int token, ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 618 | memset(im,  0, sizeof(*im)); | 
|  | 619 | memset(msg, 0, sizeof(*msg)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 621 | im->im_type = IDMAP_TYPE_GROUP; | 
|  | 622 | token = match_token(desc, nfs_idmap_tokens, &substr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 624 | switch (token) { | 
|  | 625 | case Opt_find_uid: | 
|  | 626 | im->im_type = IDMAP_TYPE_USER; | 
|  | 627 | case Opt_find_gid: | 
|  | 628 | im->im_conv = IDMAP_CONV_NAMETOID; | 
|  | 629 | ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ); | 
|  | 630 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 632 | case Opt_find_user: | 
|  | 633 | im->im_type = IDMAP_TYPE_USER; | 
|  | 634 | case Opt_find_group: | 
|  | 635 | im->im_conv = IDMAP_CONV_IDTONAME; | 
|  | 636 | ret = match_int(&substr, &im->im_id); | 
|  | 637 | break; | 
| Trond Myklebust | 685f50f | 2012-02-08 13:39:15 -0500 | [diff] [blame] | 638 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 639 | default: | 
|  | 640 | ret = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | goto out; | 
|  | 642 | } | 
|  | 643 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 644 | msg->data = im; | 
|  | 645 | msg->len  = sizeof(struct idmap_msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 647 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | return ret; | 
|  | 649 | } | 
|  | 650 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 651 | static int nfs_idmap_legacy_upcall(struct key_construction *cons, | 
|  | 652 | const char *op, | 
|  | 653 | void *aux) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | { | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 655 | struct rpc_pipe_msg *msg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | struct idmap_msg *im; | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 657 | struct idmap *idmap = (struct idmap *)aux; | 
|  | 658 | struct key *key = cons->key; | 
| Dan Carpenter | 5abc03c | 2012-05-14 22:45:28 +0300 | [diff] [blame] | 659 | int ret = -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 661 | /* msg and im are freed in idmap_pipe_destroy_msg */ | 
|  | 662 | msg = kmalloc(sizeof(*msg), GFP_KERNEL); | 
| Dan Carpenter | 5abc03c | 2012-05-14 22:45:28 +0300 | [diff] [blame] | 663 | if (!msg) | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 664 | goto out0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 666 | im = kmalloc(sizeof(*im), GFP_KERNEL); | 
| Dan Carpenter | 5abc03c | 2012-05-14 22:45:28 +0300 | [diff] [blame] | 667 | if (!im) | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 668 | goto out1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 670 | ret = nfs_idmap_prepare_message(key->description, im, msg); | 
|  | 671 | if (ret < 0) | 
|  | 672 | goto out2; | 
| 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 | idmap->idmap_key_cons = cons; | 
|  | 675 |  | 
| Bryan Schumaker | 11588f4 | 2012-03-12 11:33:00 -0400 | [diff] [blame] | 676 | ret = rpc_queue_upcall(idmap->idmap_pipe, msg); | 
|  | 677 | if (ret < 0) | 
|  | 678 | goto out2; | 
|  | 679 |  | 
|  | 680 | return ret; | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 681 |  | 
|  | 682 | out2: | 
|  | 683 | kfree(im); | 
|  | 684 | out1: | 
|  | 685 | kfree(msg); | 
|  | 686 | out0: | 
| Bryan Schumaker | 11588f4 | 2012-03-12 11:33:00 -0400 | [diff] [blame] | 687 | key_revoke(cons->key); | 
|  | 688 | key_revoke(cons->authkey); | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 689 | return ret; | 
|  | 690 | } | 
|  | 691 |  | 
|  | 692 | static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data) | 
|  | 693 | { | 
|  | 694 | return key_instantiate_and_link(key, data, strlen(data) + 1, | 
|  | 695 | id_resolver_cache->thread_keyring, | 
|  | 696 | authkey); | 
|  | 697 | } | 
|  | 698 |  | 
|  | 699 | static int nfs_idmap_read_message(struct idmap_msg *im, struct key *key, struct key *authkey) | 
|  | 700 | { | 
|  | 701 | char id_str[NFS_UINT_MAXLEN]; | 
|  | 702 | int ret = -EINVAL; | 
|  | 703 |  | 
|  | 704 | switch (im->im_conv) { | 
|  | 705 | case IDMAP_CONV_NAMETOID: | 
|  | 706 | sprintf(id_str, "%d", im->im_id); | 
|  | 707 | ret = nfs_idmap_instantiate(key, authkey, id_str); | 
|  | 708 | break; | 
|  | 709 | case IDMAP_CONV_IDTONAME: | 
|  | 710 | ret = nfs_idmap_instantiate(key, authkey, im->im_name); | 
|  | 711 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } | 
|  | 713 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | return ret; | 
|  | 715 | } | 
|  | 716 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | static ssize_t | 
|  | 718 | idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) | 
|  | 719 | { | 
| Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 720 | struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | struct idmap *idmap = (struct idmap *)rpci->private; | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 722 | struct key_construction *cons = idmap->idmap_key_cons; | 
|  | 723 | struct idmap_msg im; | 
| Chuck Lever | d24aae4 | 2007-12-20 14:54:49 -0500 | [diff] [blame] | 724 | size_t namelen_in; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | int ret; | 
|  | 726 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 727 | if (mlen != sizeof(im)) { | 
|  | 728 | ret = -ENOSPC; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | goto out; | 
|  | 730 | } | 
|  | 731 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 732 | if (copy_from_user(&im, src, mlen) != 0) { | 
|  | 733 | ret = -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | goto out; | 
|  | 735 | } | 
|  | 736 |  | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 737 | if (!(im.im_status & IDMAP_STATUS_SUCCESS)) { | 
|  | 738 | ret = mlen; | 
|  | 739 | complete_request_key(idmap->idmap_key_cons, -ENOKEY); | 
|  | 740 | goto out_incomplete; | 
|  | 741 | } | 
|  | 742 |  | 
|  | 743 | namelen_in = strnlen(im.im_name, IDMAP_NAMESZ); | 
|  | 744 | if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) { | 
|  | 745 | ret = -EINVAL; | 
|  | 746 | goto out; | 
|  | 747 | } | 
|  | 748 |  | 
|  | 749 | ret = nfs_idmap_read_message(&im, cons->key, cons->authkey); | 
|  | 750 | if (ret >= 0) { | 
|  | 751 | key_set_timeout(cons->key, nfs_idmap_cache_timeout); | 
|  | 752 | ret = mlen; | 
|  | 753 | } | 
|  | 754 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | out: | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 756 | complete_request_key(idmap->idmap_key_cons, ret); | 
|  | 757 | out_incomplete: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | return ret; | 
|  | 759 | } | 
|  | 760 |  | 
| Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 761 | static void | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg) | 
|  | 763 | { | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 764 | /* Free memory allocated in nfs_idmap_legacy_upcall() */ | 
|  | 765 | kfree(msg->data); | 
|  | 766 | kfree(msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } | 
|  | 768 |  | 
| Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 769 | int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *uid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | { | 
| Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 771 | struct idmap *idmap = server->nfs_client->cl_idmap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 |  | 
| Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 773 | if (nfs_map_string_to_numeric(name, namelen, uid)) | 
|  | 774 | return 0; | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 775 | return nfs_idmap_lookup_id(name, namelen, "uid", uid, idmap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } | 
|  | 777 |  | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 778 | int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *gid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | { | 
| Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 780 | struct idmap *idmap = server->nfs_client->cl_idmap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 |  | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 782 | if (nfs_map_string_to_numeric(name, namelen, gid)) | 
| Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 783 | return 0; | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 784 | return nfs_idmap_lookup_id(name, namelen, "gid", gid, idmap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } | 
|  | 786 |  | 
| Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 787 | int nfs_map_uid_to_name(const struct nfs_server *server, __u32 uid, char *buf, size_t buflen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { | 
| Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 789 | struct idmap *idmap = server->nfs_client->cl_idmap; | 
| Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 790 | int ret = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 |  | 
| Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 792 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 793 | ret = nfs_idmap_lookup_name(uid, "user", buf, buflen, idmap); | 
| Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 794 | if (ret < 0) | 
|  | 795 | ret = nfs_map_numeric_to_string(uid, buf, buflen); | 
|  | 796 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | } | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 798 | int nfs_map_gid_to_group(const struct nfs_server *server, __u32 gid, char *buf, size_t buflen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { | 
| Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 800 | struct idmap *idmap = server->nfs_client->cl_idmap; | 
| Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 801 | int ret = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 |  | 
| Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 803 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) | 
| Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 804 | ret = nfs_idmap_lookup_name(gid, "group", buf, buflen, idmap); | 
| Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 805 | if (ret < 0) | 
| Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 806 | ret = nfs_map_numeric_to_string(gid, buf, buflen); | 
| Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 807 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | } |