eX_setup.h
19.4 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
/*
eXosip - This is the eXtended osip library.
Copyright (C) 2001-2020 Aymeric MOIZARD amoizard@antisip.com
eXosip 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.
eXosip 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations
including the two.
You must obey the GNU General Public License in all respects
for all of the code used other than OpenSSL. If you modify
file(s) with this exception, you may extend this exception to your
version of the file(s), but you are not obligated to do so. If you
do not wish to do so, delete this exception statement from your
version. If you delete this exception statement from all source
files in the program, then also delete it here.
*/
#ifdef ENABLE_MPATROL
#include <mpatrol.h>
#endif
#ifndef __EX_SETUP_H__
#define __EX_SETUP_H__
#include <eXosip2/eXosip.h>
#include <osipparser2/osip_message.h>
#include <time.h>
#ifdef __cplusplus
extern "C" {
#endif
struct eXosip_t;
struct osip_srv_record;
struct osip_naptr;
/**
* @file eX_setup.h
* @brief eXosip setup API
*
* This file provide the API needed to setup and configure
* the SIP endpoint.
*
*/
/**
* @defgroup eXosip2_conf eXosip2 configuration API
* @ingroup eXosip2_setup
* @{
*/
/**
* Allocate an eXosip context.
*
* @return a new allocated eXosip_t instance.
*/
struct eXosip_t *eXosip_malloc(void);
/**
* Initiate the eXtented oSIP library.
*
* @param excontext eXosip_t instance.
*/
int eXosip_init(struct eXosip_t *excontext);
/**
* Release ressource used by the eXtented oSIP library.
*
* @param excontext eXosip_t instance.
*/
void eXosip_quit(struct eXosip_t *excontext);
/**
* Lock the eXtented oSIP library.
*
* @param excontext eXosip_t instance.
*/
int eXosip_lock(struct eXosip_t *excontext);
/**
* UnLock the eXtented oSIP library.
*
* @param excontext eXosip_t instance.
*/
int eXosip_unlock(struct eXosip_t *excontext);
/**
* Process (non-threaded mode ONLY) eXosip events.
*
* @param excontext eXosip_t instance.
*/
int eXosip_execute(struct eXosip_t *excontext);
#define EXOSIP_OPT_BASE_OPTION 0
#define EXOSIP_OPT_UDP_KEEP_ALIVE (EXOSIP_OPT_BASE_OPTION + 1) /**< int *: interval for keep alive packets (UDP, TCP, TLS, DTLS) */
#define EXOSIP_OPT_AUTO_MASQUERADE_CONTACT (EXOSIP_OPT_BASE_OPTION + 2) /**< int *: specific re-usage of "rport" */
#define EXOSIP_OPT_UDP_LEARN_PORT EXOSIP_OPT_AUTO_MASQUERADE_CONTACT /** EXOSIP_OPT_UDP_LEARN_PORT is obsolete / replaced by EXOSIP_OPT_AUTO_MASQUERADE_CONTACT */
#define EXOSIP_OPT_USE_RPORT (EXOSIP_OPT_BASE_OPTION + 7) /**< int *: enable or disable rport in via */
#define EXOSIP_OPT_SET_IPV4_FOR_GATEWAY (EXOSIP_OPT_BASE_OPTION + 8) /**< char *: usually, this is the proxy address */
#define EXOSIP_OPT_ADD_DNS_CACHE (EXOSIP_OPT_BASE_OPTION + 9) /**< struct eXosip_dns_cache *: force some cache entry to avoid DNS */
#define EXOSIP_OPT_DELETE_DNS_CACHE (EXOSIP_OPT_BASE_OPTION + 10) /**< struct eXosip_dns_cache *: force removal of some cache entry to avoid DNS */
#define EXOSIP_OPT_SET_IPV6_FOR_GATEWAY (EXOSIP_OPT_BASE_OPTION + 12) /**< char *: usually, this is the proxy address */
#define EXOSIP_OPT_ADD_ACCOUNT_INFO (EXOSIP_OPT_BASE_OPTION + 13) /**< struct eXosip_account_info *: internal stuff */
#define EXOSIP_OPT_DNS_CAPABILITIES (EXOSIP_OPT_BASE_OPTION + 14) /**< int *: 0 to disable, 2 (default) to use NAPTR/SRV record */
#define EXOSIP_OPT_SET_DSCP (EXOSIP_OPT_BASE_OPTION + 15) /**< int *: set a dscp value for SIP socket */
#define EXOSIP_OPT_REGISTER_WITH_DATE (EXOSIP_OPT_BASE_OPTION + 16) /**< int *: enable usage of Date header in REGISTER */
#define EXOSIP_OPT_SET_HEADER_USER_AGENT (EXOSIP_OPT_BASE_OPTION + 17) /**< char *: set the User-Agent header */
#define EXOSIP_OPT_ENABLE_DNS_CACHE (EXOSIP_OPT_BASE_OPTION + 18) /**< int *: 0 to disable use of cache*/
#define EXOSIP_OPT_ENABLE_AUTOANSWERBYE (EXOSIP_OPT_BASE_OPTION + 19) /**< int *: 0 to disable automatic answer of BYE */
#define EXOSIP_OPT_ENABLE_IPV6 (EXOSIP_OPT_BASE_OPTION + 20) /**< int *: 0 to disable, 1 to use only IPv6, 2 to use choose the best -this is a per-eXosip_t parameter for using IPv6 DNS request */
#define EXOSIP_OPT_ENABLE_REUSE_TCP_PORT (EXOSIP_OPT_BASE_OPTION + 21) /**< int *: 0 to disable, 1 to enable reusing local tcp port for outgoing tcp connection */
#define EXOSIP_OPT_ENABLE_USE_EPHEMERAL_PORT (EXOSIP_OPT_BASE_OPTION + 22) /**< int *: 0 to disable, 1 to enable usage of emphemeral tcp port in Contact headers instead of local listening port for TCP/TLS */
#define EXOSIP_OPT_SET_CALLBACK_WAKELOCK (EXOSIP_OPT_BASE_OPTION + 23) /**< CbSipWakeLock *: set a callback to be called upon start/end of transaction */
#define EXOSIP_OPT_ENABLE_OUTBOUND (EXOSIP_OPT_BASE_OPTION + 24) /**< int *: 0 to disable, 1 to enable usage of ob parmeter (rfc 5626) in dialog's contact headers */
#define EXOSIP_OPT_SET_OC_LOCAL_ADDRESS (EXOSIP_OPT_BASE_OPTION + 25) /**< char *: set the ip address to bind for outbound connection */
#define EXOSIP_OPT_SET_OC_PORT_RANGE (EXOSIP_OPT_BASE_OPTION + 26) /**< int[2] *: set the port range (min, max) to bind for outbound connection (if EXOSIP_OPT_SET_OC_LOCAL_ADDRESS is not used, this options apply to TCP/TLS only) */
#define EXOSIP_OPT_REMOVE_PREROUTESET (EXOSIP_OPT_BASE_OPTION + 27) /**< int *: 0: keep pre-route set in initial INVITE/SUBSCRIBE/REFER, 1 (default): remove pre-route set*/
#define EXOSIP_OPT_SET_SIP_INSTANCE (EXOSIP_OPT_BASE_OPTION + 28) /**< char *: define +sip.instance parameter in Contact headers (example: urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6) */
#define EXOSIP_OPT_SET_MAX_MESSAGE_TO_READ (EXOSIP_OPT_BASE_OPTION + 29) /**< int: set the number of message to read at once for each network processing (high load traffic use-case: DO NOT USE FOR COMMON USAGE) */
#define EXOSIP_OPT_SET_MAX_READ_TIMEOUT (EXOSIP_OPT_BASE_OPTION + 30) /**< long int: set the period in nano seconds during we read for sip message. (high load traffic use-case: DO NOT USE FOR COMMON USAGE)*/
#define EXOSIP_OPT_SET_DEFAULT_CONTACT_DISPLAYNAME (EXOSIP_OPT_BASE_OPTION + 31) /**< char *: define a display name to be added in Contact headers (example: "john Doe") */
#define EXOSIP_OPT_SET_SESSIONTIMERS_FORCE \
(EXOSIP_OPT_BASE_OPTION + 32) /**< int *: 0 (default): activate "session timers" if supported on both side, 1: if remote side (UAS) do not indicate support for "session timers", activate feature on UAC (local) side */
#define EXOSIP_OPT_FORCE_CONNECTIONREUSE (EXOSIP_OPT_BASE_OPTION + 33) /**< int *: 0 to disable, 1 to force reusing established connection for ACK and dialog message */
#define EXOSIP_OPT_SET_CONTACT_DIALOG_EXTRA_PARAMS (EXOSIP_OPT_BASE_OPTION + 34) /**< char *: define extra parameters in Contact headers (example: "audio;video;xxx=yyy" parameter must not contains initial ";") */
#define EXOSIP_OPT_SET_TLS_VERIFY_CERTIFICATE (EXOSIP_OPT_BASE_OPTION + 500) /**< int *: enable verification of certificate for TLS connection */
#define EXOSIP_OPT_SET_TLS_CERTIFICATES_INFO (EXOSIP_OPT_BASE_OPTION + 501) /**< eXosip_tls_ctx_t *: client and/or server certificate/ca-root/key info */
#define EXOSIP_OPT_SET_TLS_CLIENT_CERTIFICATE_NAME (EXOSIP_OPT_BASE_OPTION + 502) /**< char*: user can choose a specific certifcate present in Windows Certificate Store */
#define EXOSIP_OPT_SET_TLS_SERVER_CERTIFICATE_NAME (EXOSIP_OPT_BASE_OPTION + 503) /**< char*: user can choose a specific certifcate present in Windows Certificate Store */
/* non standard option: need a compilation flag to activate */
#define EXOSIP_OPT_KEEP_ALIVE_OPTIONS_METHOD (EXOSIP_OPT_BASE_OPTION + 1000)
#define EXOSIP_OPT_SET_TSC_SERVER (EXOSIP_OPT_BASE_OPTION + 1001) /**< deprecated */
#define EXOSIP_OPT_GET_STATISTICS (EXOSIP_OPT_BASE_OPTION + 2000) /**< struct eXosip_stats*: retreive numerous statistics about transactions, registrations, calls, publications and subscriptions... */
/**
* structure used to for inserting a DNS cache entry and avoid DNS resolution.
* @struct eXosip_dns_cache
*/
struct eXosip_dns_cache {
char host[1024];
char ip[256];
};
struct eXosip_account_info {
char proxy[1024];
char nat_ip[256];
int nat_port;
};
struct eXosip_http_auth {
char pszCallId[64];
osip_proxy_authenticate_t *wa;
char pszCNonce[64];
int iNonceCount;
int answer_code;
};
#ifndef MINISIZE
/**
* Structure used to retrieve eXosip internal statistics.
* Total numbers are provided since last start or restart of eXosip.
* Average values are calculated over the last EXOSIP_STATS_PERIOD
* which default to 3600 seconds.
*
* @struct eXosip_stats
*/
struct eXosip_stats {
int allocated_transactions; /**< current number of allocated transactions. */
float average_transactions; /**< average number of new transactions/hour. (default period: 1 hour) */
int allocated_registrations; /**< current number of allocated registrations. (should remains 1 in standard usage) */
float average_registrations; /**< average number of new registrations/hour. (default period: 1 hour) */
int allocated_calls; /**< current number of allocated calls. */
float average_calls; /**< average number of new calls/hour. (default period: 1 hour) */
int allocated_publications; /**< current number of allocated publications. */
float average_publications; /**< average number of new publication/hour. (default period: 1 hour) */
int allocated_subscriptions; /**< current number of allocated outgoing subscriptions. */
float average_subscriptions; /**< average number of new outgoing subscriptions/hour. (default period: 1 hour) */
int allocated_insubscriptions; /**< current number of allocated incoming subscriptions. */
float average_insubscriptions; /**< average number of new incoming subscriptions/hour. (default period: 1 hour) */
int reserved1[20]; /**< reserved for future usage without breaking ABI */
};
#endif
/**
* Set eXosip options.
* See eXosip_option for available options.
*
* @param excontext eXosip_t instance.
* @param opt option to configure.
* @param value value for options.
*
*/
int eXosip_set_option(struct eXosip_t *excontext, int opt, const void *value);
/**
* structure used to describe credentials for a client or server
* consists of a certificate, a corresponding private key and its password
*
* If the server requires a certificate from the client, you must provide
* the certificate, private key, and your private key password.
*
* You can "pin" your public key certificate if you have received it.
* public_key_pinned must contains your public key file in DER format.
* To extract your public key from a PEM certificate in DER format, you
* can use the following command line:
* openssl x509 -in server-cert.pem -pubkey -noout | openssl enc -base64 -d > pub_key.der
*
* @struct eXosip_tls_credentials_s
*/
typedef struct eXosip_tls_credentials_s {
char priv_key[1024]; /**< absolute path to a file with a private key */
char priv_key_pw[1024]; /**< password to open private key */
char cert[1024]; /**< absolute path to a file with a certificate for the private key */
char public_key_pinned[1024]; /**< absolute path to a file with the expected public key of server */
} eXosip_tls_credentials_t;
/**
* structure to describe the whole TLS-context for eXosip
* consists of a certificate, a corresponding private key and its password
*
* When a client connects to a server, if you wish to verify certificate, you
* just have to configure the root_ca_cert parameter to a file with all your
* trusted CA. (example file at https://pki.google.com/roots.pem)
*
* On Windows & Macosx, the trusted certificates from the store are loaded automatically.
*
* @struct eXosip_tls_ctx_s
*/
typedef struct eXosip_tls_ctx_s {
char random_file[1024]; /**< absolute path to a file with random(!) data */
char dh_param[1024]; /**< absolute path to a file necessary for diffie hellman key exchange */
char root_ca_cert[1024]; /**< absolute path to the file with known rootCAs */
char cipher_list[2048]; /**< openssl cipher list (default: HIGH:!COMPLEMENTOFDEFAULT:!kRSA:!PSK:!SRP) */
unsigned long tls_flags; /**< openssl additionnal flag (example: SSL_OP_NO_TLSv1, SSL_OP_NO_TLSv1_1) */
unsigned long dtls_flags; /**< openssl additionnal flag (example: SSL_OP_NO_DTLSv1) */
eXosip_tls_credentials_t client; /**< credential of the client */
eXosip_tls_credentials_t server; /**< credential of the server */
} eXosip_tls_ctx_t;
/**
* An enumeration which describes the error which can occur while setting the eXosip_tls_ctx
*/
typedef enum {
TLS_OK = 0, /**< yippieh, everything is fine :) */
TLS_ERR_NO_RAND = -1, /**< no absolute path to the random file was specified */
TLS_ERR_NO_DH_PARAM = -2, /**< no absolute path to the diifie hellman file was specified */
TLS_ERR_NO_PW = -3, /**< no password was specified */
TLS_ERR_NO_ROOT_CA = -4, /**< no absolute path to the rootCA file was specified */
TLS_ERR_MISSING_AUTH_PART = -5 /**< something is missing: the private key or the certificate */
} eXosip_tls_ctx_error;
/**
* Start and return osip_naptr context.
* Note that DNS results might not yet be available.
*
* If you provide a FQDN, a NAPTR query will be done on it.
* For example: "antisip.com"
*
* If you wish to do a ENUM query, you need to specify both the domain to query
* and the AUS (ie, the number dialed). You will use a "!" separator between them.
* For example, to query "+123456789" on "e164.org", please use: "e164.org!+123456789"
*
* @param excontext eXosip_t instance.
* @param domain domain name for NAPTR record OR ENUM query (such as e164.org!+123456789)
* @param protocol protocol to use ("SIP")
* @param transport transport to use ("UDP")
* @param keep_in_cache keep result in cache if >0
*/
struct osip_naptr *eXosip_dnsutils_naptr(struct eXosip_t *excontext, const char *domain, const char *protocol, const char *transport, int keep_in_cache);
/**
* For every eXosip_dnsutils_naptr query you make
* you must call eXosip_dnsutils_release to release
* the memory.
*
* @param naptr_record the naptr structure to release.
*/
void eXosip_dnsutils_release(struct osip_naptr *naptr_record);
/**
* Continue to process asynchronous DNS request (if implemented).
*
* @param output_record result structure.
* @param force force waiting for final answer if >0
*/
int eXosip_dnsutils_dns_process(struct osip_naptr *output_record, int force);
/**
* Rotate first SRV entry to last SRV entry.
*
* @param output_record result structure.
*/
int eXosip_dnsutils_rotate_srv(struct osip_srv_record *output_record);
/**
* Listen on a specified socket.
*
* @param excontext eXosip_t instance.
* @param transport IPPROTO_UDP for udp. (soon to come: TCP/TLS?)
* @param addr the address to bind (NULL for all interface)
* @param port the listening port. (0 for random port)
* @param family the IP family (AF_INET or AF_INET6).
* @param secure 0 for UDP or TCP, 1 for TLS (with TCP).
*/
int eXosip_listen_addr(struct eXosip_t *excontext, int transport, const char *addr, int port, int family, int secure);
/**
* Reset transport sockets.
*
* @param excontext eXosip_t instance.
*/
int eXosip_reset_transports(struct eXosip_t *excontext);
/**
* Listen on a specified socket.
*
* @param excontext eXosip_t instance.
* @param transport IPPROTO_UDP for udp. (soon to come: TCP/TLS?)
* @param socket socket to use for listening to UDP sip messages.
* @param port the listening port for masquerading.
*/
int eXosip_set_socket(struct eXosip_t *excontext, int transport, int socket, int port);
/**
* Set the SIP User-Agent: header string.
*
* @param excontext eXosip_t instance.
* @param user_agent the User-Agent header to insert in messages.
*/
void eXosip_set_user_agent(struct eXosip_t *excontext, const char *user_agent);
/**
* Get the eXosip version as a sring
*
*/
const char *eXosip_get_version(void);
#ifdef WIN32
typedef void(__stdcall *CbSipCallback)(osip_message_t *msg, int received);
typedef void(__stdcall *CbSipWakeLock)(int state);
#else
typedef void (*CbSipCallback)(osip_message_t *msg, int received);
typedef void (*CbSipWakeLock)(int state);
#endif
/**
* Set a callback to get sent and received SIP messages.
*
* @param excontext eXosip_t instance.
* @param cbsipCallback the callback to retreive messages.
*/
int eXosip_set_cbsip_message(struct eXosip_t *excontext, CbSipCallback cbsipCallback);
/**
* This method is used to replace contact address with
* the public address of your NAT. The ip address should
* be retreived manually (fixed IP address) or with STUN.
* This address will only be used when the remote
* correspondant appears to be on an DIFFERENT LAN.
*
* @param excontext eXosip_t instance.
* @param public_address the ip address.
* @param port the port for masquerading.
*
* If set to NULL, then the local ip address will be guessed
* automatically (returns to default mode).
*/
void eXosip_masquerade_contact(struct eXosip_t *excontext, const char *public_address, int port);
/**
* This method is used to find out an free IPPROTO_UDP or IPPROTO_TCP port.
*
* @param excontext eXosip_t instance.
* @param free_port initial port for search.
* @param transport IPPROTO_UDP or IPPROTO_TCP protocol.
*
*/
int eXosip_find_free_port(struct eXosip_t *excontext, int free_port, int transport);
#ifndef DOXYGEN
/**
* Wake Up the eXosip_event_wait method.
*
* @param excontext eXosip_t instance.
*/
void eXosip_wakeup_event(struct eXosip_t *excontext);
#endif
/** @} */
/**
* @defgroup eXosip2_network eXosip2 network API
* @ingroup eXosip2_setup
* @{
*/
/**
* Modify the transport protocol used to send SIP message.
*
* @param msg The SIP message to modify
* @param transport transport protocol to use ("UDP", "TCP" or "TLS")
*/
int eXosip_transport_set(osip_message_t *msg, const char *transport);
/**
* Find the current localip (interface with default route).
*
* @param excontext eXosip_t instance.
* @param family AF_INET or AF_INET6
* @param address a string containing the local IP address.
* @param size The size of the string
*/
int eXosip_guess_localip(struct eXosip_t *excontext, int family, char *address, int size);
/** @} */
#ifdef __cplusplus
}
#endif
#endif