debian/changelog: Write most of changelog for 0.4.x
[secnet] / util.h
CommitLineData
2fe58dfd
SE
1#ifndef util_h
2#define util_h
3
2fe58dfd 4#include "secnet.h"
2fe58dfd
SE
5#include <gmp.h>
6
3b83c932
SE
7#include "hackypar.h"
8
2fe58dfd
SE
9#define BUF_ASSERT_FREE(buf) do { buffer_assert_free((buf), \
10 __FILE__,__LINE__); } \
11while(0)
12#define BUF_ASSERT_USED(buf) do { buffer_assert_used((buf), \
13 __FILE__,__LINE__); } \
14while(0)
15#define BUF_ALLOC(buf,own) do { buffer_assert_free((buf),__FILE__,__LINE__); \
16 (buf)->free=False; (buf)->owner=(own); (buf)->start=(buf)->base; \
17 (buf)->size=0; } while(0)
18#define BUF_FREE(buf) do { (buf)->free=True; } while(0)
19
fe5e9cc4 20extern void buffer_assert_free(struct buffer_if *buffer, cstring_t file,
1caa23ff 21 int line);
fe5e9cc4 22extern void buffer_assert_used(struct buffer_if *buffer, cstring_t file,
1caa23ff
IJ
23 int line);
24extern void buffer_new(struct buffer_if *buffer, int32_t len);
25extern void buffer_init(struct buffer_if *buffer, int32_t max_start_pad);
46d06c39 26extern void buffer_destroy(struct buffer_if *buffer);
05f39b4d 27extern void buffer_copy(struct buffer_if *dst, const struct buffer_if *src);
1caa23ff
IJ
28extern void *buf_append(struct buffer_if *buf, int32_t amount);
29extern void *buf_prepend(struct buffer_if *buf, int32_t amount);
30extern void *buf_unappend(struct buffer_if *buf, int32_t amount);
31extern void *buf_unprepend(struct buffer_if *buf, int32_t amount);
2fe58dfd 32
8438de14
IJ
33/*
34 * void BUF_ADD_BYTES(append, struct buffer_if*, const void*, int32_t size);
35 * void BUF_ADD_BYTES(prepend, struct buffer_if*, const void*, int32_t size);
36 * void BUF_GET_BYTES(unappend, struct buffer_if*, void*, int32_t size);
37 * void BUF_GET_BYTES(unprepend, struct buffer_if*, void*, int32_t size);
38 * // all of these evaluate size twice
39 *
40 * void BUF_ADD_OBJ(append, struct_buffer_if*, const OBJECT& something);
41 * void BUF_ADD_OBJ(prepend, struct_buffer_if*, const OBJECT& something);
42 * void BUF_GET_OBJ(unappend, struct_buffer_if*, OBJECT& something);
43 * void BUF_GET_OBJ(unprepend, struct_buffer_if*, OBJECT& something);
44 */
45#define BUF_ADD_BYTES(appendprepend, bufp, datap, size) \
46 (buf_un##appendprepend /* ensures we have correct direction */, \
47 memcpy(buf_##appendprepend((bufp),(size)),(datap),(size)))
48#define BUF_ADD_OBJ(appendprepend, bufp, obj) \
49 BUF_ADD_BYTES(appendprepend,(bufp),&(obj),sizeof((obj)))
50#define BUF_GET_BYTES(unappendunprepend, bufp, datap, size) \
51 (BUF_GET__DOESNOTEXIST__buf_un##unappendunprepend, \
52 memcpy((datap),buf_##unappendunprepend((bufp),(size)),(size)))
53#define BUF_GET_OBJ(unappendunprepend, bufp, obj) \
54 BUF_ADD_BYTES(unappendunprepend,&(obj),(bufp),sizeof((obj)))
55#define BUF_GET__DOESNOTEXIST__buf_ununappend 0
56#define BUF_GET__DOESNOTEXIST__buf_ununprepend 0
57
92795040
IJ
58static inline int32_t buf_remaining_space(const struct buffer_if *buf)
59{
2ec49059 60 return (buf->base + buf->alloclen) - (buf->start + buf->size);
92795040
IJ
61}
62
28db900b
IJ
63extern void buffer_readonly_view(struct buffer_if *n, const void*, int32_t len);
64extern void buffer_readonly_clone(struct buffer_if *n, const struct buffer_if*);
65 /* Caller must only use unappend, unprepend et al. on n.
66 * New buffer state (in n) before this can be undefined. After use,
67 * it must NOT be freed. */
68
fe5e9cc4 69extern void buf_append_string(struct buffer_if *buf, cstring_t s);
2fe58dfd 70
2fe58dfd
SE
71extern void read_mpbin(MP_INT *a, uint8_t *bin, int binsize);
72
73extern char *write_mpstring(MP_INT *a);
74
1caa23ff 75extern int32_t write_mpbin(MP_INT *a, uint8_t *buffer, int32_t buflen);
2fe58dfd
SE
76
77extern struct log_if *init_log(list_t *loglist);
78
8534d602
IJ
79extern void send_nak(const struct comm_addr *dest, uint32_t our_index,
80 uint32_t their_index, uint32_t msgtype,
81 struct buffer_if *buf, const char *logwhy);
82
5ad34db2
IJ
83extern int consttime_memeq(const void *s1, const void *s2, size_t n);
84
a32d56fb 85const char *iaddr_to_string(const union iaddr *ia);
a32d56fb
IJ
86int iaddr_socklen(const union iaddr *ia);
87
bb839899
IJ
88void string_item_to_iaddr(const item_t *item, uint16_t port, union iaddr *ia,
89 const char *desc);
90
a0fac2f1
IJ
91
92/*----- line-buffered asynch input -----*/
93
94enum async_linebuf_result {
95 async_linebuf_nothing,
96 async_linebuf_ok,
97 async_linebuf_eof,
98 async_linebuf_broken,
99};
100
ae5ae3bf
IJ
101const char *pollbadbit(int revents); /* returns 0, or bad bit description */
102
a0fac2f1
IJ
103enum async_linebuf_result
104async_linebuf_read(struct pollfd *pfd, struct buffer_if *buf,
105 const char **emsg_out);
106 /* Implements reading whole lines, asynchronously. Use like
107 * this:
108 * - set up the fd, which should be readable, O_NONBLOCK
109 * - set up and initialise buffer, which should be big enough
110 * for one line plus its trailing newline, and be empty
111 * with start==base
112 * - in your beforepoll_fn, be interested in POLLIN
113 * - in your afterpoll_fn, repeatedly call this function
114 * until it doesn't return `nothing'
115 * - after you're done, simply close fd and free or reset buf
116 * State on return from async_linebuf_read depends on return value:
117 *
118 * async_linebuf_nothing:
119 *
120 * No complete lines available right now. You should return
121 * from afterpoll. buf should be left untouched until the
122 * next call to async_linebuf_read.
123 *
124 * async_linebuf_ok:
125 *
126 * buf->base contains a input line as a nul-terminated string
127 * (\n replaced by \0); *emsg_out==0. You must call
128 * async_linebuf_read again before returning from afterpoll.
129 *
130 * async_linebuf_eof:
131 *
132 * EOF on stream. buf->base contains any partial
133 * (non-newline-terminated) line; *emsg_out!=0 iff there was
134 * such a partial line. You can call async_linebuf_read again
135 * if you like but it will probably just return eof again.
136 *
137 * broken:
138 *
139 * Fatal problem (might be overly long lines, nuls in input
140 * data, bad bits in pfd->revents, errors from read, etc.)
141 *
142 * *emsg_out is the error message describing the problem;
143 * this message might be stored in buf, might be from
144 * strerror, or might be a constant.
145 *
146 * You must not call async_linebuf_read again. buf contents
147 * is undefined: it is only safe to reset or free.
148 *
149 * While using this function, do not look at buf->start or ->size
150 * or anything after the first '\0' in buf.
151 *
152 * If you decide to stop reading with async_linebuf_read that's
153 * fine and you can reset or free buf, but you risk missing some
154 * read-but-not-reported data.
155 */
156
157/*----- some handy macros -----*/
158
ceb05e5d
IJ
159#define MINMAX(ae,be,op) ({ \
160 typeof((ae)) a=(ae); \
161 typeof((be)) b=(be); \
162 a op b ? a : b; \
163 })
164#define MAX(a,b) MINMAX((a),(b),>)
165#define MIN(a,b) MINMAX((a),(b),<)
166
c9c047dc
IJ
167#define MAX_RAW(a,b) ((a)>(b)?(a):(b))
168#define MIN_RAW(a,b) ((a)<(b)?(a):(b))
169
ba703386
IJ
170static inline bool_t iswouldblock(int e)
171 { return e==EWOULDBLOCK || e==EAGAIN; }
172
2fe58dfd 173#endif /* util_h */