Merge branch 'maint-0.4.8'
[tor.git] / src / feature / control / control.c
blobac373578181d208ba8563119550fff36e2e2837f
1 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
2 * Copyright (c) 2007-2021, The Tor Project, Inc. */
3 /* See LICENSE for licensing information */
5 /**
6 * \file control.c
7 * \brief Implementation for Tor's control-socket interface.
9 * A "controller" is an external program that monitors and controls a Tor
10 * instance via a text-based protocol. It connects to Tor via a connection
11 * to a local socket.
13 * The protocol is line-driven. The controller sends commands terminated by a
14 * CRLF. Tor sends lines that are either <em>replies</em> to what the
15 * controller has said, or <em>events</em> that Tor sends to the controller
16 * asynchronously based on occurrences in the Tor network model.
18 * See the control-spec.txt file in the torspec.git repository for full
19 * details on protocol.
21 * This module generally has two kinds of entry points: those based on having
22 * received a command on a controller socket, which are handled in
23 * connection_control_process_inbuf(), and dispatched to individual functions
24 * with names like control_handle_COMMANDNAME(); and those based on events
25 * that occur elsewhere in Tor, which are handled by functions with names like
26 * control_event_EVENTTYPE().
28 * Controller events are not sent immediately; rather, they are inserted into
29 * the queued_control_events array, and flushed later from
30 * flush_queued_events_cb(). Doing this simplifies our callgraph greatly,
31 * by limiting the number of places in Tor that can call back into the network
32 * stack.
33 **/
35 #define CONTROL_MODULE_PRIVATE
36 #define CONTROL_PRIVATE
38 #include "core/or/or.h"
39 #include "app/config/config.h"
40 #include "app/main/main.h"
41 #include "core/mainloop/connection.h"
42 #include "core/mainloop/mainloop.h"
43 #include "core/or/connection_or.h"
44 #include "core/proto/proto_control0.h"
45 #include "core/proto/proto_http.h"
46 #include "feature/control/control.h"
47 #include "feature/control/control_auth.h"
48 #include "feature/control/control_cmd.h"
49 #include "feature/control/control_events.h"
50 #include "feature/control/control_proto.h"
51 #include "feature/hs/hs_common.h"
52 #include "feature/hs/hs_service.h"
53 #include "lib/evloop/procmon.h"
55 #include "feature/control/control_connection_st.h"
57 #ifdef HAVE_UNISTD_H
58 #include <unistd.h>
59 #endif
60 #ifdef HAVE_SYS_STAT_H
61 #include <sys/stat.h>
62 #endif
64 /**
65 * Cast a `connection_t *` to a `control_connection_t *`.
67 * Exit with an assertion failure if the input is not a
68 * `control_connection_t`.
69 **/
70 control_connection_t *
71 TO_CONTROL_CONN(connection_t *c)
73 tor_assert(c->magic == CONTROL_CONNECTION_MAGIC);
74 return DOWNCAST(control_connection_t, c);
77 /**
78 * Cast a `const connection_t *` to a `const control_connection_t *`.
80 * Exit with an assertion failure if the input is not a
81 * `control_connection_t`.
82 **/
83 const control_connection_t *
84 CONST_TO_CONTROL_CONN(const connection_t *c)
86 return TO_CONTROL_CONN((connection_t*)c);
89 /** Create and add a new controller connection on <b>sock</b>. If
90 * <b>CC_LOCAL_FD_IS_OWNER</b> is set in <b>flags</b>, this Tor process should
91 * exit when the connection closes. If <b>CC_LOCAL_FD_IS_AUTHENTICATED</b>
92 * is set, then the connection does not need to authenticate.
94 int
95 control_connection_add_local_fd(tor_socket_t sock, unsigned flags)
97 if (BUG(! SOCKET_OK(sock)))
98 return -1;
99 const int is_owner = !!(flags & CC_LOCAL_FD_IS_OWNER);
100 const int is_authenticated = !!(flags & CC_LOCAL_FD_IS_AUTHENTICATED);
101 control_connection_t *control_conn = control_connection_new(AF_UNSPEC);
102 connection_t *conn = TO_CONN(control_conn);
103 conn->s = sock;
104 tor_addr_make_unspec(&conn->addr);
105 conn->port = 1;
106 conn->address = tor_strdup("<local socket>");
108 /* We take ownership of this socket so that later, when we close it,
109 * we don't freak out. */
110 tor_take_socket_ownership(sock);
112 if (set_socket_nonblocking(sock) < 0 ||
113 connection_add(conn) < 0) {
114 connection_free(conn);
115 return -1;
118 control_conn->is_owning_control_connection = is_owner;
120 if (connection_init_accepted_conn(conn, NULL) < 0) {
121 connection_mark_for_close(conn);
122 return -1;
125 if (is_authenticated) {
126 conn->state = CONTROL_CONN_STATE_OPEN;
129 return 0;
132 /** Write all of the open control ports to ControlPortWriteToFile */
133 void
134 control_ports_write_to_file(void)
136 smartlist_t *lines;
137 char *joined = NULL;
138 const or_options_t *options = get_options();
140 if (!options->ControlPortWriteToFile)
141 return;
143 lines = smartlist_new();
145 SMARTLIST_FOREACH_BEGIN(get_connection_array(), const connection_t *, conn) {
146 if (conn->type != CONN_TYPE_CONTROL_LISTENER || conn->marked_for_close)
147 continue;
148 #ifdef AF_UNIX
149 if (conn->socket_family == AF_UNIX) {
150 smartlist_add_asprintf(lines, "UNIX_PORT=%s\n", conn->address);
151 continue;
153 #endif /* defined(AF_UNIX) */
154 smartlist_add_asprintf(lines, "PORT=%s:%d\n", conn->address, conn->port);
155 } SMARTLIST_FOREACH_END(conn);
157 joined = smartlist_join_strings(lines, "", 0, NULL);
159 if (write_str_to_file(options->ControlPortWriteToFile, joined, 0) < 0) {
160 log_warn(LD_CONTROL, "Writing %s failed: %s",
161 options->ControlPortWriteToFile, strerror(errno));
163 #ifndef _WIN32
164 if (options->ControlPortFileGroupReadable) {
165 if (chmod(options->ControlPortWriteToFile, 0640)) {
166 log_warn(LD_FS,"Unable to make %s group-readable.",
167 options->ControlPortWriteToFile);
170 #endif /* !defined(_WIN32) */
171 tor_free(joined);
172 SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
173 smartlist_free(lines);
176 const struct signal_name_t signal_table[] = {
177 /* NOTE: this table is used for handling SIGNAL commands and generating
178 * SIGNAL events. Order is significant: if there are two entries for the
179 * same numeric signal, the first one is the canonical name generated
180 * for the events. */
181 { SIGHUP, "RELOAD" },
182 { SIGHUP, "HUP" },
183 { SIGINT, "SHUTDOWN" },
184 { SIGUSR1, "DUMP" },
185 { SIGUSR1, "USR1" },
186 { SIGUSR2, "DEBUG" },
187 { SIGUSR2, "USR2" },
188 { SIGTERM, "HALT" },
189 { SIGTERM, "TERM" },
190 { SIGTERM, "INT" },
191 { SIGNEWNYM, "NEWNYM" },
192 { SIGCLEARDNSCACHE, "CLEARDNSCACHE"},
193 { SIGHEARTBEAT, "HEARTBEAT"},
194 { SIGACTIVE, "ACTIVE" },
195 { SIGDORMANT, "DORMANT" },
196 { 0, NULL },
199 /** Called when <b>conn</b> has no more bytes left on its outbuf. */
201 connection_control_finished_flushing(control_connection_t *conn)
203 tor_assert(conn);
204 return 0;
207 /** Called when <b>conn</b> has gotten its socket closed. */
209 connection_control_reached_eof(control_connection_t *conn)
211 tor_assert(conn);
213 log_info(LD_CONTROL,"Control connection reached EOF. Closing.");
214 connection_mark_for_close(TO_CONN(conn));
215 return 0;
218 /** Shut down this Tor instance in the same way that SIGINT would, but
219 * with a log message appropriate for the loss of an owning controller. */
220 static void
221 lost_owning_controller(const char *owner_type, const char *loss_manner)
223 log_notice(LD_CONTROL, "Owning controller %s has %s -- exiting now.",
224 owner_type, loss_manner);
226 activate_signal(SIGTERM);
229 /** Called when <b>conn</b> is being freed. */
230 void
231 connection_control_closed(control_connection_t *conn)
233 tor_assert(conn);
235 conn->event_mask = 0;
236 control_update_global_event_mask();
238 /* Close all ephemeral Onion Services if any.
239 * The list and it's contents are scrubbed/freed in connection_free_.
241 if (conn->ephemeral_onion_services) {
242 SMARTLIST_FOREACH_BEGIN(conn->ephemeral_onion_services, char *, cp) {
243 if (hs_address_is_valid(cp)) {
244 hs_service_del_ephemeral(cp);
245 } else {
246 /* An invalid .onion in our list should NEVER happen */
247 tor_fragile_assert();
249 } SMARTLIST_FOREACH_END(cp);
252 if (conn->is_owning_control_connection) {
253 lost_owning_controller("connection", "closed");
257 /** Return true iff <b>cmd</b> is allowable (or at least forgivable) at this
258 * stage of the protocol. */
259 static int
260 is_valid_initial_command(control_connection_t *conn, const char *cmd)
262 if (conn->base_.state == CONTROL_CONN_STATE_OPEN)
263 return 1;
264 if (!strcasecmp(cmd, "PROTOCOLINFO"))
265 return (!conn->have_sent_protocolinfo &&
266 conn->safecookie_client_hash == NULL);
267 if (!strcasecmp(cmd, "AUTHCHALLENGE"))
268 return (conn->safecookie_client_hash == NULL);
269 if (!strcasecmp(cmd, "AUTHENTICATE") ||
270 !strcasecmp(cmd, "QUIT"))
271 return 1;
272 return 0;
275 /** Do not accept any control command of more than 1MB in length. Anything
276 * that needs to be anywhere near this long probably means that one of our
277 * interfaces is broken. */
278 #define MAX_COMMAND_LINE_LENGTH (1024*1024)
280 /** Wrapper around peek_buf_has_control0 command: presents the same
281 * interface as that underlying functions, but takes a connection_t instead of
282 * a buf_t.
284 static int
285 peek_connection_has_control0_command(connection_t *conn)
287 return peek_buf_has_control0_command(conn->inbuf);
290 static int
291 peek_connection_has_http_command(connection_t *conn)
293 return peek_buf_has_http_command(conn->inbuf);
297 * Helper: take a nul-terminated command of given length, and find where the
298 * command starts and the arguments begin. Separate them, allocate a new
299 * string in <b>current_cmd_out</b> for the command, and return a pointer
300 * to the arguments.
302 STATIC char *
303 control_split_incoming_command(char *incoming_cmd,
304 size_t *data_len,
305 char **current_cmd_out)
307 const bool is_multiline = *data_len && incoming_cmd[0] == '+';
308 size_t cmd_len = 0;
309 while (cmd_len < *data_len
310 && !TOR_ISSPACE(incoming_cmd[cmd_len]))
311 ++cmd_len;
313 *current_cmd_out = tor_memdup_nulterm(incoming_cmd, cmd_len);
314 char *args = incoming_cmd+cmd_len;
315 tor_assert(*data_len>=cmd_len);
316 *data_len -= cmd_len;
317 if (is_multiline) {
318 // Only match horizontal space: any line after the first is data,
319 // not arguments.
320 while ((*args == '\t' || *args == ' ') && *data_len) {
321 ++args;
322 --*data_len;
324 } else {
325 while (TOR_ISSPACE(*args) && *data_len) {
326 ++args;
327 --*data_len;
331 return args;
334 static const char CONTROLPORT_IS_NOT_AN_HTTP_PROXY_MSG[] =
335 "HTTP/1.0 501 Tor ControlPort is not an HTTP proxy"
336 "\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n"
337 "<html>\n"
338 "<head>\n"
339 "<title>Tor's ControlPort is not an HTTP proxy</title>\n"
340 "</head>\n"
341 "<body>\n"
342 "<h1>Tor's ControlPort is not an HTTP proxy</h1>\n"
343 "<p>\n"
344 "It appears you have configured your web browser to use Tor's control port"
345 " as an HTTP proxy.\n"
346 "This is not correct: Tor's default SOCKS proxy port is 9050.\n"
347 "Please configure your client accordingly.\n"
348 "</p>\n"
349 "<p>\n"
350 "See <a href=\"https://www.torproject.org/documentation.html\">"
351 "https://www.torproject.org/documentation.html</a> for more "
352 "information.\n"
353 "<!-- Plus this comment, to make the body response more than 512 bytes, so "
354 " IE will be willing to display it. Comment comment comment comment "
355 " comment comment comment comment comment comment comment comment.-->\n"
356 "</p>\n"
357 "</body>\n"
358 "</html>\n";
360 /** Return an error on a control connection that tried to use the v0 protocol.
362 static void
363 control_send_v0_reject(control_connection_t *conn)
365 size_t body_len;
366 char buf[128];
367 set_uint16(buf+2, htons(0x0000)); /* type == error */
368 set_uint16(buf+4, htons(0x0001)); /* code == internal error */
369 strlcpy(buf+6, "The v0 control protocol is not supported by Tor 0.1.2.17 "
370 "and later; upgrade your controller.",
371 sizeof(buf)-6);
372 body_len = 2+strlen(buf+6)+2; /* code, msg, nul. */
373 set_uint16(buf+0, htons(body_len));
374 connection_buf_add(buf, 4+body_len, TO_CONN(conn));
376 connection_mark_and_flush(TO_CONN(conn));
379 /** Return an error on a control connection that tried to use HTTP.
381 static void
382 control_send_http_reject(control_connection_t *conn)
384 connection_write_str_to_buf(CONTROLPORT_IS_NOT_AN_HTTP_PROXY_MSG, conn);
385 log_notice(LD_CONTROL, "Received HTTP request on ControlPort");
386 connection_mark_and_flush(TO_CONN(conn));
389 /** Check if a control connection has tried to use a known invalid protocol.
390 * If it has, then:
391 * - send a reject response,
392 * - log a notice-level message, and
393 * - return false. */
394 static bool
395 control_protocol_is_valid(control_connection_t *conn)
397 /* Detect v0 commands and send a "no more v0" message. */
398 if (conn->base_.state == CONTROL_CONN_STATE_NEEDAUTH &&
399 peek_connection_has_control0_command(TO_CONN(conn))) {
400 control_send_v0_reject(conn);
401 return 0;
404 /* If the user has the HTTP proxy port and the control port confused. */
405 if (conn->base_.state == CONTROL_CONN_STATE_NEEDAUTH &&
406 peek_connection_has_http_command(TO_CONN(conn))) {
407 control_send_http_reject(conn);
408 return 0;
411 return 1;
414 /** Called when data has arrived on a v1 control connection: Try to fetch
415 * commands from conn->inbuf, and execute them.
418 connection_control_process_inbuf(control_connection_t *conn)
420 size_t data_len;
421 uint32_t cmd_data_len;
422 char *args;
424 tor_assert(conn);
425 tor_assert(conn->base_.state == CONTROL_CONN_STATE_OPEN ||
426 conn->base_.state == CONTROL_CONN_STATE_NEEDAUTH);
428 if (!conn->incoming_cmd) {
429 conn->incoming_cmd = tor_malloc(1024);
430 conn->incoming_cmd_len = 1024;
431 conn->incoming_cmd_cur_len = 0;
434 if (!control_protocol_is_valid(conn)) {
435 return 0;
438 again:
439 while (1) {
440 size_t last_idx;
441 int r;
442 /* First, fetch a line. */
443 do {
444 data_len = conn->incoming_cmd_len - conn->incoming_cmd_cur_len;
445 r = connection_buf_get_line(TO_CONN(conn),
446 conn->incoming_cmd+conn->incoming_cmd_cur_len,
447 &data_len);
448 if (r == 0)
449 /* Line not all here yet. Wait. */
450 return 0;
451 else if (r == -1) {
452 if (data_len + conn->incoming_cmd_cur_len > MAX_COMMAND_LINE_LENGTH) {
453 control_write_endreply(conn, 500, "Line too long.");
454 connection_stop_reading(TO_CONN(conn));
455 connection_mark_and_flush(TO_CONN(conn));
457 while (conn->incoming_cmd_len < data_len+conn->incoming_cmd_cur_len)
458 conn->incoming_cmd_len *= 2;
459 conn->incoming_cmd = tor_realloc(conn->incoming_cmd,
460 conn->incoming_cmd_len);
462 } while (r != 1);
464 tor_assert(data_len);
466 last_idx = conn->incoming_cmd_cur_len;
467 conn->incoming_cmd_cur_len += (int)data_len;
469 /* We have appended a line to incoming_cmd. Is the command done? */
470 if (last_idx == 0 && *conn->incoming_cmd != '+')
471 /* One line command, didn't start with '+'. */
472 break;
473 /* XXXX this code duplication is kind of dumb. */
474 if (last_idx+3 == conn->incoming_cmd_cur_len &&
475 tor_memeq(conn->incoming_cmd + last_idx, ".\r\n", 3)) {
476 /* Just appended ".\r\n"; we're done. Remove it. */
477 conn->incoming_cmd[last_idx] = '\0';
478 conn->incoming_cmd_cur_len -= 3;
479 break;
480 } else if (last_idx+2 == conn->incoming_cmd_cur_len &&
481 tor_memeq(conn->incoming_cmd + last_idx, ".\n", 2)) {
482 /* Just appended ".\n"; we're done. Remove it. */
483 conn->incoming_cmd[last_idx] = '\0';
484 conn->incoming_cmd_cur_len -= 2;
485 break;
487 /* Otherwise, read another line. */
489 data_len = conn->incoming_cmd_cur_len;
491 /* Okay, we now have a command sitting on conn->incoming_cmd. See if we
492 * recognize it.
494 tor_free(conn->current_cmd);
495 args = control_split_incoming_command(conn->incoming_cmd, &data_len,
496 &conn->current_cmd);
497 if (BUG(!conn->current_cmd))
498 return -1;
500 /* If the connection is already closing, ignore further commands */
501 if (TO_CONN(conn)->marked_for_close) {
502 return 0;
505 /* Otherwise, Quit is always valid. */
506 if (!strcasecmp(conn->current_cmd, "QUIT")) {
507 control_write_endreply(conn, 250, "closing connection");
508 connection_mark_and_flush(TO_CONN(conn));
509 return 0;
512 if (conn->base_.state == CONTROL_CONN_STATE_NEEDAUTH &&
513 !is_valid_initial_command(conn, conn->current_cmd)) {
514 control_write_endreply(conn, 514, "Authentication required.");
515 connection_mark_for_close(TO_CONN(conn));
516 return 0;
519 if (data_len >= UINT32_MAX) {
520 control_write_endreply(conn, 500, "A 4GB command? Nice try.");
521 connection_mark_for_close(TO_CONN(conn));
522 return 0;
525 cmd_data_len = (uint32_t)data_len;
526 if (handle_control_command(conn, cmd_data_len, args) < 0)
527 return -1;
529 conn->incoming_cmd_cur_len = 0;
530 goto again;
533 /** Cached liveness for network liveness events and GETINFO
536 static int network_is_live = 0;
539 get_cached_network_liveness(void)
541 return network_is_live;
544 void
545 set_cached_network_liveness(int liveness)
547 network_is_live = liveness;
550 /** A copy of the process specifier of Tor's owning controller, or
551 * NULL if this Tor instance is not currently owned by a process. */
552 static char *owning_controller_process_spec = NULL;
554 /** A process-termination monitor for Tor's owning controller, or NULL
555 * if this Tor instance is not currently owned by a process. */
556 static tor_process_monitor_t *owning_controller_process_monitor = NULL;
558 /** Process-termination monitor callback for Tor's owning controller
559 * process. */
560 static void
561 owning_controller_procmon_cb(void *unused)
563 (void)unused;
565 lost_owning_controller("process", "vanished");
568 /** Set <b>process_spec</b> as Tor's owning controller process.
569 * Exit on failure. */
570 void
571 monitor_owning_controller_process(const char *process_spec)
573 const char *msg;
575 tor_assert((owning_controller_process_spec == NULL) ==
576 (owning_controller_process_monitor == NULL));
578 if (owning_controller_process_spec != NULL) {
579 if ((process_spec != NULL) && !strcmp(process_spec,
580 owning_controller_process_spec)) {
581 /* Same process -- return now, instead of disposing of and
582 * recreating the process-termination monitor. */
583 return;
586 /* We are currently owned by a process, and we should no longer be
587 * owned by it. Free the process-termination monitor. */
588 tor_process_monitor_free(owning_controller_process_monitor);
589 owning_controller_process_monitor = NULL;
591 tor_free(owning_controller_process_spec);
592 owning_controller_process_spec = NULL;
595 tor_assert((owning_controller_process_spec == NULL) &&
596 (owning_controller_process_monitor == NULL));
598 if (process_spec == NULL)
599 return;
601 owning_controller_process_spec = tor_strdup(process_spec);
602 owning_controller_process_monitor =
603 tor_process_monitor_new(tor_libevent_get_base(),
604 owning_controller_process_spec,
605 LD_CONTROL,
606 owning_controller_procmon_cb, NULL,
607 &msg);
609 if (owning_controller_process_monitor == NULL) {
610 log_err(LD_BUG, "Couldn't create process-termination monitor for "
611 "owning controller: %s. Exiting.",
612 msg);
613 owning_controller_process_spec = NULL;
614 tor_shutdown_event_loop_and_exit(1);
618 /** Free any leftover allocated memory of the control.c subsystem. */
619 void
620 control_free_all(void)
622 control_auth_free_all();
623 control_events_free_all();
624 control_cmd_free_all();
625 control_event_bootstrap_reset();