xref: /openbsd/usr.sbin/ospfd/control.c (revision 898184e3)
1 /*	$OpenBSD: control.c,v 1.38 2013/03/11 17:40:11 deraadt Exp $ */
2 
3 /*
4  * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <sys/socket.h>
22 #include <sys/un.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
28 
29 #include "ospfd.h"
30 #include "ospf.h"
31 #include "ospfe.h"
32 #include "log.h"
33 #include "control.h"
34 
35 #define	CONTROL_BACKLOG	5
36 
37 struct ctl_conn	*control_connbyfd(int);
38 struct ctl_conn	*control_connbypid(pid_t);
39 void		 control_close(int);
40 
41 int
42 control_init(char *path)
43 {
44 	struct sockaddr_un	 sun;
45 	int			 fd;
46 	mode_t			 old_umask;
47 
48 	if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
49 		log_warn("control_init: socket");
50 		return (-1);
51 	}
52 
53 	bzero(&sun, sizeof(sun));
54 	sun.sun_family = AF_UNIX;
55 	strlcpy(sun.sun_path, path, sizeof(sun.sun_path));
56 
57 	if (unlink(path) == -1)
58 		if (errno != ENOENT) {
59 			log_warn("control_init: unlink %s", path);
60 			close(fd);
61 			return (-1);
62 		}
63 
64 	old_umask = umask(S_IXUSR|S_IXGRP|S_IWOTH|S_IROTH|S_IXOTH);
65 	if (bind(fd, (struct sockaddr *)&sun, sizeof(sun)) == -1) {
66 		log_warn("control_init: bind: %s", path);
67 		close(fd);
68 		umask(old_umask);
69 		return (-1);
70 	}
71 	umask(old_umask);
72 
73 	if (chmod(path, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP) == -1) {
74 		log_warn("control_init: chmod");
75 		close(fd);
76 		(void)unlink(path);
77 		return (-1);
78 	}
79 
80 	session_socket_blockmode(fd, BM_NONBLOCK);
81 	control_state.fd = fd;
82 
83 	return (0);
84 }
85 
86 int
87 control_listen(void)
88 {
89 
90 	if (listen(control_state.fd, CONTROL_BACKLOG) == -1) {
91 		log_warn("control_listen: listen");
92 		return (-1);
93 	}
94 
95 	event_set(&control_state.ev, control_state.fd, EV_READ,
96 	    control_accept, NULL);
97 	event_add(&control_state.ev, NULL);
98 	evtimer_set(&control_state.evt, control_accept, NULL);
99 
100 	return (0);
101 }
102 
103 void
104 control_cleanup(char *path)
105 {
106 	if (path == NULL)
107 		return;
108 	event_del(&control_state.ev);
109 	event_del(&control_state.evt);
110 	unlink(path);
111 }
112 
113 /* ARGSUSED */
114 void
115 control_accept(int listenfd, short event, void *bula)
116 {
117 	int			 connfd;
118 	socklen_t		 len;
119 	struct sockaddr_un	 sun;
120 	struct ctl_conn		*c;
121 
122 	event_add(&control_state.ev, NULL);
123 	if ((event & EV_TIMEOUT))
124 		return;
125 
126 	len = sizeof(sun);
127 	if ((connfd = accept(listenfd,
128 	    (struct sockaddr *)&sun, &len)) == -1) {
129 		/*
130 		 * Pause accept if we are out of file descriptors, or
131 		 * libevent will haunt us here too.
132 		 */
133 		if (errno == ENFILE || errno == EMFILE) {
134 			struct timeval evtpause = { 1, 0 };
135 
136 			event_del(&control_state.ev);
137 			evtimer_add(&control_state.evt, &evtpause);
138 		} else if (errno != EWOULDBLOCK && errno != EINTR &&
139 		    errno != ECONNABORTED)
140 			log_warn("control_accept: accept");
141 		return;
142 	}
143 
144 	session_socket_blockmode(connfd, BM_NONBLOCK);
145 
146 	if ((c = calloc(1, sizeof(struct ctl_conn))) == NULL) {
147 		log_warn("control_accept");
148 		close(connfd);
149 		return;
150 	}
151 
152 	imsg_init(&c->iev.ibuf, connfd);
153 	c->iev.handler = control_dispatch_imsg;
154 	c->iev.events = EV_READ;
155 	event_set(&c->iev.ev, c->iev.ibuf.fd, c->iev.events,
156 	    c->iev.handler, &c->iev);
157 	event_add(&c->iev.ev, NULL);
158 
159 	TAILQ_INSERT_TAIL(&ctl_conns, c, entry);
160 }
161 
162 struct ctl_conn *
163 control_connbyfd(int fd)
164 {
165 	struct ctl_conn	*c;
166 
167 	for (c = TAILQ_FIRST(&ctl_conns); c != NULL && c->iev.ibuf.fd != fd;
168 	    c = TAILQ_NEXT(c, entry))
169 		;	/* nothing */
170 
171 	return (c);
172 }
173 
174 struct ctl_conn *
175 control_connbypid(pid_t pid)
176 {
177 	struct ctl_conn	*c;
178 
179 	for (c = TAILQ_FIRST(&ctl_conns); c != NULL && c->iev.ibuf.pid != pid;
180 	    c = TAILQ_NEXT(c, entry))
181 		;	/* nothing */
182 
183 	return (c);
184 }
185 
186 void
187 control_close(int fd)
188 {
189 	struct ctl_conn	*c;
190 
191 	if ((c = control_connbyfd(fd)) == NULL) {
192 		log_warn("control_close: fd %d: not found", fd);
193 		return;
194 	}
195 
196 	msgbuf_clear(&c->iev.ibuf.w);
197 	TAILQ_REMOVE(&ctl_conns, c, entry);
198 
199 	event_del(&c->iev.ev);
200 	close(c->iev.ibuf.fd);
201 
202 	/* Some file descriptors are available again. */
203 	if (evtimer_pending(&control_state.evt, NULL)) {
204 		evtimer_del(&control_state.evt);
205 		event_add(&control_state.ev, NULL);
206 	}
207 
208 	free(c);
209 }
210 
211 /* ARGSUSED */
212 void
213 control_dispatch_imsg(int fd, short event, void *bula)
214 {
215 	struct ctl_conn	*c;
216 	struct imsg	 imsg;
217 	ssize_t		 n;
218 	unsigned int	 ifidx;
219 	int		 verbose;
220 
221 	if ((c = control_connbyfd(fd)) == NULL) {
222 		log_warn("control_dispatch_imsg: fd %d: not found", fd);
223 		return;
224 	}
225 
226 	if (event & EV_READ) {
227 		if ((n = imsg_read(&c->iev.ibuf)) == -1 || n == 0) {
228 			control_close(fd);
229 			return;
230 		}
231 	}
232 	if (event & EV_WRITE) {
233 		if (msgbuf_write(&c->iev.ibuf.w) == -1) {
234 			control_close(fd);
235 			return;
236 		}
237 	}
238 
239 	for (;;) {
240 		if ((n = imsg_get(&c->iev.ibuf, &imsg)) == -1) {
241 			control_close(fd);
242 			return;
243 		}
244 
245 		if (n == 0)
246 			break;
247 
248 		switch (imsg.hdr.type) {
249 		case IMSG_CTL_FIB_COUPLE:
250 		case IMSG_CTL_FIB_DECOUPLE:
251 			ospfe_fib_update(imsg.hdr.type);
252 			/* FALLTHROUGH */
253 		case IMSG_CTL_FIB_RELOAD:
254 		case IMSG_CTL_RELOAD:
255 			c->iev.ibuf.pid = imsg.hdr.pid;
256 			ospfe_imsg_compose_parent(imsg.hdr.type, 0, NULL, 0);
257 			break;
258 		case IMSG_CTL_KROUTE:
259 		case IMSG_CTL_KROUTE_ADDR:
260 		case IMSG_CTL_IFINFO:
261 			c->iev.ibuf.pid = imsg.hdr.pid;
262 			ospfe_imsg_compose_parent(imsg.hdr.type, imsg.hdr.pid,
263 			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);
264 			break;
265 		case IMSG_CTL_SHOW_INTERFACE:
266 			if (imsg.hdr.len == IMSG_HEADER_SIZE +
267 			    sizeof(ifidx)) {
268 				memcpy(&ifidx, imsg.data, sizeof(ifidx));
269 				ospfe_iface_ctl(c, ifidx);
270 				imsg_compose_event(&c->iev, IMSG_CTL_END, 0,
271 				    0, -1, NULL, 0);
272 			}
273 			break;
274 		case IMSG_CTL_SHOW_DATABASE:
275 		case IMSG_CTL_SHOW_DB_EXT:
276 		case IMSG_CTL_SHOW_DB_NET:
277 		case IMSG_CTL_SHOW_DB_RTR:
278 		case IMSG_CTL_SHOW_DB_SELF:
279 		case IMSG_CTL_SHOW_DB_SUM:
280 		case IMSG_CTL_SHOW_DB_ASBR:
281 		case IMSG_CTL_SHOW_DB_OPAQ:
282 		case IMSG_CTL_SHOW_RIB:
283 		case IMSG_CTL_SHOW_SUM:
284 			c->iev.ibuf.pid = imsg.hdr.pid;
285 			ospfe_imsg_compose_rde(imsg.hdr.type, 0, imsg.hdr.pid,
286 			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);
287 			break;
288 		case IMSG_CTL_SHOW_NBR:
289 			ospfe_nbr_ctl(c);
290 			break;
291 		case IMSG_CTL_LOG_VERBOSE:
292 			if (imsg.hdr.len != IMSG_HEADER_SIZE +
293 			    sizeof(verbose))
294 				break;
295 
296 			/* forward to other processes */
297 			ospfe_imsg_compose_parent(imsg.hdr.type, imsg.hdr.pid,
298 			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);
299 			ospfe_imsg_compose_rde(imsg.hdr.type, 0, imsg.hdr.pid,
300 			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);
301 
302 			memcpy(&verbose, imsg.data, sizeof(verbose));
303 			log_verbose(verbose);
304 			break;
305 		default:
306 			log_debug("control_dispatch_imsg: "
307 			    "error handling imsg %d", imsg.hdr.type);
308 			break;
309 		}
310 		imsg_free(&imsg);
311 	}
312 
313 	imsg_event_add(&c->iev);
314 }
315 
316 int
317 control_imsg_relay(struct imsg *imsg)
318 {
319 	struct ctl_conn	*c;
320 
321 	if ((c = control_connbypid(imsg->hdr.pid)) == NULL)
322 		return (0);
323 
324 	return (imsg_compose_event(&c->iev, imsg->hdr.type, 0, imsg->hdr.pid,
325 	    -1, imsg->data, imsg->hdr.len - IMSG_HEADER_SIZE));
326 }
327 
328 void
329 session_socket_blockmode(int fd, enum blockmodes bm)
330 {
331 	int	flags;
332 
333 	if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
334 		fatal("fcntl F_GETFL");
335 
336 	if (bm == BM_NONBLOCK)
337 		flags |= O_NONBLOCK;
338 	else
339 		flags &= ~O_NONBLOCK;
340 
341 	if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
342 		fatal("fcntl F_SETFL");
343 }
344