Coding style corrections
[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         if(req.type == REQ_RETRY) {
128                 logger(LOG_NOTICE, _("Got '%s' command"), "retry");
129                 retry();
130                 goto respond;
131         }
132
133         if(req.type == REQ_RELOAD) {
134                 logger(LOG_NOTICE, _("Got '%s' command"), "reload");
135                 res.res_errno = reload_configuration();
136                 goto respond;
137         }
138
139         logger(LOG_DEBUG, _("Malformed control command received"));
140         res.res_errno = EINVAL;
141
142 respond:
143         res.length = (sizeof res)
144                                  + ((res_data == NULL) ? 0 : EVBUFFER_LENGTH(res_data));
145         evbuffer_drain(event->input, req.length);
146         if(bufferevent_write(event, &res, sizeof res) == -1)
147                 goto failure;
148         if(res_data != NULL) {
149                 if(bufferevent_write_buffer(event, res_data) == -1)
150                         goto failure;
151                 evbuffer_free(res_data);
152         }
153         return;
154
155 failure:
156         logger(LOG_INFO, _("Closing control socket on error"));
157         evbuffer_free(res_data);
158         close(event->ev_read.ev_fd);
159         splay_delete(control_socket_tree, event);
160 }
161
162 static void handle_control_error(struct bufferevent *event, short what, void *data) {
163         if(what & EVBUFFER_EOF)
164                 logger(LOG_DEBUG, _("Control socket connection closed by peer"));
165         else
166                 logger(LOG_DEBUG, _("Error while reading from control socket: %s"), strerror(errno));
167
168         close(event->ev_read.ev_fd);
169         splay_delete(control_socket_tree, event);
170 }
171
172 static void handle_new_control_socket(int fd, short events, void *data) {
173         int newfd;
174         struct bufferevent *ev;
175         tinc_ctl_greeting_t greeting;
176
177         newfd = accept(fd, NULL, NULL);
178
179         if(newfd < 0) {
180                 logger(LOG_ERR, _("Accepting a new connection failed: %s"), strerror(errno));
181                 event_del(&control_event);
182                 return;
183         }
184
185         ev = bufferevent_new(newfd, handle_control_data, NULL, handle_control_error, NULL);
186         if(!ev) {
187                 logger(LOG_ERR, _("Could not create bufferevent for new control connection: %s"), strerror(errno));
188                 close(newfd);
189                 return;
190         }
191
192         memset(&greeting, 0, sizeof greeting);
193         greeting.version = TINC_CTL_VERSION_CURRENT;
194         if(bufferevent_write(ev, &greeting, sizeof greeting) == -1) {
195                 logger(LOG_ERR,
196                            _("Cannot send greeting for new control connection: %s"),
197                            strerror(errno));
198                 bufferevent_free(ev);
199                 close(newfd);
200                 return;
201         }
202
203         bufferevent_enable(ev, EV_READ);
204         splay_insert(control_socket_tree, ev);
205
206         logger(LOG_DEBUG, _("Control socket connection accepted"));
207 }
208
209 static int control_compare(const struct event *a, const struct event *b) {
210         return a < b ? -1 : a > b ? 1 : 0;
211 }
212
213 bool init_control() {
214         int result;
215         struct sockaddr_un addr;
216
217         if(strlen(controlsocketname) >= sizeof addr.sun_path) {
218                 logger(LOG_ERR, _("Control socket filename too long!"));
219                 return false;
220         }
221
222         memset(&addr, 0, sizeof addr);
223         addr.sun_family = AF_UNIX;
224         strncpy(addr.sun_path, controlsocketname, sizeof addr.sun_path - 1);
225
226         control_socket = socket(PF_UNIX, SOCK_STREAM, 0);
227
228         if(control_socket < 0) {
229                 logger(LOG_ERR, _("Creating UNIX socket failed: %s"), strerror(errno));
230                 return false;
231         }
232
233         //unlink(controlsocketname);
234         result = bind(control_socket, (struct sockaddr *)&addr, sizeof addr);
235         
236         if(result < 0 && errno == EADDRINUSE) {
237                 result = connect(control_socket, (struct sockaddr *)&addr, sizeof addr);
238                 if(result < 0) {
239                         logger(LOG_WARNING, _("Removing old control socket."));
240                         unlink(controlsocketname);
241                         result = bind(control_socket, (struct sockaddr *)&addr, sizeof addr);
242                 } else {
243                         close(control_socket);
244                         if(netname)
245                                 logger(LOG_ERR, _("Another tincd is already running for net `%s'."), netname);
246                         else
247                                 logger(LOG_ERR, _("Another tincd is already running."));
248                         return false;
249                 }
250         }
251
252         if(result < 0) {
253                 logger(LOG_ERR, _("Can't bind to %s: %s\n"), controlsocketname, strerror(errno));
254                 close(control_socket);
255                 return false;
256         }
257
258         if(listen(control_socket, 3) < 0) {
259                 logger(LOG_ERR, _("Can't listen on %s: %s\n"), controlsocketname, strerror(errno));
260                 close(control_socket);
261                 return false;
262         }
263
264         control_socket_tree = splay_alloc_tree((splay_compare_t)control_compare, (splay_action_t)bufferevent_free);
265
266         event_set(&control_event, control_socket, EV_READ | EV_PERSIST, handle_new_control_socket, NULL);
267         event_add(&control_event, NULL);
268
269         return true;
270 }
271
272 void exit_control() {
273         event_del(&control_event);
274         close(control_socket);
275         unlink(controlsocketname);
276 }