mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix log-uninitialized-stack bug in rend_service_intro_established.
Fixes bug 23490; bugfix on 0.2.7.2-alpha. TROVE-2017-008 CVE-2017-0380
This commit is contained in:
@@ -2859,6 +2859,8 @@ rend_service_intro_established(origin_circuit_t *circuit,
|
||||
(unsigned)circuit->base_.n_circ_id);
|
||||
goto err;
|
||||
}
|
||||
base32_encode(serviceid, REND_SERVICE_ID_LEN_BASE32 + 1,
|
||||
circuit->rend_data->rend_pk_digest, REND_SERVICE_ID_LEN);
|
||||
/* We've just successfully established a intro circuit to one of our
|
||||
* introduction point, account for it. */
|
||||
intro = find_intro_point(circuit);
|
||||
@@ -2875,8 +2877,6 @@ rend_service_intro_established(origin_circuit_t *circuit,
|
||||
service->desc_is_dirty = time(NULL);
|
||||
circuit_change_purpose(TO_CIRCUIT(circuit), CIRCUIT_PURPOSE_S_INTRO);
|
||||
|
||||
base32_encode(serviceid, REND_SERVICE_ID_LEN_BASE32 + 1,
|
||||
circuit->rend_data->rend_pk_digest, REND_SERVICE_ID_LEN);
|
||||
log_info(LD_REND,
|
||||
"Received INTRO_ESTABLISHED cell on circuit %u for service %s",
|
||||
(unsigned)circuit->base_.n_circ_id, serviceid);
|
||||
|
||||
Reference in New Issue
Block a user