1998-04-22 20:58:34 +08:00
|
|
|
/*
|
|
|
|
* BIRD Socket Interface
|
|
|
|
*
|
2004-06-01 05:48:19 +08:00
|
|
|
* (c) 1998--2004 Martin Mares <mj@ucw.cz>
|
1998-04-22 20:58:34 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_SOCKET_H_
|
|
|
|
#define _BIRD_SOCKET_H_
|
|
|
|
|
2010-02-12 04:19:20 +08:00
|
|
|
#include <errno.h>
|
2014-05-18 17:42:26 +08:00
|
|
|
// #include <sys/socket.h>
|
2010-02-12 04:19:20 +08:00
|
|
|
|
1998-04-28 22:39:34 +08:00
|
|
|
#include "lib/resource.h"
|
1998-04-22 20:58:34 +08:00
|
|
|
|
1998-05-24 17:19:26 +08:00
|
|
|
typedef struct birdsock {
|
|
|
|
resource r;
|
2004-06-01 05:48:19 +08:00
|
|
|
pool *pool; /* Pool where incoming connections should be allocated (for SK_xxx_PASSIVE) */
|
1998-05-24 17:19:26 +08:00
|
|
|
int type; /* Socket type */
|
|
|
|
void *data; /* User data */
|
|
|
|
ip_addr saddr, daddr; /* IPA_NONE = unspecified */
|
2015-05-19 14:53:34 +08:00
|
|
|
uint sport, dport; /* 0 = unspecified (for IP: protocol type) */
|
2013-06-24 22:37:30 +08:00
|
|
|
int tos; /* TOS / traffic class, -1 = default */
|
|
|
|
int priority; /* Local socket priority, -1 = default */
|
1998-05-24 17:19:26 +08:00
|
|
|
int ttl; /* Time To Live, -1 = default */
|
2009-06-19 01:20:07 +08:00
|
|
|
u32 flags;
|
1998-05-24 23:00:48 +08:00
|
|
|
struct iface *iface; /* Interface; specify this for broad/multicast sockets */
|
2017-09-06 23:38:48 +08:00
|
|
|
struct iface *vrf; /* Related VRF instance, NULL if global */
|
1998-05-24 17:19:26 +08:00
|
|
|
|
|
|
|
byte *rbuf, *rpos; /* NULL=allocate automatically */
|
2016-04-06 17:49:34 +08:00
|
|
|
uint fast_rx; /* RX has higher priority in event loop */
|
2015-05-19 14:53:34 +08:00
|
|
|
uint rbsize;
|
2016-10-14 21:37:04 +08:00
|
|
|
int (*rx_hook)(struct birdsock *, uint size); /* NULL=receiving turned off, returns 1 to clear rx buffer */
|
1998-05-24 17:19:26 +08:00
|
|
|
|
|
|
|
byte *tbuf, *tpos; /* NULL=allocate automatically */
|
|
|
|
byte *ttx; /* Internal */
|
2015-05-19 14:53:34 +08:00
|
|
|
uint tbsize;
|
1998-05-24 17:19:26 +08:00
|
|
|
void (*tx_hook)(struct birdsock *);
|
|
|
|
|
1998-05-24 23:00:48 +08:00
|
|
|
void (*err_hook)(struct birdsock *, int); /* errno or zero if EOF */
|
1998-05-24 17:19:26 +08:00
|
|
|
|
2010-02-11 17:23:35 +08:00
|
|
|
/* Information about received datagrams (UDP, RAW), valid in rx_hook */
|
|
|
|
ip_addr faddr, laddr; /* src (From) and dst (Local) address of the datagram */
|
2015-05-19 14:53:34 +08:00
|
|
|
uint fport; /* src port of the datagram */
|
|
|
|
uint lifindex; /* local interface that received the datagram */
|
2010-02-11 17:23:35 +08:00
|
|
|
/* laddr and lifindex are valid only if SKF_LADDR_RX flag is set to request it */
|
1998-05-24 23:00:48 +08:00
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
int af; /* Address family (AF_INET, AF_INET6 or 0 for non-IP) of fd */
|
1998-05-24 23:00:48 +08:00
|
|
|
int fd; /* System-dependent data */
|
2013-09-10 18:09:36 +08:00
|
|
|
int index; /* Index in poll buffer */
|
2014-05-18 17:42:26 +08:00
|
|
|
int rcv_ttl; /* TTL of last received datagram */
|
1998-05-24 23:00:48 +08:00
|
|
|
node n;
|
2004-06-01 05:48:19 +08:00
|
|
|
void *rbuf_alloc, *tbuf_alloc;
|
2014-05-18 17:42:26 +08:00
|
|
|
char *password; /* Password for MD5 authentication */
|
|
|
|
char *err; /* Error message */
|
1998-05-24 23:00:48 +08:00
|
|
|
} sock;
|
|
|
|
|
2012-07-19 01:35:30 +08:00
|
|
|
sock *sock_new(pool *); /* Allocate new socket */
|
|
|
|
#define sk_new(X) sock_new(X) /* Wrapper to avoid name collision with OpenSSL */
|
|
|
|
|
1998-05-24 23:00:48 +08:00
|
|
|
int sk_open(sock *); /* Open socket */
|
2014-05-18 17:42:26 +08:00
|
|
|
int sk_rx_ready(sock *s);
|
2015-05-19 14:53:34 +08:00
|
|
|
int sk_send(sock *, uint len); /* Send data, <0=err, >0=ok, 0=sleep */
|
|
|
|
int sk_send_to(sock *, uint len, ip_addr to, uint port); /* sk_send to given destination */
|
2004-06-05 02:51:29 +08:00
|
|
|
void sk_reallocate(sock *); /* Free and allocate tbuf & rbuf */
|
2014-02-07 00:46:01 +08:00
|
|
|
void sk_set_rbsize(sock *s, uint val); /* Resize RX buffer */
|
|
|
|
void sk_set_tbsize(sock *s, uint val); /* Resize TX buffer, keeping content */
|
|
|
|
void sk_set_tbuf(sock *s, void *tbuf); /* Switch TX buffer, NULL-> return to internal */
|
1998-05-24 23:00:48 +08:00
|
|
|
void sk_dump_all(void);
|
2009-09-04 17:06:51 +08:00
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
static inline int sk_send_buffer_empty(sock *sk)
|
|
|
|
{ return sk->tbuf == sk->tpos; }
|
2009-09-04 17:06:51 +08:00
|
|
|
|
|
|
|
|
2009-11-10 06:22:53 +08:00
|
|
|
#ifdef IPV6
|
2014-05-18 17:42:26 +08:00
|
|
|
#define sk_is_ipv4(X) 0
|
|
|
|
#define sk_is_ipv6(X) 1
|
|
|
|
#else
|
|
|
|
#define sk_is_ipv4(X) 1
|
|
|
|
#define sk_is_ipv6(X) 0
|
2009-11-10 06:22:53 +08:00
|
|
|
#endif
|
|
|
|
|
2010-02-21 21:34:53 +08:00
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
int sk_setup_multicast(sock *s); /* Prepare UDP or IP socket for multicasting */
|
|
|
|
int sk_join_group(sock *s, ip_addr maddr); /* Join multicast group on sk iface */
|
|
|
|
int sk_leave_group(sock *s, ip_addr maddr); /* Leave multicast group on sk iface */
|
|
|
|
int sk_setup_broadcast(sock *s);
|
|
|
|
int sk_set_ttl(sock *s, int ttl); /* Set transmit TTL for given socket */
|
|
|
|
int sk_set_min_ttl(sock *s, int ttl); /* Set minimal accepted TTL for given socket */
|
2016-04-13 20:30:28 +08:00
|
|
|
int sk_set_md5_auth(sock *s, ip_addr local, ip_addr remote, struct iface *ifa, char *passwd, int setkey);
|
2014-05-18 17:42:26 +08:00
|
|
|
int sk_set_ipv6_checksum(sock *s, int offset);
|
|
|
|
int sk_set_icmp6_filter(sock *s, int p1, int p2);
|
|
|
|
void sk_log_error(sock *s, const char *p);
|
|
|
|
|
2014-10-24 17:11:43 +08:00
|
|
|
byte * sk_rx_buffer(sock *s, int *len); /* Temporary */
|
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
extern int sk_priority_control; /* Suggested priority for control traffic, should be sysdep define */
|
1999-05-31 21:21:07 +08:00
|
|
|
|
2009-06-19 01:20:07 +08:00
|
|
|
|
|
|
|
/* Socket flags */
|
|
|
|
|
2014-05-18 17:42:26 +08:00
|
|
|
#define SKF_V4ONLY 0x01 /* Use IPv4 for IP sockets */
|
|
|
|
#define SKF_V6ONLY 0x02 /* Use IPV6_V6ONLY socket option */
|
|
|
|
#define SKF_LADDR_RX 0x04 /* Report local address for RX packets */
|
|
|
|
#define SKF_TTL_RX 0x08 /* Report TTL / Hop Limit for RX packets */
|
|
|
|
#define SKF_BIND 0x10 /* Bind datagram socket to given source address */
|
2015-02-23 03:14:14 +08:00
|
|
|
#define SKF_HIGH_PORT 0x20 /* Choose port from high range if possible */
|
2009-06-19 01:20:07 +08:00
|
|
|
|
2013-09-10 18:09:36 +08:00
|
|
|
#define SKF_THREAD 0x100 /* Socked used in thread, Do not add to main loop */
|
2014-02-07 00:46:01 +08:00
|
|
|
#define SKF_TRUNCATED 0x200 /* Received packet was truncated, set by IO layer */
|
|
|
|
#define SKF_HDRINCL 0x400 /* Used internally */
|
|
|
|
#define SKF_PKTINFO 0x800 /* Used internally */
|
2009-06-19 01:20:07 +08:00
|
|
|
|
1998-05-24 17:19:26 +08:00
|
|
|
/*
|
1998-05-24 23:00:48 +08:00
|
|
|
* Socket types SA SP DA DP IF TTL SendTo (?=may, -=must not, *=must)
|
1998-05-24 17:19:26 +08:00
|
|
|
*/
|
|
|
|
|
1998-05-24 23:00:48 +08:00
|
|
|
#define SK_TCP_PASSIVE 0 /* ? * - - - ? - */
|
|
|
|
#define SK_TCP_ACTIVE 1 /* ? ? * * - ? - */
|
|
|
|
#define SK_TCP 2
|
2010-01-08 17:21:51 +08:00
|
|
|
#define SK_UDP 3 /* ? ? ? ? ? ? ? */
|
|
|
|
#define SK_IP 5 /* ? - ? * ? ? ? */
|
1999-03-02 06:30:33 +08:00
|
|
|
#define SK_MAGIC 7 /* Internal use by sysdep code */
|
1999-10-29 20:09:29 +08:00
|
|
|
#define SK_UNIX_PASSIVE 8
|
|
|
|
#define SK_UNIX 9
|
1998-04-22 20:58:34 +08:00
|
|
|
|
1999-04-12 22:57:46 +08:00
|
|
|
/*
|
2010-01-08 17:21:51 +08:00
|
|
|
* For SK_UDP or SK_IP sockets setting DA/DP allows to use sk_send(),
|
|
|
|
* otherwise sk_send_to() must be used.
|
|
|
|
*
|
|
|
|
* For SK_IP sockets setting DP specifies protocol number, which is used
|
|
|
|
* for both receiving and sending.
|
|
|
|
*
|
|
|
|
* For multicast on SK_UDP or SK_IP sockets set IF and TTL,
|
|
|
|
* call sk_setup_multicast() to enable multicast on that socket,
|
|
|
|
* and then use sk_join_group() and sk_leave_group() to manage
|
|
|
|
* a set of received multicast groups.
|
2014-02-07 00:46:01 +08:00
|
|
|
*
|
|
|
|
* For datagram (SK_UDP, SK_IP) sockets, there are two ways to handle
|
|
|
|
* source address. The socket could be bound to it using bind()
|
|
|
|
* syscall, but that also forbids the reception of multicast packets,
|
|
|
|
* or the address could be set on per-packet basis using platform
|
|
|
|
* dependent options (but these are not available in some corner
|
|
|
|
* cases). The first way is used when SKF_BIND is specified, the
|
|
|
|
* second way is used otherwise.
|
1999-04-12 22:57:46 +08:00
|
|
|
*/
|
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
#endif
|