libceph: fix error handling in process_one_ticket()
Don't leak key internals after new_session_key is populated. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Reviewed-by: Alex Elder <elder@linaro.org>
This commit is contained in:
parent
d18a1247c4
commit
b51456a609
|
@ -151,7 +151,7 @@ static int process_one_ticket(struct ceph_auth_client *ac,
|
||||||
struct timespec validity;
|
struct timespec validity;
|
||||||
void *tp, *tpend;
|
void *tp, *tpend;
|
||||||
void **ptp;
|
void **ptp;
|
||||||
struct ceph_crypto_key new_session_key;
|
struct ceph_crypto_key new_session_key = { 0 };
|
||||||
struct ceph_buffer *new_ticket_blob;
|
struct ceph_buffer *new_ticket_blob;
|
||||||
unsigned long new_expires, new_renew_after;
|
unsigned long new_expires, new_renew_after;
|
||||||
u64 new_secret_id;
|
u64 new_secret_id;
|
||||||
|
@ -237,13 +237,13 @@ static int process_one_ticket(struct ceph_auth_client *ac,
|
||||||
type, ceph_entity_type_name(type), th->secret_id,
|
type, ceph_entity_type_name(type), th->secret_id,
|
||||||
(int)th->ticket_blob->vec.iov_len);
|
(int)th->ticket_blob->vec.iov_len);
|
||||||
xi->have_keys |= th->service;
|
xi->have_keys |= th->service;
|
||||||
|
return 0;
|
||||||
out:
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
bad:
|
bad:
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto out;
|
out:
|
||||||
|
ceph_crypto_key_destroy(&new_session_key);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ceph_x_proc_ticket_reply(struct ceph_auth_client *ac,
|
static int ceph_x_proc_ticket_reply(struct ceph_auth_client *ac,
|
||||||
|
|
Loading…
Reference in New Issue