blob: 925ca583c09c8eae2fbaebbd73603e9194132f97 [file] [log] [blame]
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil4e7a5dc2009-11-18 16:19:57 -08003
4#include <linux/err.h>
5#include <linux/module.h>
6#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Sage Weil4e7a5dc2009-11-18 16:19:57 -08008
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07009#include <linux/ceph/decode.h>
10#include <linux/ceph/auth.h>
11
Sage Weil4e7a5dc2009-11-18 16:19:57 -080012#include "auth_none.h"
Sage Weil4e7a5dc2009-11-18 16:19:57 -080013
14static void reset(struct ceph_auth_client *ac)
15{
16 struct ceph_auth_none_info *xi = ac->private;
17
18 xi->starting = true;
19 xi->built_authorizer = false;
20}
21
22static void destroy(struct ceph_auth_client *ac)
23{
24 kfree(ac->private);
25 ac->private = NULL;
26}
27
28static int is_authenticated(struct ceph_auth_client *ac)
29{
30 struct ceph_auth_none_info *xi = ac->private;
31
32 return !xi->starting;
33}
34
Sage Weila41359f2010-05-25 15:39:06 -070035static int should_authenticate(struct ceph_auth_client *ac)
36{
37 struct ceph_auth_none_info *xi = ac->private;
38
39 return xi->starting;
40}
41
Sage Weil4e7a5dc2009-11-18 16:19:57 -080042/*
43 * the generic auth code decode the global_id, and we carry no actual
44 * authenticate state, so nothing happens here.
45 */
46static int handle_reply(struct ceph_auth_client *ac, int result,
47 void *buf, void *end)
48{
49 struct ceph_auth_none_info *xi = ac->private;
50
51 xi->starting = false;
52 return result;
53}
54
55/*
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
58 * we connect to.
59 */
60static int ceph_auth_none_create_authorizer(
61 struct ceph_auth_client *ac, int peer_type,
Alex Elder74f18692012-05-16 15:16:39 -050062 struct ceph_auth_handshake *auth)
Sage Weil4e7a5dc2009-11-18 16:19:57 -080063{
64 struct ceph_auth_none_info *ai = ac->private;
65 struct ceph_none_authorizer *au = &ai->au;
66 void *p, *end;
67 int ret;
68
69 if (!ai->built_authorizer) {
70 p = au->buf;
71 end = p + sizeof(au->buf);
Sage Weil07c87392010-02-04 09:42:20 -080072 ceph_encode_8(&p, 1);
Sage Weil4e7a5dc2009-11-18 16:19:57 -080073 ret = ceph_entity_name_encode(ac->name, &p, end - 8);
74 if (ret < 0)
75 goto bad;
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);
81 }
82
Alex Elder74f18692012-05-16 15:16:39 -050083 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);
88
Sage Weil4e7a5dc2009-11-18 16:19:57 -080089 return 0;
90
91bad2:
92 ret = -ERANGE;
93bad:
94 return ret;
95}
96
97static void ceph_auth_none_destroy_authorizer(struct ceph_auth_client *ac,
98 struct ceph_authorizer *a)
99{
100 /* nothing to do */
101}
102
103static const struct ceph_auth_client_ops ceph_auth_none_ops = {
Sage Weil559c1e02010-05-14 09:55:18 -0700104 .name = "none",
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800105 .reset = reset,
106 .destroy = destroy,
107 .is_authenticated = is_authenticated,
Sage Weila41359f2010-05-25 15:39:06 -0700108 .should_authenticate = should_authenticate,
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800109 .handle_reply = handle_reply,
110 .create_authorizer = ceph_auth_none_create_authorizer,
111 .destroy_authorizer = ceph_auth_none_destroy_authorizer,
112};
113
114int ceph_auth_none_init(struct ceph_auth_client *ac)
115{
116 struct ceph_auth_none_info *xi;
117
118 dout("ceph_auth_none_init %p\n", ac);
119 xi = kzalloc(sizeof(*xi), GFP_NOFS);
120 if (!xi)
121 return -ENOMEM;
122
123 xi->starting = true;
124 xi->built_authorizer = false;
125
126 ac->protocol = CEPH_AUTH_NONE;
127 ac->private = xi;
128 ac->ops = &ceph_auth_none_ops;
129 return 0;
130}
131