1 /* Request a key from userspace 2 * 3 * Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved. 4 * Written by David Howells (dhowells@redhat.com) 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 9 * 2 of the License, or (at your option) any later version. 10 * 11 * See Documentation/security/keys/request-key.rst 12 */ 13 14 #include <linux/export.h> 15 #include <linux/sched.h> 16 #include <linux/kmod.h> 17 #include <linux/err.h> 18 #include <linux/keyctl.h> 19 #include <linux/slab.h> 20 #include "internal.h" 21 22 #define key_negative_timeout 60 /* default timeout on a negative key's existence */ 23 24 /** 25 * complete_request_key - Complete the construction of a key. 26 * @cons: The key construction record. 27 * @error: The success or failute of the construction. 28 * 29 * Complete the attempt to construct a key. The key will be negated 30 * if an error is indicated. The authorisation key will be revoked 31 * unconditionally. 32 */ 33 void complete_request_key(struct key_construction *cons, int error) 34 { 35 kenter("{%d,%d},%d", cons->key->serial, cons->authkey->serial, error); 36 37 if (error < 0) 38 key_negate_and_link(cons->key, key_negative_timeout, NULL, 39 cons->authkey); 40 else 41 key_revoke(cons->authkey); 42 43 key_put(cons->key); 44 key_put(cons->authkey); 45 kfree(cons); 46 } 47 EXPORT_SYMBOL(complete_request_key); 48 49 /* 50 * Initialise a usermode helper that is going to have a specific session 51 * keyring. 52 * 53 * This is called in context of freshly forked kthread before kernel_execve(), 54 * so we can simply install the desired session_keyring at this point. 55 */ 56 static int umh_keys_init(struct subprocess_info *info, struct cred *cred) 57 { 58 struct key *keyring = info->data; 59 60 return install_session_keyring_to_cred(cred, keyring); 61 } 62 63 /* 64 * Clean up a usermode helper with session keyring. 65 */ 66 static void umh_keys_cleanup(struct subprocess_info *info) 67 { 68 struct key *keyring = info->data; 69 key_put(keyring); 70 } 71 72 /* 73 * Call a usermode helper with a specific session keyring. 74 */ 75 static int call_usermodehelper_keys(const char *path, char **argv, char **envp, 76 struct key *session_keyring, int wait) 77 { 78 struct subprocess_info *info; 79 80 info = call_usermodehelper_setup(path, argv, envp, GFP_KERNEL, 81 umh_keys_init, umh_keys_cleanup, 82 session_keyring); 83 if (!info) 84 return -ENOMEM; 85 86 key_get(session_keyring); 87 return call_usermodehelper_exec(info, wait); 88 } 89 90 /* 91 * Request userspace finish the construction of a key 92 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>" 93 */ 94 static int call_sbin_request_key(struct key_construction *cons, 95 const char *op, 96 void *aux) 97 { 98 static char const request_key[] = "/sbin/request-key"; 99 const struct cred *cred = current_cred(); 100 key_serial_t prkey, sskey; 101 struct key *key = cons->key, *authkey = cons->authkey, *keyring, 102 *session; 103 char *argv[9], *envp[3], uid_str[12], gid_str[12]; 104 char key_str[12], keyring_str[3][12]; 105 char desc[20]; 106 int ret, i; 107 108 kenter("{%d},{%d},%s", key->serial, authkey->serial, op); 109 110 ret = install_user_keyrings(); 111 if (ret < 0) 112 goto error_alloc; 113 114 /* allocate a new session keyring */ 115 sprintf(desc, "_req.%u", key->serial); 116 117 cred = get_current_cred(); 118 keyring = keyring_alloc(desc, cred->fsuid, cred->fsgid, cred, 119 KEY_POS_ALL | KEY_USR_VIEW | KEY_USR_READ, 120 KEY_ALLOC_QUOTA_OVERRUN, NULL, NULL); 121 put_cred(cred); 122 if (IS_ERR(keyring)) { 123 ret = PTR_ERR(keyring); 124 goto error_alloc; 125 } 126 127 /* attach the auth key to the session keyring */ 128 ret = key_link(keyring, authkey); 129 if (ret < 0) 130 goto error_link; 131 132 /* record the UID and GID */ 133 sprintf(uid_str, "%d", from_kuid(&init_user_ns, cred->fsuid)); 134 sprintf(gid_str, "%d", from_kgid(&init_user_ns, cred->fsgid)); 135 136 /* we say which key is under construction */ 137 sprintf(key_str, "%d", key->serial); 138 139 /* we specify the process's default keyrings */ 140 sprintf(keyring_str[0], "%d", 141 cred->thread_keyring ? cred->thread_keyring->serial : 0); 142 143 prkey = 0; 144 if (cred->process_keyring) 145 prkey = cred->process_keyring->serial; 146 sprintf(keyring_str[1], "%d", prkey); 147 148 rcu_read_lock(); 149 session = rcu_dereference(cred->session_keyring); 150 if (!session) 151 session = cred->user->session_keyring; 152 sskey = session->serial; 153 rcu_read_unlock(); 154 155 sprintf(keyring_str[2], "%d", sskey); 156 157 /* set up a minimal environment */ 158 i = 0; 159 envp[i++] = "HOME=/"; 160 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; 161 envp[i] = NULL; 162 163 /* set up the argument list */ 164 i = 0; 165 argv[i++] = (char *)request_key; 166 argv[i++] = (char *) op; 167 argv[i++] = key_str; 168 argv[i++] = uid_str; 169 argv[i++] = gid_str; 170 argv[i++] = keyring_str[0]; 171 argv[i++] = keyring_str[1]; 172 argv[i++] = keyring_str[2]; 173 argv[i] = NULL; 174 175 /* do it */ 176 ret = call_usermodehelper_keys(request_key, argv, envp, keyring, 177 UMH_WAIT_PROC); 178 kdebug("usermode -> 0x%x", ret); 179 if (ret >= 0) { 180 /* ret is the exit/wait code */ 181 if (test_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags) || 182 key_validate(key) < 0) 183 ret = -ENOKEY; 184 else 185 /* ignore any errors from userspace if the key was 186 * instantiated */ 187 ret = 0; 188 } 189 190 error_link: 191 key_put(keyring); 192 193 error_alloc: 194 complete_request_key(cons, ret); 195 kleave(" = %d", ret); 196 return ret; 197 } 198 199 /* 200 * Call out to userspace for key construction. 201 * 202 * Program failure is ignored in favour of key status. 203 */ 204 static int construct_key(struct key *key, const void *callout_info, 205 size_t callout_len, void *aux, 206 struct key *dest_keyring) 207 { 208 struct key_construction *cons; 209 request_key_actor_t actor; 210 struct key *authkey; 211 int ret; 212 213 kenter("%d,%p,%zu,%p", key->serial, callout_info, callout_len, aux); 214 215 cons = kmalloc(sizeof(*cons), GFP_KERNEL); 216 if (!cons) 217 return -ENOMEM; 218 219 /* allocate an authorisation key */ 220 authkey = request_key_auth_new(key, callout_info, callout_len, 221 dest_keyring); 222 if (IS_ERR(authkey)) { 223 kfree(cons); 224 ret = PTR_ERR(authkey); 225 authkey = NULL; 226 } else { 227 cons->authkey = key_get(authkey); 228 cons->key = key_get(key); 229 230 /* make the call */ 231 actor = call_sbin_request_key; 232 if (key->type->request_key) 233 actor = key->type->request_key; 234 235 ret = actor(cons, "create", aux); 236 237 /* check that the actor called complete_request_key() prior to 238 * returning an error */ 239 WARN_ON(ret < 0 && 240 !test_bit(KEY_FLAG_REVOKED, &authkey->flags)); 241 key_put(authkey); 242 } 243 244 kleave(" = %d", ret); 245 return ret; 246 } 247 248 /* 249 * Get the appropriate destination keyring for the request. 250 * 251 * The keyring selected is returned with an extra reference upon it which the 252 * caller must release. 253 */ 254 static int construct_get_dest_keyring(struct key **_dest_keyring) 255 { 256 struct request_key_auth *rka; 257 const struct cred *cred = current_cred(); 258 struct key *dest_keyring = *_dest_keyring, *authkey; 259 int ret; 260 261 kenter("%p", dest_keyring); 262 263 /* find the appropriate keyring */ 264 if (dest_keyring) { 265 /* the caller supplied one */ 266 key_get(dest_keyring); 267 } else { 268 bool do_perm_check = true; 269 270 /* use a default keyring; falling through the cases until we 271 * find one that we actually have */ 272 switch (cred->jit_keyring) { 273 case KEY_REQKEY_DEFL_DEFAULT: 274 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING: 275 if (cred->request_key_auth) { 276 authkey = cred->request_key_auth; 277 down_read(&authkey->sem); 278 rka = authkey->payload.data[0]; 279 if (!test_bit(KEY_FLAG_REVOKED, 280 &authkey->flags)) 281 dest_keyring = 282 key_get(rka->dest_keyring); 283 up_read(&authkey->sem); 284 if (dest_keyring) { 285 do_perm_check = false; 286 break; 287 } 288 } 289 290 /* fall through */ 291 case KEY_REQKEY_DEFL_THREAD_KEYRING: 292 dest_keyring = key_get(cred->thread_keyring); 293 if (dest_keyring) 294 break; 295 296 /* fall through */ 297 case KEY_REQKEY_DEFL_PROCESS_KEYRING: 298 dest_keyring = key_get(cred->process_keyring); 299 if (dest_keyring) 300 break; 301 302 /* fall through */ 303 case KEY_REQKEY_DEFL_SESSION_KEYRING: 304 rcu_read_lock(); 305 dest_keyring = key_get( 306 rcu_dereference(cred->session_keyring)); 307 rcu_read_unlock(); 308 309 if (dest_keyring) 310 break; 311 312 /* fall through */ 313 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING: 314 dest_keyring = 315 key_get(cred->user->session_keyring); 316 break; 317 318 case KEY_REQKEY_DEFL_USER_KEYRING: 319 dest_keyring = key_get(cred->user->uid_keyring); 320 break; 321 322 case KEY_REQKEY_DEFL_GROUP_KEYRING: 323 default: 324 BUG(); 325 } 326 327 /* 328 * Require Write permission on the keyring. This is essential 329 * because the default keyring may be the session keyring, and 330 * joining a keyring only requires Search permission. 331 * 332 * However, this check is skipped for the "requestor keyring" so 333 * that /sbin/request-key can itself use request_key() to add 334 * keys to the original requestor's destination keyring. 335 */ 336 if (dest_keyring && do_perm_check) { 337 ret = key_permission(make_key_ref(dest_keyring, 1), 338 KEY_NEED_WRITE); 339 if (ret) { 340 key_put(dest_keyring); 341 return ret; 342 } 343 } 344 } 345 346 *_dest_keyring = dest_keyring; 347 kleave(" [dk %d]", key_serial(dest_keyring)); 348 return 0; 349 } 350 351 /* 352 * Allocate a new key in under-construction state and attempt to link it in to 353 * the requested keyring. 354 * 355 * May return a key that's already under construction instead if there was a 356 * race between two thread calling request_key(). 357 */ 358 static int construct_alloc_key(struct keyring_search_context *ctx, 359 struct key *dest_keyring, 360 unsigned long flags, 361 struct key_user *user, 362 struct key **_key) 363 { 364 struct assoc_array_edit *edit; 365 struct key *key; 366 key_perm_t perm; 367 key_ref_t key_ref; 368 int ret; 369 370 kenter("%s,%s,,,", 371 ctx->index_key.type->name, ctx->index_key.description); 372 373 *_key = NULL; 374 mutex_lock(&user->cons_lock); 375 376 perm = KEY_POS_VIEW | KEY_POS_SEARCH | KEY_POS_LINK | KEY_POS_SETATTR; 377 perm |= KEY_USR_VIEW; 378 if (ctx->index_key.type->read) 379 perm |= KEY_POS_READ; 380 if (ctx->index_key.type == &key_type_keyring || 381 ctx->index_key.type->update) 382 perm |= KEY_POS_WRITE; 383 384 key = key_alloc(ctx->index_key.type, ctx->index_key.description, 385 ctx->cred->fsuid, ctx->cred->fsgid, ctx->cred, 386 perm, flags, NULL); 387 if (IS_ERR(key)) 388 goto alloc_failed; 389 390 set_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags); 391 392 if (dest_keyring) { 393 ret = __key_link_begin(dest_keyring, &ctx->index_key, &edit); 394 if (ret < 0) 395 goto link_prealloc_failed; 396 } 397 398 /* attach the key to the destination keyring under lock, but we do need 399 * to do another check just in case someone beat us to it whilst we 400 * waited for locks */ 401 mutex_lock(&key_construction_mutex); 402 403 key_ref = search_process_keyrings(ctx); 404 if (!IS_ERR(key_ref)) 405 goto key_already_present; 406 407 if (dest_keyring) 408 __key_link(key, &edit); 409 410 mutex_unlock(&key_construction_mutex); 411 if (dest_keyring) 412 __key_link_end(dest_keyring, &ctx->index_key, edit); 413 mutex_unlock(&user->cons_lock); 414 *_key = key; 415 kleave(" = 0 [%d]", key_serial(key)); 416 return 0; 417 418 /* the key is now present - we tell the caller that we found it by 419 * returning -EINPROGRESS */ 420 key_already_present: 421 key_put(key); 422 mutex_unlock(&key_construction_mutex); 423 key = key_ref_to_ptr(key_ref); 424 if (dest_keyring) { 425 ret = __key_link_check_live_key(dest_keyring, key); 426 if (ret == 0) 427 __key_link(key, &edit); 428 __key_link_end(dest_keyring, &ctx->index_key, edit); 429 if (ret < 0) 430 goto link_check_failed; 431 } 432 mutex_unlock(&user->cons_lock); 433 *_key = key; 434 kleave(" = -EINPROGRESS [%d]", key_serial(key)); 435 return -EINPROGRESS; 436 437 link_check_failed: 438 mutex_unlock(&user->cons_lock); 439 key_put(key); 440 kleave(" = %d [linkcheck]", ret); 441 return ret; 442 443 link_prealloc_failed: 444 mutex_unlock(&user->cons_lock); 445 key_put(key); 446 kleave(" = %d [prelink]", ret); 447 return ret; 448 449 alloc_failed: 450 mutex_unlock(&user->cons_lock); 451 kleave(" = %ld", PTR_ERR(key)); 452 return PTR_ERR(key); 453 } 454 455 /* 456 * Commence key construction. 457 */ 458 static struct key *construct_key_and_link(struct keyring_search_context *ctx, 459 const char *callout_info, 460 size_t callout_len, 461 void *aux, 462 struct key *dest_keyring, 463 unsigned long flags) 464 { 465 struct key_user *user; 466 struct key *key; 467 int ret; 468 469 kenter(""); 470 471 if (ctx->index_key.type == &key_type_keyring) 472 return ERR_PTR(-EPERM); 473 474 ret = construct_get_dest_keyring(&dest_keyring); 475 if (ret) 476 goto error; 477 478 user = key_user_lookup(current_fsuid()); 479 if (!user) { 480 ret = -ENOMEM; 481 goto error_put_dest_keyring; 482 } 483 484 ret = construct_alloc_key(ctx, dest_keyring, flags, user, &key); 485 key_user_put(user); 486 487 if (ret == 0) { 488 ret = construct_key(key, callout_info, callout_len, aux, 489 dest_keyring); 490 if (ret < 0) { 491 kdebug("cons failed"); 492 goto construction_failed; 493 } 494 } else if (ret == -EINPROGRESS) { 495 ret = 0; 496 } else { 497 goto error_put_dest_keyring; 498 } 499 500 key_put(dest_keyring); 501 kleave(" = key %d", key_serial(key)); 502 return key; 503 504 construction_failed: 505 key_negate_and_link(key, key_negative_timeout, NULL, NULL); 506 key_put(key); 507 error_put_dest_keyring: 508 key_put(dest_keyring); 509 error: 510 kleave(" = %d", ret); 511 return ERR_PTR(ret); 512 } 513 514 /** 515 * request_key_and_link - Request a key and cache it in a keyring. 516 * @type: The type of key we want. 517 * @description: The searchable description of the key. 518 * @callout_info: The data to pass to the instantiation upcall (or NULL). 519 * @callout_len: The length of callout_info. 520 * @aux: Auxiliary data for the upcall. 521 * @dest_keyring: Where to cache the key. 522 * @flags: Flags to key_alloc(). 523 * 524 * A key matching the specified criteria is searched for in the process's 525 * keyrings and returned with its usage count incremented if found. Otherwise, 526 * if callout_info is not NULL, a key will be allocated and some service 527 * (probably in userspace) will be asked to instantiate it. 528 * 529 * If successfully found or created, the key will be linked to the destination 530 * keyring if one is provided. 531 * 532 * Returns a pointer to the key if successful; -EACCES, -ENOKEY, -EKEYREVOKED 533 * or -EKEYEXPIRED if an inaccessible, negative, revoked or expired key was 534 * found; -ENOKEY if no key was found and no @callout_info was given; -EDQUOT 535 * if insufficient key quota was available to create a new key; or -ENOMEM if 536 * insufficient memory was available. 537 * 538 * If the returned key was created, then it may still be under construction, 539 * and wait_for_key_construction() should be used to wait for that to complete. 540 */ 541 struct key *request_key_and_link(struct key_type *type, 542 const char *description, 543 const void *callout_info, 544 size_t callout_len, 545 void *aux, 546 struct key *dest_keyring, 547 unsigned long flags) 548 { 549 struct keyring_search_context ctx = { 550 .index_key.type = type, 551 .index_key.description = description, 552 .cred = current_cred(), 553 .match_data.cmp = key_default_cmp, 554 .match_data.raw_data = description, 555 .match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT, 556 .flags = (KEYRING_SEARCH_DO_STATE_CHECK | 557 KEYRING_SEARCH_SKIP_EXPIRED), 558 }; 559 struct key *key; 560 key_ref_t key_ref; 561 int ret; 562 563 kenter("%s,%s,%p,%zu,%p,%p,%lx", 564 ctx.index_key.type->name, ctx.index_key.description, 565 callout_info, callout_len, aux, dest_keyring, flags); 566 567 if (type->match_preparse) { 568 ret = type->match_preparse(&ctx.match_data); 569 if (ret < 0) { 570 key = ERR_PTR(ret); 571 goto error; 572 } 573 } 574 575 /* search all the process keyrings for a key */ 576 key_ref = search_process_keyrings(&ctx); 577 578 if (!IS_ERR(key_ref)) { 579 key = key_ref_to_ptr(key_ref); 580 if (dest_keyring) { 581 ret = key_link(dest_keyring, key); 582 if (ret < 0) { 583 key_put(key); 584 key = ERR_PTR(ret); 585 goto error_free; 586 } 587 } 588 } else if (PTR_ERR(key_ref) != -EAGAIN) { 589 key = ERR_CAST(key_ref); 590 } else { 591 /* the search failed, but the keyrings were searchable, so we 592 * should consult userspace if we can */ 593 key = ERR_PTR(-ENOKEY); 594 if (!callout_info) 595 goto error_free; 596 597 key = construct_key_and_link(&ctx, callout_info, callout_len, 598 aux, dest_keyring, flags); 599 } 600 601 error_free: 602 if (type->match_free) 603 type->match_free(&ctx.match_data); 604 error: 605 kleave(" = %p", key); 606 return key; 607 } 608 609 /** 610 * wait_for_key_construction - Wait for construction of a key to complete 611 * @key: The key being waited for. 612 * @intr: Whether to wait interruptibly. 613 * 614 * Wait for a key to finish being constructed. 615 * 616 * Returns 0 if successful; -ERESTARTSYS if the wait was interrupted; -ENOKEY 617 * if the key was negated; or -EKEYREVOKED or -EKEYEXPIRED if the key was 618 * revoked or expired. 619 */ 620 int wait_for_key_construction(struct key *key, bool intr) 621 { 622 int ret; 623 624 ret = wait_on_bit(&key->flags, KEY_FLAG_USER_CONSTRUCT, 625 intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE); 626 if (ret) 627 return -ERESTARTSYS; 628 ret = key_read_state(key); 629 if (ret < 0) 630 return ret; 631 return key_validate(key); 632 } 633 EXPORT_SYMBOL(wait_for_key_construction); 634 635 /** 636 * request_key - Request a key and wait for construction 637 * @type: Type of key. 638 * @description: The searchable description of the key. 639 * @callout_info: The data to pass to the instantiation upcall (or NULL). 640 * 641 * As for request_key_and_link() except that it does not add the returned key 642 * to a keyring if found, new keys are always allocated in the user's quota, 643 * the callout_info must be a NUL-terminated string and no auxiliary data can 644 * be passed. 645 * 646 * Furthermore, it then works as wait_for_key_construction() to wait for the 647 * completion of keys undergoing construction with a non-interruptible wait. 648 */ 649 struct key *request_key(struct key_type *type, 650 const char *description, 651 const char *callout_info) 652 { 653 struct key *key; 654 size_t callout_len = 0; 655 int ret; 656 657 if (callout_info) 658 callout_len = strlen(callout_info); 659 key = request_key_and_link(type, description, callout_info, callout_len, 660 NULL, NULL, KEY_ALLOC_IN_QUOTA); 661 if (!IS_ERR(key)) { 662 ret = wait_for_key_construction(key, false); 663 if (ret < 0) { 664 key_put(key); 665 return ERR_PTR(ret); 666 } 667 } 668 return key; 669 } 670 EXPORT_SYMBOL(request_key); 671 672 /** 673 * request_key_with_auxdata - Request a key with auxiliary data for the upcaller 674 * @type: The type of key we want. 675 * @description: The searchable description of the key. 676 * @callout_info: The data to pass to the instantiation upcall (or NULL). 677 * @callout_len: The length of callout_info. 678 * @aux: Auxiliary data for the upcall. 679 * 680 * As for request_key_and_link() except that it does not add the returned key 681 * to a keyring if found and new keys are always allocated in the user's quota. 682 * 683 * Furthermore, it then works as wait_for_key_construction() to wait for the 684 * completion of keys undergoing construction with a non-interruptible wait. 685 */ 686 struct key *request_key_with_auxdata(struct key_type *type, 687 const char *description, 688 const void *callout_info, 689 size_t callout_len, 690 void *aux) 691 { 692 struct key *key; 693 int ret; 694 695 key = request_key_and_link(type, description, callout_info, callout_len, 696 aux, NULL, KEY_ALLOC_IN_QUOTA); 697 if (!IS_ERR(key)) { 698 ret = wait_for_key_construction(key, false); 699 if (ret < 0) { 700 key_put(key); 701 return ERR_PTR(ret); 702 } 703 } 704 return key; 705 } 706 EXPORT_SYMBOL(request_key_with_auxdata); 707 708 /* 709 * request_key_async - Request a key (allow async construction) 710 * @type: Type of key. 711 * @description: The searchable description of the key. 712 * @callout_info: The data to pass to the instantiation upcall (or NULL). 713 * @callout_len: The length of callout_info. 714 * 715 * As for request_key_and_link() except that it does not add the returned key 716 * to a keyring if found, new keys are always allocated in the user's quota and 717 * no auxiliary data can be passed. 718 * 719 * The caller should call wait_for_key_construction() to wait for the 720 * completion of the returned key if it is still undergoing construction. 721 */ 722 struct key *request_key_async(struct key_type *type, 723 const char *description, 724 const void *callout_info, 725 size_t callout_len) 726 { 727 return request_key_and_link(type, description, callout_info, 728 callout_len, NULL, NULL, 729 KEY_ALLOC_IN_QUOTA); 730 } 731 EXPORT_SYMBOL(request_key_async); 732 733 /* 734 * request a key with auxiliary data for the upcaller (allow async construction) 735 * @type: Type of key. 736 * @description: The searchable description of the key. 737 * @callout_info: The data to pass to the instantiation upcall (or NULL). 738 * @callout_len: The length of callout_info. 739 * @aux: Auxiliary data for the upcall. 740 * 741 * As for request_key_and_link() except that it does not add the returned key 742 * to a keyring if found and new keys are always allocated in the user's quota. 743 * 744 * The caller should call wait_for_key_construction() to wait for the 745 * completion of the returned key if it is still undergoing construction. 746 */ 747 struct key *request_key_async_with_auxdata(struct key_type *type, 748 const char *description, 749 const void *callout_info, 750 size_t callout_len, 751 void *aux) 752 { 753 return request_key_and_link(type, description, callout_info, 754 callout_len, aux, NULL, KEY_ALLOC_IN_QUOTA); 755 } 756 EXPORT_SYMBOL(request_key_async_with_auxdata); 757