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