mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
libceph: drop authorizer check from cephx msg signing routines
I don't see a way for auth->authorizer to be NULL in ceph_x_sign_message() or ceph_x_check_message_signature(). Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
parent
79dbd1baa6
commit
4199b8eec3
1 changed files with 1 additions and 4 deletions
|
@ -697,8 +697,7 @@ static int ceph_x_sign_message(struct ceph_auth_handshake *auth,
|
|||
struct ceph_msg *msg)
|
||||
{
|
||||
int ret;
|
||||
if (!auth->authorizer)
|
||||
return 0;
|
||||
|
||||
ret = calcu_signature((struct ceph_x_authorizer *)auth->authorizer,
|
||||
msg, &msg->footer.sig);
|
||||
if (ret < 0)
|
||||
|
@ -713,8 +712,6 @@ static int ceph_x_check_message_signature(struct ceph_auth_handshake *auth,
|
|||
__le64 sig_check;
|
||||
int ret;
|
||||
|
||||
if (!auth->authorizer)
|
||||
return 0;
|
||||
ret = calcu_signature((struct ceph_x_authorizer *)auth->authorizer,
|
||||
msg, &sig_check);
|
||||
if (ret < 0)
|
||||
|
|
Loading…
Reference in a new issue