-
Notifications
You must be signed in to change notification settings - Fork 581
/
bin_interface.h
279 lines (244 loc) · 7.62 KB
/
bin_interface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
* Copyright (C) 2013 OpenSIPS Solutions
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* -------
* 2013-04-10: Created (Liviu)
*/
#ifndef __BINARY_INTERFACE__
#define __BINARY_INTERFACE__
#include "ip_addr.h"
#include "crc.h"
#include "net/proto_tcp/tcp_common_defs.h"
#define BIN_MAX_BUF_LEN TCP_BUF_SIZE
#define BIN_PACKET_MARKER "P4CK"
#define BIN_PACKET_MARKER_SIZE 4
#define PKG_LEN_FIELD_SIZE 4
#define VERSION_FIELD_SIZE 2
#define LEN_FIELD_SIZE (sizeof(unsigned short))
#define CMD_FIELD_SIZE sizeof(int)
#define HEADER_SIZE \
(BIN_PACKET_MARKER_SIZE + PKG_LEN_FIELD_SIZE + VERSION_FIELD_SIZE)
#define MIN_BIN_PACKET_SIZE \
(HEADER_SIZE + LEN_FIELD_SIZE + 1 + CMD_FIELD_SIZE)
/* ^ capability */
#define is_valid_bin_packet(_p) \
(memcmp(_p, BIN_PACKET_MARKER, BIN_PACKET_MARKER_SIZE) == 0)
#define _ensure_bin_version(pkt, needed, pkt_desc) \
do { \
if (get_bin_pkg_version(pkt) != (needed)) { \
if (pkt_desc && *pkt_desc) \
LM_INFO("discarding %s, ver %d: need ver %d\n", \
pkt_desc, get_bin_pkg_version(pkt), (needed)); \
else \
LM_INFO("discarding packet type %d, ver %d: need ver %d\n", \
pkt->type, get_bin_pkg_version(pkt), (needed)); \
return; \
} \
} while (0)
#define ensure_bin_version(pkt, needed) _ensure_bin_version(pkt, needed, "")
typedef unsigned bin_packet_flags_t;
#define BINFL_SYSMEM (1U<<0)
typedef struct bin_packet {
str buffer;
char *front_pointer;
struct bin_packet *next;
int size;
int type;
bin_packet_flags_t flags;
/* not populated by bin_interface */
int src_id;
} bin_packet_t;
struct packet_cb_list {
str capability; /* registered capability */
void (*cbf)(bin_packet_t *, int packet_type, /* callback */
struct receive_info *ri, void *att);
void *att;
struct packet_cb_list *next;
};
/* returns the version of the bin protocol from the given message */
static inline short get_bin_pkg_version(bin_packet_t *packet)
{
short rval;
memcpy(&rval, packet->buffer.s + BIN_PACKET_MARKER_SIZE
+ PKG_LEN_FIELD_SIZE, sizeof(rval));
return rval;
}
/* overrides the version of the bin protocol from the given message */
static inline void set_bin_pkg_version(bin_packet_t *packet, short new_version)
{
memcpy(packet->buffer.s + BIN_PACKET_MARKER_SIZE
+ PKG_LEN_FIELD_SIZE, &new_version, sizeof(new_version));
}
/*
* returns the capability from the message
*/
void bin_get_capability(bin_packet_t *packet, str *capability);
/**
calls all the registered functions
@buffer: buffer containing a complete bin message
@rcv: information about the sender of the message
*/
void call_callbacks(char* buffer, struct receive_info *rcv);
/*
* registers a callback function to be triggered on a received
* binary packet marked with the @cap capability
*/
int bin_register_cb(str *cap, void (*cb)(bin_packet_t *, int,
struct receive_info *, void * atr), void *att, int att_len);
/**
* first function called when building a binary packet
*
* @capability: capability string
* @packet_type: capability specific identifier for this new packet
*
* @return: 0 on success
*/
int _bin_init(bin_packet_t *packet, str *capability, int packet_type, short version,
int length, int use_sysmalloc);
#define bin_init(_pk, _cap, _pt, _ver, _len) \
_bin_init(_pk, _cap, _pt, _ver, _len, 0)
/**
* function called to build a binary packet with a known buffer
*
* @packet: the packet that will be populated
* @buffer: the buffer that will be attached to the packet
* @length: the length of the buffer attached
*/
void bin_init_buffer(bin_packet_t *packet, char *buffer, int length);
/*
* appends a buffer to a binary packet
* @buf: buffer to be appended
* @len: length of @buf
*
* @return:
* > 0: success, the size of the buffer
* < 0: internal buffer limit reached
*/
int bin_append_buffer(bin_packet_t *packet, str *buf);
/*
* adds a new string value to the packet being currently built
* @info: may also be NULL
*
* @return:
* > 0: success, the size of the buffer
* < 0: internal buffer limit reached
*/
int bin_push_str(bin_packet_t *packet, const str *info);
/*
* adds a new integer value to the packet being currently built
*
* @return:
* > 0: success, the size of the buffer
* < 0: internal buffer limit reached
*/
int bin_push_int(bin_packet_t *packet, int info);
/*
* removes an integer from the end of the packet
*
* @return:
* 0: success
* < 0: error, no more integers in buffer
*/
int bin_remove_int_buffer_end(bin_packet_t *packet, int count);
/*
* skips @count integers in the end of the packet
*
* @return:
* 0: success
* < 0: error, no more integers in buffer
*/
int bin_skip_int_packet_end(bin_packet_t *packet, int count);
/*
* pops a str structure from binary packet
* @info: pointer to store the result
*
* @return:
* 0 (success): info retrieved
* 1 (success): nothing returned, all data has been consumed!
* < 0: error
*
* Note: The pointer returned in @info is only valid for the duration of
* the callback. Don't forget to copy the data into a safe buffer!
*
* Note2: Information is retrieved in the same order it was stored
*/
int bin_pop_str(bin_packet_t *packet, str *info);
/*
* pops an integer from the front of the packet
* @info: pointer to store the result
*
* @return:
* 0 (success): info retrieved
* 1 (success): nothing returned, all data has been consumed!
* < 0: error
*
* Note: Information is retrieved in the same order it was stored
*/
int bin_pop_int(bin_packet_t *packet, void *info);
/*
* pops an integer from the end of binary packet
* @info: pointer to store the result
*
* @return:
* 0 (success): info retrieved
* 1 (success): nothing returned, all data has been consumed!
* < 0: error
*/
int bin_pop_back_int(bin_packet_t *packet, void *info);
/*
* skips @count integers from a received binary packet
*
* @return:
* >= 0: success, number of skipped bytes
* < 0: error, buffer limit reached
*/
int bin_skip_int(bin_packet_t *packet, int count);
/*
* skips @count strings from a received binary packet
*
* @return:
* >= 0: success, number of skipped bytes
* < 0: error, buffer limit reached
*/
int bin_skip_str(bin_packet_t *packet, int count);
/*
* frees the memory used by the binary packet
*/
void bin_free_packet(bin_packet_t *packet);
/*
* resets the packet, equivalent to calling bin_free_packet,
* then reinitializing the packet
*/
int bin_reset_back_pointer(bin_packet_t *packet);
/*
* returns the buffer with the data in the bin packet
*/
int bin_get_buffer(bin_packet_t *packet, str *buffer);
/*
* returns the bin packet's buffer from the position where
* the serialized content actually starts
*/
int bin_get_content_start(bin_packet_t *packet, str *buf);
/*
* returns the bin packet's buffer from the position of the
* next field to be consumed
*/
int bin_get_content_pos(bin_packet_t *packet, str *buf);
#endif /* __BINARY_INTERFACE__ */