]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
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 <[email protected]> | |
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 | */ | |
5cf36cfd | 36 | #include <linux/types.h> |
57e62324 BS |
37 | #include <linux/parser.h> |
38 | #include <linux/fs.h> | |
e44ba033 | 39 | #include <linux/nfs_idmap.h> |
57e62324 BS |
40 | #include <net/net_namespace.h> |
41 | #include <linux/sunrpc/rpc_pipe_fs.h> | |
6926afd1 | 42 | #include <linux/nfs_fs.h> |
3cd0f37a | 43 | #include <linux/nfs_fs_sb.h> |
57e62324 | 44 | #include <linux/key.h> |
3cd0f37a BS |
45 | #include <linux/keyctl.h> |
46 | #include <linux/key-type.h> | |
3cd0f37a | 47 | #include <keys/user-type.h> |
3cd0f37a | 48 | #include <linux/module.h> |
57e62324 | 49 | |
3cd0f37a | 50 | #include "internal.h" |
17347d03 | 51 | #include "netns.h" |
3cd0f37a BS |
52 | |
53 | #define NFS_UINT_MAXLEN 11 | |
3cd0f37a | 54 | |
17280175 TM |
55 | static const struct cred *id_resolver_cache; |
56 | static struct key_type key_type_id_resolver_legacy; | |
3cd0f37a | 57 | |
c5066945 BS |
58 | struct idmap_legacy_upcalldata { |
59 | struct rpc_pipe_msg pipe_msg; | |
60 | struct idmap_msg idmap_msg; | |
0cac1202 | 61 | struct key_construction *key_cons; |
c5066945 BS |
62 | struct idmap *idmap; |
63 | }; | |
64 | ||
0cac1202 TM |
65 | struct idmap { |
66 | struct rpc_pipe *idmap_pipe; | |
67 | struct idmap_legacy_upcalldata *idmap_upcall_data; | |
68 | struct mutex idmap_mutex; | |
69 | }; | |
70 | ||
6926afd1 TM |
71 | /** |
72 | * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields | |
73 | * @fattr: fully initialised struct nfs_fattr | |
74 | * @owner_name: owner name string cache | |
75 | * @group_name: group name string cache | |
76 | */ | |
77 | void nfs_fattr_init_names(struct nfs_fattr *fattr, | |
78 | struct nfs4_string *owner_name, | |
79 | struct nfs4_string *group_name) | |
80 | { | |
81 | fattr->owner_name = owner_name; | |
82 | fattr->group_name = group_name; | |
83 | } | |
84 | ||
85 | static void nfs_fattr_free_owner_name(struct nfs_fattr *fattr) | |
86 | { | |
87 | fattr->valid &= ~NFS_ATTR_FATTR_OWNER_NAME; | |
88 | kfree(fattr->owner_name->data); | |
89 | } | |
90 | ||
91 | static void nfs_fattr_free_group_name(struct nfs_fattr *fattr) | |
92 | { | |
93 | fattr->valid &= ~NFS_ATTR_FATTR_GROUP_NAME; | |
94 | kfree(fattr->group_name->data); | |
95 | } | |
96 | ||
97 | static bool nfs_fattr_map_owner_name(struct nfs_server *server, struct nfs_fattr *fattr) | |
98 | { | |
99 | struct nfs4_string *owner = fattr->owner_name; | |
100 | __u32 uid; | |
101 | ||
102 | if (!(fattr->valid & NFS_ATTR_FATTR_OWNER_NAME)) | |
103 | return false; | |
104 | if (nfs_map_name_to_uid(server, owner->data, owner->len, &uid) == 0) { | |
105 | fattr->uid = uid; | |
106 | fattr->valid |= NFS_ATTR_FATTR_OWNER; | |
107 | } | |
108 | return true; | |
109 | } | |
110 | ||
111 | static bool nfs_fattr_map_group_name(struct nfs_server *server, struct nfs_fattr *fattr) | |
112 | { | |
113 | struct nfs4_string *group = fattr->group_name; | |
114 | __u32 gid; | |
115 | ||
116 | if (!(fattr->valid & NFS_ATTR_FATTR_GROUP_NAME)) | |
117 | return false; | |
118 | if (nfs_map_group_to_gid(server, group->data, group->len, &gid) == 0) { | |
119 | fattr->gid = gid; | |
120 | fattr->valid |= NFS_ATTR_FATTR_GROUP; | |
121 | } | |
122 | return true; | |
123 | } | |
124 | ||
125 | /** | |
126 | * nfs_fattr_free_names - free up the NFSv4 owner and group strings | |
127 | * @fattr: a fully initialised nfs_fattr structure | |
128 | */ | |
129 | void nfs_fattr_free_names(struct nfs_fattr *fattr) | |
130 | { | |
131 | if (fattr->valid & NFS_ATTR_FATTR_OWNER_NAME) | |
132 | nfs_fattr_free_owner_name(fattr); | |
133 | if (fattr->valid & NFS_ATTR_FATTR_GROUP_NAME) | |
134 | nfs_fattr_free_group_name(fattr); | |
135 | } | |
136 | ||
137 | /** | |
138 | * nfs_fattr_map_and_free_names - map owner/group strings into uid/gid and free | |
139 | * @server: pointer to the filesystem nfs_server structure | |
140 | * @fattr: a fully initialised nfs_fattr structure | |
141 | * | |
142 | * This helper maps the cached NFSv4 owner/group strings in fattr into | |
143 | * their numeric uid/gid equivalents, and then frees the cached strings. | |
144 | */ | |
145 | void nfs_fattr_map_and_free_names(struct nfs_server *server, struct nfs_fattr *fattr) | |
146 | { | |
147 | if (nfs_fattr_map_owner_name(server, fattr)) | |
148 | nfs_fattr_free_owner_name(fattr); | |
149 | if (nfs_fattr_map_group_name(server, fattr)) | |
150 | nfs_fattr_free_group_name(fattr); | |
151 | } | |
5cf36cfd TM |
152 | |
153 | static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res) | |
154 | { | |
155 | unsigned long val; | |
156 | char buf[16]; | |
157 | ||
158 | if (memchr(name, '@', namelen) != NULL || namelen >= sizeof(buf)) | |
159 | return 0; | |
160 | memcpy(buf, name, namelen); | |
161 | buf[namelen] = '\0'; | |
7297cb68 | 162 | if (kstrtoul(buf, 0, &val) != 0) |
5cf36cfd TM |
163 | return 0; |
164 | *res = val; | |
165 | return 1; | |
166 | } | |
1da177e4 | 167 | |
f0b85168 TM |
168 | static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen) |
169 | { | |
170 | return snprintf(buf, buflen, "%u", id); | |
171 | } | |
172 | ||
17280175 | 173 | static struct key_type key_type_id_resolver = { |
955a857e BS |
174 | .name = "id_resolver", |
175 | .instantiate = user_instantiate, | |
176 | .match = user_match, | |
177 | .revoke = user_revoke, | |
178 | .destroy = user_destroy, | |
179 | .describe = user_describe, | |
180 | .read = user_read, | |
181 | }; | |
182 | ||
e6499c6f | 183 | static int nfs_idmap_init_keyring(void) |
955a857e BS |
184 | { |
185 | struct cred *cred; | |
186 | struct key *keyring; | |
187 | int ret = 0; | |
188 | ||
f9fd2d9c WAA |
189 | printk(KERN_NOTICE "NFS: Registering the %s key type\n", |
190 | key_type_id_resolver.name); | |
955a857e BS |
191 | |
192 | cred = prepare_kernel_cred(NULL); | |
193 | if (!cred) | |
194 | return -ENOMEM; | |
195 | ||
f8aa23a5 DH |
196 | keyring = keyring_alloc(".id_resolver", 0, 0, cred, |
197 | (KEY_POS_ALL & ~KEY_POS_SETATTR) | | |
198 | KEY_USR_VIEW | KEY_USR_READ, | |
199 | KEY_ALLOC_NOT_IN_QUOTA, NULL); | |
955a857e BS |
200 | if (IS_ERR(keyring)) { |
201 | ret = PTR_ERR(keyring); | |
202 | goto failed_put_cred; | |
203 | } | |
204 | ||
955a857e BS |
205 | ret = register_key_type(&key_type_id_resolver); |
206 | if (ret < 0) | |
207 | goto failed_put_key; | |
208 | ||
a427b9ec DH |
209 | ret = register_key_type(&key_type_id_resolver_legacy); |
210 | if (ret < 0) | |
211 | goto failed_reg_legacy; | |
212 | ||
700920eb | 213 | set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags); |
955a857e BS |
214 | cred->thread_keyring = keyring; |
215 | cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; | |
216 | id_resolver_cache = cred; | |
217 | return 0; | |
218 | ||
a427b9ec DH |
219 | failed_reg_legacy: |
220 | unregister_key_type(&key_type_id_resolver); | |
955a857e BS |
221 | failed_put_key: |
222 | key_put(keyring); | |
223 | failed_put_cred: | |
224 | put_cred(cred); | |
225 | return ret; | |
226 | } | |
227 | ||
e6499c6f | 228 | static void nfs_idmap_quit_keyring(void) |
955a857e BS |
229 | { |
230 | key_revoke(id_resolver_cache->thread_keyring); | |
231 | unregister_key_type(&key_type_id_resolver); | |
a427b9ec | 232 | unregister_key_type(&key_type_id_resolver_legacy); |
955a857e BS |
233 | put_cred(id_resolver_cache); |
234 | } | |
235 | ||
236 | /* | |
237 | * Assemble the description to pass to request_key() | |
238 | * This function will allocate a new string and update dest to point | |
239 | * at it. The caller is responsible for freeing dest. | |
240 | * | |
241 | * On error 0 is returned. Otherwise, the length of dest is returned. | |
242 | */ | |
243 | static ssize_t nfs_idmap_get_desc(const char *name, size_t namelen, | |
244 | const char *type, size_t typelen, char **desc) | |
245 | { | |
246 | char *cp; | |
247 | size_t desclen = typelen + namelen + 2; | |
248 | ||
249 | *desc = kmalloc(desclen, GFP_KERNEL); | |
8f0d97b4 | 250 | if (!*desc) |
955a857e BS |
251 | return -ENOMEM; |
252 | ||
253 | cp = *desc; | |
254 | memcpy(cp, type, typelen); | |
255 | cp += typelen; | |
256 | *cp++ = ':'; | |
257 | ||
258 | memcpy(cp, name, namelen); | |
259 | cp += namelen; | |
260 | *cp = '\0'; | |
261 | return desclen; | |
262 | } | |
263 | ||
57e62324 BS |
264 | static ssize_t nfs_idmap_request_key(struct key_type *key_type, |
265 | const char *name, size_t namelen, | |
266 | const char *type, void *data, | |
267 | size_t data_size, struct idmap *idmap) | |
955a857e BS |
268 | { |
269 | const struct cred *saved_cred; | |
270 | struct key *rkey; | |
271 | char *desc; | |
272 | struct user_key_payload *payload; | |
273 | ssize_t ret; | |
274 | ||
275 | ret = nfs_idmap_get_desc(name, namelen, type, strlen(type), &desc); | |
276 | if (ret <= 0) | |
277 | goto out; | |
278 | ||
279 | saved_cred = override_creds(id_resolver_cache); | |
57e62324 BS |
280 | if (idmap) |
281 | rkey = request_key_with_auxdata(key_type, desc, "", 0, idmap); | |
282 | else | |
283 | rkey = request_key(&key_type_id_resolver, desc, ""); | |
955a857e | 284 | revert_creds(saved_cred); |
57e62324 | 285 | |
955a857e BS |
286 | kfree(desc); |
287 | if (IS_ERR(rkey)) { | |
288 | ret = PTR_ERR(rkey); | |
289 | goto out; | |
290 | } | |
291 | ||
292 | rcu_read_lock(); | |
293 | rkey->perm |= KEY_USR_VIEW; | |
294 | ||
295 | ret = key_validate(rkey); | |
296 | if (ret < 0) | |
297 | goto out_up; | |
298 | ||
299 | payload = rcu_dereference(rkey->payload.data); | |
300 | if (IS_ERR_OR_NULL(payload)) { | |
301 | ret = PTR_ERR(payload); | |
302 | goto out_up; | |
303 | } | |
304 | ||
305 | ret = payload->datalen; | |
306 | if (ret > 0 && ret <= data_size) | |
307 | memcpy(data, payload->data, ret); | |
308 | else | |
309 | ret = -EINVAL; | |
310 | ||
311 | out_up: | |
312 | rcu_read_unlock(); | |
313 | key_put(rkey); | |
314 | out: | |
315 | return ret; | |
316 | } | |
317 | ||
57e62324 BS |
318 | static ssize_t nfs_idmap_get_key(const char *name, size_t namelen, |
319 | const char *type, void *data, | |
320 | size_t data_size, struct idmap *idmap) | |
321 | { | |
322 | ssize_t ret = nfs_idmap_request_key(&key_type_id_resolver, | |
323 | name, namelen, type, data, | |
324 | data_size, NULL); | |
325 | if (ret < 0) { | |
b1027439 | 326 | mutex_lock(&idmap->idmap_mutex); |
57e62324 BS |
327 | ret = nfs_idmap_request_key(&key_type_id_resolver_legacy, |
328 | name, namelen, type, data, | |
329 | data_size, idmap); | |
b1027439 | 330 | mutex_unlock(&idmap->idmap_mutex); |
57e62324 BS |
331 | } |
332 | return ret; | |
333 | } | |
955a857e BS |
334 | |
335 | /* ID -> Name */ | |
57e62324 BS |
336 | static ssize_t nfs_idmap_lookup_name(__u32 id, const char *type, char *buf, |
337 | size_t buflen, struct idmap *idmap) | |
955a857e BS |
338 | { |
339 | char id_str[NFS_UINT_MAXLEN]; | |
340 | int id_len; | |
341 | ssize_t ret; | |
342 | ||
343 | id_len = snprintf(id_str, sizeof(id_str), "%u", id); | |
57e62324 | 344 | ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap); |
955a857e BS |
345 | if (ret < 0) |
346 | return -EINVAL; | |
347 | return ret; | |
348 | } | |
349 | ||
350 | /* Name -> ID */ | |
57e62324 BS |
351 | static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *type, |
352 | __u32 *id, struct idmap *idmap) | |
955a857e BS |
353 | { |
354 | char id_str[NFS_UINT_MAXLEN]; | |
355 | long id_long; | |
356 | ssize_t data_size; | |
357 | int ret = 0; | |
358 | ||
57e62324 | 359 | data_size = nfs_idmap_get_key(name, namelen, type, id_str, NFS_UINT_MAXLEN, idmap); |
955a857e BS |
360 | if (data_size <= 0) { |
361 | ret = -EINVAL; | |
362 | } else { | |
7297cb68 | 363 | ret = kstrtol(id_str, 10, &id_long); |
955a857e BS |
364 | *id = (__u32)id_long; |
365 | } | |
366 | return ret; | |
367 | } | |
368 | ||
e6499c6f | 369 | /* idmap classic begins here */ |
f0b85168 | 370 | |
57e62324 BS |
371 | enum { |
372 | Opt_find_uid, Opt_find_gid, Opt_find_user, Opt_find_group, Opt_find_err | |
1da177e4 LT |
373 | }; |
374 | ||
57e62324 BS |
375 | static const match_table_t nfs_idmap_tokens = { |
376 | { Opt_find_uid, "uid:%s" }, | |
377 | { Opt_find_gid, "gid:%s" }, | |
378 | { Opt_find_user, "user:%s" }, | |
379 | { Opt_find_group, "group:%s" }, | |
380 | { Opt_find_err, NULL } | |
1da177e4 LT |
381 | }; |
382 | ||
57e62324 | 383 | static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *); |
369af0f1 CL |
384 | static ssize_t idmap_pipe_downcall(struct file *, const char __user *, |
385 | size_t); | |
c5066945 | 386 | static void idmap_release_pipe(struct inode *); |
369af0f1 | 387 | static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); |
1da177e4 | 388 | |
b693ba4a | 389 | static const struct rpc_pipe_ops idmap_upcall_ops = { |
c1225158 | 390 | .upcall = rpc_pipe_generic_upcall, |
369af0f1 | 391 | .downcall = idmap_pipe_downcall, |
c5066945 | 392 | .release_pipe = idmap_release_pipe, |
369af0f1 | 393 | .destroy_msg = idmap_pipe_destroy_msg, |
1da177e4 LT |
394 | }; |
395 | ||
17280175 | 396 | static struct key_type key_type_id_resolver_legacy = { |
a427b9ec | 397 | .name = "id_legacy", |
57e62324 BS |
398 | .instantiate = user_instantiate, |
399 | .match = user_match, | |
400 | .revoke = user_revoke, | |
401 | .destroy = user_destroy, | |
402 | .describe = user_describe, | |
403 | .read = user_read, | |
404 | .request_key = nfs_idmap_legacy_upcall, | |
405 | }; | |
406 | ||
4929d1d3 SK |
407 | static void __nfs_idmap_unregister(struct rpc_pipe *pipe) |
408 | { | |
409 | if (pipe->dentry) | |
410 | rpc_unlink(pipe->dentry); | |
411 | } | |
412 | ||
413 | static int __nfs_idmap_register(struct dentry *dir, | |
414 | struct idmap *idmap, | |
415 | struct rpc_pipe *pipe) | |
416 | { | |
417 | struct dentry *dentry; | |
418 | ||
419 | dentry = rpc_mkpipe_dentry(dir, "idmap", idmap, pipe); | |
420 | if (IS_ERR(dentry)) | |
421 | return PTR_ERR(dentry); | |
422 | pipe->dentry = dentry; | |
423 | return 0; | |
424 | } | |
425 | ||
426 | static void nfs_idmap_unregister(struct nfs_client *clp, | |
427 | struct rpc_pipe *pipe) | |
428 | { | |
73ea666c | 429 | struct net *net = clp->cl_net; |
4929d1d3 SK |
430 | struct super_block *pipefs_sb; |
431 | ||
432 | pipefs_sb = rpc_get_sb_net(net); | |
433 | if (pipefs_sb) { | |
434 | __nfs_idmap_unregister(pipe); | |
435 | rpc_put_sb_net(net); | |
436 | } | |
437 | } | |
438 | ||
439 | static int nfs_idmap_register(struct nfs_client *clp, | |
440 | struct idmap *idmap, | |
441 | struct rpc_pipe *pipe) | |
442 | { | |
73ea666c | 443 | struct net *net = clp->cl_net; |
4929d1d3 SK |
444 | struct super_block *pipefs_sb; |
445 | int err = 0; | |
446 | ||
447 | pipefs_sb = rpc_get_sb_net(net); | |
448 | if (pipefs_sb) { | |
449 | if (clp->cl_rpcclient->cl_dentry) | |
450 | err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry, | |
451 | idmap, pipe); | |
452 | rpc_put_sb_net(net); | |
453 | } | |
454 | return err; | |
455 | } | |
456 | ||
b7162792 | 457 | int |
adfa6f98 | 458 | nfs_idmap_new(struct nfs_client *clp) |
1da177e4 LT |
459 | { |
460 | struct idmap *idmap; | |
c239d83b | 461 | struct rpc_pipe *pipe; |
b7162792 | 462 | int error; |
1da177e4 | 463 | |
369af0f1 CL |
464 | idmap = kzalloc(sizeof(*idmap), GFP_KERNEL); |
465 | if (idmap == NULL) | |
466 | return -ENOMEM; | |
1da177e4 | 467 | |
c239d83b SK |
468 | pipe = rpc_mkpipe_data(&idmap_upcall_ops, 0); |
469 | if (IS_ERR(pipe)) { | |
470 | error = PTR_ERR(pipe); | |
1da177e4 | 471 | kfree(idmap); |
b7162792 | 472 | return error; |
1da177e4 | 473 | } |
4929d1d3 SK |
474 | error = nfs_idmap_register(clp, idmap, pipe); |
475 | if (error) { | |
c239d83b SK |
476 | rpc_destroy_pipe_data(pipe); |
477 | kfree(idmap); | |
478 | return error; | |
479 | } | |
480 | idmap->idmap_pipe = pipe; | |
b1027439 | 481 | mutex_init(&idmap->idmap_mutex); |
1da177e4 LT |
482 | |
483 | clp->cl_idmap = idmap; | |
b7162792 | 484 | return 0; |
1da177e4 LT |
485 | } |
486 | ||
487 | void | |
adfa6f98 | 488 | nfs_idmap_delete(struct nfs_client *clp) |
1da177e4 LT |
489 | { |
490 | struct idmap *idmap = clp->cl_idmap; | |
491 | ||
492 | if (!idmap) | |
493 | return; | |
4929d1d3 | 494 | nfs_idmap_unregister(clp, idmap->idmap_pipe); |
c239d83b | 495 | rpc_destroy_pipe_data(idmap->idmap_pipe); |
1da177e4 LT |
496 | clp->cl_idmap = NULL; |
497 | kfree(idmap); | |
498 | } | |
499 | ||
eee17325 SK |
500 | static int __rpc_pipefs_event(struct nfs_client *clp, unsigned long event, |
501 | struct super_block *sb) | |
1da177e4 | 502 | { |
eee17325 | 503 | int err = 0; |
1da177e4 | 504 | |
eee17325 SK |
505 | switch (event) { |
506 | case RPC_PIPEFS_MOUNT: | |
eee17325 SK |
507 | err = __nfs_idmap_register(clp->cl_rpcclient->cl_dentry, |
508 | clp->cl_idmap, | |
509 | clp->cl_idmap->idmap_pipe); | |
510 | break; | |
511 | case RPC_PIPEFS_UMOUNT: | |
512 | if (clp->cl_idmap->idmap_pipe) { | |
513 | struct dentry *parent; | |
514 | ||
515 | parent = clp->cl_idmap->idmap_pipe->dentry->d_parent; | |
516 | __nfs_idmap_unregister(clp->cl_idmap->idmap_pipe); | |
517 | /* | |
518 | * Note: This is a dirty hack. SUNRPC hook has been | |
519 | * called already but simple_rmdir() call for the | |
520 | * directory returned with error because of idmap pipe | |
521 | * inside. Thus now we have to remove this directory | |
522 | * here. | |
523 | */ | |
524 | if (rpc_rmdir(parent)) | |
a030889a WAA |
525 | printk(KERN_ERR "NFS: %s: failed to remove " |
526 | "clnt dir!\n", __func__); | |
eee17325 SK |
527 | } |
528 | break; | |
529 | default: | |
a030889a WAA |
530 | printk(KERN_ERR "NFS: %s: unknown event: %ld\n", __func__, |
531 | event); | |
eee17325 SK |
532 | return -ENOTSUPP; |
533 | } | |
534 | return err; | |
535 | } | |
536 | ||
e9dbca8d | 537 | static struct nfs_client *nfs_get_client_for_event(struct net *net, int event) |
eee17325 | 538 | { |
e9dbca8d SK |
539 | struct nfs_net *nn = net_generic(net, nfs_net_id); |
540 | struct dentry *cl_dentry; | |
eee17325 | 541 | struct nfs_client *clp; |
4697bd5e | 542 | int err; |
eee17325 | 543 | |
4697bd5e | 544 | restart: |
dc030858 | 545 | spin_lock(&nn->nfs_client_lock); |
6b13168b | 546 | list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) { |
4697bd5e TM |
547 | /* Wait for initialisation to finish */ |
548 | if (clp->cl_cons_state == NFS_CS_INITING) { | |
549 | atomic_inc(&clp->cl_count); | |
550 | spin_unlock(&nn->nfs_client_lock); | |
551 | err = nfs_wait_client_init_complete(clp); | |
552 | nfs_put_client(clp); | |
553 | if (err) | |
554 | return NULL; | |
555 | goto restart; | |
556 | } | |
557 | /* Skip nfs_clients that failed to initialise */ | |
558 | if (clp->cl_cons_state < 0) | |
559 | continue; | |
54ac471c | 560 | smp_rmb(); |
eee17325 SK |
561 | if (clp->rpc_ops != &nfs_v4_clientops) |
562 | continue; | |
e9dbca8d SK |
563 | cl_dentry = clp->cl_idmap->idmap_pipe->dentry; |
564 | if (((event == RPC_PIPEFS_MOUNT) && cl_dentry) || | |
565 | ((event == RPC_PIPEFS_UMOUNT) && !cl_dentry)) | |
566 | continue; | |
567 | atomic_inc(&clp->cl_count); | |
568 | spin_unlock(&nn->nfs_client_lock); | |
569 | return clp; | |
570 | } | |
571 | spin_unlock(&nn->nfs_client_lock); | |
572 | return NULL; | |
1da177e4 LT |
573 | } |
574 | ||
e9dbca8d SK |
575 | static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event, |
576 | void *ptr) | |
1da177e4 | 577 | { |
e9dbca8d SK |
578 | struct super_block *sb = ptr; |
579 | struct nfs_client *clp; | |
580 | int error = 0; | |
1da177e4 | 581 | |
71dfc5fa SK |
582 | if (!try_module_get(THIS_MODULE)) |
583 | return 0; | |
584 | ||
e9dbca8d | 585 | while ((clp = nfs_get_client_for_event(sb->s_fs_info, event))) { |
eee17325 | 586 | error = __rpc_pipefs_event(clp, event, sb); |
e9dbca8d | 587 | nfs_put_client(clp); |
eee17325 SK |
588 | if (error) |
589 | break; | |
590 | } | |
71dfc5fa | 591 | module_put(THIS_MODULE); |
eee17325 | 592 | return error; |
1da177e4 LT |
593 | } |
594 | ||
eee17325 SK |
595 | #define PIPEFS_NFS_PRIO 1 |
596 | ||
597 | static struct notifier_block nfs_idmap_block = { | |
598 | .notifier_call = rpc_pipefs_event, | |
599 | .priority = SUNRPC_PIPEFS_NFS_PRIO, | |
600 | }; | |
1da177e4 | 601 | |
eee17325 | 602 | int nfs_idmap_init(void) |
1da177e4 | 603 | { |
e6499c6f BS |
604 | int ret; |
605 | ret = nfs_idmap_init_keyring(); | |
606 | if (ret != 0) | |
607 | goto out; | |
608 | ret = rpc_pipefs_notifier_register(&nfs_idmap_block); | |
609 | if (ret != 0) | |
610 | nfs_idmap_quit_keyring(); | |
611 | out: | |
612 | return ret; | |
1da177e4 LT |
613 | } |
614 | ||
eee17325 | 615 | void nfs_idmap_quit(void) |
1da177e4 | 616 | { |
eee17325 | 617 | rpc_pipefs_notifier_unregister(&nfs_idmap_block); |
e6499c6f | 618 | nfs_idmap_quit_keyring(); |
1da177e4 LT |
619 | } |
620 | ||
c5066945 BS |
621 | static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap, |
622 | struct idmap_msg *im, | |
57e62324 | 623 | struct rpc_pipe_msg *msg) |
1da177e4 | 624 | { |
57e62324 BS |
625 | substring_t substr; |
626 | int token, ret; | |
1da177e4 | 627 | |
57e62324 BS |
628 | im->im_type = IDMAP_TYPE_GROUP; |
629 | token = match_token(desc, nfs_idmap_tokens, &substr); | |
1da177e4 | 630 | |
57e62324 BS |
631 | switch (token) { |
632 | case Opt_find_uid: | |
633 | im->im_type = IDMAP_TYPE_USER; | |
634 | case Opt_find_gid: | |
635 | im->im_conv = IDMAP_CONV_NAMETOID; | |
636 | ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ); | |
637 | break; | |
1da177e4 | 638 | |
57e62324 BS |
639 | case Opt_find_user: |
640 | im->im_type = IDMAP_TYPE_USER; | |
641 | case Opt_find_group: | |
642 | im->im_conv = IDMAP_CONV_IDTONAME; | |
643 | ret = match_int(&substr, &im->im_id); | |
644 | break; | |
1da177e4 | 645 | |
57e62324 BS |
646 | default: |
647 | ret = -EINVAL; | |
1da177e4 LT |
648 | goto out; |
649 | } | |
650 | ||
57e62324 BS |
651 | msg->data = im; |
652 | msg->len = sizeof(struct idmap_msg); | |
1da177e4 | 653 | |
57e62324 | 654 | out: |
369af0f1 | 655 | return ret; |
1da177e4 LT |
656 | } |
657 | ||
e9ab41b6 TM |
658 | static bool |
659 | nfs_idmap_prepare_pipe_upcall(struct idmap *idmap, | |
0cac1202 | 660 | struct idmap_legacy_upcalldata *data) |
e9ab41b6 | 661 | { |
0cac1202 | 662 | if (idmap->idmap_upcall_data != NULL) { |
e9ab41b6 TM |
663 | WARN_ON_ONCE(1); |
664 | return false; | |
665 | } | |
0cac1202 | 666 | idmap->idmap_upcall_data = data; |
e9ab41b6 TM |
667 | return true; |
668 | } | |
669 | ||
670 | static void | |
671 | nfs_idmap_complete_pipe_upcall_locked(struct idmap *idmap, int ret) | |
672 | { | |
0cac1202 | 673 | struct key_construction *cons = idmap->idmap_upcall_data->key_cons; |
e9ab41b6 | 674 | |
0cac1202 TM |
675 | kfree(idmap->idmap_upcall_data); |
676 | idmap->idmap_upcall_data = NULL; | |
e9ab41b6 TM |
677 | complete_request_key(cons, ret); |
678 | } | |
679 | ||
680 | static void | |
681 | nfs_idmap_abort_pipe_upcall(struct idmap *idmap, int ret) | |
682 | { | |
0cac1202 | 683 | if (idmap->idmap_upcall_data != NULL) |
e9ab41b6 TM |
684 | nfs_idmap_complete_pipe_upcall_locked(idmap, ret); |
685 | } | |
686 | ||
57e62324 BS |
687 | static int nfs_idmap_legacy_upcall(struct key_construction *cons, |
688 | const char *op, | |
689 | void *aux) | |
1da177e4 | 690 | { |
c5066945 | 691 | struct idmap_legacy_upcalldata *data; |
57e62324 | 692 | struct rpc_pipe_msg *msg; |
1da177e4 | 693 | struct idmap_msg *im; |
57e62324 BS |
694 | struct idmap *idmap = (struct idmap *)aux; |
695 | struct key *key = cons->key; | |
5abc03cd | 696 | int ret = -ENOMEM; |
1da177e4 | 697 | |
57e62324 | 698 | /* msg and im are freed in idmap_pipe_destroy_msg */ |
57a51048 | 699 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
c5066945 | 700 | if (!data) |
57e62324 | 701 | goto out1; |
1da177e4 | 702 | |
c5066945 BS |
703 | msg = &data->pipe_msg; |
704 | im = &data->idmap_msg; | |
705 | data->idmap = idmap; | |
ddfc4e17 | 706 | data->key_cons = cons; |
c5066945 BS |
707 | |
708 | ret = nfs_idmap_prepare_message(key->description, idmap, im, msg); | |
57e62324 BS |
709 | if (ret < 0) |
710 | goto out2; | |
1da177e4 | 711 | |
e9ab41b6 | 712 | ret = -EAGAIN; |
0cac1202 | 713 | if (!nfs_idmap_prepare_pipe_upcall(idmap, data)) |
0e24d849 | 714 | goto out2; |
1da177e4 | 715 | |
11588f49 BS |
716 | ret = rpc_queue_upcall(idmap->idmap_pipe, msg); |
717 | if (ret < 0) | |
e9ab41b6 | 718 | nfs_idmap_abort_pipe_upcall(idmap, ret); |
1da177e4 | 719 | |
11588f49 | 720 | return ret; |
57e62324 | 721 | out2: |
c5066945 | 722 | kfree(data); |
57e62324 | 723 | out1: |
a427b9ec | 724 | complete_request_key(cons, ret); |
369af0f1 | 725 | return ret; |
1da177e4 LT |
726 | } |
727 | ||
57e62324 | 728 | static int nfs_idmap_instantiate(struct key *key, struct key *authkey, char *data) |
1da177e4 | 729 | { |
57e62324 BS |
730 | return key_instantiate_and_link(key, data, strlen(data) + 1, |
731 | id_resolver_cache->thread_keyring, | |
732 | authkey); | |
733 | } | |
1da177e4 | 734 | |
0cac1202 TM |
735 | static int nfs_idmap_read_and_verify_message(struct idmap_msg *im, |
736 | struct idmap_msg *upcall, | |
737 | struct key *key, struct key *authkey) | |
57e62324 BS |
738 | { |
739 | char id_str[NFS_UINT_MAXLEN]; | |
0cac1202 | 740 | int ret = -ENOKEY; |
1da177e4 | 741 | |
0cac1202 TM |
742 | /* ret = -ENOKEY */ |
743 | if (upcall->im_type != im->im_type || upcall->im_conv != im->im_conv) | |
744 | goto out; | |
57e62324 BS |
745 | switch (im->im_conv) { |
746 | case IDMAP_CONV_NAMETOID: | |
0cac1202 TM |
747 | if (strcmp(upcall->im_name, im->im_name) != 0) |
748 | break; | |
57e62324 BS |
749 | sprintf(id_str, "%d", im->im_id); |
750 | ret = nfs_idmap_instantiate(key, authkey, id_str); | |
751 | break; | |
752 | case IDMAP_CONV_IDTONAME: | |
0cac1202 TM |
753 | if (upcall->im_id != im->im_id) |
754 | break; | |
57e62324 BS |
755 | ret = nfs_idmap_instantiate(key, authkey, im->im_name); |
756 | break; | |
0cac1202 TM |
757 | default: |
758 | ret = -EINVAL; | |
1da177e4 | 759 | } |
0cac1202 | 760 | out: |
1da177e4 LT |
761 | return ret; |
762 | } | |
763 | ||
1da177e4 LT |
764 | static ssize_t |
765 | idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) | |
766 | { | |
369af0f1 | 767 | struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode); |
1da177e4 | 768 | struct idmap *idmap = (struct idmap *)rpci->private; |
a427b9ec | 769 | struct key_construction *cons; |
57e62324 | 770 | struct idmap_msg im; |
d24aae41 | 771 | size_t namelen_in; |
e9ab41b6 | 772 | int ret = -ENOKEY; |
1da177e4 | 773 | |
a427b9ec DH |
774 | /* If instantiation is successful, anyone waiting for key construction |
775 | * will have been woken up and someone else may now have used | |
776 | * idmap_key_cons - so after this point we may no longer touch it. | |
777 | */ | |
0cac1202 | 778 | if (idmap->idmap_upcall_data == NULL) |
e9ab41b6 | 779 | goto out_noupcall; |
a427b9ec | 780 | |
0cac1202 | 781 | cons = idmap->idmap_upcall_data->key_cons; |
a427b9ec | 782 | |
57e62324 BS |
783 | if (mlen != sizeof(im)) { |
784 | ret = -ENOSPC; | |
1da177e4 LT |
785 | goto out; |
786 | } | |
787 | ||
57e62324 BS |
788 | if (copy_from_user(&im, src, mlen) != 0) { |
789 | ret = -EFAULT; | |
1da177e4 | 790 | goto out; |
57e62324 | 791 | } |
1da177e4 | 792 | |
57e62324 | 793 | if (!(im.im_status & IDMAP_STATUS_SUCCESS)) { |
12dfd080 BS |
794 | ret = -ENOKEY; |
795 | goto out; | |
1da177e4 LT |
796 | } |
797 | ||
57e62324 BS |
798 | namelen_in = strnlen(im.im_name, IDMAP_NAMESZ); |
799 | if (namelen_in == 0 || namelen_in == IDMAP_NAMESZ) { | |
800 | ret = -EINVAL; | |
1da177e4 | 801 | goto out; |
0cac1202 | 802 | } |
1da177e4 | 803 | |
0cac1202 TM |
804 | ret = nfs_idmap_read_and_verify_message(&im, |
805 | &idmap->idmap_upcall_data->idmap_msg, | |
806 | cons->key, cons->authkey); | |
57e62324 BS |
807 | if (ret >= 0) { |
808 | key_set_timeout(cons->key, nfs_idmap_cache_timeout); | |
809 | ret = mlen; | |
810 | } | |
811 | ||
1da177e4 | 812 | out: |
e9ab41b6 TM |
813 | nfs_idmap_complete_pipe_upcall_locked(idmap, ret); |
814 | out_noupcall: | |
1da177e4 LT |
815 | return ret; |
816 | } | |
817 | ||
75c96f85 | 818 | static void |
1da177e4 LT |
819 | idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg) |
820 | { | |
c5066945 BS |
821 | struct idmap_legacy_upcalldata *data = container_of(msg, |
822 | struct idmap_legacy_upcalldata, | |
823 | pipe_msg); | |
824 | struct idmap *idmap = data->idmap; | |
e9ab41b6 TM |
825 | |
826 | if (msg->errno) | |
827 | nfs_idmap_abort_pipe_upcall(idmap, msg->errno); | |
c5066945 BS |
828 | } |
829 | ||
830 | static void | |
831 | idmap_release_pipe(struct inode *inode) | |
832 | { | |
833 | struct rpc_inode *rpci = RPC_I(inode); | |
834 | struct idmap *idmap = (struct idmap *)rpci->private; | |
e9ab41b6 TM |
835 | |
836 | nfs_idmap_abort_pipe_upcall(idmap, -EPIPE); | |
1da177e4 LT |
837 | } |
838 | ||
e4fd72a1 | 839 | int nfs_map_name_to_uid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *uid) |
1da177e4 | 840 | { |
e4fd72a1 | 841 | struct idmap *idmap = server->nfs_client->cl_idmap; |
1da177e4 | 842 | |
5cf36cfd TM |
843 | if (nfs_map_string_to_numeric(name, namelen, uid)) |
844 | return 0; | |
57e62324 | 845 | return nfs_idmap_lookup_id(name, namelen, "uid", uid, idmap); |
1da177e4 LT |
846 | } |
847 | ||
e6499c6f | 848 | int nfs_map_group_to_gid(const struct nfs_server *server, const char *name, size_t namelen, __u32 *gid) |
1da177e4 | 849 | { |
e4fd72a1 | 850 | struct idmap *idmap = server->nfs_client->cl_idmap; |
1da177e4 | 851 | |
e6499c6f | 852 | if (nfs_map_string_to_numeric(name, namelen, gid)) |
5cf36cfd | 853 | return 0; |
57e62324 | 854 | return nfs_idmap_lookup_id(name, namelen, "gid", gid, idmap); |
1da177e4 LT |
855 | } |
856 | ||
e4fd72a1 | 857 | int nfs_map_uid_to_name(const struct nfs_server *server, __u32 uid, char *buf, size_t buflen) |
1da177e4 | 858 | { |
e4fd72a1 | 859 | struct idmap *idmap = server->nfs_client->cl_idmap; |
b064eca2 | 860 | int ret = -EINVAL; |
1da177e4 | 861 | |
b064eca2 | 862 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) |
57e62324 | 863 | ret = nfs_idmap_lookup_name(uid, "user", buf, buflen, idmap); |
f0b85168 TM |
864 | if (ret < 0) |
865 | ret = nfs_map_numeric_to_string(uid, buf, buflen); | |
866 | return ret; | |
1da177e4 | 867 | } |
e6499c6f | 868 | int nfs_map_gid_to_group(const struct nfs_server *server, __u32 gid, char *buf, size_t buflen) |
1da177e4 | 869 | { |
e4fd72a1 | 870 | struct idmap *idmap = server->nfs_client->cl_idmap; |
b064eca2 | 871 | int ret = -EINVAL; |
1da177e4 | 872 | |
b064eca2 | 873 | if (!(server->caps & NFS_CAP_UIDGID_NOMAP)) |
57e62324 | 874 | ret = nfs_idmap_lookup_name(gid, "group", buf, buflen, idmap); |
f0b85168 | 875 | if (ret < 0) |
e6499c6f | 876 | ret = nfs_map_numeric_to_string(gid, buf, buflen); |
f0b85168 | 877 | return ret; |
1da177e4 | 878 | } |