Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 2 | #ifndef _FS_CEPH_AUTH_X_H |
3 | #define _FS_CEPH_AUTH_X_H | ||||
4 | |||||
5 | #include <linux/rbtree.h> | ||||
6 | |||||
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 7 | #include <linux/ceph/auth.h> |
8 | |||||
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 9 | #include "crypto.h" |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 10 | #include "auth_x_protocol.h" |
11 | |||||
12 | /* | ||||
13 | * Handle ticket for a single service. | ||||
14 | */ | ||||
15 | struct ceph_x_ticket_handler { | ||||
16 | struct rb_node node; | ||||
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 17 | unsigned int service; |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 18 | |
19 | struct ceph_crypto_key session_key; | ||||
Ilya Dryomov | 6abe097 | 2016-01-14 16:35:35 +0100 | [diff] [blame] | 20 | bool have_key; |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 21 | |
22 | u64 secret_id; | ||||
23 | struct ceph_buffer *ticket_blob; | ||||
24 | |||||
Arnd Bergmann | 473bd2d | 2018-07-13 22:18:34 +0200 | [diff] [blame] | 25 | time64_t renew_after, expires; |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 26 | }; |
27 | |||||
Ilya Dryomov | 7882a26 | 2016-12-02 16:35:07 +0100 | [diff] [blame] | 28 | #define CEPHX_AU_ENC_BUF_LEN 128 /* big enough for encrypted blob */ |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 29 | |
30 | struct ceph_x_authorizer { | ||||
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 31 | struct ceph_authorizer base; |
Yan, Zheng | ae385ea | 2014-11-04 16:32:35 +0800 | [diff] [blame] | 32 | struct ceph_crypto_key session_key; |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 33 | struct ceph_buffer *buf; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 34 | unsigned int service; |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 35 | u64 nonce; |
Sage Weil | 0bed9b5 | 2013-03-25 10:26:01 -0700 | [diff] [blame] | 36 | u64 secret_id; |
Ilya Dryomov | 7882a26 | 2016-12-02 16:35:07 +0100 | [diff] [blame] | 37 | char enc_buf[CEPHX_AU_ENC_BUF_LEN] __aligned(8); |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 38 | }; |
39 | |||||
40 | struct ceph_x_info { | ||||
41 | struct ceph_crypto_key secret; | ||||
42 | |||||
43 | bool starting; | ||||
44 | u64 server_challenge; | ||||
45 | |||||
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 46 | unsigned int have_keys; |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 47 | struct rb_root ticket_handlers; |
48 | |||||
49 | struct ceph_x_authorizer auth_authorizer; | ||||
50 | }; | ||||
51 | |||||
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 52 | int ceph_x_init(struct ceph_auth_client *ac); |
Sage Weil | ec0994e | 2010-02-02 16:25:35 -0800 | [diff] [blame] | 53 | |
54 | #endif |