mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Jan 23 02:39:44.856 [warn] rend_mid_rendezvous(): Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie AFC097FD.
This is not anything that the server admin can deal with, so don't complain this loudly. svn:r5851
This commit is contained in:
parent
de13ddd26f
commit
1756ebdd4e
@ -31,7 +31,7 @@ rend_mid_establish_intro(circuit_t *circ, const char *request,
|
|||||||
"Received an ESTABLISH_INTRO request on circuit %d", circ->p_circ_id);
|
"Received an ESTABLISH_INTRO request on circuit %d", circ->p_circ_id);
|
||||||
|
|
||||||
if (circ->purpose != CIRCUIT_PURPOSE_OR || circ->n_conn) {
|
if (circ->purpose != CIRCUIT_PURPOSE_OR || circ->n_conn) {
|
||||||
warn(LD_PROTOCOL,
|
log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
|
||||||
"Rejecting ESTABLISH_INTRO on non-OR or non-edge circuit.");
|
"Rejecting ESTABLISH_INTRO on non-OR or non-edge circuit.");
|
||||||
reason = END_CIRC_REASON_TORPROTOCOL;
|
reason = END_CIRC_REASON_TORPROTOCOL;
|
||||||
goto err;
|
goto err;
|
||||||
@ -266,7 +266,7 @@ rend_mid_rendezvous(circuit_t *circ, const char *request, size_t request_len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (request_len != REND_COOKIE_LEN+DH_KEY_LEN+DIGEST_LEN) {
|
if (request_len != REND_COOKIE_LEN+DH_KEY_LEN+DIGEST_LEN) {
|
||||||
warn(LD_PROTOCOL,
|
log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
|
||||||
"Rejecting RENDEZVOUS1 cell with bad length (%d) on circuit %d.",
|
"Rejecting RENDEZVOUS1 cell with bad length (%d) on circuit %d.",
|
||||||
(int)request_len, circ->p_circ_id);
|
(int)request_len, circ->p_circ_id);
|
||||||
reason = END_CIRC_REASON_TORPROTOCOL;
|
reason = END_CIRC_REASON_TORPROTOCOL;
|
||||||
@ -275,7 +275,7 @@ rend_mid_rendezvous(circuit_t *circ, const char *request, size_t request_len)
|
|||||||
|
|
||||||
rend_circ = circuit_get_rendezvous(request);
|
rend_circ = circuit_get_rendezvous(request);
|
||||||
if (!rend_circ) {
|
if (!rend_circ) {
|
||||||
warn(LD_PROTOCOL,
|
log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
|
||||||
"Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie %s.",
|
"Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie %s.",
|
||||||
hexid);
|
hexid);
|
||||||
reason = END_CIRC_REASON_TORPROTOCOL;
|
reason = END_CIRC_REASON_TORPROTOCOL;
|
||||||
|
Loading…
Reference in New Issue
Block a user