]> git.ipfire.org Git - thirdparty/bird.git/blame - lib/socket.h
unsigned [int] -> uint
[thirdparty/bird.git] / lib / socket.h
CommitLineData
58ef912c
MM
1/*
2 * BIRD Socket Interface
3 *
38a608c5 4 * (c) 1998--2004 Martin Mares <mj@ucw.cz>
58ef912c
MM
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9#ifndef _BIRD_SOCKET_H_
10#define _BIRD_SOCKET_H_
11
a2ea1bac 12#include <errno.h>
05476c4d 13// #include <sys/socket.h>
a2ea1bac 14
1feea03e 15#include "lib/resource.h"
58ef912c 16
480effed
MM
17typedef struct birdsock {
18 resource r;
38a608c5 19 pool *pool; /* Pool where incoming connections should be allocated (for SK_xxx_PASSIVE) */
480effed
MM
20 int type; /* Socket type */
21 void *data; /* User data */
22 ip_addr saddr, daddr; /* IPA_NONE = unspecified */
ae80a2de 23 uint sport, dport; /* 0 = unspecified (for IP: protocol type) */
ef4a50be
OZ
24 int tos; /* TOS / traffic class, -1 = default */
25 int priority; /* Local socket priority, -1 = default */
480effed 26 int ttl; /* Time To Live, -1 = default */
789772ed 27 u32 flags;
d804db0d 28 struct iface *iface; /* Interface; specify this for broad/multicast sockets */
480effed
MM
29
30 byte *rbuf, *rpos; /* NULL=allocate automatically */
ae80a2de 31 uint rbsize;
d804db0d 32 int (*rx_hook)(struct birdsock *, int size); /* NULL=receiving turned off, returns 1 to clear rx buffer */
480effed
MM
33
34 byte *tbuf, *tpos; /* NULL=allocate automatically */
35 byte *ttx; /* Internal */
ae80a2de 36 uint tbsize;
480effed
MM
37 void (*tx_hook)(struct birdsock *);
38
d804db0d 39 void (*err_hook)(struct birdsock *, int); /* errno or zero if EOF */
480effed 40
353729f5
OZ
41 /* Information about received datagrams (UDP, RAW), valid in rx_hook */
42 ip_addr faddr, laddr; /* src (From) and dst (Local) address of the datagram */
ae80a2de
PT
43 uint fport; /* src port of the datagram */
44 uint lifindex; /* local interface that received the datagram */
353729f5 45 /* laddr and lifindex are valid only if SKF_LADDR_RX flag is set to request it */
d804db0d 46
05476c4d 47 int af; /* Address family (AF_INET, AF_INET6 or 0 for non-IP) of fd */
d804db0d 48 int fd; /* System-dependent data */
bf139664 49 int index; /* Index in poll buffer */
05476c4d 50 int rcv_ttl; /* TTL of last received datagram */
d804db0d 51 node n;
38a608c5 52 void *rbuf_alloc, *tbuf_alloc;
05476c4d
OZ
53 char *password; /* Password for MD5 authentication */
54 char *err; /* Error message */
d804db0d
MM
55} sock;
56
c4b76d7b
OZ
57sock *sock_new(pool *); /* Allocate new socket */
58#define sk_new(X) sock_new(X) /* Wrapper to avoid name collision with OpenSSL */
59
d804db0d 60int sk_open(sock *); /* Open socket */
05476c4d 61int sk_rx_ready(sock *s);
ae80a2de
PT
62int sk_send(sock *, uint len); /* Send data, <0=err, >0=ok, 0=sleep */
63int sk_send_to(sock *, uint len, ip_addr to, uint port); /* sk_send to given destination */
e7ef86a5 64void sk_reallocate(sock *); /* Free and allocate tbuf & rbuf */
48e5f32d
OZ
65void sk_set_rbsize(sock *s, uint val); /* Resize RX buffer */
66void sk_set_tbsize(sock *s, uint val); /* Resize TX buffer, keeping content */
67void sk_set_tbuf(sock *s, void *tbuf); /* Switch TX buffer, NULL-> return to internal */
d804db0d 68void sk_dump_all(void);
f9c799a0 69
05476c4d
OZ
70static inline int sk_send_buffer_empty(sock *sk)
71{ return sk->tbuf == sk->tpos; }
f9c799a0 72
f9c799a0 73
4ac7c834 74#ifdef IPV6
05476c4d
OZ
75#define sk_is_ipv4(X) 0
76#define sk_is_ipv6(X) 1
77#else
78#define sk_is_ipv4(X) 1
79#define sk_is_ipv6(X) 0
4ac7c834
OZ
80#endif
81
e81b440f 82
05476c4d
OZ
83int sk_setup_multicast(sock *s); /* Prepare UDP or IP socket for multicasting */
84int sk_join_group(sock *s, ip_addr maddr); /* Join multicast group on sk iface */
85int sk_leave_group(sock *s, ip_addr maddr); /* Leave multicast group on sk iface */
86int sk_setup_broadcast(sock *s);
87int sk_set_ttl(sock *s, int ttl); /* Set transmit TTL for given socket */
88int sk_set_min_ttl(sock *s, int ttl); /* Set minimal accepted TTL for given socket */
89int sk_set_md5_auth(sock *s, ip_addr a, struct iface *ifa, char *passwd);
90int sk_set_ipv6_checksum(sock *s, int offset);
91int sk_set_icmp6_filter(sock *s, int p1, int p2);
92void sk_log_error(sock *s, const char *p);
93
88a183c6
OZ
94byte * sk_rx_buffer(sock *s, int *len); /* Temporary */
95
05476c4d 96extern int sk_priority_control; /* Suggested priority for control traffic, should be sysdep define */
139ca21d 97
789772ed
OZ
98
99/* Socket flags */
100
05476c4d
OZ
101#define SKF_V4ONLY 0x01 /* Use IPv4 for IP sockets */
102#define SKF_V6ONLY 0x02 /* Use IPV6_V6ONLY socket option */
103#define SKF_LADDR_RX 0x04 /* Report local address for RX packets */
104#define SKF_TTL_RX 0x08 /* Report TTL / Hop Limit for RX packets */
105#define SKF_BIND 0x10 /* Bind datagram socket to given source address */
9c89560e 106#define SKF_HIGH_PORT 0x20 /* Choose port from high range if possible */
789772ed 107
bf139664 108#define SKF_THREAD 0x100 /* Socked used in thread, Do not add to main loop */
48e5f32d
OZ
109#define SKF_TRUNCATED 0x200 /* Received packet was truncated, set by IO layer */
110#define SKF_HDRINCL 0x400 /* Used internally */
111#define SKF_PKTINFO 0x800 /* Used internally */
789772ed 112
480effed 113/*
d804db0d 114 * Socket types SA SP DA DP IF TTL SendTo (?=may, -=must not, *=must)
480effed
MM
115 */
116
d804db0d
MM
117#define SK_TCP_PASSIVE 0 /* ? * - - - ? - */
118#define SK_TCP_ACTIVE 1 /* ? ? * * - ? - */
119#define SK_TCP 2
0741e687
OZ
120#define SK_UDP 3 /* ? ? ? ? ? ? ? */
121#define SK_IP 5 /* ? - ? * ? ? ? */
b4b3b39e 122#define SK_MAGIC 7 /* Internal use by sysdep code */
b93abffa
MM
123#define SK_UNIX_PASSIVE 8
124#define SK_UNIX 9
58ef912c 125
5a99ade4 126/*
0741e687
OZ
127 * For SK_UDP or SK_IP sockets setting DA/DP allows to use sk_send(),
128 * otherwise sk_send_to() must be used.
129 *
130 * For SK_IP sockets setting DP specifies protocol number, which is used
131 * for both receiving and sending.
132 *
133 * For multicast on SK_UDP or SK_IP sockets set IF and TTL,
134 * call sk_setup_multicast() to enable multicast on that socket,
135 * and then use sk_join_group() and sk_leave_group() to manage
136 * a set of received multicast groups.
48e5f32d
OZ
137 *
138 * For datagram (SK_UDP, SK_IP) sockets, there are two ways to handle
139 * source address. The socket could be bound to it using bind()
140 * syscall, but that also forbids the reception of multicast packets,
141 * or the address could be set on per-packet basis using platform
142 * dependent options (but these are not available in some corner
143 * cases). The first way is used when SKF_BIND is specified, the
144 * second way is used otherwise.
5a99ade4
MM
145 */
146
58ef912c 147#endif