2 #include <linux/ceph/ceph_debug.h>
5 #include <linux/module.h>
6 #include <linux/random.h>
7 #include <linux/slab.h>
9 #include <linux/ceph/decode.h>
10 #include <linux/ceph/auth.h>
12 #include "auth_none.h"
14 static void reset(struct ceph_auth_client *ac)
16 struct ceph_auth_none_info *xi = ac->private;
19 xi->built_authorizer = false;
22 static void destroy(struct ceph_auth_client *ac)
28 static int is_authenticated(struct ceph_auth_client *ac)
30 struct ceph_auth_none_info *xi = ac->private;
35 static int should_authenticate(struct ceph_auth_client *ac)
37 struct ceph_auth_none_info *xi = ac->private;
43 * the generic auth code decode the global_id, and we carry no actual
44 * authenticate state, so nothing happens here.
46 static int handle_reply(struct ceph_auth_client *ac, int result,
49 struct ceph_auth_none_info *xi = ac->private;
56 * build an 'authorizer' with our entity_name and global_id. we can
57 * reuse a single static copy since it is identical for all services
60 static int ceph_auth_none_create_authorizer(
61 struct ceph_auth_client *ac, int peer_type,
62 struct ceph_auth_handshake *auth)
64 struct ceph_auth_none_info *ai = ac->private;
65 struct ceph_none_authorizer *au = &ai->au;
69 if (!ai->built_authorizer) {
71 end = p + sizeof(au->buf);
73 ret = ceph_entity_name_encode(ac->name, &p, end - 8);
76 ceph_decode_need(&p, end, sizeof(u64), bad2);
77 ceph_encode_64(&p, ac->global_id);
78 au->buf_len = p - (void *)au->buf;
79 ai->built_authorizer = true;
80 dout("built authorizer len %d\n", au->buf_len);
83 auth->authorizer = (struct ceph_authorizer *) au;
84 auth->authorizer_buf = au->buf;
85 auth->authorizer_buf_len = au->buf_len;
86 auth->authorizer_reply_buf = au->reply_buf;
87 auth->authorizer_reply_buf_len = sizeof (au->reply_buf);
97 static void ceph_auth_none_destroy_authorizer(struct ceph_auth_client *ac,
98 struct ceph_authorizer *a)
103 static const struct ceph_auth_client_ops ceph_auth_none_ops = {
107 .is_authenticated = is_authenticated,
108 .should_authenticate = should_authenticate,
109 .handle_reply = handle_reply,
110 .create_authorizer = ceph_auth_none_create_authorizer,
111 .destroy_authorizer = ceph_auth_none_destroy_authorizer,
114 int ceph_auth_none_init(struct ceph_auth_client *ac)
116 struct ceph_auth_none_info *xi;
118 dout("ceph_auth_none_init %p\n", ac);
119 xi = kzalloc(sizeof(*xi), GFP_NOFS);
124 xi->built_authorizer = false;
126 ac->protocol = CEPH_AUTH_NONE;
128 ac->ops = &ceph_auth_none_ops;