@@ -346,6 +346,8 @@ static inline key_serial_t key_serial(const struct key *key)
extern void key_set_timeout(struct key *, unsigned);
+extern struct key *find_keyring_by_name(const char *name, bool uid_keyring);
+
/*
* The permissions required on a key that we're looking up.
*/
@@ -141,8 +141,6 @@ extern key_ref_t keyring_search_aux(key_ref_t keyring_ref,
extern key_ref_t search_my_process_keyrings(struct keyring_search_context *ctx);
extern key_ref_t search_process_keyrings(struct keyring_search_context *ctx);
-extern struct key *find_keyring_by_name(const char *name, bool uid_keyring);
-
extern int install_user_keyrings(void);
extern int install_thread_keyring_to_cred(struct cred *);
extern int install_process_keyring_to_cred(struct cred *);
@@ -1159,6 +1159,7 @@ struct key *find_keyring_by_name(const char *name, bool uid_keyring)
read_unlock(&keyring_name_lock);
return keyring;
}
+EXPORT_SYMBOL(find_keyring_by_name);
static int keyring_detect_cycle_iterator(const void *object,
void *iterator_data)
This patch exports the function find_keyring_by_name() to be used by other subsystems. Signed-off-by: Nayna Jain <nayna@linux.vnet.ibm.com> --- include/linux/key.h | 2 ++ security/keys/internal.h | 2 -- security/keys/keyring.c | 1 + 3 files changed, 3 insertions(+), 2 deletions(-)