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> |
| 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 | |
| 203 | cred->thread_keyring = keyring; |
| 204 | cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; |
| 205 | id_resolver_cache = cred; |
| 206 | return 0; |
| 207 | |
| 208 | failed_put_key: |
| 209 | key_put(keyring); |
| 210 | failed_put_cred: |
| 211 | put_cred(cred); |
| 212 | return ret; |
| 213 | } |
| 214 | |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 215 | static void nfs_idmap_quit_keyring(void) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 216 | { |
| 217 | key_revoke(id_resolver_cache->thread_keyring); |
| 218 | unregister_key_type(&key_type_id_resolver); |
| 219 | put_cred(id_resolver_cache); |
| 220 | } |
| 221 | |
| 222 | /* |
| 223 | * Assemble the description to pass to request_key() |
| 224 | * This function will allocate a new string and update dest to point |
| 225 | * at it. The caller is responsible for freeing dest. |
| 226 | * |
| 227 | * On error 0 is returned. Otherwise, the length of dest is returned. |
| 228 | */ |
| 229 | static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen, |
| 230 | const char *type, size_t typelen, char **desc) |
| 231 | { |
| 232 | char *cp; |
| 233 | size_t desclen = typelen + namelen + 2; |
| 234 | |
| 235 | *desc = kmalloc(desclen, GFP_KERNEL); |
Dan Carpenter | 8f0d97b | 2010-10-28 08:05:57 +0200 | [diff] [blame] | 236 | if (!*desc) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 237 | return -ENOMEM; |
| 238 | |
| 239 | cp = *desc; |
| 240 | memcpy(cp, type, typelen); |
| 241 | cp += typelen; |
| 242 | *cp++ = ':'; |
| 243 | |
| 244 | memcpy(cp, name, namelen); |
| 245 | cp += namelen; |
| 246 | *cp = '\0'; |
| 247 | return desclen; |
| 248 | } |
| 249 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 250 | static ssize_t nfs_idmap_request_key(struct key_type *key_type, |
| 251 | const char *name, size_t namelen, |
| 252 | const char *type, void *data, |
| 253 | size_t data_size, struct idmap *idmap) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 254 | { |
| 255 | const struct cred *saved_cred; |
| 256 | struct key *rkey; |
| 257 | char *desc; |
| 258 | struct user_key_payload *payload; |
| 259 | ssize_t ret; |
| 260 | |
| 261 | ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc); |
| 262 | if (ret <= 0) |
| 263 | goto out; |
| 264 | |
| 265 | saved_cred = override_creds(id_resolver_cache); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 266 | if (idmap) |
| 267 | rkey = request_key_with_auxdata(key_type, desc, "", 0, idmap); |
| 268 | else |
| 269 | rkey = request_key(&key_type_id_resolver, desc, ""); |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 270 | revert_creds(saved_cred); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 271 | |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 272 | kfree(desc); |
| 273 | if (IS_ERR(rkey)) { |
| 274 | ret = PTR_ERR(rkey); |
| 275 | goto out; |
| 276 | } |
| 277 | |
| 278 | rcu_read_lock(); |
| 279 | rkey->perm |= KEY_USR_VIEW; |
| 280 | |
| 281 | ret = key_validate(rkey); |
| 282 | if (ret < 0) |
| 283 | goto out_up; |
| 284 | |
| 285 | payload = rcu_dereference(rkey->payload.data); |
| 286 | if (IS_ERR_OR_NULL(payload)) { |
| 287 | ret = PTR_ERR(payload); |
| 288 | goto out_up; |
| 289 | } |
| 290 | |
| 291 | ret = payload->datalen; |
| 292 | if (ret > 0 && ret <= data_size) |
| 293 | memcpy(data, payload->data, ret); |
| 294 | else |
| 295 | ret = -EINVAL; |
| 296 | |
| 297 | out_up: |
| 298 | rcu_read_unlock(); |
| 299 | key_put(rkey); |
| 300 | out: |
| 301 | return ret; |
| 302 | } |
| 303 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 304 | static ssize_t nfs_idmap_get_key(const char *name, size_t namelen, |
| 305 | const char *type, void *data, |
| 306 | size_t data_size, struct idmap *idmap) |
| 307 | { |
| 308 | ssize_t ret = nfs_idmap_request_key(&key_type_id_resolver, |
| 309 | name, namelen, type, data, |
| 310 | data_size, NULL); |
| 311 | if (ret < 0) { |
| 312 | ret = nfs_idmap_request_key(&key_type_id_resolver_legacy, |
| 313 | name, namelen, type, data, |
| 314 | data_size, idmap); |
| 315 | } |
| 316 | return ret; |
| 317 | } |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 318 | |
| 319 | /* ID -> Name */ |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 320 | static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf, |
| 321 | size_t buflen, struct idmap *idmap) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 322 | { |
| 323 | char id_str[NFS_UINT_MAXLEN]; |
| 324 | int id_len; |
| 325 | ssize_t ret; |
| 326 | |
| 327 | id_len = snprintf(id_str, sizeof(id_str), "%u", id); |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 328 | 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] | 329 | if (ret < 0) |
| 330 | return -EINVAL; |
| 331 | return ret; |
| 332 | } |
| 333 | |
| 334 | /* Name -> ID */ |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 335 | static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type, |
| 336 | __u32 *id, struct idmap *idmap) |
Bryan Schumaker | 955a857 | 2010-09-29 15:41:49 -0400 | [diff] [blame] | 337 | { |
| 338 | char id_str[NFS_UINT_MAXLEN]; |
| 339 | long id_long; |
| 340 | ssize_t data_size; |
| 341 | int ret = 0; |
| 342 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 343 | 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] | 344 | if (data_size <= 0) { |
| 345 | ret = -EINVAL; |
| 346 | } else { |
| 347 | ret = strict_strtol(id_str, 10, &id_long); |
| 348 | *id = (__u32)id_long; |
| 349 | } |
| 350 | return ret; |
| 351 | } |
| 352 | |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 353 | /* idmap classic begins here */ |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 354 | module_param(nfs_idmap_cache_timeout, int, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | struct idmap { |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 357 | struct rpc_pipe *idmap_pipe; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 358 | struct key_construction *idmap_key_cons; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | }; |
| 360 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 361 | enum { |
| 362 | Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err |
| 363 | }; |
| 364 | |
| 365 | static const match_table_t nfs_idmap_tokens = { |
| 366 | { Opt_find_uid, "uid:%s" }, |
| 367 | { Opt_find_gid, "gid:%s" }, |
| 368 | { Opt_find_user, "user:%s" }, |
| 369 | { Opt_find_group, "group:%s" }, |
| 370 | { Opt_find_err, NULL } |
| 371 | }; |
| 372 | |
| 373 | static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *); |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 374 | static ssize_t idmap_pipe_downcall(struct file *, const char __user *, |
| 375 | size_t); |
| 376 | static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Trond Myklebust | b693ba4 | 2009-08-09 15:14:15 -0400 | [diff] [blame] | 378 | static const struct rpc_pipe_ops idmap_upcall_ops = { |
Peng Tao | c122515 | 2011-09-22 21:50:10 -0400 | [diff] [blame] | 379 | .upcall = rpc_pipe_generic_upcall, |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 380 | .downcall = idmap_pipe_downcall, |
| 381 | .destroy_msg = idmap_pipe_destroy_msg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | }; |
| 383 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame^] | 384 | static struct key_type key_type_id_resolver_legacy = { |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 385 | .name = "id_resolver", |
| 386 | .instantiate = user_instantiate, |
| 387 | .match = user_match, |
| 388 | .revoke = user_revoke, |
| 389 | .destroy = user_destroy, |
| 390 | .describe = user_describe, |
| 391 | .read = user_read, |
| 392 | .request_key = nfs_idmap_legacy_upcall, |
| 393 | }; |
| 394 | |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 395 | static void __nfs_idmap_unregister(struct rpc_pipe *pipe) |
| 396 | { |
| 397 | if (pipe->dentry) |
| 398 | rpc_unlink(pipe->dentry); |
| 399 | } |
| 400 | |
| 401 | static int __nfs_idmap_register(struct dentry *dir, |
| 402 | struct idmap *idmap, |
| 403 | struct rpc_pipe *pipe) |
| 404 | { |
| 405 | struct dentry *dentry; |
| 406 | |
| 407 | dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe); |
| 408 | if (IS_ERR(dentry)) |
| 409 | return PTR_ERR(dentry); |
| 410 | pipe->dentry = dentry; |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | static void nfs_idmap_unregister(struct nfs_client *clp, |
| 415 | struct rpc_pipe *pipe) |
| 416 | { |
| 417 | struct net *net = clp->net; |
| 418 | struct super_block *pipefs_sb; |
| 419 | |
| 420 | pipefs_sb = rpc_get_sb_net(net); |
| 421 | if (pipefs_sb) { |
| 422 | __nfs_idmap_unregister(pipe); |
| 423 | rpc_put_sb_net(net); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | static int nfs_idmap_register(struct nfs_client *clp, |
| 428 | struct idmap *idmap, |
| 429 | struct rpc_pipe *pipe) |
| 430 | { |
| 431 | struct net *net = clp->net; |
| 432 | struct super_block *pipefs_sb; |
| 433 | int err = 0; |
| 434 | |
| 435 | pipefs_sb = rpc_get_sb_net(net); |
| 436 | if (pipefs_sb) { |
| 437 | if (clp->cl_rpcclient->cl_dentry) |
| 438 | err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry, |
| 439 | idmap, pipe); |
| 440 | rpc_put_sb_net(net); |
| 441 | } |
| 442 | return err; |
| 443 | } |
| 444 | |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 445 | int |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 446 | nfs_idmap_new(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | { |
| 448 | struct idmap *idmap; |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 449 | struct rpc_pipe *pipe; |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 450 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 452 | BUG_ON(clp->cl_idmap != NULL); |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 453 | |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 454 | idmap = kzalloc(sizeof(*idmap), GFP_KERNEL); |
| 455 | if (idmap == NULL) |
| 456 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 458 | pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0); |
| 459 | if (IS_ERR(pipe)) { |
| 460 | error = PTR_ERR(pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | kfree(idmap); |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 462 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | } |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 464 | error = nfs_idmap_register(clp, idmap, pipe); |
| 465 | if (error) { |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 466 | rpc_destroy_pipe_data(pipe); |
| 467 | kfree(idmap); |
| 468 | return error; |
| 469 | } |
| 470 | idmap->idmap_pipe = pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
| 472 | clp->cl_idmap = idmap; |
David Howells | b716279 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 473 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | void |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 477 | nfs_idmap_delete(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
| 479 | struct idmap *idmap = clp->cl_idmap; |
| 480 | |
| 481 | if (!idmap) |
| 482 | return; |
Stanislav Kinsbursky | 4929d1d | 2012-01-10 16:13:11 +0400 | [diff] [blame] | 483 | nfs_idmap_unregister(clp, idmap->idmap_pipe); |
Stanislav Kinsbursky | c239d83 | 2011-12-26 15:44:06 +0300 | [diff] [blame] | 484 | rpc_destroy_pipe_data(idmap->idmap_pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | clp->cl_idmap = NULL; |
| 486 | kfree(idmap); |
| 487 | } |
| 488 | |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 489 | static int __rpc_pipefs_event(struct nfs_client *clp, unsigned long event, |
| 490 | struct super_block *sb) |
| 491 | { |
| 492 | int err = 0; |
| 493 | |
| 494 | switch (event) { |
| 495 | case RPC_PIPEFS_MOUNT: |
| 496 | BUG_ON(clp->cl_rpcclient->cl_dentry == NULL); |
| 497 | err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry, |
| 498 | clp->cl_idmap, |
| 499 | clp->cl_idmap->idmap_pipe); |
| 500 | break; |
| 501 | case RPC_PIPEFS_UMOUNT: |
| 502 | if (clp->cl_idmap->idmap_pipe) { |
| 503 | struct dentry *parent; |
| 504 | |
| 505 | parent = clp->cl_idmap->idmap_pipe->dentry->d_parent; |
| 506 | __nfs_idmap_unregister(clp->cl_idmap->idmap_pipe); |
| 507 | /* |
| 508 | * Note: This is a dirty hack. SUNRPC hook has been |
| 509 | * called already but simple_rmdir() call for the |
| 510 | * directory returned with error because of idmap pipe |
| 511 | * inside. Thus now we have to remove this directory |
| 512 | * here. |
| 513 | */ |
| 514 | if (rpc_rmdir(parent)) |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 515 | printk(KERN_ERR "NFS: %s: failed to remove " |
| 516 | "clnt dir!\n", __func__); |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 517 | } |
| 518 | break; |
| 519 | default: |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 520 | printk(KERN_ERR "NFS: %s: unknown event: %ld\n", __func__, |
| 521 | event); |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 522 | return -ENOTSUPP; |
| 523 | } |
| 524 | return err; |
| 525 | } |
| 526 | |
Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 527 | static struct nfs_client *nfs_get_client_for_event(struct net *net, int event) |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 528 | { |
Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 529 | struct nfs_net *nn = net_generic(net, nfs_net_id); |
| 530 | struct dentry *cl_dentry; |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 531 | struct nfs_client *clp; |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 532 | |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 533 | spin_lock(&nn->nfs_client_lock); |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 534 | list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) { |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 535 | if (clp->rpc_ops != &nfs_v4_clientops) |
| 536 | continue; |
Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 537 | cl_dentry = clp->cl_idmap->idmap_pipe->dentry; |
| 538 | if (((event == RPC_PIPEFS_MOUNT) && cl_dentry) || |
| 539 | ((event == RPC_PIPEFS_UMOUNT) && !cl_dentry)) |
| 540 | continue; |
| 541 | atomic_inc(&clp->cl_count); |
| 542 | spin_unlock(&nn->nfs_client_lock); |
| 543 | return clp; |
| 544 | } |
| 545 | spin_unlock(&nn->nfs_client_lock); |
| 546 | return NULL; |
| 547 | } |
| 548 | |
| 549 | static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event, |
| 550 | void *ptr) |
| 551 | { |
| 552 | struct super_block *sb = ptr; |
| 553 | struct nfs_client *clp; |
| 554 | int error = 0; |
| 555 | |
| 556 | while ((clp = nfs_get_client_for_event(sb->s_fs_info, event))) { |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 557 | error = __rpc_pipefs_event(clp, event, sb); |
Stanislav Kinsbursky | e9dbca8 | 2012-02-27 22:05:37 +0400 | [diff] [blame] | 558 | nfs_put_client(clp); |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 559 | if (error) |
| 560 | break; |
| 561 | } |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 562 | return error; |
| 563 | } |
| 564 | |
| 565 | #define PIPEFS_NFS_PRIO 1 |
| 566 | |
| 567 | static struct notifier_block nfs_idmap_block = { |
| 568 | .notifier_call = rpc_pipefs_event, |
| 569 | .priority = SUNRPC_PIPEFS_NFS_PRIO, |
| 570 | }; |
| 571 | |
| 572 | int nfs_idmap_init(void) |
| 573 | { |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 574 | int ret; |
| 575 | ret = nfs_idmap_init_keyring(); |
| 576 | if (ret != 0) |
| 577 | goto out; |
| 578 | ret = rpc_pipefs_notifier_register(&nfs_idmap_block); |
| 579 | if (ret != 0) |
| 580 | nfs_idmap_quit_keyring(); |
| 581 | out: |
| 582 | return ret; |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | void nfs_idmap_quit(void) |
| 586 | { |
| 587 | rpc_pipefs_notifier_unregister(&nfs_idmap_block); |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 588 | nfs_idmap_quit_keyring(); |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 589 | } |
| 590 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 591 | static int nfs_idmap_prepare_message(char *desc, struct idmap_msg *im, |
| 592 | struct rpc_pipe_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 594 | substring_t substr; |
| 595 | int token, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 597 | memset(im, 0, sizeof(*im)); |
| 598 | memset(msg, 0, sizeof(*msg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 600 | im->im_type = IDMAP_TYPE_GROUP; |
| 601 | token = match_token(desc, nfs_idmap_tokens, &substr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 603 | switch (token) { |
| 604 | case Opt_find_uid: |
| 605 | im->im_type = IDMAP_TYPE_USER; |
| 606 | case Opt_find_gid: |
| 607 | im->im_conv = IDMAP_CONV_NAMETOID; |
| 608 | ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ); |
| 609 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 611 | case Opt_find_user: |
| 612 | im->im_type = IDMAP_TYPE_USER; |
| 613 | case Opt_find_group: |
| 614 | im->im_conv = IDMAP_CONV_IDTONAME; |
| 615 | ret = match_int(&substr, &im->im_id); |
| 616 | break; |
Trond Myklebust | 685f50f | 2012-02-08 13:39:15 -0500 | [diff] [blame] | 617 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 618 | default: |
| 619 | ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | goto out; |
| 621 | } |
| 622 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 623 | msg->data = im; |
| 624 | msg->len = sizeof(struct idmap_msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 626 | out: |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 627 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | } |
| 629 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 630 | static int nfs_idmap_legacy_upcall(struct key_construction *cons, |
| 631 | const char *op, |
| 632 | void *aux) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | { |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 634 | struct rpc_pipe_msg *msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | struct idmap_msg *im; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 636 | struct idmap *idmap = (struct idmap *)aux; |
| 637 | struct key *key = cons->key; |
| 638 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 640 | /* msg and im are freed in idmap_pipe_destroy_msg */ |
| 641 | msg = kmalloc(sizeof(*msg), GFP_KERNEL); |
| 642 | if (IS_ERR(msg)) { |
| 643 | ret = PTR_ERR(msg); |
| 644 | goto out0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 647 | im = kmalloc(sizeof(*im), GFP_KERNEL); |
| 648 | if (IS_ERR(im)) { |
| 649 | ret = PTR_ERR(im); |
| 650 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
| 652 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 653 | ret = nfs_idmap_prepare_message(key->description, im, msg); |
| 654 | if (ret < 0) |
| 655 | goto out2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 657 | idmap->idmap_key_cons = cons; |
| 658 | |
| 659 | return rpc_queue_upcall(idmap->idmap_pipe, msg); |
| 660 | |
| 661 | out2: |
| 662 | kfree(im); |
| 663 | out1: |
| 664 | kfree(msg); |
| 665 | out0: |
| 666 | complete_request_key(cons, ret); |
| 667 | return ret; |
| 668 | } |
| 669 | |
| 670 | static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data) |
| 671 | { |
| 672 | return key_instantiate_and_link(key, data, strlen(data) + 1, |
| 673 | id_resolver_cache->thread_keyring, |
| 674 | authkey); |
| 675 | } |
| 676 | |
| 677 | static int nfs_idmap_read_message(struct idmap_msg *im, struct key *key, struct key *authkey) |
| 678 | { |
| 679 | char id_str[NFS_UINT_MAXLEN]; |
| 680 | int ret = -EINVAL; |
| 681 | |
| 682 | switch (im->im_conv) { |
| 683 | case IDMAP_CONV_NAMETOID: |
| 684 | sprintf(id_str, "%d", im->im_id); |
| 685 | ret = nfs_idmap_instantiate(key, authkey, id_str); |
| 686 | break; |
| 687 | case IDMAP_CONV_IDTONAME: |
| 688 | ret = nfs_idmap_instantiate(key, authkey, im->im_name); |
| 689 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | } |
| 691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | return ret; |
| 693 | } |
| 694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | static ssize_t |
| 696 | idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) |
| 697 | { |
Chuck Lever | 369af0f | 2007-12-20 14:54:35 -0500 | [diff] [blame] | 698 | struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | struct idmap *idmap = (struct idmap *)rpci->private; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 700 | struct key_construction *cons = idmap->idmap_key_cons; |
| 701 | struct idmap_msg im; |
Chuck Lever | d24aae4 | 2007-12-20 14:54:49 -0500 | [diff] [blame] | 702 | size_t namelen_in; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | int ret; |
| 704 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 705 | if (mlen != sizeof(im)) { |
| 706 | ret = -ENOSPC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | goto out; |
| 708 | } |
| 709 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 710 | if (copy_from_user(&im, src, mlen) != 0) { |
| 711 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | goto out; |
| 713 | } |
| 714 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 715 | if (!(im.im_status & IDMAP_STATUS_SUCCESS)) { |
| 716 | ret = mlen; |
| 717 | complete_request_key(idmap->idmap_key_cons, -ENOKEY); |
| 718 | goto out_incomplete; |
| 719 | } |
| 720 | |
| 721 | namelen_in = strnlen(im.im_name, IDMAP_NAMESZ); |
| 722 | if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) { |
| 723 | ret = -EINVAL; |
| 724 | goto out; |
| 725 | } |
| 726 | |
| 727 | ret = nfs_idmap_read_message(&im, cons->key, cons->authkey); |
| 728 | if (ret >= 0) { |
| 729 | key_set_timeout(cons->key, nfs_idmap_cache_timeout); |
| 730 | ret = mlen; |
| 731 | } |
| 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | out: |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 734 | complete_request_key(idmap->idmap_key_cons, ret); |
| 735 | out_incomplete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | return ret; |
| 737 | } |
| 738 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 739 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg) |
| 741 | { |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 742 | /* Free memory allocated in nfs_idmap_legacy_upcall() */ |
| 743 | kfree(msg->data); |
| 744 | kfree(msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 746 | |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 747 | 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] | 748 | { |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 749 | struct idmap *idmap = server->nfs_client->cl_idmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 751 | if (nfs_map_string_to_numeric(name, namelen, uid)) |
| 752 | return 0; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 753 | return nfs_idmap_lookup_id(name, namelen, "uid", uid, idmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
| 755 | |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 756 | 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] | 757 | { |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 758 | struct idmap *idmap = server->nfs_client->cl_idmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 760 | if (nfs_map_string_to_numeric(name, namelen, gid)) |
Trond Myklebust | 5cf36cf | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 761 | return 0; |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 762 | return nfs_idmap_lookup_id(name, namelen, "gid", gid, idmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | } |
| 764 | |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 765 | 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] | 766 | { |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 767 | struct idmap *idmap = server->nfs_client->cl_idmap; |
Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 768 | int ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 770 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) |
| 771 | ret = nfs_idmap_lookup_name(uid, "user", buf, buflen, idmap); |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 772 | if (ret < 0) |
| 773 | ret = nfs_map_numeric_to_string(uid, buf, buflen); |
| 774 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | } |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 776 | 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] | 777 | { |
Trond Myklebust | e4fd72a | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 778 | struct idmap *idmap = server->nfs_client->cl_idmap; |
Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 779 | int ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Bryan Schumaker | 57e6232 | 2012-02-24 14:14:51 -0500 | [diff] [blame] | 781 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) |
| 782 | ret = nfs_idmap_lookup_name(gid, "group", buf, buflen, idmap); |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 783 | if (ret < 0) |
Bryan Schumaker | e6499c6 | 2012-01-26 16:54:23 -0500 | [diff] [blame] | 784 | ret = nfs_map_numeric_to_string(gid, buf, buflen); |
Trond Myklebust | f0b8516 | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 785 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |