Bump copyright date to 2019
[tor.git] / src / feature / control / control_bootstrap.c
bloba20a94ba89d72330df6a5721dec0e0f2e97d68f2
1 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
2 * Copyright (c) 2007-2019, The Tor Project, Inc. */
3 /* See LICENSE for licensing information */
5 /**
6 * \file control_bootstrap.c
7 * \brief Provide bootstrap progress events for the control port.
8 */
9 #include "core/or/or.h"
11 #include "app/config/config.h"
12 #include "core/mainloop/connection.h"
13 #include "core/or/connection_or.h"
14 #include "core/or/connection_st.h"
15 #include "core/or/or_connection_st.h"
16 #include "core/or/reasons.h"
17 #include "feature/control/control.h"
18 #include "feature/hibernate/hibernate.h"
19 #include "lib/malloc/malloc.h"
21 /** A sufficiently large size to record the last bootstrap phase string. */
22 #define BOOTSTRAP_MSG_LEN 1024
24 /** What was the last bootstrap phase message we sent? We keep track
25 * of this so we can respond to getinfo status/bootstrap-phase queries. */
26 static char last_sent_bootstrap_message[BOOTSTRAP_MSG_LEN];
28 /** Table to convert bootstrap statuses to strings. */
29 static const struct {
30 bootstrap_status_t status;
31 const char *tag;
32 const char *summary;
33 } boot_to_str_tab[] = {
34 { BOOTSTRAP_STATUS_UNDEF, "undef", "Undefined" },
35 { BOOTSTRAP_STATUS_STARTING, "starting", "Starting" },
37 /* Initial connection to any relay */
39 { BOOTSTRAP_STATUS_CONN_PT, "conn_pt", "Connecting to pluggable transport" },
40 { BOOTSTRAP_STATUS_CONN_DONE_PT, "conn_done_pt",
41 "Connected to pluggable transport" },
42 { BOOTSTRAP_STATUS_CONN_PROXY, "conn_proxy", "Connecting to proxy" },
43 { BOOTSTRAP_STATUS_CONN_DONE_PROXY, "conn_done_proxy",
44 "Connected to proxy" },
45 { BOOTSTRAP_STATUS_CONN, "conn", "Connecting to a relay" },
46 { BOOTSTRAP_STATUS_CONN_DONE, "conn_done", "Connected to a relay" },
47 { BOOTSTRAP_STATUS_HANDSHAKE, "handshake",
48 "Handshaking with a relay" },
49 { BOOTSTRAP_STATUS_HANDSHAKE_DONE, "handshake_done",
50 "Handshake with a relay done" },
52 /* Loading directory info */
54 { BOOTSTRAP_STATUS_ONEHOP_CREATE, "onehop_create",
55 "Establishing an encrypted directory connection" },
56 { BOOTSTRAP_STATUS_REQUESTING_STATUS, "requesting_status",
57 "Asking for networkstatus consensus" },
58 { BOOTSTRAP_STATUS_LOADING_STATUS, "loading_status",
59 "Loading networkstatus consensus" },
60 { BOOTSTRAP_STATUS_LOADING_KEYS, "loading_keys",
61 "Loading authority key certs" },
62 { BOOTSTRAP_STATUS_REQUESTING_DESCRIPTORS, "requesting_descriptors",
63 "Asking for relay descriptors" },
64 { BOOTSTRAP_STATUS_LOADING_DESCRIPTORS, "loading_descriptors",
65 "Loading relay descriptors" },
66 { BOOTSTRAP_STATUS_ENOUGH_DIRINFO, "enough_dirinfo",
67 "Loaded enough directory info to build circuits" },
69 /* Connecting to a relay for AP circuits */
71 { BOOTSTRAP_STATUS_AP_CONN_PT, "ap_conn_pt",
72 "Connecting to pluggable transport to build circuits" },
73 { BOOTSTRAP_STATUS_AP_CONN_DONE_PT, "ap_conn_done_pt",
74 "Connected to pluggable transport to build circuits" },
75 { BOOTSTRAP_STATUS_AP_CONN_PROXY, "ap_conn_proxy",
76 "Connecting to proxy to build circuits" },
77 { BOOTSTRAP_STATUS_AP_CONN_DONE_PROXY, "ap_conn_done_proxy",
78 "Connected to proxy to build circuits" },
79 { BOOTSTRAP_STATUS_AP_CONN, "ap_conn",
80 "Connecting to a relay to build circuits" },
81 { BOOTSTRAP_STATUS_AP_CONN_DONE, "ap_conn_done",
82 "Connected to a relay to build circuits" },
83 { BOOTSTRAP_STATUS_AP_HANDSHAKE, "ap_handshake",
84 "Finishing handshake with a relay to build circuits" },
85 { BOOTSTRAP_STATUS_AP_HANDSHAKE_DONE, "ap_handshake_done",
86 "Handshake fininshed with a relay to build circuits" },
88 /* Creating AP circuits */
90 { BOOTSTRAP_STATUS_CIRCUIT_CREATE, "circuit_create",
91 "Establishing a Tor circuit" },
92 { BOOTSTRAP_STATUS_DONE, "done", "Done" },
94 #define N_BOOT_TO_STR (sizeof(boot_to_str_tab)/sizeof(boot_to_str_tab[0]))
96 /** Convert the name of a bootstrapping phase <b>s</b> into strings
97 * <b>tag</b> and <b>summary</b> suitable for display by the controller. */
98 static int
99 bootstrap_status_to_string(bootstrap_status_t s, const char **tag,
100 const char **summary)
102 for (size_t i = 0; i < N_BOOT_TO_STR; i++) {
103 if (s == boot_to_str_tab[i].status) {
104 *tag = boot_to_str_tab[i].tag;
105 *summary = boot_to_str_tab[i].summary;
106 return 0;
110 *tag = *summary = "unknown";
111 return -1;
114 /** What percentage through the bootstrap process are we? We remember
115 * this so we can avoid sending redundant bootstrap status events, and
116 * so we can guess context for the bootstrap messages which are
117 * ambiguous. It starts at 'undef', but gets set to 'starting' while
118 * Tor initializes. */
119 static int bootstrap_percent = BOOTSTRAP_STATUS_UNDEF;
121 /** Like bootstrap_percent, but only takes on the enumerated values in
122 * bootstrap_status_t.
124 static int bootstrap_phase = BOOTSTRAP_STATUS_UNDEF;
126 /** As bootstrap_percent, but holds the bootstrapping level at which we last
127 * logged a NOTICE-level message. We use this, plus BOOTSTRAP_PCT_INCREMENT,
128 * to avoid flooding the log with a new message every time we get a few more
129 * microdescriptors */
130 static int notice_bootstrap_percent = 0;
132 /** How many problems have we had getting to the next bootstrapping phase?
133 * These include failure to establish a connection to a Tor relay,
134 * failures to finish the TLS handshake, failures to validate the
135 * consensus document, etc. */
136 static int bootstrap_problems = 0;
138 /** We only tell the controller once we've hit a threshold of problems
139 * for the current phase. */
140 #define BOOTSTRAP_PROBLEM_THRESHOLD 10
142 /** When our bootstrapping progress level changes, but our bootstrapping
143 * status has not advanced, we only log at NOTICE when we have made at least
144 * this much progress.
146 #define BOOTSTRAP_PCT_INCREMENT 5
148 /** Do the actual logging and notifications for
149 * control_event_bootstrap(). Doesn't change any state beyond that.
151 static void
152 control_event_bootstrap_core(int loglevel, bootstrap_status_t status,
153 int progress)
155 char buf[BOOTSTRAP_MSG_LEN];
156 const char *tag, *summary;
158 bootstrap_status_to_string(status, &tag, &summary);
159 /* Locally reset status if there's incremental progress */
160 if (progress)
161 status = progress;
163 tor_log(loglevel, LD_CONTROL,
164 "Bootstrapped %d%% (%s): %s", status, tag, summary);
165 tor_snprintf(buf, sizeof(buf),
166 "BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\"",
167 status, tag, summary);
168 tor_snprintf(last_sent_bootstrap_message,
169 sizeof(last_sent_bootstrap_message),
170 "NOTICE %s", buf);
171 control_event_client_status(LOG_NOTICE, "%s", buf);
174 /** Called when Tor has made progress at bootstrapping its directory
175 * information and initial circuits.
177 * <b>status</b> is the new status, that is, what task we will be doing
178 * next. <b>progress</b> is zero if we just started this task, else it
179 * represents progress on the task.
181 void
182 control_event_bootstrap(bootstrap_status_t status, int progress)
184 int loglevel = LOG_NOTICE;
186 if (bootstrap_percent == BOOTSTRAP_STATUS_DONE)
187 return; /* already bootstrapped; nothing to be done here. */
189 if (status <= bootstrap_percent) {
190 /* If there's no new progress, return early. */
191 if (!progress || progress <= bootstrap_percent)
192 return;
193 /* Log at INFO if not enough progress happened. */
194 if (progress < notice_bootstrap_percent + BOOTSTRAP_PCT_INCREMENT)
195 loglevel = LOG_INFO;
198 control_event_bootstrap_core(loglevel, status, progress);
200 if (status > bootstrap_percent) {
201 bootstrap_phase = status; /* new milestone reached */
202 bootstrap_percent = status;
204 if (progress > bootstrap_percent) {
205 /* incremental progress within a milestone */
206 bootstrap_percent = progress;
207 bootstrap_problems = 0; /* Progress! Reset our problem counter. */
209 if (loglevel == LOG_NOTICE &&
210 bootstrap_percent > notice_bootstrap_percent) {
211 /* Remember that we gave a notice at this level. */
212 notice_bootstrap_percent = bootstrap_percent;
216 /** Flag whether we've opened an OR_CONN yet */
217 static int bootstrap_first_orconn = 0;
219 /** Like bootstrap_phase, but for (possibly deferred) directory progress */
220 static int bootstrap_dir_phase = BOOTSTRAP_STATUS_UNDEF;
222 /** Like bootstrap_problems, but for (possibly deferred) directory progress */
223 static int bootstrap_dir_progress = BOOTSTRAP_STATUS_UNDEF;
225 /** Defer directory info bootstrap events until we have successfully
226 * completed our first connection to a router. */
227 void
228 control_event_boot_dir(bootstrap_status_t status, int progress)
230 if (status > bootstrap_dir_progress) {
231 bootstrap_dir_progress = status;
232 bootstrap_dir_phase = status;
234 if (progress && progress >= bootstrap_dir_progress) {
235 bootstrap_dir_progress = progress;
238 /* Don't report unless we have successfully opened at least one OR_CONN */
239 if (!bootstrap_first_orconn)
240 return;
242 control_event_bootstrap(status, progress);
245 /** Set a flag to allow reporting of directory bootstrap progress.
246 * (Code that reports completion of an OR_CONN calls this.) Also,
247 * report directory progress so far. */
248 void
249 control_event_boot_first_orconn(void)
251 bootstrap_first_orconn = 1;
252 control_event_bootstrap(bootstrap_dir_phase, bootstrap_dir_progress);
255 /** Called when Tor has failed to make bootstrapping progress in a way
256 * that indicates a problem. <b>warn</b> gives a human-readable hint
257 * as to why, and <b>reason</b> provides a controller-facing short
258 * tag. <b>conn</b> is the connection that caused this problem and
259 * can be NULL if a connection cannot be easily identified.
261 void
262 control_event_bootstrap_problem(const char *warn, const char *reason,
263 const connection_t *conn, int dowarn)
265 int status = bootstrap_percent;
266 const char *tag = "", *summary = "";
267 char buf[BOOTSTRAP_MSG_LEN];
268 const char *recommendation = "ignore";
269 int severity;
270 char *or_id = NULL, *hostaddr = NULL;
271 or_connection_t *or_conn = NULL;
273 /* bootstrap_percent must not be in "undefined" state here. */
274 tor_assert(status >= 0);
276 if (bootstrap_percent == 100)
277 return; /* already bootstrapped; nothing to be done here. */
279 bootstrap_problems++;
281 if (bootstrap_problems >= BOOTSTRAP_PROBLEM_THRESHOLD)
282 dowarn = 1;
284 /* Don't warn about our bootstrapping status if we are hibernating or
285 * shutting down. */
286 if (we_are_hibernating())
287 dowarn = 0;
289 tor_assert(bootstrap_status_to_string(bootstrap_phase, &tag, &summary) == 0);
291 severity = dowarn ? LOG_WARN : LOG_INFO;
293 if (dowarn)
294 recommendation = "warn";
296 if (conn && conn->type == CONN_TYPE_OR) {
297 /* XXX TO_OR_CONN can't deal with const */
298 or_conn = TO_OR_CONN((connection_t *)conn);
299 or_id = tor_strdup(hex_str(or_conn->identity_digest, DIGEST_LEN));
300 } else {
301 or_id = tor_strdup("?");
304 if (conn)
305 tor_asprintf(&hostaddr, "%s:%d", conn->address, (int)conn->port);
306 else
307 hostaddr = tor_strdup("?");
309 log_fn(severity,
310 LD_CONTROL, "Problem bootstrapping. Stuck at %d%% (%s): %s. (%s; %s; "
311 "count %d; recommendation %s; host %s at %s)",
312 status, tag, summary, warn, reason,
313 bootstrap_problems, recommendation,
314 or_id, hostaddr);
316 connection_or_report_broken_states(severity, LD_HANDSHAKE);
318 tor_snprintf(buf, sizeof(buf),
319 "BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\" WARNING=\"%s\" REASON=%s "
320 "COUNT=%d RECOMMENDATION=%s HOSTID=\"%s\" HOSTADDR=\"%s\"",
321 bootstrap_percent, tag, summary, warn, reason, bootstrap_problems,
322 recommendation,
323 or_id, hostaddr);
325 tor_snprintf(last_sent_bootstrap_message,
326 sizeof(last_sent_bootstrap_message),
327 "WARN %s", buf);
328 control_event_client_status(LOG_WARN, "%s", buf);
330 tor_free(hostaddr);
331 tor_free(or_id);
334 /** Called when Tor has failed to make bootstrapping progress in a way
335 * that indicates a problem. <b>warn</b> gives a hint as to why, and
336 * <b>reason</b> provides an "or_conn_end_reason" tag. <b>or_conn</b>
337 * is the connection that caused this problem.
339 MOCK_IMPL(void,
340 control_event_bootstrap_prob_or, (const char *warn, int reason,
341 or_connection_t *or_conn))
343 int dowarn = 0;
345 if (or_conn->have_noted_bootstrap_problem)
346 return;
348 or_conn->have_noted_bootstrap_problem = 1;
350 if (reason == END_OR_CONN_REASON_NO_ROUTE)
351 dowarn = 1;
353 /* If we are using bridges and all our OR connections are now
354 closed, it means that we totally failed to connect to our
355 bridges. Throw a warning. */
356 if (get_options()->UseBridges && !any_other_active_or_conns(or_conn))
357 dowarn = 1;
359 control_event_bootstrap_problem(warn,
360 orconn_end_reason_to_control_string(reason),
361 TO_CONN(or_conn), dowarn);
364 /** Return a copy of the last sent bootstrap message. */
365 char *
366 control_event_boot_last_msg(void)
368 return tor_strdup(last_sent_bootstrap_message);
371 /** Reset bootstrap tracking state. */
372 void
373 control_event_bootstrap_reset(void)
375 bootstrap_percent = BOOTSTRAP_STATUS_UNDEF;
376 bootstrap_phase = BOOTSTRAP_STATUS_UNDEF;
377 notice_bootstrap_percent = 0;
378 bootstrap_problems = 0;
379 bootstrap_first_orconn = 0;
380 bootstrap_dir_progress = BOOTSTRAP_STATUS_UNDEF;
381 bootstrap_dir_phase = BOOTSTRAP_STATUS_UNDEF;
382 memset(last_sent_bootstrap_message, 0, sizeof(last_sent_bootstrap_message));