diff --git a/doc/TODO b/doc/TODO
index d589232565..4b41c69f73 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -21,12 +21,11 @@ R o pick the whole path when you start the circuit.
o finish messing with reachability stuff
o if we jump in time a lot, then mark our circs and note that we
haven't made a circ yet.
-
-actually give http reason phrases to dir clients, so they know why
- they're rejected.
-controller should have an event to learn about new addressmappings?
-how do ulimits work on win32, anyway?
-have a separate config option which caps bandwidth-to-advertise.
+ o actually give http reason phrases to dir clients, so they know why
+ they're rejected.
+ - controller should have an event to learn about new addressmappings?
+ - how do ulimits work on win32, anyway?
+ - have a separate config option which caps bandwidth-to-advertise.
For 0.1.0.x:
@@ -97,6 +96,7 @@ R - revised circ selection stuff.
o Time out never-attached streams.
o If we never get a CONNECTED back, we should put the stream back in
CONTROLLER_WAIT, not in CIRCUIT_WAIT.
+ - Add a way for the controller to say, "Hey, nuke this stream."
- Tests for new controller features
R o HTTPS proxy for OR CONNECT stuff. (For outgoing SSL connections to
other ORs.)
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index 1b465c15b5..675e9e89e8 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -56,6 +56,7 @@ static int
connection_or_read_proxy_response(connection_t *conn) {
char *headers;
+ char *reason=NULL;
int status_code;
time_t date_header;
int compression;
@@ -73,26 +74,31 @@ connection_or_read_proxy_response(connection_t *conn) {
}
if (parse_http_response(headers, &status_code, &date_header,
- &compression) < 0) {
+ &compression, &reason) < 0) {
log_fn(LOG_WARN,"Unparseable headers (connecting to '%s'). Closing.",
conn->address);
tor_free(headers);
return -1;
}
+ if (!reason) reason = tor_strdup("[no reason given]");
if (status_code == 200) {
- log_fn(LOG_INFO,"https connect successful (to '%s')! Launching tls.",
- conn->address);
+ log_fn(LOG_INFO,
+ "HTTPS connect to '%s' successful! (200 \"%s\") Starting TLS.",
+ conn->address, reason);
+ tor_free(reason);
if (connection_tls_start_handshake(conn, 0) < 0) {
/* TLS handshaking error of some kind. */
connection_mark_for_close(conn);
+
return -1;
}
return 0;
}
/* else, bad news on the status code */
- log_fn(LOG_WARN,"The https proxy sent back a bad status code %d. Closing.",
- status_code);
+ log_fn(LOG_WARN,"The https proxy sent back an unexpected status code %d (\"%s\"). Closing.",
+ status_code, reason);
+ tor_free(reason);
connection_mark_for_close(conn);
return -1;
}
diff --git a/src/or/directory.c b/src/or/directory.c
index 597d215d1b..ed6a10cd8c 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -490,17 +490,21 @@ parse_http_url(char *headers, char **url)
/** Parse an HTTP response string headers of the form
* "HTTP/1.\%d \%d\%s\r\n...".
- * If it's well-formed, assign *code and return 0.
- * If date is provided, set *date to the Date header in the
- * http headers, or 0 if no such header is found. If compression
- * is provided, set *compression to the compression method given
- * in the Content-Encoding header, or 0 if no such header is found, or -1
- * if the value of the header is not recognized.
- * Otherwise, return -1.
+ *
+ * If it's well-formed, assign the status code to *code and
+ * return 0. Otherwise, return -1.
+ *
+ * On success: If date is provided, set *date to the Date
+ * header in the http headers, or 0 if no such header is found. If
+ * compression is provided, set *compression to the
+ * compression method given in the Content-Encoding header, or 0 if no
+ * such header is found, or -1 if the value of the header is not
+ * recognized. If reason is provided, strdup the reason string
+ * into it.
*/
int
parse_http_response(const char *headers, int *code, time_t *date,
- int *compression)
+ int *compression, char **reason)
{
int n1, n2;
char datestr[RFC1123_TIME_LEN+1];
@@ -521,6 +525,20 @@ parse_http_response(const char *headers, int *code, time_t *date,
parsed_headers = smartlist_create();
smartlist_split_string(parsed_headers, headers, "\n",
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1);
+ if (reason) {
+ smartlist_t *status_line_elements = smartlist_create();
+ tor_assert(smartlist_len(parsed_headers));
+ smartlist_split_string(status_line_elements,
+ smartlist_get(parsed_headers, 0),
+ " ", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3);
+ tor_assert(smartlist_len(status_line_elements) <= 3);
+ if (smartlist_len(status_line_elements) == 3) {
+ *reason = smartlist_get(status_line_elements, 2);
+ smartlist_set(status_line_elements, 2, NULL); /* Prevent free */
+ }
+ SMARTLIST_FOREACH(status_line_elements, char *, cp, tor_free(cp));
+ smartlist_free(status_line_elements);
+ }
if (date) {
*date = 0;
SMARTLIST_FOREACH(parsed_headers, const char *, s,
@@ -594,6 +612,7 @@ connection_dir_client_reached_eof(connection_t *conn)
{
char *body;
char *headers;
+ char *reason = NULL;
size_t body_len=0;
int status_code;
time_t now, date_header=0;
@@ -615,11 +634,17 @@ connection_dir_client_reached_eof(connection_t *conn)
}
if (parse_http_response(headers, &status_code, &date_header,
- &compression) < 0) {
+ &compression, &reason) < 0) {
log_fn(LOG_WARN,"Unparseable headers (server '%s'). Closing.", conn->address);
tor_free(body); tor_free(headers);
return -1;
}
+ if (!reason) reason = tor_strdup("[no reason given]");
+
+ log_fn(LOG_DEBUG,
+ "Received response from directory servers '%s': %d \"%s\"",
+ conn->address, status_code, reason);
+
if (date_header > 0) {
now = time(NULL);
delta = now-date_header;
@@ -677,7 +702,7 @@ connection_dir_client_reached_eof(connection_t *conn)
* we didn't manage to uncompress it, then warn and bail. */
if (!plausible && !new_body) {
log_fn(LOG_WARN, "Unable to decompress HTTP body (server '%s').", conn->address);
- tor_free(body); tor_free(headers);
+ tor_free(body); tor_free(headers); tor_free(reason);
return -1;
}
if (new_body) {
@@ -692,14 +717,15 @@ connection_dir_client_reached_eof(connection_t *conn)
log_fn(LOG_INFO,"Received directory (size %d) from server '%s'",
(int)body_len, conn->address);
if (status_code == 503 || body_len == 0) {
- log_fn(LOG_INFO,"Empty directory. Ignoring.");
- tor_free(body); tor_free(headers);
+ log_fn(LOG_INFO,"Empty directory; status %d (\"%s\") Ignoring.",
+ status_code, reason);
+ tor_free(body); tor_free(headers); tor_free(reason);
return 0;
}
if (status_code != 200) {
- log_fn(LOG_WARN,"Received http status code %d from server '%s'. Failing.",
- status_code, conn->address);
- tor_free(body); tor_free(headers);
+ log_fn(LOG_WARN,"Received http status code %d (\"%s\") from server '%s'. Failing.",
+ status_code, reason, conn->address);
+ tor_free(body); tor_free(headers); tor_free(reason);
return -1;
}
if (router_load_routerlist_from_directory(body, NULL, !skewed, 0) < 0) {
@@ -717,14 +743,14 @@ connection_dir_client_reached_eof(connection_t *conn)
/* just update our list of running routers, if this list is new info */
log_fn(LOG_INFO,"Received running-routers list (size %d)", (int)body_len);
if (status_code != 200) {
- log_fn(LOG_WARN,"Received http status code %d from server '%s'. Failing.",
- status_code, conn->address);
- tor_free(body); tor_free(headers);
+ log_fn(LOG_WARN,"Received http status code %d (\"%s\") from server '%s'. Failing.",
+ status_code, reason, conn->address);
+ tor_free(body); tor_free(headers); tor_free(reason);
return -1;
}
if (!(rrs = router_parse_runningrouters(body, 1))) {
log_fn(LOG_WARN, "Can't parse runningrouters list (server '%s')", conn->address);
- tor_free(body); tor_free(headers);
+ tor_free(body); tor_free(headers); tor_free(reason);
return -1;
}
router_get_routerlist(&rl);
@@ -741,20 +767,20 @@ connection_dir_client_reached_eof(connection_t *conn)
log_fn(LOG_INFO,"eof (status 200) after uploading server descriptor: finished.");
break;
case 400:
- log_fn(LOG_WARN,"http status 400 (bad request) response from dirserver '%s'. Malformed server descriptor?", conn->address);
+ log_fn(LOG_WARN,"http status 400 (\"%s\") response from dirserver '%s'. Malformed server descriptor?", reason, conn->address);
break;
case 403:
- log_fn(LOG_WARN,"http status 403 (unapproved server) response from dirserver '%s'. Is your clock skewed? Have you mailed us your key fingerprint? Are you using the right key? Are you using a private IP address? See http://tor.eff.org/doc/tor-doc.html#server.", conn->address);
+ log_fn(LOG_WARN,"http status 403 (\"%s\") response from dirserver '%s'. Is your clock skewed? Have you mailed us your key fingerprint? Are you using the right key? Are you using a private IP address? See http://tor.eff.org/doc/tor-doc.html#server.", reason, conn->address);
break;
default:
- log_fn(LOG_WARN,"http status %d response unrecognized (server '%s').", status_code, conn->address);
+ log_fn(LOG_WARN,"http status %d (\"%s\") reason unexpected (server '%s').", status_code, reason, conn->address);
break;
}
}
if (conn->purpose == DIR_PURPOSE_FETCH_RENDDESC) {
- log_fn(LOG_INFO,"Received rendezvous descriptor (size %d, status code %d)",
- (int)body_len, status_code);
+ log_fn(LOG_INFO,"Received rendezvous descriptor (size %d, status %d (\"%s\"))",
+ (int)body_len, status_code, reason);
switch (status_code) {
case 200:
if (rend_cache_store(body, body_len) < 0) {
@@ -772,7 +798,10 @@ connection_dir_client_reached_eof(connection_t *conn)
* connection_mark_for_close cleans it up. */
break;
case 400:
- log_fn(LOG_WARN,"http status 400 (bad request). Dirserver didn't like our rendezvous query?");
+ log_fn(LOG_WARN,"http status 400 (\"%s\"). Dirserver didn't like our rendezvous query?", reason);
+ break;
+ default:
+ log_fn(LOG_WARN,"http status %d (\"%s\") response unexpected (server '%s').", status_code, reason, conn->address);
break;
}
}
@@ -780,17 +809,17 @@ connection_dir_client_reached_eof(connection_t *conn)
if (conn->purpose == DIR_PURPOSE_UPLOAD_RENDDESC) {
switch (status_code) {
case 200:
- log_fn(LOG_INFO,"eof (status 200) after uploading rendezvous descriptor: finished.");
+ log_fn(LOG_INFO,"Uploading rendezvous descriptor: finished with status 200 (\"%s\")", reason);
break;
case 400:
- log_fn(LOG_WARN,"http status 400 (bad request) response from dirserver. Malformed rendezvous descriptor?");
+ log_fn(LOG_WARN,"http status 400 (\"%s\") response from dirserver. Malformed rendezvous descriptor?", reason);
break;
default:
- log_fn(LOG_WARN,"http status %d response unrecognized.", status_code);
+ log_fn(LOG_WARN,"http status %d (\"%s\") response unexpected (server '%s').", status_code, reason, conn->address);
break;
}
}
- tor_free(body); tor_free(headers);
+ tor_free(body); tor_free(headers); tor_free(reason);
return 0;
}
diff --git a/src/or/or.h b/src/or/or.h
index 769ceacc07..603aeb31a1 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -1434,7 +1434,7 @@ void directory_initiate_command_router(routerinfo_t *router, uint8_t purpose,
const char *payload, size_t payload_len);
int parse_http_response(const char *headers, int *code, time_t *date,
- int *compression);
+ int *compression, char **response);
int connection_dir_reached_eof(connection_t *conn);
int connection_dir_process_inbuf(connection_t *conn);