1  | 
     | 
     | 
    /*	$OpenBSD: control.c,v 1.26 2017/08/12 16:27:50 benno 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 "ospf6d.h"  | 
    
    
    30  | 
     | 
     | 
    #include "ospf6.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 | SOCK_CLOEXEC | SOCK_NONBLOCK,  | 
    
    
    49  | 
     | 
     | 
    	    0)) == -1) { | 
    
    
    50  | 
     | 
     | 
    		log_warn("control_init: socket"); | 
    
    
    51  | 
     | 
     | 
    		return (-1);  | 
    
    
    52  | 
     | 
     | 
    	}  | 
    
    
    53  | 
     | 
     | 
     | 
    
    
    54  | 
     | 
     | 
    	bzero(&sun, sizeof(sun));  | 
    
    
    55  | 
     | 
     | 
    	sun.sun_family = AF_UNIX;  | 
    
    
    56  | 
     | 
     | 
    	strlcpy(sun.sun_path, path, sizeof(sun.sun_path));  | 
    
    
    57  | 
     | 
     | 
     | 
    
    
    58  | 
     | 
     | 
    	if (unlink(path) == -1)  | 
    
    
    59  | 
     | 
     | 
    		if (errno != ENOENT) { | 
    
    
    60  | 
     | 
     | 
    			log_warn("control_init: unlink %s", path); | 
    
    
    61  | 
     | 
     | 
    			close(fd);  | 
    
    
    62  | 
     | 
     | 
    			return (-1);  | 
    
    
    63  | 
     | 
     | 
    		}  | 
    
    
    64  | 
     | 
     | 
     | 
    
    
    65  | 
     | 
     | 
    	old_umask = umask(S_IXUSR|S_IXGRP|S_IWOTH|S_IROTH|S_IXOTH);  | 
    
    
    66  | 
     | 
     | 
    	if (bind(fd, (struct sockaddr *)&sun, sizeof(sun)) == -1) { | 
    
    
    67  | 
     | 
     | 
    		log_warn("control_init: bind: %s", path); | 
    
    
    68  | 
     | 
     | 
    		close(fd);  | 
    
    
    69  | 
     | 
     | 
    		umask(old_umask);  | 
    
    
    70  | 
     | 
     | 
    		return (-1);  | 
    
    
    71  | 
     | 
     | 
    	}  | 
    
    
    72  | 
     | 
     | 
    	umask(old_umask);  | 
    
    
    73  | 
     | 
     | 
     | 
    
    
    74  | 
     | 
     | 
    	if (chmod(path, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP) == -1) { | 
    
    
    75  | 
     | 
     | 
    		log_warn("control_init: chmod"); | 
    
    
    76  | 
     | 
     | 
    		close(fd);  | 
    
    
    77  | 
     | 
     | 
    		(void)unlink(path);  | 
    
    
    78  | 
     | 
     | 
    		return (-1);  | 
    
    
    79  | 
     | 
     | 
    	}  | 
    
    
    80  | 
     | 
     | 
     | 
    
    
    81  | 
     | 
     | 
    	control_state.fd = fd;  | 
    
    
    82  | 
     | 
     | 
     | 
    
    
    83  | 
     | 
     | 
    	return (0);  | 
    
    
    84  | 
     | 
     | 
    }  | 
    
    
    85  | 
     | 
     | 
     | 
    
    
    86  | 
     | 
     | 
    int  | 
    
    
    87  | 
     | 
     | 
    control_listen(void)  | 
    
    
    88  | 
     | 
     | 
    { | 
    
    
    89  | 
     | 
     | 
    	if (listen(control_state.fd, CONTROL_BACKLOG) == -1) { | 
    
    
    90  | 
     | 
     | 
    		log_warn("control_listen: listen"); | 
    
    
    91  | 
     | 
     | 
    		return (-1);  | 
    
    
    92  | 
     | 
     | 
    	}  | 
    
    
    93  | 
     | 
     | 
     | 
    
    
    94  | 
     | 
     | 
    	event_set(&control_state.ev, control_state.fd, EV_READ,  | 
    
    
    95  | 
     | 
     | 
    	    control_accept, NULL);  | 
    
    
    96  | 
     | 
     | 
    	event_add(&control_state.ev, NULL);  | 
    
    
    97  | 
     | 
     | 
    	evtimer_set(&control_state.evt, control_accept, NULL);  | 
    
    
    98  | 
     | 
     | 
     | 
    
    
    99  | 
     | 
     | 
    	return (0);  | 
    
    
    100  | 
     | 
     | 
    }  | 
    
    
    101  | 
     | 
     | 
     | 
    
    
    102  | 
     | 
     | 
    void  | 
    
    
    103  | 
     | 
     | 
    control_cleanup(char *path)  | 
    
    
    104  | 
     | 
     | 
    { | 
    
    
    105  | 
     | 
     | 
    	event_del(&control_state.ev);  | 
    
    
    106  | 
     | 
     | 
    	event_del(&control_state.evt);  | 
    
    
    107  | 
     | 
     | 
    	if (path)  | 
    
    
    108  | 
     | 
     | 
    		unlink(path);  | 
    
    
    109  | 
     | 
     | 
    }  | 
    
    
    110  | 
     | 
     | 
     | 
    
    
    111  | 
     | 
     | 
    /* ARGSUSED */  | 
    
    
    112  | 
     | 
     | 
    void  | 
    
    
    113  | 
     | 
     | 
    control_accept(int listenfd, short event, void *bula)  | 
    
    
    114  | 
     | 
     | 
    { | 
    
    
    115  | 
     | 
     | 
    	int			 connfd;  | 
    
    
    116  | 
     | 
     | 
    	socklen_t		 len;  | 
    
    
    117  | 
     | 
     | 
    	struct sockaddr_un	 sun;  | 
    
    
    118  | 
     | 
     | 
    	struct ctl_conn		*c;  | 
    
    
    119  | 
     | 
     | 
     | 
    
    
    120  | 
     | 
     | 
    	event_add(&control_state.ev, NULL);  | 
    
    
    121  | 
     | 
     | 
    	if ((event & EV_TIMEOUT))  | 
    
    
    122  | 
     | 
     | 
    		return;  | 
    
    
    123  | 
     | 
     | 
     | 
    
    
    124  | 
     | 
     | 
    	len = sizeof(sun);  | 
    
    
    125  | 
     | 
     | 
    	if ((connfd = accept4(listenfd, (struct sockaddr *)&sun, &len,  | 
    
    
    126  | 
     | 
     | 
    	    SOCK_CLOEXEC | SOCK_NONBLOCK)) == -1) { | 
    
    
    127  | 
     | 
     | 
    		/*  | 
    
    
    128  | 
     | 
     | 
    		 * Pause accept if we are out of file descriptors, or  | 
    
    
    129  | 
     | 
     | 
    		 * libevent will haunt us here too.  | 
    
    
    130  | 
     | 
     | 
    		 */  | 
    
    
    131  | 
     | 
     | 
    		if (errno == ENFILE || errno == EMFILE) { | 
    
    
    132  | 
     | 
     | 
    			struct timeval evtpause = { 1, 0 }; | 
    
    
    133  | 
     | 
     | 
     | 
    
    
    134  | 
     | 
     | 
    			event_del(&control_state.ev);  | 
    
    
    135  | 
     | 
     | 
    			evtimer_add(&control_state.evt, &evtpause);  | 
    
    
    136  | 
     | 
     | 
    		} else if (errno != EWOULDBLOCK && errno != EINTR &&  | 
    
    
    137  | 
     | 
     | 
    		    errno != ECONNABORTED)  | 
    
    
    138  | 
     | 
     | 
    			log_warn("control_accept: accept"); | 
    
    
    139  | 
     | 
     | 
    		return;  | 
    
    
    140  | 
     | 
     | 
    	}  | 
    
    
    141  | 
     | 
     | 
     | 
    
    
    142  | 
     | 
     | 
    	if ((c = calloc(1, sizeof(struct ctl_conn))) == NULL) { | 
    
    
    143  | 
     | 
     | 
    		log_warn("control_accept"); | 
    
    
    144  | 
     | 
     | 
    		close(connfd);  | 
    
    
    145  | 
     | 
     | 
    		return;  | 
    
    
    146  | 
     | 
     | 
    	}  | 
    
    
    147  | 
     | 
     | 
     | 
    
    
    148  | 
     | 
     | 
    	imsg_init(&c->iev.ibuf, connfd);  | 
    
    
    149  | 
     | 
     | 
    	c->iev.handler = control_dispatch_imsg;  | 
    
    
    150  | 
     | 
     | 
    	c->iev.events = EV_READ;  | 
    
    
    151  | 
     | 
     | 
    	event_set(&c->iev.ev, c->iev.ibuf.fd, c->iev.events,  | 
    
    
    152  | 
     | 
     | 
    	    c->iev.handler, &c->iev);  | 
    
    
    153  | 
     | 
     | 
    	event_add(&c->iev.ev, NULL);  | 
    
    
    154  | 
     | 
     | 
     | 
    
    
    155  | 
     | 
     | 
    	TAILQ_INSERT_TAIL(&ctl_conns, c, entry);  | 
    
    
    156  | 
     | 
     | 
    }  | 
    
    
    157  | 
     | 
     | 
     | 
    
    
    158  | 
     | 
     | 
    struct ctl_conn *  | 
    
    
    159  | 
     | 
     | 
    control_connbyfd(int fd)  | 
    
    
    160  | 
     | 
     | 
    { | 
    
    
    161  | 
     | 
     | 
    	struct ctl_conn	*c;  | 
    
    
    162  | 
     | 
     | 
     | 
    
    
    163  | 
     | 
     | 
    	TAILQ_FOREACH(c, &ctl_conns, entry) { | 
    
    
    164  | 
     | 
     | 
    		if (c->iev.ibuf.fd == fd)  | 
    
    
    165  | 
     | 
     | 
    			break;  | 
    
    
    166  | 
     | 
     | 
    	}  | 
    
    
    167  | 
     | 
     | 
     | 
    
    
    168  | 
     | 
     | 
    	return (c);  | 
    
    
    169  | 
     | 
     | 
    }  | 
    
    
    170  | 
     | 
     | 
     | 
    
    
    171  | 
     | 
     | 
    struct ctl_conn *  | 
    
    
    172  | 
     | 
     | 
    control_connbypid(pid_t pid)  | 
    
    
    173  | 
     | 
     | 
    { | 
    
    
    174  | 
     | 
     | 
    	struct ctl_conn	*c;  | 
    
    
    175  | 
     | 
     | 
     | 
    
    
    176  | 
     | 
     | 
    	TAILQ_FOREACH(c, &ctl_conns, entry) { | 
    
    
    177  | 
     | 
     | 
    		if (c->iev.ibuf.pid == pid)  | 
    
    
    178  | 
     | 
     | 
    			break;  | 
    
    
    179  | 
     | 
     | 
    	}  | 
    
    
    180  | 
     | 
     | 
     | 
    
    
    181  | 
     | 
     | 
    	return (c);  | 
    
    
    182  | 
     | 
     | 
    }  | 
    
    
    183  | 
     | 
     | 
     | 
    
    
    184  | 
     | 
     | 
    void  | 
    
    
    185  | 
     | 
     | 
    control_close(int fd)  | 
    
    
    186  | 
     | 
     | 
    { | 
    
    
    187  | 
     | 
     | 
    	struct ctl_conn	*c;  | 
    
    
    188  | 
     | 
     | 
     | 
    
    
    189  | 
     | 
     | 
    	if ((c = control_connbyfd(fd)) == NULL) { | 
    
    
    190  | 
     | 
     | 
    		log_warn("control_close: fd %d: not found", fd); | 
    
    
    191  | 
     | 
     | 
    		return;  | 
    
    
    192  | 
     | 
     | 
    	}  | 
    
    
    193  | 
     | 
     | 
     | 
    
    
    194  | 
     | 
     | 
    	msgbuf_clear(&c->iev.ibuf.w);  | 
    
    
    195  | 
     | 
     | 
    	TAILQ_REMOVE(&ctl_conns, c, entry);  | 
    
    
    196  | 
     | 
     | 
     | 
    
    
    197  | 
     | 
     | 
    	event_del(&c->iev.ev);  | 
    
    
    198  | 
     | 
     | 
    	close(c->iev.ibuf.fd);  | 
    
    
    199  | 
     | 
     | 
     | 
    
    
    200  | 
     | 
     | 
    	/* Some file descriptors are available again. */  | 
    
    
    201  | 
     | 
     | 
    	if (evtimer_pending(&control_state.evt, NULL)) { | 
    
    
    202  | 
     | 
     | 
    		evtimer_del(&control_state.evt);  | 
    
    
    203  | 
     | 
     | 
    		event_add(&control_state.ev, NULL);  | 
    
    
    204  | 
     | 
     | 
    	}  | 
    
    
    205  | 
     | 
     | 
     | 
    
    
    206  | 
     | 
     | 
    	free(c);  | 
    
    
    207  | 
     | 
     | 
    }  | 
    
    
    208  | 
     | 
     | 
     | 
    
    
    209  | 
     | 
     | 
    /* ARGSUSED */  | 
    
    
    210  | 
     | 
     | 
    void  | 
    
    
    211  | 
     | 
     | 
    control_dispatch_imsg(int fd, short event, void *bula)  | 
    
    
    212  | 
     | 
     | 
    { | 
    
    
    213  | 
     | 
     | 
    	struct ctl_conn	*c;  | 
    
    
    214  | 
     | 
     | 
    	struct imsg	 imsg;  | 
    
    
    215  | 
     | 
     | 
    	int		 n;  | 
    
    
    216  | 
     | 
     | 
    	unsigned int	 ifidx;  | 
    
    
    217  | 
     | 
     | 
    	int		 verbose;  | 
    
    
    218  | 
     | 
     | 
     | 
    
    
    219  | 
     | 
     | 
    	if ((c = control_connbyfd(fd)) == NULL) { | 
    
    
    220  | 
     | 
     | 
    		log_warn("control_dispatch_imsg: fd %d: not found", fd); | 
    
    
    221  | 
     | 
     | 
    		return;  | 
    
    
    222  | 
     | 
     | 
    	}  | 
    
    
    223  | 
     | 
     | 
     | 
    
    
    224  | 
     | 
     | 
    	if (event & EV_READ) { | 
    
    
    225  | 
     | 
     | 
    		if (((n = imsg_read(&c->iev.ibuf)) == -1 && errno != EAGAIN) ||  | 
    
    
    226  | 
     | 
     | 
    		    n == 0) { | 
    
    
    227  | 
     | 
     | 
    			control_close(fd);  | 
    
    
    228  | 
     | 
     | 
    			return;  | 
    
    
    229  | 
     | 
     | 
    		}  | 
    
    
    230  | 
     | 
     | 
    	}  | 
    
    
    231  | 
     | 
     | 
    	if (event & EV_WRITE) { | 
    
    
    232  | 
     | 
     | 
    		if (msgbuf_write(&c->iev.ibuf.w) <= 0 && errno != EAGAIN) { | 
    
    
    233  | 
     | 
     | 
    			control_close(fd);  | 
    
    
    234  | 
     | 
     | 
    			return;  | 
    
    
    235  | 
     | 
     | 
    		}  | 
    
    
    236  | 
     | 
     | 
    	}  | 
    
    
    237  | 
     | 
     | 
     | 
    
    
    238  | 
     | 
     | 
    	for (;;) { | 
    
    
    239  | 
     | 
     | 
    		if ((n = imsg_get(&c->iev.ibuf, &imsg)) == -1) { | 
    
    
    240  | 
     | 
     | 
    			control_close(fd);  | 
    
    
    241  | 
     | 
     | 
    			return;  | 
    
    
    242  | 
     | 
     | 
    		}  | 
    
    
    243  | 
     | 
     | 
     | 
    
    
    244  | 
     | 
     | 
    		if (n == 0)  | 
    
    
    245  | 
     | 
     | 
    			break;  | 
    
    
    246  | 
     | 
     | 
     | 
    
    
    247  | 
     | 
     | 
    		switch (imsg.hdr.type) { | 
    
    
    248  | 
     | 
     | 
    		case IMSG_CTL_FIB_COUPLE:  | 
    
    
    249  | 
     | 
     | 
    		case IMSG_CTL_FIB_DECOUPLE:  | 
    
    
    250  | 
     | 
     | 
    			ospfe_fib_update(imsg.hdr.type);  | 
    
    
    251  | 
     | 
     | 
    			/* FALLTHROUGH */  | 
    
    
    252  | 
     | 
     | 
    		case IMSG_CTL_RELOAD:  | 
    
    
    253  | 
     | 
     | 
    			c->iev.ibuf.pid = imsg.hdr.pid;  | 
    
    
    254  | 
     | 
     | 
    			ospfe_imsg_compose_parent(imsg.hdr.type, 0, NULL, 0);  | 
    
    
    255  | 
     | 
     | 
    			break;  | 
    
    
    256  | 
     | 
     | 
    		case IMSG_CTL_KROUTE:  | 
    
    
    257  | 
     | 
     | 
    		case IMSG_CTL_KROUTE_ADDR:  | 
    
    
    258  | 
     | 
     | 
    			c->iev.ibuf.pid = imsg.hdr.pid;  | 
    
    
    259  | 
     | 
     | 
    			ospfe_imsg_compose_parent(imsg.hdr.type, imsg.hdr.pid,  | 
    
    
    260  | 
     | 
     | 
    			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);  | 
    
    
    261  | 
     | 
     | 
    			break;  | 
    
    
    262  | 
     | 
     | 
    		case IMSG_CTL_SHOW_INTERFACE:  | 
    
    
    263  | 
     | 
     | 
    			if (imsg.hdr.len == IMSG_HEADER_SIZE +  | 
    
    
    264  | 
     | 
     | 
    			    sizeof(ifidx)) { | 
    
    
    265  | 
     | 
     | 
    				memcpy(&ifidx, imsg.data, sizeof(ifidx));  | 
    
    
    266  | 
     | 
     | 
    				ospfe_iface_ctl(c, ifidx);  | 
    
    
    267  | 
     | 
     | 
    				imsg_compose(&c->iev.ibuf, IMSG_CTL_END, 0,  | 
    
    
    268  | 
     | 
     | 
    				    0, -1, NULL, 0);  | 
    
    
    269  | 
     | 
     | 
    			}  | 
    
    
    270  | 
     | 
     | 
    			break;  | 
    
    
    271  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DATABASE:  | 
    
    
    272  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_EXT:  | 
    
    
    273  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_LINK:  | 
    
    
    274  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_NET:  | 
    
    
    275  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_RTR:  | 
    
    
    276  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_INTRA:  | 
    
    
    277  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_SELF:  | 
    
    
    278  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_SUM:  | 
    
    
    279  | 
     | 
     | 
    		case IMSG_CTL_SHOW_DB_ASBR:  | 
    
    
    280  | 
     | 
     | 
    		case IMSG_CTL_SHOW_RIB:  | 
    
    
    281  | 
     | 
     | 
    		case IMSG_CTL_SHOW_SUM:  | 
    
    
    282  | 
     | 
     | 
    			c->iev.ibuf.pid = imsg.hdr.pid;  | 
    
    
    283  | 
     | 
     | 
    			ospfe_imsg_compose_rde(imsg.hdr.type, 0, imsg.hdr.pid,  | 
    
    
    284  | 
     | 
     | 
    			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);  | 
    
    
    285  | 
     | 
     | 
    			break;  | 
    
    
    286  | 
     | 
     | 
    		case IMSG_CTL_SHOW_NBR:  | 
    
    
    287  | 
     | 
     | 
    			ospfe_nbr_ctl(c);  | 
    
    
    288  | 
     | 
     | 
    			break;  | 
    
    
    289  | 
     | 
     | 
    		case IMSG_CTL_LOG_VERBOSE:  | 
    
    
    290  | 
     | 
     | 
    			if (imsg.hdr.len != IMSG_HEADER_SIZE +  | 
    
    
    291  | 
     | 
     | 
    			    sizeof(verbose))  | 
    
    
    292  | 
     | 
     | 
    				break;  | 
    
    
    293  | 
     | 
     | 
     | 
    
    
    294  | 
     | 
     | 
    			/* forward to other processes */  | 
    
    
    295  | 
     | 
     | 
    			ospfe_imsg_compose_parent(imsg.hdr.type, imsg.hdr.pid,  | 
    
    
    296  | 
     | 
     | 
    			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);  | 
    
    
    297  | 
     | 
     | 
    			ospfe_imsg_compose_rde(imsg.hdr.type, 0, imsg.hdr.pid,  | 
    
    
    298  | 
     | 
     | 
    			    imsg.data, imsg.hdr.len - IMSG_HEADER_SIZE);  | 
    
    
    299  | 
     | 
     | 
     | 
    
    
    300  | 
     | 
     | 
    			memcpy(&verbose, imsg.data, sizeof(verbose));  | 
    
    
    301  | 
     | 
     | 
    			log_setverbose(verbose);  | 
    
    
    302  | 
     | 
     | 
    			break;  | 
    
    
    303  | 
     | 
     | 
    		default:  | 
    
    
    304  | 
     | 
     | 
    			log_debug("control_dispatch_imsg: " | 
    
    
    305  | 
     | 
     | 
    			    "error handling imsg %d", imsg.hdr.type);  | 
    
    
    306  | 
     | 
     | 
    			break;  | 
    
    
    307  | 
     | 
     | 
    		}  | 
    
    
    308  | 
     | 
     | 
    		imsg_free(&imsg);  | 
    
    
    309  | 
     | 
     | 
    	}  | 
    
    
    310  | 
     | 
     | 
     | 
    
    
    311  | 
     | 
     | 
    	imsg_event_add(&c->iev);  | 
    
    
    312  | 
     | 
     | 
    }  | 
    
    
    313  | 
     | 
     | 
     | 
    
    
    314  | 
     | 
     | 
    int  | 
    
    
    315  | 
     | 
     | 
    control_imsg_relay(struct imsg *imsg)  | 
    
    
    316  | 
     | 
     | 
    { | 
    
    
    317  | 
     | 
     | 
    	struct ctl_conn	*c;  | 
    
    
    318  | 
     | 
     | 
     | 
    
    
    319  | 
     | 
     | 
    	if ((c = control_connbypid(imsg->hdr.pid)) == NULL)  | 
    
    
    320  | 
     | 
     | 
    		return (0);  | 
    
    
    321  | 
     | 
     | 
     | 
    
    
    322  | 
     | 
     | 
    	return (imsg_compose_event(&c->iev, imsg->hdr.type, 0, imsg->hdr.pid,  | 
    
    
    323  | 
     | 
     | 
    	    -1, imsg->data, imsg->hdr.len - IMSG_HEADER_SIZE));  | 
    
    
    324  | 
     | 
     | 
    }  |