2 control.c -- Control socket handling.
3 Copyright (C) 2013 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "control_common.h"
36 char controlcookie[65];
38 static bool control_return(connection_t *c, int type, int error) {
39 return send_request(c, "%d %d %d", CONTROL, type, error);
42 static bool control_ok(connection_t *c, int type) {
43 return control_return(c, type, 0);
46 bool control_h(connection_t *c, const char *request) {
49 if(!c->status.control || c->allow_request != CONTROL) {
50 logger(DEBUG_ALWAYS, LOG_ERR, "Unauthorized control request from %s (%s)", c->name, c->hostname);
54 if(sscanf(request, "%*d %d", &type) != 1) {
55 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CONTROL", c->name, c->hostname);
62 return control_ok(c, REQ_STOP);
70 case REQ_DUMP_SUBNETS:
71 return dump_subnets(c);
73 case REQ_DUMP_CONNECTIONS:
74 return dump_connections(c);
78 return control_ok(c, REQ_PURGE);
82 if(sscanf(request, "%*d %*d %d", &new_level) != 1)
84 send_request(c, "%d %d %d", CONTROL, REQ_SET_DEBUG, debug_level);
86 debug_level = new_level;
92 return control_ok(c, REQ_RETRY);
95 logger(DEBUG_ALWAYS, LOG_NOTICE, "Got '%s' command", "reload");
96 int result = reload_configuration();
97 return control_return(c, REQ_RELOAD, result);
99 case REQ_DISCONNECT: {
100 char name[MAX_STRING_SIZE];
103 if(sscanf(request, "%*d %*d " MAX_STRING, name) != 1)
104 return control_return(c, REQ_DISCONNECT, -1);
106 for list_each(connection_t, other, connection_list) {
107 if(strcmp(other->name, name))
109 terminate_connection(other, other->status.active);
113 return control_return(c, REQ_DISCONNECT, found ? 0 : -2);
116 case REQ_DUMP_TRAFFIC:
117 return dump_traffic(c);
120 sscanf(request, "%*d %*d %d", &c->outmaclength);
121 c->status.pcap = true;
126 sscanf(request, "%*d %*d %d", &c->outcompression);
127 c->status.log = true;
132 return send_request(c, "%d %d", CONTROL, REQ_INVALID);
136 bool init_control(void) {
137 randomize(controlcookie, sizeof controlcookie / 2);
138 bin2hex(controlcookie, controlcookie, sizeof controlcookie / 2);
140 mode_t mask = umask(0);
142 FILE *f = fopen(pidfilename, "w");
146 logger(DEBUG_ALWAYS, LOG_ERR, "Cannot write control socket cookie file %s: %s", pidfilename, strerror(errno));
150 // Get the address and port of the first listening socket
152 char *localhost = NULL;
154 socklen_t len = sizeof sa;
156 // Make sure we have a valid address, and map 0.0.0.0 and :: to 127.0.0.1 and ::1.
158 if(getsockname(listen_socket[0].tcp.fd, (struct sockaddr *)&sa, &len)) {
159 xasprintf(&localhost, "127.0.0.1 port %s", myport);
161 if(sa.sa.sa_family == AF_INET) {
162 if(sa.in.sin_addr.s_addr == 0)
163 sa.in.sin_addr.s_addr = htonl(0x7f000001);
164 } else if(sa.sa.sa_family == AF_INET6) {
165 static const uint8_t zero[16] = {0};
166 if(!memcmp(sa.in6.sin6_addr.s6_addr, zero, sizeof zero))
167 sa.in6.sin6_addr.s6_addr[15] = 1;
170 localhost = sockaddr2hostname(&sa);
173 fprintf(f, "%d %s %s\n", (int)getpid(), controlcookie, localhost);
181 void exit_control(void) {