Alter debugging levels through control socket
[tinc] / src / control.c
1 /*
2     control.c -- Control socket handling.
3     Copyright (C) 2007 Guus Sliepen <guus@tinc-vpn.org>
4
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.
9
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.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19     $Id$
20 */
21
22 #include <sys/un.h>
23
24 #include "system.h"
25 #include "conf.h"
26 #include "control.h"
27 #include "control_common.h"
28 #include "logger.h"
29 #include "xalloc.h"
30
31 static int control_socket = -1;
32 static struct event control_event;
33 static splay_tree_t *control_socket_tree;
34 extern char *controlsocketname;
35
36 static void handle_control_data(struct bufferevent *event, void *data) {
37         tinc_ctl_request_t req;
38         size_t size;
39         tinc_ctl_request_t res;
40         struct evbuffer *res_data = NULL;
41         void *req_data;
42
43         if(EVBUFFER_LENGTH(event->input) < sizeof(tinc_ctl_request_t))
44                 return;
45
46         /* Copy the structure to ensure alignment */
47         memcpy(&req, EVBUFFER_DATA(event->input), sizeof(tinc_ctl_request_t));
48
49         if(EVBUFFER_LENGTH(event->input) < req.length)
50                 return;
51         req_data = EVBUFFER_DATA(event->input) + sizeof(tinc_ctl_request_t);
52
53         if(req.length < sizeof(tinc_ctl_request_t))
54                 goto failure;
55
56         memset(&res, 0, sizeof res);
57         res.type = req.type;
58         res.id = req.id;
59
60         res_data = evbuffer_new();
61         if (res_data == NULL) {
62                 res.res_errno = ENOMEM;
63                 goto respond;
64         }
65
66         if(req.type == REQ_STOP) {
67                 logger(LOG_NOTICE, _("Got '%s' command"), "stop");
68                 event_loopexit(NULL);
69                 goto respond;
70         }
71
72         if(req.type == REQ_DUMP_NODES) {
73                 logger(LOG_NOTICE, _("Got '%s' command"), "dump nodes");
74                 res.res_errno = dump_nodes(res_data);
75                 goto respond;
76         }
77
78         if(req.type == REQ_DUMP_EDGES) {
79                 logger(LOG_NOTICE, _("Got '%s' command"), "dump edges");
80                 res.res_errno = dump_edges(res_data);
81                 goto respond;
82         }
83
84         if(req.type == REQ_DUMP_SUBNETS) {
85                 logger(LOG_NOTICE, _("Got '%s' command"), "dump subnets");
86                 res.res_errno = dump_subnets(res_data);
87                 goto respond;
88         }
89
90         if(req.type == REQ_DUMP_CONNECTIONS) {
91                 logger(LOG_NOTICE, _("Got '%s' command"), "dump connections");
92                 res.res_errno = dump_connections(res_data);
93                 goto respond;
94         }
95
96         if(req.type == REQ_DUMP_GRAPH) {
97                 logger(LOG_NOTICE, _("Got '%s' command"), "dump graph");
98                 res.res_errno = dump_graph(res_data);
99                 goto respond;
100         }
101
102         if(req.type == REQ_PURGE) {
103                 logger(LOG_NOTICE, _("Got '%s' command"), "purge");
104                 purge();
105                 goto respond;
106         }
107
108         if(req.type == REQ_SET_DEBUG) {
109                 debug_t new_debug_level;
110
111                 logger(LOG_NOTICE, _("Got '%s' command"), "debug");
112                 if(req.length != sizeof(req) + sizeof debug_level)
113                         res.res_errno = EINVAL;
114                 else {
115                         memcpy(&new_debug_level, req_data, sizeof(debug_t));
116                         logger(LOG_NOTICE, _("Changing debug level from %d to %d"),
117                                    debug_level, new_debug_level);
118                         if(evbuffer_add_printf(res_data,
119                                                                    _("Changing debug level from %d to %d\n"),
120                                                                    debug_level, new_debug_level) == -1)
121                                 res.res_errno = errno;
122                         debug_level = new_debug_level;
123                 }
124                 goto respond;
125         }
126
127         logger(LOG_DEBUG, _("Malformed control command received"));
128         res.res_errno = EINVAL;
129
130 respond:
131         res.length = (sizeof res)
132                                  + ((res_data == NULL) ? 0 : EVBUFFER_LENGTH(res_data));
133         evbuffer_drain(event->input, req.length);
134         if(bufferevent_write(event, &res, sizeof res) == -1)
135                 goto failure;
136         if(res_data != NULL) {
137                 if(bufferevent_write_buffer(event, res_data) == -1)
138                         goto failure;
139                 evbuffer_free(res_data);
140         }
141         return;
142
143 failure:
144         logger(LOG_INFO, _("Closing control socket on error"));
145         evbuffer_free(res_data);
146         close(event->ev_read.ev_fd);
147         splay_delete(control_socket_tree, event);
148 }
149
150 static void handle_control_error(struct bufferevent *event, short what, void *data) {
151         if(what & EVBUFFER_EOF)
152                 logger(LOG_DEBUG, _("Control socket connection closed by peer"));
153         else
154                 logger(LOG_DEBUG, _("Error while reading from control socket: %s"), strerror(errno));
155
156         close(event->ev_read.ev_fd);
157         splay_delete(control_socket_tree, event);
158 }
159
160 static void handle_new_control_socket(int fd, short events, void *data) {
161         int newfd;
162         struct bufferevent *ev;
163         tinc_ctl_greeting_t greeting;
164
165         newfd = accept(fd, NULL, NULL);
166
167         if(newfd < 0) {
168                 logger(LOG_ERR, _("Accepting a new connection failed: %s"), strerror(errno));
169                 event_del(&control_event);
170                 return;
171         }
172
173         ev = bufferevent_new(newfd, handle_control_data, NULL, handle_control_error, NULL);
174         if(!ev) {
175                 logger(LOG_ERR, _("Could not create bufferevent for new control connection: %s"), strerror(errno));
176                 close(newfd);
177                 return;
178         }
179
180         memset(&greeting, 0, sizeof greeting);
181         greeting.version = TINC_CTL_VERSION_CURRENT;
182         if(bufferevent_write(ev, &greeting, sizeof greeting) == -1) {
183                 logger(LOG_ERR,
184                            _("Cannot send greeting for new control connection: %s"),
185                            strerror(errno));
186                 bufferevent_free(ev);
187                 close(newfd);
188                 return;
189         }
190
191         bufferevent_enable(ev, EV_READ);
192         splay_insert(control_socket_tree, ev);
193
194         logger(LOG_DEBUG, _("Control socket connection accepted"));
195 }
196
197 static int control_compare(const struct event *a, const struct event *b) {
198         return a < b ? -1 : a > b ? 1 : 0;
199 }
200
201 bool init_control() {
202         int result;
203         struct sockaddr_un addr;
204
205         if(strlen(controlsocketname) >= sizeof addr.sun_path) {
206                 logger(LOG_ERR, _("Control socket filename too long!"));
207                 return false;
208         }
209
210         memset(&addr, 0, sizeof addr);
211         addr.sun_family = AF_UNIX;
212         strncpy(addr.sun_path, controlsocketname, sizeof addr.sun_path - 1);
213
214         control_socket = socket(PF_UNIX, SOCK_STREAM, 0);
215
216         if(control_socket < 0) {
217                 logger(LOG_ERR, _("Creating UNIX socket failed: %s"), strerror(errno));
218                 return false;
219         }
220
221         //unlink(controlsocketname);
222         result = bind(control_socket, (struct sockaddr *)&addr, sizeof addr);
223         
224         if(result < 0 && errno == EADDRINUSE) {
225                 result = connect(control_socket, (struct sockaddr *)&addr, sizeof addr);
226                 if(result < 0) {
227                         logger(LOG_WARNING, _("Removing old control socket."));
228                         unlink(controlsocketname);
229                         result = bind(control_socket, (struct sockaddr *)&addr, sizeof addr);
230                 } else {
231                         close(control_socket);
232                         if(netname)
233                                 logger(LOG_ERR, _("Another tincd is already running for net `%s'."), netname);
234                         else
235                                 logger(LOG_ERR, _("Another tincd is already running."));
236                         return false;
237                 }
238         }
239
240         if(result < 0) {
241                 logger(LOG_ERR, _("Can't bind to %s: %s\n"), controlsocketname, strerror(errno));
242                 close(control_socket);
243                 return false;
244         }
245
246         if(listen(control_socket, 3) < 0) {
247                 logger(LOG_ERR, _("Can't listen on %s: %s\n"), controlsocketname, strerror(errno));
248                 close(control_socket);
249                 return false;
250         }
251
252         control_socket_tree = splay_alloc_tree((splay_compare_t)control_compare, (splay_action_t)bufferevent_free);
253
254         event_set(&control_event, control_socket, EV_READ | EV_PERSIST, handle_new_control_socket, NULL);
255         event_add(&control_event, NULL);
256
257         return true;
258 }
259
260 void exit_control() {
261         event_del(&control_event);
262         close(control_socket);
263         unlink(controlsocketname);
264 }