1998-05-24 22:50:18 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Declarations Common to Unix Port
|
|
|
|
*
|
2000-01-17 00:44:50 +08:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-05-24 22:50:18 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_UNIX_H_
|
|
|
|
#define _BIRD_UNIX_H_
|
|
|
|
|
2010-02-26 17:55:58 +08:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
1999-12-06 21:45:56 +08:00
|
|
|
struct pool;
|
2014-05-18 17:42:26 +08:00
|
|
|
struct iface;
|
|
|
|
struct birdsock;
|
1999-12-06 21:45:56 +08:00
|
|
|
|
1999-02-14 03:43:21 +08:00
|
|
|
/* main.c */
|
|
|
|
|
2010-04-07 17:00:36 +08:00
|
|
|
extern char *bird_name;
|
1999-02-14 03:43:21 +08:00
|
|
|
void async_config(void);
|
|
|
|
void async_dump(void);
|
1999-02-14 04:15:36 +08:00
|
|
|
void async_shutdown(void);
|
2012-12-26 19:40:48 +08:00
|
|
|
void cmd_check_config(char *name);
|
|
|
|
void cmd_reconfig(char *name, int type, int timeout);
|
|
|
|
void cmd_reconfig_confirm(void);
|
|
|
|
void cmd_reconfig_undo(void);
|
2010-02-21 21:34:53 +08:00
|
|
|
void cmd_shutdown(void);
|
1999-02-14 03:43:21 +08:00
|
|
|
|
2015-03-02 16:41:14 +08:00
|
|
|
#define UNIX_DEFAULT_CONFIGURE_TIMEOUT 300
|
2012-12-26 19:40:48 +08:00
|
|
|
|
2015-03-02 16:41:14 +08:00
|
|
|
#define UNIX_DEFAULT_LATENCY_LIMIT (1 S_)
|
|
|
|
#define UNIX_DEFAULT_WATCHDOG_WARNING (5 S_)
|
2014-05-18 17:42:26 +08:00
|
|
|
|
1998-05-24 22:50:18 +08:00
|
|
|
/* io.c */
|
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
#define ERR(c) do { s->err = c; return -1; } while (0)
|
|
|
|
#define ERR2(c) do { s->err = c; goto err; } while (0)
|
|
|
|
#define ERR_MSG(c) do { errno = 0; s->err = c; return -1; } while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define SOCKADDR_SIZE 32
|
|
|
|
|
|
|
|
typedef struct sockaddr_bird {
|
|
|
|
struct sockaddr sa;
|
|
|
|
char padding[SOCKADDR_SIZE - sizeof(struct sockaddr)];
|
|
|
|
} sockaddr;
|
|
|
|
|
1999-02-14 03:43:21 +08:00
|
|
|
|
1999-08-04 03:36:51 +08:00
|
|
|
#ifdef IPV6
|
1999-08-04 03:37:37 +08:00
|
|
|
#define BIRD_AF AF_INET6
|
2014-05-18 17:42:26 +08:00
|
|
|
#define ipa_from_sa(x) ipa_from_sa6(x)
|
1999-08-04 03:36:51 +08:00
|
|
|
#else
|
1999-08-04 03:37:37 +08:00
|
|
|
#define BIRD_AF AF_INET
|
2014-05-18 17:42:26 +08:00
|
|
|
#define ipa_from_sa(x) ipa_from_sa4(x)
|
1999-08-04 03:36:51 +08:00
|
|
|
#endif
|
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
|
|
|
|
/* This is sloppy hack, it should be detected by configure script */
|
|
|
|
/* Linux systems have it defined so this is definition for BSD systems */
|
|
|
|
#ifndef s6_addr32
|
|
|
|
#define s6_addr32 __u6_addr.__u6_addr32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2016-10-14 21:37:04 +08:00
|
|
|
static inline ip_addr ipa_from_in4(struct in_addr a UNUSED6)
|
2014-05-18 17:42:26 +08:00
|
|
|
{ return ipa_from_u32(ntohl(a.s_addr)); }
|
|
|
|
|
2016-10-14 21:37:04 +08:00
|
|
|
static inline ip_addr ipa_from_in6(struct in6_addr a UNUSED4)
|
2014-10-24 17:11:43 +08:00
|
|
|
{ return ipa_build6(ntohl(a.s6_addr32[0]), ntohl(a.s6_addr32[1]), ntohl(a.s6_addr32[2]), ntohl(a.s6_addr32[3])); }
|
2014-05-18 17:42:26 +08:00
|
|
|
|
2016-10-14 21:37:04 +08:00
|
|
|
static inline ip_addr ipa_from_sa4(sockaddr *sa UNUSED6)
|
2014-05-18 17:42:26 +08:00
|
|
|
{ return ipa_from_in4(((struct sockaddr_in *) sa)->sin_addr); }
|
|
|
|
|
2016-10-14 21:37:04 +08:00
|
|
|
static inline ip_addr ipa_from_sa6(sockaddr *sa UNUSED4)
|
2014-05-18 17:42:26 +08:00
|
|
|
{ return ipa_from_in6(((struct sockaddr_in6 *) sa)->sin6_addr); }
|
|
|
|
|
|
|
|
static inline struct in_addr ipa_to_in4(ip_addr a)
|
|
|
|
{ return (struct in_addr) { htonl(ipa_to_u32(a)) }; }
|
|
|
|
|
2014-10-24 17:11:43 +08:00
|
|
|
#ifdef IPV6
|
2014-05-18 17:42:26 +08:00
|
|
|
static inline struct in6_addr ipa_to_in6(ip_addr a)
|
|
|
|
{ return (struct in6_addr) { .s6_addr32 = { htonl(_I0(a)), htonl(_I1(a)), htonl(_I2(a)), htonl(_I3(a)) } }; }
|
2014-10-24 17:11:43 +08:00
|
|
|
#else
|
|
|
|
/* Temporary dummy */
|
2016-10-14 21:37:04 +08:00
|
|
|
static inline struct in6_addr ipa_to_in6(ip_addr a UNUSED)
|
2014-10-24 17:11:43 +08:00
|
|
|
{ return (struct in6_addr) { .s6_addr32 = { 0, 0, 0, 0 } }; }
|
|
|
|
#endif
|
2014-05-18 17:42:26 +08:00
|
|
|
|
|
|
|
void sockaddr_fill(sockaddr *sa, int af, ip_addr a, struct iface *ifa, uint port);
|
|
|
|
int sockaddr_read(sockaddr *sa, int af, ip_addr *a, struct iface **ifa, uint *port);
|
|
|
|
|
|
|
|
|
2000-06-17 07:12:47 +08:00
|
|
|
#ifndef SUN_LEN
|
|
|
|
#define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) + strlen ((ptr)->sun_path))
|
|
|
|
#endif
|
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
volatile int async_config_flag;
|
|
|
|
volatile int async_dump_flag;
|
|
|
|
volatile int async_shutdown_flag;
|
1999-10-29 20:09:29 +08:00
|
|
|
|
1998-05-24 22:50:18 +08:00
|
|
|
void io_init(void);
|
|
|
|
void io_loop(void);
|
2015-03-02 16:41:14 +08:00
|
|
|
void io_log_dump(void);
|
2014-05-18 17:42:26 +08:00
|
|
|
int sk_open_unix(struct birdsock *s, char *name);
|
1999-12-06 21:45:56 +08:00
|
|
|
void *tracked_fopen(struct pool *, char *name, char *mode);
|
2004-06-07 01:05:25 +08:00
|
|
|
void test_old_bird(char *path);
|
|
|
|
|
1998-05-27 05:46:38 +08:00
|
|
|
|
1999-03-27 05:44:38 +08:00
|
|
|
/* krt.c bits */
|
|
|
|
|
|
|
|
void krt_io_init(void);
|
|
|
|
|
1999-12-06 21:45:56 +08:00
|
|
|
/* log.c */
|
|
|
|
|
2014-02-07 20:09:55 +08:00
|
|
|
void main_thread_init(void);
|
1999-12-06 21:45:56 +08:00
|
|
|
void log_init_debug(char *); /* Initialize debug dump to given file (NULL=stderr, ""=off) */
|
2010-04-07 17:00:36 +08:00
|
|
|
void log_switch(int debug, list *l, char *); /* Use l=NULL for initial switch */
|
1999-12-06 21:45:56 +08:00
|
|
|
|
|
|
|
struct log_config {
|
|
|
|
node n;
|
2015-05-19 14:53:34 +08:00
|
|
|
uint mask; /* Classes to log */
|
1999-12-06 21:45:56 +08:00
|
|
|
void *fh; /* FILE to log to, NULL=syslog */
|
|
|
|
int terminal_flag;
|
|
|
|
};
|
|
|
|
|
1998-05-24 22:50:18 +08:00
|
|
|
#endif
|