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
|
/*
* $Id$
*
* Copyright (C) 2007 SOMA Networks, Inc.
* Written by Ovidiu Sas (osas)
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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
*
* Kamailio 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:
* --------
* 2007-07-16 initial version (osas)
*/
#include <stdio.h> /* for snprintf() */
#include <string.h> /* for memset() */
#include <stdlib.h> /* For atoi() */
#include "../../parser/parser_f.h"
#include "../../parser/sdp/sdp.h"
#include "../../ut.h"
#include "../../dprint.h"
#include "../dialog/dlg_hash.h"
#include "qos_mi.h"
#include "qos_handlers.h"
#include "qos_ctx_helpers.h"
/**
* The binding to the dialog module functions. Most importantly the
* register_dlgcb function.
*/
extern struct dlg_binds *dlg_binds;
/**
* Local function prototypes. See function definition for
* documentation.
*/
static void setup_dialog_callbacks(struct dlg_cell *did, qos_ctx_t *ctx);
static void qos_dialog_destroy_CB(struct dlg_cell* did, int type, struct dlg_cb_params * params);
static void qos_dialog_request_CB(struct dlg_cell* did, int type, struct dlg_cb_params * params);
static void qos_dialog_response_CB(struct dlg_cell* did, int type,struct dlg_cb_params * params);
static void qos_dialog_rpc_context_CB(struct dlg_cell* did, int type,struct dlg_cb_params * params);
/**
* The value of the message flag to flag an INVITE we want to process
* through the QoS module.
*/
//static int qos_flag = 0;
/**
* A helper function to setup all the callbacks from the dialog module
* after we find intrest in the dialog.
*
* @param did The Dialog ID.
* @param info The qos information.
*
*/
static void setup_dialog_callbacks(struct dlg_cell *did, qos_ctx_t *ctx)
{
dlg_binds->register_dlgcb(did, DLGCB_REQ_WITHIN,
qos_dialog_request_CB, (void *)ctx, NULL);
dlg_binds->register_dlgcb(did, DLGCB_RESPONSE_FWDED|DLGCB_RESPONSE_WITHIN,
qos_dialog_response_CB, (void *)ctx, NULL);
dlg_binds->register_dlgcb(did, DLGCB_DESTROY,
qos_dialog_destroy_CB, (void *)ctx, NULL);
dlg_binds->register_dlgcb(did, DLGCB_MI_CONTEXT,
qos_dialog_mi_context_CB, (void *)ctx, NULL);
dlg_binds->register_dlgcb(did, DLGCB_RPC_CONTEXT,
qos_dialog_rpc_context_CB, (void *)ctx, NULL);
return;
}
/**
* Every time a new dialog is created (from a new INVITE) the dialog
* module will call this callback function. We need to track the
* dialogs lifespan from this point forward until it is terminated
* with a BYE, CANCEL, etc. In the process, we will see if either or
* both ends of the conversation are trying to re-negotiate the media.
*
* This function will setup the other types of dialog callbacks
* required to track the lifespan of the dialog.
*
*
* @param did - The dialog ID
* @param type - The trigger event type (CREATED)
* @param msg - The SIP message that triggered the callback (INVITE)
* @param param - The pointer to nothing. As we did not attach
* anything to this callback in the dialog module.
*/
void qos_dialog_created_CB(struct dlg_cell *did, int type, struct dlg_cb_params * params)
{
qos_ctx_t *qos_ctx = NULL;
struct sip_msg* msg = params->req;
unsigned int dir = params->direction, role, other_role;
if (dir == DLG_DIR_UPSTREAM) {
role = QOS_CALLEE;
other_role = QOS_CALLER;
} else if (dir == DLG_DIR_DOWNSTREAM) {
role = QOS_CALLER;
other_role = QOS_CALLEE;
} else {
LM_ERR("Unknown dir %d\n", dir);
return;
}
if (msg == NULL || msg == FAKED_REPLY) {
LM_ERR("Improper msg\n");
return;
}
/* look only at INVITE */
if (msg->first_line.type != SIP_REQUEST ||
msg->first_line.u.request.method_value != METHOD_INVITE) {
LM_WARN("Dialog create callback called with a non-INVITE req.\n");
return;
}
qos_ctx = build_new_qos_ctx();
if (qos_ctx==NULL) {
/* Error message printed in build_new_qos_ctx() */
return;
}
LM_DBG("setup_dialog_callbacks( %p , %p )\n", did, qos_ctx);
setup_dialog_callbacks(did, qos_ctx);
run_create_cbs(qos_ctx, msg);
if (0 == parse_sdp(msg)) {
lock_get(&qos_ctx->lock);
add_sdp(qos_ctx, dir, msg, role, other_role);
lock_release(&qos_ctx->lock);
}
return;
}
/**
* This callback is called when ever a dialog isdestroyed.
*
* @param did - The Dialog ID / structure pointer. Used as an ID only.
* @param type - The termination cause/reason.
* @param params - pointer to the dlg_cb params
*/
static void qos_dialog_destroy_CB(struct dlg_cell* did, int type, struct dlg_cb_params * params)
{
struct sip_msg* msg = params->req;
qos_ctx_t* qos_ctx = (qos_ctx_t*)*(params->param);
/* run the QOSCB_TERMINATED callback */
run_qos_callbacks(QOSCB_TERMINATED, qos_ctx, NULL, 0, msg);
/* Free the param qos_info_t memory */
if (qos_ctx) {
destroy_qos_ctx(qos_ctx);
params->param = NULL;
}
return;
}
/**
*
* @param did - The dialog structure. The pointer is used as an ID.
* @param type - The reason for the callback. DLGCB_REQ_WITHIN
* @param msg - The SIP message that causes the callback.
* @param param - The qos information
*/
static void qos_dialog_request_CB(struct dlg_cell* did, int type, struct dlg_cb_params * params)
{
struct sip_msg* msg = params->req;
unsigned int dir = params->direction, role, other_role;
qos_ctx_t* qos_ctx = (qos_ctx_t*)*(params->param);
if (dir == DLG_DIR_UPSTREAM) {
role = QOS_CALLEE;
other_role = QOS_CALLER;
} else if (dir == DLG_DIR_DOWNSTREAM) {
role = QOS_CALLER;
other_role = QOS_CALLEE;
} else {
LM_ERR("Unknown dir %d\n", dir);
return;
}
if (msg->first_line.type == SIP_REQUEST) {
if ( (msg->first_line.u.request.method_value == METHOD_INVITE) ||
(msg->first_line.u.request.method_value == METHOD_UPDATE) ||
(msg->first_line.u.request.method_value == METHOD_ACK) ||
(msg->first_line.u.request.method_value == METHOD_PRACK)) {
if (0 == parse_sdp(msg)) {
lock_get(&qos_ctx->lock);
add_sdp(qos_ctx, dir, msg, role, other_role);
lock_release(&qos_ctx->lock);
}
} else {
LM_DBG("Ignoring non-carrying SDP req\n");
return;
}
} else {
LM_ERR("not a SIP_REQUEST\n");
return;
}
return;
}
/**
* This callback is called on any response message in the lifespan of
* the dialog. The callback is called just before the message is
* copied to pkg memory so it is still mutable.
*
* @param did - The dialog structure. The pointer is used as an ID.
* @param type - The reason for the callback. DLGCB_CONFIRMED
* @param msg - The SIP message that causes the callback.
* @param param - The qos information
*/
static void qos_dialog_response_CB(struct dlg_cell* did, int type, struct dlg_cb_params * params)
{
struct sip_msg* msg = params->rpl;
unsigned int dir = params->direction, role, other_role;
qos_ctx_t* qos_ctx = (qos_ctx_t*)*(params->param);
if (dir == DLG_DIR_UPSTREAM) {
role = QOS_CALLEE;
other_role = QOS_CALLER;
} else if (dir == DLG_DIR_DOWNSTREAM) {
role = QOS_CALLER;
other_role = QOS_CALLEE;
} else {
LM_ERR("Unknown dir %d\n", dir);
return;
}
if (msg->first_line.type == SIP_REPLY) {
if (msg->first_line.u.reply.statuscode > 100 &&
msg->first_line.u.reply.statuscode < 300) {
if (0 == parse_sdp(msg)) {
lock_get(&qos_ctx->lock);
add_sdp(qos_ctx, dir, msg, role, other_role);
lock_release(&qos_ctx->lock);
}
} else if (msg->first_line.u.reply.statuscode > 399 &&
msg->first_line.u.reply.statuscode < 700) {
lock_get(&qos_ctx->lock);
remove_sdp(qos_ctx, dir, msg, role, other_role);
lock_release(&qos_ctx->lock);
}
} else {
LM_ERR("not a SIP_REPLY\n");
return;
}
return;
}
/********************************* RPC *********************************/
static inline void internal_rpc_print_qos_stream_payloads(rpc_t *rpc, void *c, sdp_stream_cell_t* stream)
{
int i;
sdp_payload_attr_t *sdp_payload = stream->payload_attr;
for(i=stream->payloads_num-1;i>=0;i--){
if (!sdp_payload) {
LM_ERR("got NULL sdp_payload\n");
return;
}
rpc->rpl_printf(c, "\t\t\t\tpayload[%d]=%.*s codec=%.*s",
i, sdp_payload->rtp_payload.len, sdp_payload->rtp_payload.s,
sdp_payload->rtp_enc.len, sdp_payload->rtp_enc.s);
sdp_payload = sdp_payload->next;
}
}
static inline void internal_rpc_print_qos_stream(rpc_t *rpc, void *c, sdp_session_cell_t* session)
{
int i;
sdp_stream_cell_t *stream = session->streams;
for(i=session->streams_num-1;i>=0;i--){
if (!stream) {
LM_ERR("got NULL stream\n");
return;
}
rpc->rpl_printf(c, "\t\t\tmedia=%.*s IP:port=%.*s:%.*s trans=%.*s sendrecv=%.*s ptime=%.*s payload:%d",
stream->media.len, stream->media.s,
stream->ip_addr.len, stream->ip_addr.s,
stream->port.len, stream->port.s,
stream->transport.len, stream->transport.s,
stream->sendrecv_mode.len, stream->sendrecv_mode.s,
stream->ptime.len, stream->ptime.s,
stream->payloads_num);
internal_rpc_print_qos_stream_payloads(rpc, c, stream);
stream = stream->next;
}
}
static inline void internal_rpc_print_qos(rpc_t *rpc, void *c, qos_sdp_t *qos_sdp)
{
int i;
sdp_session_cell_t *session;
rpc->rpl_printf(c, "\t\tm_dir=%u m_id=%u method=%.*s cseq=%.*s negotiation=%u",
qos_sdp->method_dir, qos_sdp->method_id,
qos_sdp->method.len, qos_sdp->method.s,
qos_sdp->cseq.len, qos_sdp->cseq.s, qos_sdp->negotiation);
for (i=1;i>=0;i--){
session = qos_sdp->sdp_session[i];
if (session) {
rpc->rpl_printf(c, "\t\tcalle%s: cnt_disp=%.*s bw_type=%.*s bw_width=%.*s",
i?"e":"r",
session->cnt_disp.len, session->cnt_disp.s,
session->bw_type.len, session->bw_type.s,
session->bw_width.len, session->bw_width.s);
internal_rpc_print_qos_stream(rpc, c, session);
}
}
}
void qos_dialog_rpc_context_CB(struct dlg_cell* did, int type, struct dlg_cb_params * params)
{
rpc_cb_ctx_t *rpc_cb = (rpc_cb_ctx_t*)(params->dlg_data);
rpc_t *rpc = rpc_cb->rpc;
void *c = rpc_cb->c;
qos_ctx_t* qos_ctx = (qos_ctx_t*)*(params->param);
qos_sdp_t* qos_sdp;
qos_sdp = qos_ctx->pending_sdp;
if (qos_sdp) {
rpc->rpl_printf(c, "\tqos:pending_sdp");
internal_rpc_print_qos(rpc, c, qos_sdp);
}
qos_sdp = qos_ctx->negotiated_sdp;
if (qos_sdp) {
rpc->rpl_printf(c, "\tqos:negotiated_sdp");
internal_rpc_print_qos(rpc, c, qos_sdp);
}
return;
}
|