forked from freeswitch/sofia-sip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_ops.c
566 lines (481 loc) · 13.8 KB
/
test_ops.c
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/*
* This file is part of the Sofia-SIP package
*
* Copyright (C) 2005 Nokia Corporation.
*
* Contact: Pekka Pessi <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
/**@CFILE test_ops.c
* @brief High-level test framework for Sofia SIP User Agent Engine
*
* @author Pekka Pessi <[email protected]>
* @author Martti Mela <Martti [email protected]>
*
* @date Created: Wed Aug 17 12:12:12 EEST 2005 ppessi
*/
#include "config.h"
#include "test_nua.h"
#if HAVE_FUNC
#elif HAVE_FUNCTION
#define __func__ __FUNCTION__
#else
#define __func__ name
#endif
int save_events(CONDITION_PARAMS)
{
return save_event_in_list(ctx, event, ep, call) == event_is_normal;
}
int until_final_response(CONDITION_PARAMS)
{
return status >= 200;
}
int save_until_final_response(CONDITION_PARAMS)
{
save_event_in_list(ctx, event, ep, call);
return
nua_r_set_params <= event && event < nua_i_network_changed
&& status >= 200;
}
/** Save events.
*
* Terminate when a event is saved.
*/
int save_until_received(CONDITION_PARAMS)
{
return save_event_in_list(ctx, event, ep, call) == event_is_normal;
}
/** Save events until nua_i_outbound is received. */
int save_until_special(CONDITION_PARAMS)
{
return save_event_in_list(ctx, event, ep, call) == event_is_special;
}
/* Return call state from event tag list */
int callstate(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, nutag_callstate);
return ti ? ti->t_value : -1;
}
/* Return true if offer is sent */
int is_offer_sent(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, nutag_offer_sent);
return ti ? ti->t_value : 0;
}
/* Return true if answer is sent */
int is_answer_sent(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, nutag_answer_sent);
return ti ? ti->t_value : 0;
}
/* Return true if offer is recv */
int is_offer_recv(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, nutag_offer_recv);
return ti ? ti->t_value : 0;
}
/* Return true if answer is recv */
int is_answer_recv(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, nutag_answer_recv);
return ti ? ti->t_value : 0;
}
/* Return true if offer/answer is sent/recv */
int is_offer_answer_done(tagi_t const *tags)
{
tagi_t const *ti;
return
((ti = tl_find(tags, nutag_answer_recv)) && ti->t_value) ||
((ti = tl_find(tags, nutag_offer_sent)) && ti->t_value) ||
((ti = tl_find(tags, nutag_offer_recv)) && ti->t_value) ||
((ti = tl_find(tags, nutag_answer_sent)) && ti->t_value);
}
/* Return audio state from event tag list */
int audio_activity(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, soatag_active_audio);
return ti ? ti->t_value : -1;
}
/* Return video state from event tag list */
int video_activity(tagi_t const *tags)
{
tagi_t const *ti = tl_find(tags, soatag_active_video);
return ti ? ti->t_value : -1;
}
void print_event(nua_event_t event,
char const *operation,
int status, char const *phrase,
nua_t *nua, struct context *ctx,
struct endpoint *ep,
nua_handle_t *nh, struct call *call,
sip_t const *sip,
tagi_t tags[])
{
tagi_t const *t;
static su_nanotime_t started = 0;
su_nanotime_t now;
char timestamp[32];
su_nanotime(&now);
if (started == 0) started = now;
now -= started; now /= 1000000;
snprintf(timestamp, sizeof timestamp, "%03u.%03u",
(unsigned)(now / 1000), (unsigned)(now % 1000));
if (event == nua_i_state) {
fprintf(stderr, "%s %s.nua(%p): event %s %s\n", timestamp,
ep->name, (void *)nh, nua_event_name(event),
nua_callstate_name(callstate(tags)));
}
else if ((int)event >= nua_r_set_params) {
t = tl_find(tags, nutag_substate);
if (t) {
fprintf(stderr, "%s %s.nua(%p): event %s status %u %s (%s)\n", timestamp,
ep->name, (void*)nh, nua_event_name(event), status, phrase,
nua_substate_name(t->t_value));
}
else {
fprintf(stderr, "%s %s.nua(%p): event %s status %u %s\n", timestamp,
ep->name, (void *)nh, nua_event_name(event), status, phrase);
}
}
else if (event == nua_i_notify) {
t = tl_find(tags, nutag_substate);
fprintf(stderr, "%s %s.nua(%p): event %s %s (%s)\n", timestamp,
ep->name, (void *)nh, nua_event_name(event), phrase,
nua_substate_name(t ? t->t_value : 0));
}
else if ((int)event >= nua_i_bye ||
event == nua_i_invite || event == nua_i_cancel ||
event == nua_i_ack) {
fprintf(stderr, "%s %s.nua(%p): event %s %03d %s\n", timestamp,
ep->name, (void *)nh, nua_event_name(event), status, phrase);
}
else if ((int)event >= 0) {
fprintf(stderr, "%s %s.nua(%p): event %s %s\n", timestamp,
ep->name, (void *)nh, nua_event_name(event), phrase);
}
else if (status > 0) {
fprintf(stderr, "%s %s.nua(%p): call %s() with status %u %s\n", timestamp,
ep->name, (void *)nh, operation, status, phrase);
}
else {
t = tl_find(tags, siptag_subject_str);
if (t && t->t_value) {
char const *subject = (char const *)t->t_value;
fprintf(stderr, "%s %s.nua(%p): call %s() \"%s\"\n", timestamp,
ep->name, (void *)nh, operation, subject);
}
else
fprintf(stderr, "%s %s.nua(%p): call %s()\n", timestamp,
ep->name, (void *)nh, operation);
}
if (tags &&
((tstflags & tst_verbatim) || ctx->print_tags || ep->print_tags))
tl_print(stderr, "", tags);
}
void ep_callback(nua_event_t event,
int status, char const *phrase,
nua_t *nua, struct context *ctx,
struct endpoint *ep,
nua_handle_t *nh, struct call *call,
sip_t const *sip,
tagi_t tags[])
{
if (ep->printer)
ep->printer(event, "", status, phrase, nua, ctx, ep, nh, call, sip, tags);
if (call == NULL && nh) {
for (call = ep->call; call; call = call->next) {
if (!call->nh)
break;
if (nh == call->nh)
break;
}
if (call && call->nh == NULL) {
call->nh = nh;
nua_handle_bind(nh, call);
}
}
if ((ep->next_condition == NULL ||
ep->next_condition(event, status, phrase,
nua, ctx, ep, nh, call, sip, tags))
&&
(ep->next_event == -1 || ep->next_event == event))
ep->running = 0;
ep->last_event = event;
if (call == NULL && nh)
nua_handle_destroy(nh);
}
void a_callback(nua_event_t event,
int status, char const *phrase,
nua_t *nua, struct context *ctx,
nua_handle_t *nh, struct call *call,
sip_t const *sip,
tagi_t tags[])
{
ep_callback(event, status, phrase, nua, ctx, &ctx->a, nh, call, sip, tags);
}
void b_callback(nua_event_t event,
int status, char const *phrase,
nua_t *nua, struct context *ctx,
nua_handle_t *nh, struct call *call,
sip_t const *sip,
tagi_t tags[])
{
ep_callback(event, status, phrase, nua, ctx, &ctx->b, nh, call, sip, tags);
}
void c_callback(nua_event_t event,
int status, char const *phrase,
nua_t *nua, struct context *ctx,
nua_handle_t *nh, struct call *call,
sip_t const *sip,
tagi_t tags[])
{
ep_callback(event, status, phrase, nua, ctx, &ctx->c, nh, call, sip, tags);
}
void run_abc_until(struct context *ctx,
nua_event_t a_event, condition_function *a_condition,
nua_event_t b_event, condition_function *b_condition,
nua_event_t c_event, condition_function *c_condition)
{
struct endpoint *a = &ctx->a, *b = &ctx->b, *c = &ctx->c;
a->next_event = a_event;
a->next_condition = a_condition;
a->last_event = -1;
a->running = a_condition != NULL && a_condition != save_events;
a->running |= a_event != -1;
memset(&a->flags, 0, sizeof a->flags);
b->next_event = b_event;
b->next_condition = b_condition;
b->last_event = -1;
b->running = b_condition != NULL && b_condition != save_events;
b->running |= b_event != -1;
memset(&b->flags, 0, sizeof b->flags);
c->next_event = c_event;
c->next_condition = c_condition;
c->last_event = -1;
c->running = c_condition != NULL && c_condition != save_events;
c->running |= c_event != -1;
memset(&c->flags, 0, sizeof c->flags);
for (; a->running || b->running || c->running;) {
su_root_step(ctx->root, 100);
}
}
void run_ab_until(struct context *ctx,
nua_event_t a_event, condition_function *a_condition,
nua_event_t b_event, condition_function *b_condition)
{
run_abc_until(ctx, a_event, a_condition, b_event, b_condition, -1, NULL);
}
void run_bc_until(struct context *ctx,
nua_event_t b_event, condition_function *b_condition,
nua_event_t c_event, condition_function *c_condition)
{
run_abc_until(ctx, -1, NULL, b_event, b_condition, c_event, c_condition);
}
int run_a_until(struct context *ctx,
nua_event_t a_event,
condition_function *a_condition)
{
run_abc_until(ctx, a_event, a_condition, -1, NULL, -1, NULL);
return ctx->a.last_event;
}
int run_b_until(struct context *ctx,
nua_event_t b_event,
condition_function *b_condition)
{
run_abc_until(ctx, -1, NULL, b_event, b_condition, -1, NULL);
return ctx->b.last_event;
}
int run_c_until(struct context *ctx,
nua_event_t event,
condition_function *condition)
{
run_abc_until(ctx, -1, NULL, -1, NULL, event, condition);
return ctx->c.last_event;
}
#define OPERATION(X, x) \
int X(struct endpoint *ep, \
struct call *call, nua_handle_t *nh, \
tag_type_t tag, tag_value_t value, \
...) \
{ \
ta_list ta; \
ta_start(ta, tag, value); \
\
if (ep->printer) \
ep->printer(-1, "nua_" #x, 0, "", ep->nua, ep->ctx, ep, \
nh, call, NULL, ta_args(ta)); \
\
nua_##x(nh, ta_tags(ta)); \
\
ta_end(ta); \
return 0; \
} extern int dummy
OPERATION(INVITE, invite);
OPERATION(ACK, ack);
OPERATION(BYE, bye);
OPERATION(CANCEL, cancel);
OPERATION(AUTHENTICATE, authenticate);
OPERATION(UPDATE, update);
OPERATION(INFO, info);
OPERATION(PRACK, prack);
OPERATION(REFER, refer);
OPERATION(MESSAGE, message);
OPERATION(METHOD, method);
OPERATION(OPTIONS, options);
OPERATION(PUBLISH, publish);
OPERATION(UNPUBLISH, unpublish);
OPERATION(REGISTER, register);
OPERATION(UNREGISTER, unregister);
OPERATION(SUBSCRIBE, subscribe);
OPERATION(UNSUBSCRIBE, unsubscribe);
OPERATION(NOTIFY, notify);
OPERATION(NOTIFIER, notifier);
OPERATION(TERMINATE, terminate);
OPERATION(AUTHORIZE, authorize);
/* Respond via endpoint and handle */
int RESPOND(struct endpoint *ep,
struct call *call,
nua_handle_t *nh,
int status, char const *phrase,
tag_type_t tag, tag_value_t value,
...)
{
ta_list ta;
ta_start(ta, tag, value);
if (ep->printer)
ep->printer(-1, "nua_respond", status, phrase, ep->nua, ep->ctx, ep,
nh, call, NULL, ta_args(ta));
nua_respond(nh, status, phrase, ta_tags(ta));
ta_end(ta);
return 0;
}
/* Destroy a handle */
int DESTROY(struct endpoint *ep,
struct call *call,
nua_handle_t *nh)
{
if (ep->printer)
ep->printer(-1, "nua_handle_destroy", 0, "", ep->nua, ep->ctx, ep,
nh, call, NULL, NULL);
nua_handle_destroy(nh);
if (call->nh == nh)
call->nh = NULL;
return 0;
}
/* Reject all but currently used handles */
struct call *check_handle(struct endpoint *ep,
struct call *call,
nua_handle_t *nh,
int status, char const *phrase)
{
if (call)
return call;
if (status)
RESPOND(ep, call, nh, status, phrase, TAG_END());
nua_handle_destroy(nh);
return NULL;
}
/* Save nua event in call-specific list */
int save_event_in_list(struct context *ctx,
nua_event_t nevent,
struct endpoint *ep,
struct call *call)
{
struct eventlist *list;
struct event *e;
int action = ep->is_special(nevent);
if (action == event_is_extra)
return 0;
else if (action == event_is_special || call == NULL)
list = ep->specials;
else if (call->events)
list = call->events;
else
list = ep->events;
e = su_zalloc(ctx->home, sizeof *e);
if (!e) { perror("su_zalloc"), abort(); }
if (!nua_save_event(ep->nua, e->saved_event)) {
su_free(ctx->home, e);
return -1;
}
*(e->prev = list->tail) = e; list->tail = &e->next;
e->call = call;
e->data = nua_event_data(e->saved_event);
return action;
}
/* Free nua events from endpoint list */
void free_events_in_list(struct context *ctx,
struct eventlist *list)
{
struct event *e;
while ((e = list->head)) {
if ((*e->prev = e->next))
e->next->prev = e->prev;
nua_destroy_event(e->saved_event);
su_free(ctx->home, e);
}
list->tail = &list->head;
}
void free_event_in_list(struct context *ctx,
struct eventlist *list,
struct event *e)
{
if (e) {
if ((*e->prev = e->next))
e->next->prev = e->prev;
nua_destroy_event(e->saved_event);
su_free(ctx->home, e);
if (list->head == NULL)
list->tail = &list->head;
}
}
struct event *event_by_type(struct event *e, nua_event_t etype)
{
for (; e; e = e->next) {
if (e->data->e_event == etype)
break;
}
return e;
}
size_t count_events(struct event const *e)
{
size_t n;
for (n = 0; e; e = e->next)
n++;
return n;
}
int is_special(nua_event_t e)
{
if (e == nua_i_active || e == nua_i_terminated)
return event_is_extra;
if (e == nua_i_outbound)
return event_is_special;
return event_is_normal;
}
void
endpoint_init(struct context *ctx, struct endpoint *e, char id)
{
e->name[0] = id;
e->ctx = ctx;
e->is_special = is_special;
call_init(e->call);
call_init(e->reg);
eventlist_init(e->events);
eventlist_init(e->specials);
}
void nolog(void *stream, char const *fmt, va_list ap) {}