summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-10-23 10:16:43 +0000
committerRoger Dingledine <arma@torproject.org>2006-10-23 10:16:43 +0000
commit77c8c0ee5158643960cbb6d3e30f11f3508f2481 (patch)
tree0601f95dd07db0afd9765a404fb1de8c2ab5917e
parentc0b0f96fce542d6cc0692eee525dfb7620dd036c (diff)
downloadtor-77c8c0ee5158643960cbb6d3e30f11f3508f2481.tar.gz
tor-77c8c0ee5158643960cbb6d3e30f11f3508f2481.zip
spec and implement some more status events. start to build
some conventions. svn:r8805
-rw-r--r--doc/control-spec.txt80
-rw-r--r--doc/rend-spec.txt2
-rw-r--r--src/or/circuitbuild.c14
-rw-r--r--src/or/main.c1
-rw-r--r--src/or/routerlist.c10
5 files changed, 70 insertions, 37 deletions
diff --git a/doc/control-spec.txt b/doc/control-spec.txt
index 0c260c6d3d..f317b368aa 100644
--- a/doc/control-spec.txt
+++ b/doc/control-spec.txt
@@ -40,10 +40,10 @@ $Id$
2.1. Description format
- The message formats listed below use ABNF as described in RFC2234.
+ The message formats listed below use ABNF as described in RFC 2234.
The protocol itself is loosely based on SMTP (see RFC 2821).
- We use the following nonterminals from RFC2822: atom, qcontent
+ We use the following nonterminals from RFC 2822: atom, qcontent
We define the following general-use nonterminals:
@@ -113,7 +113,7 @@ $Id$
; A "Data" section is a sequence of octets concluded by the terminating
; sequence CRLF "." CRLF. The terminating sequence may not appear in the
; body of the data. Leading periods on lines in the data are escaped with
- ; an additional leading period as in RFC2821 section 4.5.2
+ ; an additional leading period as in RFC 2821 section 4.5.2.
Data = *DataLine "." CRLF
DataLine = CRLF / "." 1*LineItem CRLF / NonDotItem *LineItem CRLF
LineItem = NonCR / 1*CR NonCRLF
@@ -942,27 +942,11 @@ $Id$
pairs on the same line.
Controllers who listen to these events will be assumed to want
- both EXTENDED_EVENTS and VERBOSE_NAMES; see the USEFEATURE command
- for details.
-
-[
- The reserved keyword "message" can optionally be used to provide a
- string describing the nature of the action. Message strings MUST
- NOT include items that a controller might be tempted to parse,
- such as numbers.
-no plans to use this yet -RD]
+ both EXTENDED_EVENTS and VERBOSE_NAMES; see the explanations
+ in the USEFEATURE section command for details.
Actions for STATUS_GENERAL severity NOTICE events can be as follows:
- [none yet]
-
- Actions for STATUS_GENERAL severity WARN events can be as follows:
-
- DANGEROUS_VERSION
- "current=version"
- "recommended=version,version,..."
- "reason=new/old/unrecommended"
-
CLOCK_JUMPED
"time=NUM"
Tor spent enough time without CPU cycles that it has closed all
@@ -971,8 +955,21 @@ no plans to use this yet -RD]
also happens when the system is swapping so heavily that Tor is
starving. The "time" argument includes the number of seconds Tor
thinks it was unconscious for.
- [This status event can generally be ignored by the controller,
- since we don't really know what the user should do anyway. Hm.]
+ This status event is sent as WARN severity if Tor is acting
+ as a server currently.
+
+ [Recommendation for controller: ignore it, since we don't really
+ know what the user should do anyway. Hm.]
+
+ DIR_REACHABLE
+ [not implemented yet]
+
+ Actions for STATUS_GENERAL severity WARN events can be as follows:
+
+ DANGEROUS_VERSION
+ "current=version"
+ "reason=new/old/unrecommended"
+ "recommended=\"version, version, ...\""
TOO_MANY_CONNECTIONS
"current=NUM"
@@ -981,6 +978,7 @@ no plans to use this yet -RD]
about this. The "current" argument shows the number of connections
currently open.
+ [rest not implemented yet]
BUG
"reason=STRING"
Tor has encountered a situation that its developers never expected,
@@ -1000,16 +998,26 @@ no plans to use this yet -RD]
Actions for STATUS_GENERAL severity ERR events can be as follows:
- BAD_PROXY
+U BAD_PROXY
// bad http or https proxy?
- DIR_ALL_UNREACHABLE
+I DIR_ALL_UNREACHABLE
Tor believes that none of the known directory servers are
reachable -- this is most likely because the local network is
down or otherwise not working, and might help to explain for the
user why Tor appears to be broken.
Actions for STATUS_CLIENT severity NOTICE events can be as follows:
+ [all implemented]
+
+ ENOUGH_DIR_INFO
+ Tor now knows enough network-status documents and enough server
+ descriptors that it's going to start trying to build circuits now.
+
+ NOT_ENOUGH_DIR_INFO
+ We discarded expired statuses and router descriptors to fall
+ below the desired threshold of directory information. We won't
+ try to build any circuits until ENOUGH_DIR_INFO occurs again.
CIRCUIT_ESTABLISHED
Tor is able to establish circuits for client use. This event will
@@ -1017,11 +1025,24 @@ no plans to use this yet -RD]
that is, prior to this event we didn't know whether we could
establish circuits.
- ENOUGH_DIR_INFO
- Tor now knows enough network-status documents and enough server
- descriptors that it's going to start trying to build circuits now.
+ Suggested use: controllers can notify their users that Tor is
+ ready for use as a client once they see this status event. [Perhaps
+ controllers should also have a timeout if too much time passes and
+ this event hasn't arrived, to give tips on how to troubleshoot.
+ On the other hand, hopefully Tor will send further status events
+ if it can identify the problem.]
+
+ CIRCUIT_NOT_ESTABLISHED
+ "reason=" "EXTERNAL_ADDRESS" / "DIR_ALL_UNREACHABLE" / "CLOCK_JUMPED"
+ We are no longer confident that we can build circuits. The "reason"
+ keyword provides an explanation: which other status event type caused
+ our lack of confidence.
+
+ Suggested use: Vidalia can turn its onion yellow again.
+ [Note: only REASON=CLOCK_JUMPED is implemented currently.]
Actions for STATUS_CLIENT severity WARN events can be as follows:
+ [none implemented yet]
DANGEROUS_SOCKS
"protocol=socks4/socks4a/socks5"
@@ -1042,6 +1063,7 @@ no plans to use this yet -RD]
[none yet]
Actions for STATUS_SERVER severity NOTICE events can be as follows:
+ [none implemented yet]
EXTERNAL_ADDRESS
"address=IP"
@@ -1059,6 +1081,7 @@ no plans to use this yet -RD]
directory authorities, with no complaints.
Actions for STATUS_SERVER severity WARN events can be as follows:
+ [not implemented yet]
// something about failing to parse our address?
// from resolve_my_address() in config.c
@@ -1076,6 +1099,7 @@ no plans to use this yet -RD]
// think it's malformed, you're invalid, or wrong key.
Actions for STATUS_SERVER severity ERR events can be as follows:
+ [not implemented yet]
REACHABILITY_FAILED
"oraddress=IP:port"
diff --git a/doc/rend-spec.txt b/doc/rend-spec.txt
index 3825dd6d33..8259ecec2f 100644
--- a/doc/rend-spec.txt
+++ b/doc/rend-spec.txt
@@ -265,7 +265,7 @@ $Id$
Omitting a string is taken to mean auth type [00 00].
See section 2 of this document for details on auth mechanisms.
- [Yes, numbers are allowed at the beginning. See RFC1123. -NM]
+ [Yes, numbers are allowed at the beginning. See RFC 1123. -NM]
1.6. Alice's OP retrieves a service descriptor.
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 3b33bdfba7..3268d6d3ce 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -652,14 +652,14 @@ circuit_send_next_onion_skin(origin_circuit_t *circ)
void
circuit_note_clock_jumped(int seconds_elapsed)
{
- if (server_mode(get_options()))
- log(LOG_WARN, LD_GENERAL,
- "Please report: your clock just jumped %d seconds forward; "
- "assuming established circuits no longer work.", seconds_elapsed);
- else
- log(LOG_NOTICE, LD_GENERAL, "Your clock just jumped %d seconds forward; "
- "assuming established circuits no longer work.", seconds_elapsed);
+ int severity = server_mode(get_options()) ? LOG_WARN : LOG_NOTICE;
+ log(severity, LD_GENERAL, "Your clock just jumped %d seconds forward; "
+ "assuming established circuits no longer work.", seconds_elapsed);
+ control_event_general_status(LOG_WARN, "CLOCK_JUMPED TIME=%d",
+ seconds_elapsed);
has_completed_circuit=0; /* so it'll log when it works again */
+ control_event_client_status(severity, "CIRCUIT_NOT_ESTABLISHED REASON=%s",
+ "CLOCK_JUMPED");
circuit_mark_all_unused_circs();
circuit_expire_all_dirty_circs();
}
diff --git a/src/or/main.c b/src/or/main.c
index 87dd579b21..30d5fcc584 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -563,6 +563,7 @@ directory_all_unreachable(time_t now)
connection_mark_unattached_ap(edge_conn,
END_STREAM_REASON_NET_UNREACHABLE);
}
+ control_event_general_status(LOG_ERR, "DIR_ALL_UNREACHABLE");
}
/** This function is called whenever we successfully pull down some new
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index f63d41f7a8..d469db808e 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3080,6 +3080,9 @@ routers_update_all_from_networkstatus(void)
n_versioning-n_recommended, n_versioning, n_versioning/2,
n_versioning/2 > 1 ? "ies" : "y", rec);
have_warned_about_new_version = 1;
+ control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
+ "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
+ VERSION, "NEW", rec);
tor_free(rec);
}
} else {
@@ -3092,6 +3095,9 @@ routers_update_all_from_networkstatus(void)
n_versioning-n_recommended, n_versioning, n_versioning/2,
n_versioning/2 > 1 ? "ies" : "y", rec);
have_warned_about_old_version = 1;
+ control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
+ "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
+ VERSION, consensus == VS_OLD ? "OLD" : "UNRECOMMENDED", rec);
tor_free(rec);
}
} else {
@@ -3980,14 +3986,16 @@ update_router_have_minimum_dir_info(void)
if (res && !have_min_dir_info) {
log(LOG_NOTICE, LD_DIR,
"We now have enough directory information to build circuits.");
+ control_event_client_status(LOG_NOTICE, "ENOUGH_DIR_INFO");
}
if (!res && have_min_dir_info) {
log(LOG_NOTICE, LD_DIR,"Our directory information is no longer up-to-date "
"enough to build circuits.%s",
num_running > 2 ? "" : " (Not enough servers seem reachable -- "
"is your network connection down?)");
+ control_event_client_status(LOG_NOTICE, "NOT_ENOUGH_DIR_INFO");
}
- need_to_update_have_min_dir_info = 0;
+ need_to_update_have_min_dir_info = 0; /* XXX redundant */
have_min_dir_info = res;
}