[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Report HTTP reasons to directory clients. (Also, fix format...
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] Report HTTP reasons to directory clients. (Also, fix format...
- From: nickm@xxxxxxxx (Nick Mathewson)
- Date: Tue, 22 Mar 2005 13:43:27 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Tue, 22 Mar 2005 13:43:58 -0500
- Reply-to: or-dev@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Update of /home/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv20714/src/or
Modified Files:
connection_or.c directory.c or.h
Log Message:
Report HTTP reasons to directory clients. (Also, fix format on new TODO items)
Index: connection_or.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/connection_or.c,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -d -r1.161 -r1.162
--- connection_or.c 14 Mar 2005 03:18:35 -0000 1.161
+++ connection_or.c 22 Mar 2005 18:43:24 -0000 1.162
@@ -56,6 +56,7 @@
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 @@
}
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;
}
Index: directory.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/directory.c,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -d -r1.220 -r1.221
--- directory.c 22 Mar 2005 01:18:50 -0000 1.220
+++ directory.c 22 Mar 2005 18:43:24 -0000 1.221
@@ -490,17 +490,21 @@
/** Parse an HTTP response string <b>headers</b> of the form
* "HTTP/1.\%d \%d\%s\r\n...".
- * If it's well-formed, assign *<b>code</b> and return 0.
- * If <b>date</b> is provided, set *date to the Date header in the
- * http headers, or 0 if no such header is found. If <b>compression</b>
- * is provided, set *<b>compression</b> 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 *<b>code</b> and
+ * return 0. Otherwise, return -1.
+ *
+ * On success: If <b>date</b> is provided, set *date to the Date
+ * header in the http headers, or 0 if no such header is found. If
+ * <b>compression</b> is provided, set *<b>compression</b> 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 <b>reason</b> 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 @@
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 @@
{
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 @@
}
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 @@
* 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 @@
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 @@
/* 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 @@
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_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 @@
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;
}
Index: or.h
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/or.h,v
retrieving revision 1.565
retrieving revision 1.566
diff -u -d -r1.565 -r1.566
--- or.h 22 Mar 2005 03:27:51 -0000 1.565
+++ or.h 22 Mar 2005 18:43:24 -0000 1.566
@@ -1434,7 +1434,7 @@
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);