Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 1 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 2 | #include <linux/ceph/ceph_debug.h> |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 3 | |
| 4 | #include <linux/err.h> |
| 5 | #include <linux/module.h> |
| 6 | #include <linux/random.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 8 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 9 | #include <linux/ceph/decode.h> |
| 10 | #include <linux/ceph/auth.h> |
| 11 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 12 | #include "auth_none.h" |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 13 | |
| 14 | static void reset(struct ceph_auth_client *ac) |
| 15 | { |
| 16 | struct ceph_auth_none_info *xi = ac->private; |
| 17 | |
| 18 | xi->starting = true; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | static void destroy(struct ceph_auth_client *ac) |
| 22 | { |
| 23 | kfree(ac->private); |
| 24 | ac->private = NULL; |
| 25 | } |
| 26 | |
| 27 | static int is_authenticated(struct ceph_auth_client *ac) |
| 28 | { |
| 29 | struct ceph_auth_none_info *xi = ac->private; |
| 30 | |
| 31 | return !xi->starting; |
| 32 | } |
| 33 | |
Sage Weil | a41359f | 2010-05-25 15:39:06 -0700 | [diff] [blame] | 34 | static int should_authenticate(struct ceph_auth_client *ac) |
| 35 | { |
| 36 | struct ceph_auth_none_info *xi = ac->private; |
| 37 | |
| 38 | return xi->starting; |
| 39 | } |
| 40 | |
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 41 | static int ceph_auth_none_build_authorizer(struct ceph_auth_client *ac, |
| 42 | struct ceph_none_authorizer *au) |
| 43 | { |
| 44 | void *p = au->buf; |
| 45 | void *const end = p + sizeof(au->buf); |
| 46 | int ret; |
| 47 | |
| 48 | ceph_encode_8_safe(&p, end, 1, e_range); |
Ilya Dryomov | f01d5cb | 2016-06-02 16:45:08 +0200 | [diff] [blame] | 49 | ret = ceph_auth_entity_name_encode(ac->name, &p, end); |
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 50 | if (ret < 0) |
| 51 | return ret; |
| 52 | |
| 53 | ceph_encode_64_safe(&p, end, ac->global_id, e_range); |
| 54 | au->buf_len = p - (void *)au->buf; |
| 55 | dout("%s built authorizer len %d\n", __func__, au->buf_len); |
| 56 | return 0; |
| 57 | |
| 58 | e_range: |
| 59 | return -ERANGE; |
| 60 | } |
| 61 | |
Tyler Hicks | 2cb33ca | 2013-06-20 13:13:59 -0700 | [diff] [blame] | 62 | static int build_request(struct ceph_auth_client *ac, void *buf, void *end) |
| 63 | { |
| 64 | return 0; |
| 65 | } |
| 66 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 67 | /* |
| 68 | * the generic auth code decode the global_id, and we carry no actual |
| 69 | * authenticate state, so nothing happens here. |
| 70 | */ |
| 71 | static int handle_reply(struct ceph_auth_client *ac, int result, |
| 72 | void *buf, void *end) |
| 73 | { |
| 74 | struct ceph_auth_none_info *xi = ac->private; |
| 75 | |
| 76 | xi->starting = false; |
| 77 | return result; |
| 78 | } |
| 79 | |
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 80 | static void ceph_auth_none_destroy_authorizer(struct ceph_authorizer *a) |
| 81 | { |
| 82 | kfree(a); |
| 83 | } |
| 84 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 85 | /* |
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 86 | * build an 'authorizer' with our entity_name and global_id. it is |
| 87 | * identical for all services we connect to. |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 88 | */ |
| 89 | static int ceph_auth_none_create_authorizer( |
| 90 | struct ceph_auth_client *ac, int peer_type, |
Alex Elder | 74f1869 | 2012-05-16 15:16:39 -0500 | [diff] [blame] | 91 | struct ceph_auth_handshake *auth) |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 92 | { |
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 93 | struct ceph_none_authorizer *au; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 94 | int ret; |
| 95 | |
Ilya Dryomov | 6c1ea26 | 2016-04-11 19:34:49 +0200 | [diff] [blame] | 96 | au = kmalloc(sizeof(*au), GFP_NOFS); |
| 97 | if (!au) |
| 98 | return -ENOMEM; |
| 99 | |
| 100 | au->base.destroy = ceph_auth_none_destroy_authorizer; |
| 101 | |
| 102 | ret = ceph_auth_none_build_authorizer(ac, au); |
| 103 | if (ret) { |
| 104 | kfree(au); |
| 105 | return ret; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 106 | } |
| 107 | |
Alex Elder | 74f1869 | 2012-05-16 15:16:39 -0500 | [diff] [blame] | 108 | auth->authorizer = (struct ceph_authorizer *) au; |
| 109 | auth->authorizer_buf = au->buf; |
| 110 | auth->authorizer_buf_len = au->buf_len; |
| 111 | auth->authorizer_reply_buf = au->reply_buf; |
| 112 | auth->authorizer_reply_buf_len = sizeof (au->reply_buf); |
| 113 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 114 | return 0; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | static const struct ceph_auth_client_ops ceph_auth_none_ops = { |
Sage Weil | 559c1e0 | 2010-05-14 09:55:18 -0700 | [diff] [blame] | 118 | .name = "none", |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 119 | .reset = reset, |
| 120 | .destroy = destroy, |
| 121 | .is_authenticated = is_authenticated, |
Sage Weil | a41359f | 2010-05-25 15:39:06 -0700 | [diff] [blame] | 122 | .should_authenticate = should_authenticate, |
Tyler Hicks | 2cb33ca | 2013-06-20 13:13:59 -0700 | [diff] [blame] | 123 | .build_request = build_request, |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 124 | .handle_reply = handle_reply, |
| 125 | .create_authorizer = ceph_auth_none_create_authorizer, |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 126 | }; |
| 127 | |
| 128 | int ceph_auth_none_init(struct ceph_auth_client *ac) |
| 129 | { |
| 130 | struct ceph_auth_none_info *xi; |
| 131 | |
| 132 | dout("ceph_auth_none_init %p\n", ac); |
| 133 | xi = kzalloc(sizeof(*xi), GFP_NOFS); |
| 134 | if (!xi) |
| 135 | return -ENOMEM; |
| 136 | |
| 137 | xi->starting = true; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 138 | |
| 139 | ac->protocol = CEPH_AUTH_NONE; |
| 140 | ac->private = xi; |
| 141 | ac->ops = &ceph_auth_none_ops; |
| 142 | return 0; |
| 143 | } |
| 144 | |