Linux 6.14-rc1
[linux.git] / include / keys / request_key_auth-type.h
blob36b89a933310ff1e8a9889ca6eaf8de587108ad8
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* request_key authorisation token key type
4 * Copyright (C) 2005 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
6 */
8 #ifndef _KEYS_REQUEST_KEY_AUTH_TYPE_H
9 #define _KEYS_REQUEST_KEY_AUTH_TYPE_H
11 #include <linux/key.h>
14 * Authorisation record for request_key().
16 struct request_key_auth {
17 struct rcu_head rcu;
18 struct key *target_key;
19 struct key *dest_keyring;
20 const struct cred *cred;
21 void *callout_info;
22 size_t callout_len;
23 pid_t pid;
24 char op[8];
25 } __randomize_layout;
27 static inline struct request_key_auth *get_request_key_auth(const struct key *key)
29 return key->payload.data[0];
33 #endif /* _KEYS_REQUEST_KEY_AUTH_TYPE_H */