2008-05-14 19:10:54 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Sofia-SIP package
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Nokia Corporation.
|
|
|
|
*
|
|
|
|
* Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
|
|
*
|
|
|
|
* 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 s2tester.c
|
|
|
|
* @brief 2nd test Suite for Sofia SIP User Agent Engine
|
|
|
|
*
|
|
|
|
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
|
|
|
|
*
|
|
|
|
* @date Created: Wed Apr 30 12:48:27 EEST 2008 ppessi
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
|
|
|
#define TP_MAGIC_T struct tp_magic_s
|
|
|
|
|
|
|
|
#include "test_s2.h"
|
|
|
|
|
|
|
|
#include <sofia-sip/sip_header.h>
|
|
|
|
#include <sofia-sip/sip_status.h>
|
|
|
|
#include <sofia-sip/msg_addr.h>
|
|
|
|
#include <sofia-sip/su_log.h>
|
|
|
|
#include <sofia-sip/su_tagarg.h>
|
|
|
|
#include <sofia-sip/su_alloc.h>
|
2009-02-11 16:49:25 +00:00
|
|
|
#include <sofia-sip/su_string.h>
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
/* -- Module types ------------------------------------------------------ */
|
|
|
|
|
|
|
|
struct tp_magic_s
|
|
|
|
{
|
|
|
|
sip_via_t *via;
|
|
|
|
sip_contact_t *contact;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* -- Module prototypes ------------------------------------------------- */
|
|
|
|
|
|
|
|
static msg_t *s2_msg(int flags);
|
2008-12-16 18:05:22 +00:00
|
|
|
static int s2_complete_response(msg_t *response,
|
|
|
|
int status, char const *phrase,
|
2008-05-14 19:10:54 +00:00
|
|
|
msg_t *request);
|
|
|
|
static char *s2_generate_tag(su_home_t *home);
|
|
|
|
|
|
|
|
/* -- Module globals ---------------------------------------------------- */
|
|
|
|
|
|
|
|
struct tester *s2;
|
|
|
|
|
|
|
|
static char const *_s2case = "0.0";
|
|
|
|
static unsigned s2_tag_generator = 0;
|
|
|
|
|
|
|
|
/* -- Globals ----------------------------------------------------------- */
|
|
|
|
|
|
|
|
unsigned s2_default_registration_duration = 3600;
|
|
|
|
|
|
|
|
char const s2_auth_digest_str[] =
|
|
|
|
"Digest realm=\"s2test\", "
|
|
|
|
"nonce=\"dcd98b7102dd2f0e8b11d0f600bfb0c093\", "
|
|
|
|
"qop=\"auth\", "
|
|
|
|
"algorithm=\"MD5\"";
|
|
|
|
|
|
|
|
char const s2_auth_credentials[] = "Digest:\"s2test\":abc:abc";
|
|
|
|
|
|
|
|
char const s2_auth2_digest_str[] =
|
|
|
|
"Digest realm=\"s2test2\", "
|
|
|
|
"nonce=\"fb0c093dcd98b7102dd2f0e8b11d0f600b\", "
|
|
|
|
"qop=\"auth\", "
|
|
|
|
"algorithm=\"MD5\"";
|
|
|
|
|
|
|
|
char const s2_auth2_credentials[] = "Digest:\"s2test2\":abc:abc";
|
|
|
|
|
|
|
|
char const s2_auth3_digest_str[] =
|
|
|
|
"Digest realm=\"s2test3\", "
|
|
|
|
"nonce=\"e8b11d0f600bfb0c093dcd98b7102dd2f0\", "
|
|
|
|
"qop=\"auth-int\", "
|
|
|
|
"algorithm=\"MD5-sess\"";
|
|
|
|
|
|
|
|
char const s2_auth3_credentials[] = "Digest:\"s2test3\":abc:abc";
|
|
|
|
|
2008-08-12 17:03:17 +00:00
|
|
|
int s2_nua_thread = 0;
|
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
/* -- Delay scenarios --------------------------------------------------- */
|
|
|
|
|
|
|
|
static unsigned long time_offset;
|
|
|
|
|
|
|
|
extern void (*_su_time)(su_time_t *tv);
|
|
|
|
|
|
|
|
static void _su_time_fast_forwarder(su_time_t *tv)
|
|
|
|
{
|
|
|
|
tv->tv_sec += time_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void s2_fast_forward(unsigned long seconds)
|
|
|
|
{
|
|
|
|
if (_su_time == NULL)
|
|
|
|
_su_time = _su_time_fast_forwarder;
|
|
|
|
|
|
|
|
time_offset += seconds;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- NUA events -------------------------------------------------------- */
|
|
|
|
|
|
|
|
struct event *s2_remove_event(struct event *e)
|
|
|
|
{
|
|
|
|
if ((*e->prev = e->next))
|
|
|
|
e->next->prev = e->prev;
|
|
|
|
|
|
|
|
e->prev = NULL, e->next = NULL;
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
return e;
|
2008-05-14 19:10:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void s2_free_event(struct event *e)
|
|
|
|
{
|
|
|
|
if (e) {
|
|
|
|
if (e->prev) {
|
|
|
|
if ((*e->prev = e->next))
|
|
|
|
e->next->prev = e->prev;
|
|
|
|
}
|
|
|
|
nua_destroy_event(e->event);
|
|
|
|
nua_handle_unref(e->nh);
|
|
|
|
free(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void s2_flush_events(void)
|
|
|
|
{
|
|
|
|
while (s2->events) {
|
|
|
|
s2_free_event(s2->events);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct event *s2_next_event(void)
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
if (s2->events)
|
|
|
|
return s2_remove_event(s2->events);
|
|
|
|
|
|
|
|
su_root_step(s2->root, 100);
|
|
|
|
}
|
2008-12-16 18:05:22 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
struct event *s2_wait_for_event(nua_event_t event, int status)
|
|
|
|
{
|
|
|
|
struct event *e;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
for (e = s2->events; e; e = e->next) {
|
|
|
|
if (event != nua_i_none && event != e->data->e_event)
|
|
|
|
continue;
|
|
|
|
if (status && e->data->e_status != status)
|
|
|
|
continue;
|
|
|
|
return s2_remove_event(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
su_root_step(s2->root, 100);
|
|
|
|
}
|
2008-12-16 18:05:22 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
int s2_check_event(nua_event_t event, int status)
|
|
|
|
{
|
|
|
|
struct event *e = s2_wait_for_event(event, status);
|
|
|
|
s2_free_event(e);
|
|
|
|
return e != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int s2_check_callstate(enum nua_callstate state)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
tagi_t const *tagi;
|
|
|
|
struct event *e;
|
|
|
|
|
|
|
|
e = s2_wait_for_event(nua_i_state, 0);
|
|
|
|
if (e) {
|
|
|
|
tagi = tl_find(e->data->e_tags, nutag_callstate);
|
|
|
|
if (tagi) {
|
|
|
|
retval = (tag_value_t)state == tagi->t_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s2_free_event(e);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
static void
|
2008-05-14 19:10:54 +00:00
|
|
|
s2_nua_callback(nua_event_t event,
|
|
|
|
int status, char const *phrase,
|
|
|
|
nua_t *nua, nua_magic_t *_t,
|
|
|
|
nua_handle_t *nh, nua_hmagic_t *hmagic,
|
|
|
|
sip_t const *sip,
|
|
|
|
tagi_t tags[])
|
|
|
|
{
|
|
|
|
struct event *e, **prev;
|
|
|
|
|
|
|
|
if (event == nua_i_active || event == nua_i_terminated)
|
|
|
|
return;
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
e = calloc(1, sizeof *e);
|
|
|
|
nua_save_event(nua, e->event);
|
|
|
|
e->nh = nua_handle_ref(nh);
|
|
|
|
e->data = nua_event_data(e->event);
|
|
|
|
|
|
|
|
for (prev = &s2->events; *prev; prev = &(*prev)->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
*prev = e, e->prev = prev;
|
|
|
|
}
|
|
|
|
|
2008-09-10 16:20:25 +00:00
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
/* SIP messages sent by nua */
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
struct message *
|
|
|
|
s2_remove_message(struct message *m)
|
|
|
|
{
|
|
|
|
if ((*m->prev = m->next))
|
|
|
|
m->next->prev = m->prev;
|
|
|
|
|
|
|
|
m->prev = NULL, m->next = NULL;
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
return m;
|
2008-05-14 19:10:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
s2_free_message(struct message *m)
|
|
|
|
{
|
|
|
|
if (m) {
|
|
|
|
if (m->prev) {
|
|
|
|
if ((*m->prev = m->next))
|
|
|
|
m->next->prev = m->prev;
|
|
|
|
}
|
|
|
|
msg_destroy(m->msg);
|
|
|
|
tport_unref(m->tport);
|
|
|
|
free(m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void s2_flush_messages(void)
|
|
|
|
{
|
|
|
|
while (s2->received) {
|
|
|
|
s2_free_message(s2->received);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct message *
|
|
|
|
s2_next_response(void)
|
|
|
|
{
|
|
|
|
struct message *m;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
for (m = s2->received; m; m = m->next) {
|
|
|
|
if (m->sip->sip_status)
|
|
|
|
return s2_remove_message(m);
|
|
|
|
}
|
|
|
|
su_root_step(s2->root, 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct message *
|
|
|
|
s2_wait_for_response(int status, sip_method_t method, char const *name)
|
|
|
|
{
|
|
|
|
struct message *m;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
for (m = s2->received; m; m = m->next) {
|
|
|
|
if (!m->sip->sip_status)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (status != 0 && m->sip->sip_status->st_status != status)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (method == sip_method_unknown && name == NULL)
|
|
|
|
break;
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
if (m->sip->sip_cseq == NULL)
|
|
|
|
continue;
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
if (m->sip->sip_cseq->cs_method != method)
|
|
|
|
continue;
|
|
|
|
if (name == NULL)
|
|
|
|
break;
|
|
|
|
if (strcmp(m->sip->sip_cseq->cs_method_name, name) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m)
|
|
|
|
return s2_remove_message(m);
|
|
|
|
|
|
|
|
su_root_step(s2->root, 100);
|
|
|
|
}
|
2008-12-16 18:05:22 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
s2_check_response(int status, sip_method_t method, char const *name)
|
|
|
|
{
|
|
|
|
struct message *m = s2_wait_for_response(status, method, name);
|
|
|
|
s2_free_message(m);
|
|
|
|
return m != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct message *
|
|
|
|
s2_next_request(void)
|
|
|
|
{
|
|
|
|
struct message *m;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
for (m = s2->received; m; m = m->next) {
|
|
|
|
if (m->sip->sip_request)
|
|
|
|
return s2_remove_message(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
su_root_step(s2->root, 100);
|
|
|
|
}
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
return NULL;
|
2008-12-16 18:05:22 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
struct message *
|
|
|
|
s2_wait_for_request(sip_method_t method, char const *name)
|
|
|
|
{
|
|
|
|
struct message *m;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
for (m = s2->received; m; m = m->next) {
|
|
|
|
if (m->sip->sip_request) {
|
|
|
|
if (method == sip_method_unknown && name == NULL)
|
|
|
|
return s2_remove_message(m);
|
|
|
|
|
|
|
|
if (m->sip->sip_request->rq_method == method &&
|
|
|
|
strcmp(m->sip->sip_request->rq_method_name, name) == 0)
|
|
|
|
return s2_remove_message(m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
su_root_step(s2->root, 100);
|
|
|
|
}
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
return NULL;
|
2008-12-16 18:05:22 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
s2_check_request(sip_method_t method, char const *name)
|
|
|
|
{
|
|
|
|
struct message *m = s2_wait_for_request(method, name);
|
|
|
|
s2_free_message(m);
|
|
|
|
return m != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct message *
|
|
|
|
s2_respond_to(struct message *m, struct dialog *d,
|
|
|
|
int status, char const *phrase,
|
|
|
|
tag_type_t tag, tag_value_t value, ...)
|
|
|
|
{
|
|
|
|
ta_list ta;
|
|
|
|
msg_t *reply;
|
|
|
|
sip_t *sip;
|
|
|
|
su_home_t *home;
|
|
|
|
tp_name_t tpn[1];
|
|
|
|
char *rport;
|
|
|
|
|
|
|
|
assert(m); assert(m->msg); assert(m->tport);
|
|
|
|
assert(100 <= status && status < 700);
|
|
|
|
|
|
|
|
ta_start(ta, tag, value);
|
|
|
|
|
|
|
|
reply = s2_msg(0); sip = sip_object(reply); home = msg_home(reply);
|
|
|
|
|
|
|
|
assert(reply && home && sip);
|
|
|
|
|
|
|
|
if (sip_add_tl(reply, sip, ta_tags(ta)) < 0) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
s2_complete_response(reply, status, phrase, m->msg);
|
|
|
|
|
|
|
|
if (sip->sip_status && sip->sip_status->st_status > 100 &&
|
|
|
|
sip->sip_to && !sip->sip_to->a_tag &&
|
|
|
|
sip->sip_cseq && sip->sip_cseq->cs_method != sip_method_cancel) {
|
|
|
|
char const *ltag = NULL;
|
|
|
|
|
|
|
|
if (d && d->local)
|
|
|
|
ltag = d->local->a_tag;
|
|
|
|
|
|
|
|
if (ltag == NULL)
|
|
|
|
ltag = s2_generate_tag(home);
|
|
|
|
|
|
|
|
if (sip_to_tag(msg_home(reply), sip->sip_to, ltag) < 0) {
|
|
|
|
assert(!"add To tag");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d && !d->local) {
|
|
|
|
d->local = sip_from_dup(d->home, sip->sip_to);
|
|
|
|
d->remote = sip_to_dup(d->home, sip->sip_from);
|
|
|
|
d->call_id = sip_call_id_dup(d->home, sip->sip_call_id);
|
|
|
|
d->rseq = sip->sip_cseq->cs_seq;
|
|
|
|
/* d->route = sip_route_dup(d->home, sip->sip_record_route); */
|
|
|
|
d->target = sip_contact_dup(d->home, m->sip->sip_contact);
|
|
|
|
d->contact = sip_contact_dup(d->home, sip->sip_contact);
|
|
|
|
}
|
|
|
|
|
|
|
|
*tpn = *tport_name(m->tport);
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
rport = su_sprintf(home, "rport=%u",
|
2008-05-14 19:10:54 +00:00
|
|
|
ntohs(((su_sockaddr_t *)
|
|
|
|
msg_addrinfo(m->msg)->ai_addr)->su_port));
|
|
|
|
|
|
|
|
if (s2->server_uses_rport &&
|
|
|
|
sip->sip_via->v_rport &&
|
|
|
|
sip->sip_via->v_rport[0] == '\0') {
|
|
|
|
msg_header_add_param(home, sip->sip_via->v_common, rport);
|
2008-12-16 18:05:22 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
tpn->tpn_port = rport + strlen("rport=");
|
|
|
|
|
|
|
|
tport_tsend(m->tport, reply, tpn, TPTAG_MTU(INT_MAX), ta_tags(ta));
|
|
|
|
msg_destroy(reply);
|
|
|
|
|
|
|
|
ta_end(ta);
|
|
|
|
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Add headers from the request to the response message. */
|
2008-12-16 18:05:22 +00:00
|
|
|
static int
|
|
|
|
s2_complete_response(msg_t *response,
|
|
|
|
int status, char const *phrase,
|
2008-05-14 19:10:54 +00:00
|
|
|
msg_t *request)
|
|
|
|
{
|
|
|
|
su_home_t *home = msg_home(response);
|
|
|
|
sip_t *response_sip = sip_object(response);
|
|
|
|
sip_t const *request_sip = sip_object(request);
|
|
|
|
|
|
|
|
int incomplete = 0;
|
|
|
|
|
|
|
|
if (!response_sip || !request_sip || !request_sip->sip_request)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!response_sip->sip_status)
|
|
|
|
response_sip->sip_status = sip_status_create(home, status, phrase, NULL);
|
|
|
|
if (!response_sip->sip_via)
|
|
|
|
response_sip->sip_via = sip_via_dup(home, request_sip->sip_via);
|
|
|
|
if (!response_sip->sip_from)
|
|
|
|
response_sip->sip_from = sip_from_dup(home, request_sip->sip_from);
|
|
|
|
if (!response_sip->sip_to)
|
|
|
|
response_sip->sip_to = sip_to_dup(home, request_sip->sip_to);
|
|
|
|
if (!response_sip->sip_call_id)
|
2008-12-16 18:05:22 +00:00
|
|
|
response_sip->sip_call_id =
|
2008-05-14 19:10:54 +00:00
|
|
|
sip_call_id_dup(home, request_sip->sip_call_id);
|
|
|
|
if (!response_sip->sip_cseq)
|
|
|
|
response_sip->sip_cseq = sip_cseq_dup(home, request_sip->sip_cseq);
|
|
|
|
|
|
|
|
if (!response_sip->sip_record_route && request_sip->sip_record_route)
|
|
|
|
sip_add_dup(response, response_sip, (void*)request_sip->sip_record_route);
|
|
|
|
|
|
|
|
incomplete = sip_complete_message(response) < 0;
|
|
|
|
|
|
|
|
msg_serialize(response, (msg_pub_t *)response_sip);
|
|
|
|
|
|
|
|
if (incomplete ||
|
|
|
|
!response_sip->sip_status ||
|
|
|
|
!response_sip->sip_via ||
|
|
|
|
!response_sip->sip_from ||
|
|
|
|
!response_sip->sip_to ||
|
|
|
|
!response_sip->sip_call_id ||
|
|
|
|
!response_sip->sip_cseq ||
|
|
|
|
!response_sip->sip_content_length ||
|
|
|
|
!response_sip->sip_separator ||
|
|
|
|
(request_sip->sip_record_route && !response_sip->sip_record_route))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
/* Send request (updating dialog).
|
2008-05-14 19:10:54 +00:00
|
|
|
*
|
|
|
|
* Return zero upon success, nonzero upon failure.
|
|
|
|
*/
|
2008-12-16 18:05:22 +00:00
|
|
|
int
|
2008-05-14 19:10:54 +00:00
|
|
|
s2_request_to(struct dialog *d,
|
|
|
|
sip_method_t method, char const *name,
|
|
|
|
tport_t *tport,
|
|
|
|
tag_type_t tag, tag_value_t value, ...)
|
|
|
|
{
|
|
|
|
ta_list ta;
|
|
|
|
tagi_t const *tags;
|
|
|
|
|
|
|
|
msg_t *msg = s2_msg(0);
|
|
|
|
sip_t *sip = sip_object(msg);
|
2008-09-10 16:21:42 +00:00
|
|
|
url_t const *target = NULL;
|
2008-05-14 19:10:54 +00:00
|
|
|
sip_cseq_t cseq[1];
|
|
|
|
sip_via_t via[1]; char const *v_params[8];
|
|
|
|
sip_content_length_t l[1];
|
|
|
|
tp_name_t tpn[1];
|
|
|
|
tp_magic_t *magic;
|
2008-09-10 16:20:25 +00:00
|
|
|
int user_via = 0;
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
ta_start(ta, tag, value);
|
|
|
|
tags = ta_args(ta);
|
|
|
|
|
|
|
|
if (sip_add_tagis(msg, sip, &tags) < 0)
|
|
|
|
goto error;
|
|
|
|
|
2008-09-10 16:21:42 +00:00
|
|
|
if (sip->sip_request)
|
|
|
|
target = sip->sip_request->rq_url;
|
|
|
|
else if (d->target)
|
|
|
|
target = d->target->m_url;
|
|
|
|
else if (s2->registration->contact)
|
|
|
|
target = s2->registration->contact->m_url;
|
|
|
|
else
|
|
|
|
target = NULL;
|
2008-05-14 19:10:54 +00:00
|
|
|
|
2008-09-10 16:21:42 +00:00
|
|
|
if (target == NULL)
|
|
|
|
goto error;
|
2008-05-14 19:10:54 +00:00
|
|
|
|
2008-09-10 16:21:42 +00:00
|
|
|
if (!sip->sip_request) {
|
|
|
|
sip_request_t *rq;
|
|
|
|
rq = sip_request_create(msg_home(msg), method, name,
|
|
|
|
(url_string_t *)target, NULL);
|
2008-05-14 19:10:54 +00:00
|
|
|
sip_header_insert(msg, sip, (sip_header_t *)rq);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!d->local && sip->sip_from)
|
|
|
|
d->local = sip_from_dup(d->home, sip->sip_from);
|
2008-12-16 18:05:22 +00:00
|
|
|
if (!d->contact && sip->sip_contact)
|
2008-05-14 19:10:54 +00:00
|
|
|
d->contact = sip_contact_dup(d->home, sip->sip_contact);
|
|
|
|
if (!d->remote && sip->sip_to)
|
|
|
|
d->remote = sip_to_dup(d->home, sip->sip_to);
|
|
|
|
if (!d->target && sip->sip_request)
|
|
|
|
d->target = sip_contact_create(d->home,
|
|
|
|
(url_string_t *)sip->sip_request->rq_url,
|
|
|
|
NULL);
|
|
|
|
if (!d->call_id && sip->sip_call_id)
|
|
|
|
d->call_id = sip_call_id_dup(d->home, sip->sip_call_id);
|
|
|
|
if (!d->lseq && sip->sip_cseq)
|
|
|
|
d->lseq = sip->sip_cseq->cs_seq;
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
if (!d->local)
|
|
|
|
d->local = sip_from_dup(d->home, s2->local);
|
|
|
|
if (!d->contact)
|
|
|
|
d->contact = sip_contact_dup(d->home, s2->contact);
|
|
|
|
if (!d->remote)
|
|
|
|
d->remote = sip_to_dup(d->home, s2->registration->aor);
|
|
|
|
if (!d->call_id)
|
|
|
|
d->call_id = sip_call_id_create(d->home, NULL);
|
|
|
|
assert(d->local && d->contact);
|
|
|
|
assert(d->remote && d->target);
|
|
|
|
assert(d->call_id);
|
|
|
|
|
|
|
|
if (tport == NULL)
|
|
|
|
tport = d->tport;
|
|
|
|
|
|
|
|
if (tport == NULL)
|
|
|
|
tport = s2->registration->tport;
|
|
|
|
|
|
|
|
if (tport == NULL && d->target->m_url->url_type == url_sips)
|
|
|
|
tport = s2->tls.tport;
|
|
|
|
|
|
|
|
if (tport == NULL)
|
|
|
|
tport = s2->udp.tport;
|
|
|
|
else if (tport == NULL)
|
|
|
|
tport = s2->tcp.tport;
|
|
|
|
else if (tport == NULL)
|
|
|
|
tport = s2->tls.tport;
|
|
|
|
|
|
|
|
assert(tport);
|
|
|
|
|
|
|
|
*tpn = *tport_name(tport);
|
2008-09-10 16:21:42 +00:00
|
|
|
|
|
|
|
if (tport_is_primary(tport)) {
|
|
|
|
tpn->tpn_host = target->url_host;
|
|
|
|
tpn->tpn_port = url_port(target);
|
2008-05-19 16:55:15 +00:00
|
|
|
if (!tpn->tpn_port || !tpn->tpn_port[0])
|
2008-09-10 16:21:42 +00:00
|
|
|
tpn->tpn_port = url_port_default(target->url_type);
|
2008-05-19 16:55:15 +00:00
|
|
|
}
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
magic = tport_magic(tport);
|
|
|
|
assert(magic != NULL);
|
|
|
|
|
|
|
|
sip_cseq_init(cseq);
|
|
|
|
cseq->cs_method = method;
|
|
|
|
cseq->cs_method_name = name;
|
2008-09-10 16:20:25 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
if (d->invite && (method == sip_method_ack || method == sip_method_cancel)) {
|
|
|
|
cseq->cs_seq = sip_object(d->invite)->sip_cseq->cs_seq;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cseq->cs_seq = ++d->lseq;
|
|
|
|
}
|
|
|
|
|
2008-09-10 16:20:25 +00:00
|
|
|
if (sip->sip_via) {
|
|
|
|
user_via = 1;
|
|
|
|
}
|
|
|
|
else if (d->invite && method == sip_method_cancel) {
|
2008-05-14 19:10:54 +00:00
|
|
|
*via = *sip_object(d->invite)->sip_via;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*via = *magic->via;
|
|
|
|
via->v_params = v_params;
|
|
|
|
v_params[0] = su_sprintf(msg_home(msg), "branch=z9hG4bK%lx", ++s2->tid);
|
|
|
|
v_params[1] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sip_content_length_init(l);
|
|
|
|
if (sip->sip_payload)
|
|
|
|
l->l_length = sip->sip_payload->pl_len;
|
|
|
|
|
2008-09-10 16:23:59 +00:00
|
|
|
if (d->local->a_tag == NULL) {
|
|
|
|
char const *ltag = s2_generate_tag(d->home);
|
|
|
|
|
|
|
|
if (sip_from_tag(d->home, d->local, ltag) < 0) {
|
|
|
|
assert(!"add To tag");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sip->sip_from && sip->sip_from->a_tag == NULL) {
|
|
|
|
if (sip_from_tag(msg_home(msg), sip->sip_from, ltag) < 0) {
|
|
|
|
assert(!"add To tag");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
sip_add_tl(msg, sip,
|
2008-05-14 19:10:54 +00:00
|
|
|
TAG_IF(!sip->sip_from, SIPTAG_FROM(d->local)),
|
|
|
|
TAG_IF(!sip->sip_contact, SIPTAG_CONTACT(d->contact)),
|
|
|
|
TAG_IF(!sip->sip_to, SIPTAG_TO(d->remote)),
|
|
|
|
TAG_IF(!sip->sip_call_id, SIPTAG_CALL_ID(d->call_id)),
|
|
|
|
TAG_IF(!sip->sip_cseq, SIPTAG_CSEQ(cseq)),
|
2008-09-10 16:20:25 +00:00
|
|
|
TAG_IF(!user_via, SIPTAG_VIA(via)),
|
2008-05-14 19:10:54 +00:00
|
|
|
TAG_IF(!sip->sip_content_length, SIPTAG_CONTENT_LENGTH(l)),
|
|
|
|
TAG_IF(!sip->sip_separator, SIPTAG_SEPARATOR_STR("\r\n")),
|
|
|
|
TAG_END());
|
|
|
|
|
|
|
|
msg_serialize(msg, NULL);
|
|
|
|
|
|
|
|
if (method == sip_method_invite) {
|
|
|
|
msg_destroy(d->invite);
|
|
|
|
d->invite = msg_ref_create(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
tport = tport_tsend(tport, msg, tpn, ta_tags(ta));
|
|
|
|
ta_end(ta);
|
|
|
|
|
|
|
|
if (d->tport != tport) {
|
|
|
|
tport_unref(d->tport);
|
|
|
|
d->tport = tport_ref(tport);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tport ? 0 : -1;
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
error:
|
|
|
|
ta_end(ta);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Save information from response.
|
|
|
|
*
|
|
|
|
* Send ACK for error messages to INVITE.
|
|
|
|
*/
|
|
|
|
int s2_update_dialog(struct dialog *d, struct message *m)
|
|
|
|
{
|
|
|
|
int status = 0;
|
|
|
|
|
|
|
|
if (m->sip->sip_status)
|
|
|
|
status = m->sip->sip_status->st_status;
|
|
|
|
|
|
|
|
if (100 < status && status < 300) {
|
|
|
|
d->remote = sip_to_dup(d->home, m->sip->sip_to);
|
|
|
|
if (m->sip->sip_contact)
|
|
|
|
d->contact = sip_contact_dup(d->home, m->sip->sip_contact);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (300 <= status && m->sip->sip_cseq &&
|
|
|
|
m->sip->sip_cseq->cs_method == sip_method_invite &&
|
|
|
|
d->invite) {
|
|
|
|
msg_t *ack = s2_msg(0);
|
|
|
|
sip_t *sip = sip_object(ack);
|
|
|
|
sip_t *invite = sip_object(d->invite);
|
|
|
|
sip_request_t rq[1];
|
|
|
|
sip_cseq_t cseq[1];
|
|
|
|
tp_name_t tpn[1];
|
|
|
|
|
|
|
|
*rq = *invite->sip_request;
|
|
|
|
rq->rq_method = sip_method_ack, rq->rq_method_name = "ACK";
|
|
|
|
*cseq = *invite->sip_cseq;
|
|
|
|
cseq->cs_method = sip_method_ack, cseq->cs_method_name = "ACK";
|
|
|
|
|
|
|
|
sip_add_tl(ack, sip,
|
|
|
|
SIPTAG_REQUEST(rq),
|
|
|
|
SIPTAG_VIA(invite->sip_via),
|
|
|
|
SIPTAG_FROM(invite->sip_from),
|
|
|
|
SIPTAG_TO(invite->sip_to),
|
|
|
|
SIPTAG_CALL_ID(invite->sip_call_id),
|
|
|
|
SIPTAG_CSEQ(cseq),
|
|
|
|
SIPTAG_CONTENT_LENGTH_STR("0"),
|
|
|
|
SIPTAG_SEPARATOR_STR("\r\n"),
|
|
|
|
TAG_END());
|
|
|
|
|
|
|
|
*tpn = *tport_name(d->tport);
|
|
|
|
if (!tport_is_secondary(d->tport) ||
|
|
|
|
!tport_is_clear_to_send(d->tport)) {
|
|
|
|
tpn->tpn_host = rq->rq_url->url_host;
|
|
|
|
tpn->tpn_port = rq->rq_url->url_port;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg_serialize(ack, NULL);
|
|
|
|
tport_tsend(d->tport, ack, tpn, TAG_END());
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
int
|
|
|
|
s2_save_register(struct message *rm)
|
|
|
|
{
|
|
|
|
sip_contact_t *contact, *m, **m_prev;
|
|
|
|
sip_expires_t const *ex;
|
|
|
|
sip_date_t const *date;
|
|
|
|
sip_time_t now = rm->when.tv_sec, expires;
|
|
|
|
|
|
|
|
msg_header_free_all(s2->home, (msg_header_t *)s2->registration->aor);
|
|
|
|
msg_header_free_all(s2->home, (msg_header_t *)s2->registration->contact);
|
|
|
|
tport_unref(s2->registration->tport);
|
|
|
|
|
|
|
|
s2->registration->aor = NULL;
|
|
|
|
s2->registration->contact = NULL;
|
|
|
|
s2->registration->tport = NULL;
|
|
|
|
|
|
|
|
if (rm == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
assert(rm && rm->sip && rm->sip->sip_request);
|
|
|
|
assert(rm->sip->sip_request->rq_method == sip_method_register);
|
|
|
|
|
|
|
|
ex = rm->sip->sip_expires;
|
|
|
|
date = rm->sip->sip_date;
|
|
|
|
|
|
|
|
contact = sip_contact_dup(s2->home, rm->sip->sip_contact);
|
|
|
|
|
|
|
|
for (m_prev = &contact; *m_prev;) {
|
|
|
|
m = *m_prev;
|
|
|
|
|
|
|
|
expires = sip_contact_expires(m, ex, date,
|
|
|
|
s2_default_registration_duration,
|
|
|
|
now);
|
|
|
|
if (expires) {
|
|
|
|
char *p = su_sprintf(s2->home, "expires=%lu", (unsigned long)expires);
|
|
|
|
msg_header_add_param(s2->home, m->m_common, p);
|
|
|
|
m_prev = &m->m_next;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*m_prev = m->m_next;
|
|
|
|
m->m_next = NULL;
|
|
|
|
msg_header_free(s2->home, (msg_header_t *)m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contact == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
s2->registration->aor = sip_to_dup(s2->home, rm->sip->sip_to);
|
|
|
|
s2->registration->contact = contact;
|
|
|
|
s2->registration->tport = tport_ref(rm->tport);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static char *
|
|
|
|
s2_generate_tag(su_home_t *home)
|
|
|
|
{
|
|
|
|
s2_tag_generator += 1;
|
|
|
|
|
|
|
|
return su_sprintf(home, "tag=N2-%s/%u", _s2case, s2_tag_generator);
|
|
|
|
}
|
|
|
|
|
|
|
|
void s2_case(char const *number,
|
|
|
|
char const *title,
|
2008-09-10 16:20:55 +00:00
|
|
|
char const *description)
|
2008-05-14 19:10:54 +00:00
|
|
|
{
|
|
|
|
_s2case = number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
/* tport interface */
|
2008-12-16 18:05:22 +00:00
|
|
|
static void
|
2008-05-14 19:10:54 +00:00
|
|
|
s2_stack_recv(struct tester *s2,
|
|
|
|
tport_t *tp,
|
|
|
|
msg_t *msg,
|
|
|
|
tp_magic_t *magic,
|
|
|
|
su_time_t now)
|
|
|
|
{
|
|
|
|
struct message *next = calloc(1, sizeof *next), **prev;
|
|
|
|
|
|
|
|
next->msg = msg;
|
|
|
|
next->sip = sip_object(msg);
|
|
|
|
next->when = now;
|
|
|
|
next->tport = tport_ref(tp);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if (next->sip->sip_request)
|
|
|
|
printf("nua sent: %s\n", next->sip->sip_request->rq_method_name);
|
|
|
|
else
|
|
|
|
printf("nua sent: SIP/2.0 %u %s\n",
|
|
|
|
next->sip->sip_status->st_status,
|
|
|
|
next->sip->sip_status->st_phrase);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (prev = &s2->received; *prev; prev = &(*prev)->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
next->prev = prev, *prev = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
s2_stack_error(struct tester *s2,
|
|
|
|
tport_t *tp,
|
|
|
|
int errcode,
|
|
|
|
char const *remote)
|
|
|
|
{
|
2008-12-16 18:05:22 +00:00
|
|
|
fprintf(stderr, "%s(%p): error %d (%s) from %s\n",
|
2008-05-14 19:10:54 +00:00
|
|
|
"nua_tester_error",
|
2008-12-16 18:05:22 +00:00
|
|
|
(void *)tp, errcode, su_strerror(errcode),
|
2008-05-14 19:10:54 +00:00
|
|
|
remote ? remote : "<unknown destination>");
|
|
|
|
}
|
|
|
|
|
|
|
|
static msg_t *
|
|
|
|
s2_stack_alloc(struct tester *s2, int flags,
|
|
|
|
char const data[], usize_t size,
|
2008-12-16 18:05:22 +00:00
|
|
|
tport_t const *tport,
|
2008-05-14 19:10:54 +00:00
|
|
|
tp_client_t *tpc)
|
|
|
|
{
|
|
|
|
return msg_create(s2->mclass, flags | s2->flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static msg_t *
|
|
|
|
s2_msg(int flags)
|
|
|
|
{
|
|
|
|
return msg_create(s2->mclass, flags | s2->flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
tp_stack_class_t const s2_stack[1] =
|
|
|
|
{{
|
|
|
|
/* tpac_size */ (sizeof s2_stack),
|
|
|
|
/* tpac_recv */ s2_stack_recv,
|
|
|
|
/* tpac_error */ s2_stack_error,
|
|
|
|
/* tpac_alloc */ s2_stack_alloc,
|
|
|
|
}};
|
|
|
|
|
|
|
|
/** Basic setup for test cases */
|
|
|
|
void s2_setup_base(char const *hostname)
|
|
|
|
{
|
|
|
|
assert(s2 == NULL);
|
|
|
|
|
|
|
|
su_init();
|
|
|
|
|
|
|
|
s2 = su_home_new(sizeof *s2);
|
|
|
|
|
|
|
|
assert(s2 != NULL);
|
|
|
|
|
|
|
|
s2->root = su_root_create(s2);
|
|
|
|
|
|
|
|
assert(s2->root != NULL);
|
|
|
|
|
|
|
|
s2->local = sip_from_format(s2->home, "Bob <sip:bob@%s>",
|
|
|
|
hostname ? hostname : "example.net");
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
if (hostname == NULL)
|
|
|
|
hostname = "127.0.0.1";
|
|
|
|
|
|
|
|
s2->hostname = hostname;
|
|
|
|
s2->tid = (unsigned long)time(NULL) * 510633671UL;
|
|
|
|
}
|
|
|
|
|
|
|
|
SOFIAPUBVAR su_log_t nua_log[];
|
|
|
|
SOFIAPUBVAR su_log_t soa_log[];
|
|
|
|
SOFIAPUBVAR su_log_t nea_log[];
|
|
|
|
SOFIAPUBVAR su_log_t nta_log[];
|
|
|
|
SOFIAPUBVAR su_log_t tport_log[];
|
|
|
|
SOFIAPUBVAR su_log_t su_log_default[];
|
|
|
|
|
|
|
|
void
|
|
|
|
s2_setup_logs(int level)
|
|
|
|
{
|
|
|
|
assert(s2);
|
|
|
|
|
|
|
|
su_log_soft_set_level(nua_log, level);
|
|
|
|
su_log_soft_set_level(soa_log, level);
|
|
|
|
su_log_soft_set_level(su_log_default, level);
|
|
|
|
su_log_soft_set_level(nea_log, level);
|
|
|
|
su_log_soft_set_level(nta_log, level);
|
|
|
|
su_log_soft_set_level(tport_log, level);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char const * default_protocols[] = { "udp", "tcp", NULL };
|
|
|
|
|
|
|
|
void
|
|
|
|
s2_setup_tport(char const * const *protocols,
|
|
|
|
tag_type_t tag, tag_value_t value, ...)
|
|
|
|
{
|
|
|
|
ta_list ta;
|
|
|
|
tp_name_t tpn[1];
|
|
|
|
int bound;
|
|
|
|
tport_t *tp;
|
|
|
|
|
|
|
|
assert(s2 != NULL);
|
|
|
|
|
|
|
|
ta_start(ta, tag, value);
|
|
|
|
|
|
|
|
if (s2->master == NULL) {
|
2008-09-10 16:20:55 +00:00
|
|
|
s2->master = tport_tcreate(s2, s2_stack, s2->root,
|
|
|
|
TPTAG_LOG(getenv("S2_TPORT_LOG") != NULL),
|
|
|
|
ta_tags(ta));
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
if (s2->master == NULL) {
|
|
|
|
assert(s2->master);
|
|
|
|
}
|
|
|
|
s2->mclass = sip_default_mclass();
|
|
|
|
s2->flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(tpn, 0, (sizeof tpn));
|
|
|
|
tpn->tpn_proto = "*";
|
|
|
|
tpn->tpn_host = s2->hostname;
|
|
|
|
tpn->tpn_port = "*";
|
|
|
|
|
|
|
|
if (protocols == NULL)
|
|
|
|
protocols = default_protocols;
|
2008-12-16 18:05:22 +00:00
|
|
|
|
|
|
|
bound = tport_tbind(s2->master, tpn, protocols,
|
2008-05-14 19:10:54 +00:00
|
|
|
TPTAG_SERVER(1),
|
|
|
|
ta_tags(ta));
|
|
|
|
assert(bound != -1);
|
|
|
|
|
|
|
|
tp = tport_primaries(s2->master);
|
|
|
|
|
|
|
|
if (protocols == default_protocols && s2->contact == NULL) {
|
|
|
|
*tpn = *tport_name(tp);
|
|
|
|
s2->contact = sip_contact_format(s2->home, "<sip:%s:%s>",
|
|
|
|
tpn->tpn_host,
|
|
|
|
tpn->tpn_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;tp; tp = tport_next(tp)) {
|
|
|
|
sip_via_t *v;
|
|
|
|
sip_contact_t *m;
|
|
|
|
tp_magic_t *magic;
|
|
|
|
|
|
|
|
if (tport_magic(tp))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*tpn = *tport_name(tp);
|
|
|
|
|
|
|
|
v = sip_via_format(s2->home, "SIP/2.0/%s %s:%s",
|
|
|
|
tpn->tpn_proto,
|
2008-12-16 18:05:22 +00:00
|
|
|
tpn->tpn_host,
|
2008-05-14 19:10:54 +00:00
|
|
|
tpn->tpn_port);
|
|
|
|
assert(v != NULL);
|
2009-02-11 16:49:25 +00:00
|
|
|
if (!su_casenmatch(tpn->tpn_proto, "tls", 3)) {
|
2008-05-14 19:10:54 +00:00
|
|
|
m = sip_contact_format(s2->home, "<sip:%s:%s;transport=%s>",
|
|
|
|
tpn->tpn_host,
|
|
|
|
tpn->tpn_port,
|
|
|
|
tpn->tpn_proto);
|
2009-02-11 16:49:25 +00:00
|
|
|
if (s2->udp.contact == NULL && su_casematch(tpn->tpn_proto, "udp")) {
|
2008-12-16 18:05:22 +00:00
|
|
|
s2->udp.tport = tport_ref(tp);
|
2008-05-14 19:10:54 +00:00
|
|
|
s2->udp.contact = m;
|
|
|
|
}
|
2009-02-11 16:49:25 +00:00
|
|
|
if (s2->tcp.contact == NULL && su_casematch(tpn->tpn_proto, "tcp")) {
|
2008-12-16 18:05:22 +00:00
|
|
|
s2->tcp.tport = tport_ref(tp);
|
2008-05-14 19:10:54 +00:00
|
|
|
s2->tcp.contact = m;
|
|
|
|
}
|
|
|
|
}
|
2009-02-11 16:49:25 +00:00
|
|
|
else if (!su_casematch(tpn->tpn_proto, "tls")) {
|
2008-05-14 19:10:54 +00:00
|
|
|
m = sip_contact_format(s2->home, "<sips:%s:%s;transport=%s>",
|
|
|
|
tpn->tpn_host,
|
|
|
|
tpn->tpn_port,
|
|
|
|
tpn->tpn_proto);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m = sip_contact_format(s2->home, "<sips:%s:%s>",
|
|
|
|
tpn->tpn_host,
|
|
|
|
tpn->tpn_port);
|
|
|
|
if (s2->tls.contact == NULL) {
|
2008-12-16 18:05:22 +00:00
|
|
|
s2->tls.tport = tport_ref(tp);
|
2008-05-14 19:10:54 +00:00
|
|
|
s2->tls.contact = m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(m != NULL);
|
|
|
|
|
|
|
|
magic = su_zalloc(s2->home, (sizeof *magic));
|
|
|
|
magic->via = v, magic->contact = m;
|
|
|
|
|
|
|
|
if (s2->contact == NULL)
|
|
|
|
s2->contact = m;
|
|
|
|
|
|
|
|
tport_set_magic(tp, magic);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
/* S2 DNS server */
|
|
|
|
|
|
|
|
#include <sofia-resolv/sres_record.h>
|
|
|
|
|
|
|
|
extern uint16_t _sres_default_port;
|
|
|
|
|
|
|
|
static int s2_dns_query(struct tester *s2,
|
|
|
|
su_wait_t *w,
|
|
|
|
su_wakeup_arg_t *arg);
|
|
|
|
|
|
|
|
void s2_setup_dns(void)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
su_socket_t socket;
|
|
|
|
su_wait_t *wait;
|
|
|
|
su_sockaddr_t su[1];
|
|
|
|
socklen_t sulen = sizeof su->su_sin;
|
|
|
|
|
|
|
|
assert(s2->nua == NULL); assert(s2->root != NULL);
|
|
|
|
|
|
|
|
memset(su, 0, sulen);
|
|
|
|
su->su_len = sulen;
|
|
|
|
su->su_family = AF_INET;
|
|
|
|
|
|
|
|
/* su->su_port = htons(1053); */
|
|
|
|
|
|
|
|
socket = su_socket(su->su_family, SOCK_DGRAM, 0);
|
|
|
|
|
|
|
|
n = bind(socket, &su->su_sa, sulen); assert(n == 0);
|
|
|
|
n = getsockname(socket, &su->su_sa, &sulen); assert(n == 0);
|
|
|
|
|
|
|
|
_sres_default_port = ntohs(su->su_port);
|
|
|
|
|
|
|
|
wait = s2->dns.wait;
|
|
|
|
n = su_wait_create(wait, socket, SU_WAIT_IN); assert(n == 0);
|
|
|
|
s2->dns.reg = su_root_register(s2->root, wait, s2_dns_query, NULL, 0);
|
|
|
|
assert(s2->dns.reg > 0);
|
|
|
|
s2->dns.socket = socket;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
struct s2_dns_response {
|
|
|
|
struct s2_dns_response *next;
|
|
|
|
uint16_t qlen, dlen;
|
|
|
|
struct m_header {
|
|
|
|
/* Header defined in RFC 1035 section 4.1.1 (page 26) */
|
|
|
|
uint16_t mh_id; /* Query ID */
|
|
|
|
uint16_t mh_flags; /* Flags */
|
|
|
|
uint16_t mh_qdcount; /* Question record count */
|
|
|
|
uint16_t mh_ancount; /* Answer record count */
|
|
|
|
uint16_t mh_nscount; /* Authority records count */
|
|
|
|
uint16_t mh_arcount; /* Additional records count */
|
|
|
|
} header[1];
|
|
|
|
uint8_t data[1500];
|
|
|
|
} *zonedata;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
FLAGS_QR = (1 << 15),
|
|
|
|
FLAGS_QUERY = (0 << 11),
|
|
|
|
FLAGS_IQUERY = (1 << 11),
|
|
|
|
FLAGS_STATUS = (2 << 11),
|
|
|
|
FLAGS_OPCODE = (15 << 11), /* mask */
|
|
|
|
FLAGS_AA = (1 << 10), /* */
|
|
|
|
FLAGS_TC = (1 << 9),
|
|
|
|
FLAGS_RD = (1 << 8),
|
|
|
|
FLAGS_RA = (1 << 7),
|
|
|
|
|
|
|
|
FLAGS_RCODE = (15 << 0), /* mask of return code */
|
|
|
|
|
|
|
|
FLAGS_OK = 0, /* No error condition. */
|
|
|
|
FLAGS_FORMAT_ERR = 1, /* Server could not interpret query. */
|
|
|
|
FLAGS_SERVER_ERR = 2, /* Server error. */
|
|
|
|
FLAGS_NAME_ERR = 3, /* No domain name. */
|
|
|
|
FLAGS_UNIMPL_ERR = 4, /* Not implemented. */
|
|
|
|
FLAGS_AUTH_ERR = 5, /* Refused */
|
|
|
|
};
|
|
|
|
|
|
|
|
uint32_t s2_dns_ttl = 3600;
|
|
|
|
|
|
|
|
static int
|
|
|
|
s2_dns_query(struct tester *s2,
|
|
|
|
su_wait_t *w,
|
|
|
|
su_wakeup_arg_t *arg)
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
struct m_header header[1];
|
|
|
|
uint8_t buffer[1500];
|
|
|
|
} request;
|
|
|
|
ssize_t len;
|
|
|
|
|
|
|
|
su_socket_t socket;
|
|
|
|
su_sockaddr_t su[1];
|
|
|
|
socklen_t sulen = sizeof su;
|
|
|
|
uint16_t flags;
|
|
|
|
struct s2_dns_response *r;
|
|
|
|
size_t const hlen = sizeof r->header;
|
|
|
|
|
|
|
|
(void)arg;
|
|
|
|
|
|
|
|
socket = s2->dns.socket;
|
|
|
|
|
|
|
|
len = su_recvfrom(socket, request.buffer, sizeof request.buffer, 0,
|
|
|
|
&su->su_sa, &sulen);
|
|
|
|
|
|
|
|
flags = ntohs(request.header->mh_flags);
|
|
|
|
|
|
|
|
if (len < (ssize_t)hlen)
|
|
|
|
return 0;
|
|
|
|
if ((flags & FLAGS_QR) == FLAGS_QR)
|
|
|
|
return 0;
|
|
|
|
if ((flags & FLAGS_RCODE) != FLAGS_OK)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((flags & FLAGS_OPCODE) != FLAGS_QUERY
|
|
|
|
|| ntohs(request.header->mh_qdcount) != 1) {
|
|
|
|
flags |= FLAGS_QR | FLAGS_UNIMPL_ERR;
|
|
|
|
request.header->mh_flags = htons(flags);
|
|
|
|
su_sendto(socket, request.buffer, len, 0, &su->su_sa, sulen);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (r = zonedata; r; r = r->next) {
|
|
|
|
if (memcmp(r->data, request.buffer + hlen, r->qlen) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r) {
|
|
|
|
flags |= FLAGS_QR | FLAGS_AA | FLAGS_OK;
|
|
|
|
request.header->mh_flags = htons(flags);
|
|
|
|
request.header->mh_ancount = htons(r->header->mh_ancount);
|
|
|
|
request.header->mh_nscount = htons(r->header->mh_nscount);
|
|
|
|
request.header->mh_arcount = htons(r->header->mh_arcount);
|
|
|
|
memcpy(request.buffer + hlen + r->qlen,
|
|
|
|
r->data + r->qlen,
|
|
|
|
r->dlen - r->qlen);
|
|
|
|
len = hlen + r->dlen;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
flags |= FLAGS_QR | FLAGS_AA | FLAGS_NAME_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.header->mh_flags = htons(flags);
|
|
|
|
su_sendto(socket, request.buffer, len, 0, &su->su_sa, sulen);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_uint16(struct s2_dns_response *m, uint16_t h)
|
|
|
|
{
|
|
|
|
uint8_t *p = m->data + m->dlen;
|
|
|
|
|
|
|
|
assert(m->dlen + (sizeof h) < sizeof m->data);
|
|
|
|
p[0] = h >> 8; p[1] = h;
|
|
|
|
m->dlen += (sizeof h);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_uint32(struct s2_dns_response *m, uint32_t w)
|
|
|
|
{
|
|
|
|
uint8_t *p = m->data + m->dlen;
|
|
|
|
|
|
|
|
assert(m->dlen + (sizeof w) < sizeof m->data);
|
|
|
|
p[0] = w >> 24; p[1] = w >> 16; p[2] = w >> 8; p[3] = w;
|
|
|
|
m->dlen += (sizeof w);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_domain(struct s2_dns_response *m, char const *domain)
|
|
|
|
{
|
|
|
|
char const *label;
|
|
|
|
size_t llen;
|
|
|
|
|
|
|
|
/* Copy domain into query label at a time */
|
|
|
|
for (label = domain; label && label[0]; label += llen) {
|
|
|
|
assert(!(label[0] == '.' && label[1] != '\0'));
|
|
|
|
llen = strcspn(label, ".");
|
|
|
|
assert(llen < 64);
|
|
|
|
assert(m->dlen + llen + 1 < sizeof m->data);
|
|
|
|
m->data[m->dlen++] = (uint8_t)llen;
|
|
|
|
if (llen == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
memcpy(m->data + m->dlen, label, llen);
|
|
|
|
m->dlen += (uint16_t)llen;
|
|
|
|
|
|
|
|
if (label[llen] == '\0')
|
|
|
|
break;
|
|
|
|
if (label[llen + 1])
|
|
|
|
llen++;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(m->dlen < sizeof m->data);
|
|
|
|
m->data[m->dlen++] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_string(struct s2_dns_response *m, char const *string)
|
|
|
|
{
|
|
|
|
uint8_t *p = m->data + m->dlen;
|
|
|
|
size_t len = strlen(string);
|
|
|
|
|
|
|
|
assert(len <= 255);
|
|
|
|
assert(m->dlen + len + 1 < sizeof m->data);
|
|
|
|
|
|
|
|
*p++ = (uint8_t)len;
|
|
|
|
memcpy(p, string, len);
|
|
|
|
m->dlen += len + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t put_len_at(struct s2_dns_response *m)
|
|
|
|
{
|
|
|
|
uint16_t at = m->dlen;
|
|
|
|
assert(m->dlen + sizeof(at) < sizeof m->data);
|
|
|
|
memset(m->data + m->dlen, 0, sizeof(at));
|
|
|
|
m->dlen += sizeof(at);
|
|
|
|
return at;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_len(struct s2_dns_response *m, uint16_t start)
|
|
|
|
{
|
|
|
|
uint8_t *p = m->data + start;
|
|
|
|
uint16_t len = m->dlen - (start + 2);
|
|
|
|
p[0] = len >> 8; p[1] = len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_data(struct s2_dns_response *m, void *data, uint16_t len)
|
|
|
|
{
|
|
|
|
assert(m->dlen + len < sizeof m->data);
|
|
|
|
memcpy(m->data + m->dlen, data, len);
|
|
|
|
m->dlen += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_query(struct s2_dns_response *m, char const *domain,
|
|
|
|
uint16_t qtype)
|
|
|
|
{
|
|
|
|
assert(m->header->mh_qdcount == 0);
|
|
|
|
put_domain(m, domain), put_uint16(m, qtype), put_uint16(m, sres_class_in);
|
|
|
|
m->header->mh_qdcount++;
|
|
|
|
m->qlen = m->dlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_a_record(struct s2_dns_response *m,
|
|
|
|
char const *domain,
|
|
|
|
struct in_addr addr)
|
|
|
|
{
|
|
|
|
uint16_t start;
|
|
|
|
|
|
|
|
put_domain(m, domain);
|
|
|
|
put_uint16(m, sres_type_a);
|
|
|
|
put_uint16(m, sres_class_in);
|
|
|
|
put_uint32(m, s2_dns_ttl);
|
|
|
|
start = put_len_at(m);
|
|
|
|
|
|
|
|
put_data(m, &addr, sizeof addr);
|
|
|
|
put_len(m, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_srv_record(struct s2_dns_response *m,
|
|
|
|
char const *domain,
|
|
|
|
uint16_t prio, uint16_t weight,
|
|
|
|
uint16_t port, char const *target)
|
|
|
|
{
|
|
|
|
uint16_t start;
|
|
|
|
put_domain(m, domain);
|
|
|
|
put_uint16(m, sres_type_srv);
|
|
|
|
put_uint16(m, sres_class_in);
|
|
|
|
put_uint32(m, s2_dns_ttl);
|
|
|
|
start = put_len_at(m);
|
|
|
|
|
|
|
|
put_uint16(m, prio);
|
|
|
|
put_uint16(m, weight);
|
|
|
|
put_uint16(m, port);
|
|
|
|
put_domain(m, target);
|
|
|
|
put_len(m, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_naptr_record(struct s2_dns_response *m,
|
|
|
|
char const *domain,
|
|
|
|
uint16_t order, uint16_t preference,
|
|
|
|
char const *flags,
|
|
|
|
char const *services,
|
|
|
|
char const *regexp,
|
|
|
|
char const *replace)
|
|
|
|
{
|
|
|
|
uint16_t start;
|
|
|
|
put_domain(m, domain);
|
|
|
|
put_uint16(m, sres_type_naptr);
|
|
|
|
put_uint16(m, sres_class_in);
|
|
|
|
put_uint32(m, s2_dns_ttl);
|
|
|
|
start = put_len_at(m);
|
|
|
|
|
|
|
|
put_uint16(m, order);
|
|
|
|
put_uint16(m, preference);
|
|
|
|
put_string(m, flags);
|
|
|
|
put_string(m, services);
|
|
|
|
put_string(m, regexp);
|
|
|
|
put_domain(m, replace);
|
|
|
|
put_len(m, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_srv_record_from_uri(struct s2_dns_response *m,
|
|
|
|
char const *base,
|
|
|
|
uint16_t prio, uint16_t weight,
|
|
|
|
url_t const *uri, char const *server)
|
|
|
|
{
|
|
|
|
char domain[1024] = "none";
|
|
|
|
char const *service = url_port(uri);
|
|
|
|
uint16_t port;
|
|
|
|
|
|
|
|
if (uri->url_type == url_sips) {
|
|
|
|
strcpy(domain, "_sips._tcp.");
|
|
|
|
}
|
|
|
|
else if (uri->url_type == url_sip) {
|
|
|
|
if (url_has_param(uri, "transport=udp")) {
|
|
|
|
strcpy(domain, "_sip._udp.");
|
|
|
|
}
|
|
|
|
else if (url_has_param(uri, "transport=tcp")) {
|
|
|
|
strcpy(domain, "_sip._tcp.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(strcmp(domain, "none"));
|
|
|
|
|
|
|
|
strcat(domain, base);
|
|
|
|
|
|
|
|
if (m->header->mh_qdcount == 0)
|
|
|
|
put_query(m, domain, sres_type_srv);
|
|
|
|
|
|
|
|
port = (uint16_t)strtoul(service, NULL, 10);
|
|
|
|
|
|
|
|
put_srv_record(m, domain, prio, weight, port, server);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void s2_add_to_zone(struct s2_dns_response *_r)
|
|
|
|
{
|
|
|
|
size_t size = offsetof(struct s2_dns_response, data[_r->dlen]);
|
|
|
|
struct s2_dns_response *r = malloc(size); assert(r);
|
|
|
|
|
|
|
|
memcpy(r, _r, size);
|
|
|
|
r->next = zonedata;
|
|
|
|
zonedata = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void make_server(char *server, char const *prefix, char const *domain)
|
|
|
|
{
|
|
|
|
strcpy(server, prefix);
|
|
|
|
|
|
|
|
if (strlen(server) == 0 || server[strlen(server) - 1] != '.') {
|
|
|
|
strcat(server, ".");
|
|
|
|
strcat(server, domain);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set up DNS domain */
|
|
|
|
void s2_dns_domain(char const *domain, int use_naptr,
|
|
|
|
/* char *prefix, int priority, url_t const *uri, */
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
struct s2_dns_response m[1];
|
|
|
|
|
|
|
|
char server[1024], target[1024];
|
|
|
|
|
|
|
|
va_list va0, va;
|
|
|
|
char const *prefix; int priority; url_t const *uri;
|
|
|
|
struct in_addr localhost;
|
|
|
|
|
|
|
|
assert(s2->dns.reg != 0);
|
|
|
|
|
2008-07-08 04:36:13 +00:00
|
|
|
su_inet_pton(AF_INET, "127.0.0.1", &localhost);
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
va_start(va0, use_naptr);
|
|
|
|
|
|
|
|
if (use_naptr) {
|
|
|
|
memset(m, 0, sizeof m);
|
|
|
|
put_query(m, domain, sres_type_naptr);
|
|
|
|
|
|
|
|
va_copy(va, va0);
|
|
|
|
|
|
|
|
for (;(prefix = va_arg(va, char *));) {
|
|
|
|
char *services = NULL;
|
|
|
|
|
|
|
|
priority = va_arg(va, int);
|
|
|
|
uri = va_arg(va, url_t *); assert(uri);
|
|
|
|
|
|
|
|
if (uri->url_type == url_sips) {
|
|
|
|
services = "SIPS+D2T";
|
|
|
|
strcpy(target, "_sips._tcp.");
|
|
|
|
}
|
|
|
|
else if (uri->url_type == url_sip) {
|
|
|
|
if (url_has_param(uri, "transport=udp")) {
|
|
|
|
services = "SIP+D2U";
|
|
|
|
strcpy(target, "_sip._udp.");
|
|
|
|
}
|
|
|
|
else if (url_has_param(uri, "transport=tcp")) {
|
|
|
|
services = "SIP+D2T";
|
|
|
|
strcpy(target, "_sip._tcp.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strcat(target, domain);
|
|
|
|
assert(services);
|
|
|
|
put_naptr_record(m, domain, 1, priority, "s", services, "", target);
|
|
|
|
m->header->mh_ancount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(va);
|
|
|
|
va_copy(va, va0);
|
|
|
|
|
|
|
|
for (;(prefix = va_arg(va, char *));) {
|
|
|
|
priority = va_arg(va, int);
|
|
|
|
uri = va_arg(va, url_t *); assert(uri);
|
|
|
|
|
|
|
|
make_server(server, prefix, domain);
|
|
|
|
|
|
|
|
put_srv_record_from_uri(m, domain, priority, 10, uri, server);
|
|
|
|
m->header->mh_arcount++;
|
|
|
|
|
|
|
|
put_a_record(m, server, localhost);
|
|
|
|
m->header->mh_arcount++;
|
|
|
|
}
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
s2_add_to_zone(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add SRV records */
|
|
|
|
va_copy(va, va0);
|
|
|
|
for (;(prefix = va_arg(va, char *));) {
|
|
|
|
priority = va_arg(va, int);
|
|
|
|
uri = va_arg(va, url_t *); assert(uri);
|
|
|
|
|
|
|
|
make_server(server, prefix, domain);
|
|
|
|
|
|
|
|
memset(m, 0, sizeof m);
|
|
|
|
put_srv_record_from_uri(m, domain, priority, 10, uri, server);
|
|
|
|
m->header->mh_ancount++;
|
|
|
|
|
|
|
|
strcpy(server, prefix); strcat(server, domain);
|
|
|
|
|
|
|
|
put_a_record(m, server, localhost);
|
|
|
|
m->header->mh_arcount++;
|
|
|
|
|
|
|
|
s2_add_to_zone(m);
|
|
|
|
}
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
/* Add A records */
|
|
|
|
va_copy(va, va0);
|
|
|
|
for (;(prefix = va_arg(va, char *));) {
|
|
|
|
(void)va_arg(va, int);
|
|
|
|
(void)va_arg(va, url_t *);
|
|
|
|
|
|
|
|
memset(m, 0, sizeof m);
|
|
|
|
make_server(server, prefix, domain);
|
|
|
|
|
|
|
|
put_query(m, server, sres_type_a);
|
|
|
|
put_a_record(m, server, localhost);
|
|
|
|
m->header->mh_ancount++;
|
|
|
|
|
|
|
|
s2_add_to_zone(m);
|
|
|
|
}
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
va_end(va0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
s2_teardown(void)
|
|
|
|
{
|
|
|
|
s2 = NULL;
|
|
|
|
su_deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ====================================================================== */
|
|
|
|
|
|
|
|
#include <sofia-sip/sresolv.h>
|
|
|
|
|
|
|
|
nua_t *s2_nua_setup(tag_type_t tag, tag_value_t value, ...)
|
|
|
|
{
|
|
|
|
ta_list ta;
|
|
|
|
|
|
|
|
s2_setup_base(NULL);
|
|
|
|
s2_setup_dns();
|
|
|
|
|
|
|
|
s2_setup_logs(0);
|
2008-09-10 16:20:55 +00:00
|
|
|
s2_setup_tport(NULL, TAG_END());
|
2008-05-14 19:10:54 +00:00
|
|
|
assert(s2->contact);
|
|
|
|
|
2008-08-12 17:03:17 +00:00
|
|
|
/* enable/disable multithreading */
|
|
|
|
su_root_threading(s2->root, s2_nua_thread);
|
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
s2_dns_domain("example.org", 1,
|
|
|
|
"s2", 1, s2->udp.contact->m_url,
|
|
|
|
"s2", 1, s2->tcp.contact->m_url,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
ta_start(ta, tag, value);
|
2008-12-16 18:05:22 +00:00
|
|
|
s2->nua =
|
2008-05-14 19:10:54 +00:00
|
|
|
nua_create(s2->root,
|
|
|
|
s2_nua_callback,
|
|
|
|
s2,
|
|
|
|
SIPTAG_FROM_STR("Alice <sip:alice@example.org>"),
|
|
|
|
/* NUTAG_PROXY((url_string_t *)s2->contact->m_url), */
|
|
|
|
/* Use internal DNS server */
|
|
|
|
NUTAG_PROXY("sip:example.org"),
|
|
|
|
#if HAVE_WIN32
|
|
|
|
SRESTAG_RESOLV_CONF("NUL"),
|
|
|
|
#else
|
|
|
|
SRESTAG_RESOLV_CONF("/dev/null"),
|
|
|
|
#endif
|
|
|
|
ta_tags(ta));
|
|
|
|
ta_end(ta);
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
return s2->nua;
|
|
|
|
}
|
|
|
|
|
|
|
|
void s2_nua_teardown(void)
|
|
|
|
{
|
|
|
|
nua_destroy(s2->nua);
|
|
|
|
s2->nua = NULL;
|
|
|
|
s2_teardown();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ====================================================================== */
|
|
|
|
|
|
|
|
/** Register NUA user.
|
|
|
|
*
|
|
|
|
* <pre>
|
|
|
|
* A B
|
|
|
|
* |-----REGISTER---->|
|
|
|
|
* |<-----200 OK------|
|
|
|
|
* | |
|
|
|
|
* </pre>
|
|
|
|
*/
|
|
|
|
void s2_register_setup(void)
|
|
|
|
{
|
|
|
|
nua_handle_t *nh;
|
|
|
|
struct message *m;
|
|
|
|
|
|
|
|
assert(s2 && s2->nua);
|
|
|
|
assert(!s2->registration->nh);
|
|
|
|
|
|
|
|
nh = nua_handle(s2->nua, NULL, TAG_END());
|
|
|
|
|
|
|
|
nua_register(nh, TAG_END());
|
|
|
|
|
|
|
|
m = s2_wait_for_request(SIP_METHOD_REGISTER);
|
|
|
|
assert(m);
|
|
|
|
s2_save_register(m);
|
|
|
|
|
|
|
|
s2_respond_to(m, NULL,
|
|
|
|
SIP_200_OK,
|
|
|
|
SIPTAG_CONTACT(s2->registration->contact),
|
|
|
|
TAG_END());
|
|
|
|
s2_free_message(m);
|
|
|
|
|
|
|
|
assert(s2->registration->contact != NULL);
|
|
|
|
s2_check_event(nua_r_register, 200);
|
|
|
|
|
|
|
|
s2->registration->nh = nh;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Un-register NUA user.
|
|
|
|
*
|
|
|
|
* <pre>
|
|
|
|
* A B
|
|
|
|
* |-----REGISTER---->|
|
|
|
|
* |<-----200 OK------|
|
|
|
|
* | |
|
|
|
|
* </pre>
|
|
|
|
*/
|
|
|
|
void s2_register_teardown(void)
|
|
|
|
{
|
|
|
|
if (s2 && s2->registration->nh) {
|
|
|
|
nua_handle_t *nh = s2->registration->nh;
|
|
|
|
struct message *m;
|
|
|
|
|
|
|
|
nua_unregister(nh, TAG_END());
|
2008-12-16 18:05:22 +00:00
|
|
|
|
2008-05-14 19:10:54 +00:00
|
|
|
m = s2_wait_for_request(SIP_METHOD_REGISTER); assert(m);
|
|
|
|
s2_save_register(m);
|
|
|
|
s2_respond_to(m, NULL,
|
|
|
|
SIP_200_OK,
|
|
|
|
SIPTAG_CONTACT(s2->registration->contact),
|
|
|
|
TAG_END());
|
|
|
|
assert(s2->registration->contact == NULL);
|
|
|
|
|
|
|
|
s2_free_message(m);
|
|
|
|
|
|
|
|
s2_check_event(nua_r_unregister, 200);
|
|
|
|
|
|
|
|
nua_handle_destroy(nh);
|
|
|
|
s2->registration->nh = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|