]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - include/linux/ceph/auth.h
libceph: add authorizer challenge
[thirdparty/kernel/stable.git] / include / linux / ceph / auth.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
4e7a5dcd
SW
2#ifndef _FS_CEPH_AUTH_H
3#define _FS_CEPH_AUTH_H
4
3d14c5d2
YS
5#include <linux/ceph/types.h>
6#include <linux/ceph/buffer.h>
4e7a5dcd
SW
7
8/*
9 * Abstract interface for communicating with the authenticate module.
10 * There is some handshake that takes place between us and the monitor
11 * to acquire the necessary keys. These are used to generate an
12 * 'authorizer' that we use when connecting to a service (mds, osd).
13 */
14
15struct ceph_auth_client;
33d07337 16struct ceph_msg;
4e7a5dcd 17
6c1ea260
ID
18struct ceph_authorizer {
19 void (*destroy)(struct ceph_authorizer *);
20};
21
6c4a1915
AE
22struct ceph_auth_handshake {
23 struct ceph_authorizer *authorizer;
24 void *authorizer_buf;
25 size_t authorizer_buf_len;
26 void *authorizer_reply_buf;
27 size_t authorizer_reply_buf_len;
33d07337
YZ
28 int (*sign_message)(struct ceph_auth_handshake *auth,
29 struct ceph_msg *msg);
30 int (*check_message_signature)(struct ceph_auth_handshake *auth,
31 struct ceph_msg *msg);
6c4a1915
AE
32};
33
4e7a5dcd 34struct ceph_auth_client_ops {
559c1e00
SW
35 const char *name;
36
4e7a5dcd
SW
37 /*
38 * true if we are authenticated and can connect to
39 * services.
40 */
41 int (*is_authenticated)(struct ceph_auth_client *ac);
42
a41359fa
SW
43 /*
44 * true if we should (re)authenticate, e.g., when our tickets
45 * are getting old and crusty.
46 */
47 int (*should_authenticate)(struct ceph_auth_client *ac);
48
4e7a5dcd
SW
49 /*
50 * build requests and process replies during monitor
51 * handshake. if handle_reply returns -EAGAIN, we build
52 * another request.
53 */
54 int (*build_request)(struct ceph_auth_client *ac, void *buf, void *end);
55 int (*handle_reply)(struct ceph_auth_client *ac, int result,
56 void *buf, void *end);
57
58 /*
59 * Create authorizer for connecting to a service, and verify
60 * the response to authenticate the service.
61 */
62 int (*create_authorizer)(struct ceph_auth_client *ac, int peer_type,
74f1869f 63 struct ceph_auth_handshake *auth);
0bed9b5c
SW
64 /* ensure that an existing authorizer is up to date */
65 int (*update_authorizer)(struct ceph_auth_client *ac, int peer_type,
66 struct ceph_auth_handshake *auth);
6daca13d
ID
67 int (*add_authorizer_challenge)(struct ceph_auth_client *ac,
68 struct ceph_authorizer *a,
69 void *challenge_buf,
70 int challenge_buf_len);
4e7a5dcd 71 int (*verify_authorizer_reply)(struct ceph_auth_client *ac,
0dde5848 72 struct ceph_authorizer *a);
9bd2e6f8
SW
73 void (*invalidate_authorizer)(struct ceph_auth_client *ac,
74 int peer_type);
4e7a5dcd
SW
75
76 /* reset when we (re)connect to a monitor */
77 void (*reset)(struct ceph_auth_client *ac);
78
79 void (*destroy)(struct ceph_auth_client *ac);
33d07337
YZ
80
81 int (*sign_message)(struct ceph_auth_handshake *auth,
82 struct ceph_msg *msg);
83 int (*check_message_signature)(struct ceph_auth_handshake *auth,
84 struct ceph_msg *msg);
4e7a5dcd
SW
85};
86
87struct ceph_auth_client {
88 u32 protocol; /* CEPH_AUTH_* */
89 void *private; /* for use by protocol implementation */
90 const struct ceph_auth_client_ops *ops; /* null iff protocol==0 */
91
92 bool negotiating; /* true if negotiating protocol */
93 const char *name; /* entity name */
94 u64 global_id; /* our unique id in system */
8323c3aa 95 const struct ceph_crypto_key *key; /* our secret key */
4e7a5dcd 96 unsigned want_keys; /* which services we want */
e9966076
SW
97
98 struct mutex mutex;
4e7a5dcd
SW
99};
100
101extern struct ceph_auth_client *ceph_auth_init(const char *name,
8323c3aa 102 const struct ceph_crypto_key *key);
4e7a5dcd
SW
103extern void ceph_auth_destroy(struct ceph_auth_client *ac);
104
105extern void ceph_auth_reset(struct ceph_auth_client *ac);
106
107extern int ceph_auth_build_hello(struct ceph_auth_client *ac,
108 void *buf, size_t len);
109extern int ceph_handle_auth_reply(struct ceph_auth_client *ac,
110 void *buf, size_t len,
111 void *reply_buf, size_t reply_len);
f01d5cb2 112int ceph_auth_entity_name_encode(const char *name, void **p, void *end);
4e7a5dcd 113
9bd2e6f8
SW
114extern int ceph_build_auth(struct ceph_auth_client *ac,
115 void *msg_buf, size_t msg_len);
116
117extern int ceph_auth_is_authenticated(struct ceph_auth_client *ac);
27859f97
SW
118extern int ceph_auth_create_authorizer(struct ceph_auth_client *ac,
119 int peer_type,
120 struct ceph_auth_handshake *auth);
6c1ea260 121void ceph_auth_destroy_authorizer(struct ceph_authorizer *a);
27859f97
SW
122extern int ceph_auth_update_authorizer(struct ceph_auth_client *ac,
123 int peer_type,
124 struct ceph_auth_handshake *a);
6daca13d
ID
125int ceph_auth_add_authorizer_challenge(struct ceph_auth_client *ac,
126 struct ceph_authorizer *a,
127 void *challenge_buf,
128 int challenge_buf_len);
27859f97 129extern int ceph_auth_verify_authorizer_reply(struct ceph_auth_client *ac,
0dde5848 130 struct ceph_authorizer *a);
27859f97
SW
131extern void ceph_auth_invalidate_authorizer(struct ceph_auth_client *ac,
132 int peer_type);
9bd2e6f8 133
33d07337
YZ
134static inline int ceph_auth_sign_message(struct ceph_auth_handshake *auth,
135 struct ceph_msg *msg)
136{
137 if (auth->sign_message)
138 return auth->sign_message(auth, msg);
139 return 0;
140}
141
142static inline
143int ceph_auth_check_message_signature(struct ceph_auth_handshake *auth,
144 struct ceph_msg *msg)
145{
146 if (auth->check_message_signature)
147 return auth->check_message_signature(auth, msg);
148 return 0;
149}
4e7a5dcd 150#endif