123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- /*
- * $Id$
- *
- * Copyright (C) 2006 Voice Sistem SRL
- *
- * 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:
- * --------
- * 2006-04-14 initial version (bogdan)
- * 2008-04-04 added direction reporting in dlg callbacks (bogdan)
- * 2008-04-14 DLGCB_CREATED may be registered before the module
- * initialization (bogdan)
- * 2008-04-15 added new type of callback to be triggered when dialogs are
- * loaded from DB (bogdan)
- */
- #include "../../mem/shm_mem.h"
- #include "../../dprint.h"
- #include "dlg_hash.h"
- #include "dlg_cb.h"
- static struct dlg_head_cbl* create_cbs = 0;
- static struct dlg_head_cbl* load_cbs = 0;
- static struct dlg_cb_params params = {NULL, NULL, DLG_DIR_NONE, NULL, NULL};
- #define POINTER_CLOSED_MARKER ((void *)(-1))
- static void run_load_callback(struct dlg_callback *cb);
- static struct dlg_head_cbl* init_dlg_callback(void)
- {
- struct dlg_head_cbl *new_cbs;
- new_cbs = (struct dlg_head_cbl*)shm_malloc(sizeof(struct dlg_head_cbl));
- if (new_cbs==0) {
- LM_ERR("no more shm mem\n");
- return 0;
- }
- new_cbs->first = 0;
- new_cbs->types = 0;
- return new_cbs;
- }
- void destroy_dlg_callbacks_list(struct dlg_callback *cb)
- {
- struct dlg_callback *cb_t;
- while(cb) {
- cb_t = cb;
- cb = cb->next;
- if (cb_t->callback_param_free && cb_t->param) {
- cb_t->callback_param_free(cb_t->param);
- cb_t->param = NULL;
- }
- shm_free(cb_t);
- }
- }
- void destroy_dlg_callbacks(unsigned int types)
- {
- if (types&DLGCB_CREATED) {
- if (create_cbs && create_cbs!=POINTER_CLOSED_MARKER) {
- destroy_dlg_callbacks_list(create_cbs->first);
- shm_free(create_cbs);
- create_cbs = POINTER_CLOSED_MARKER;
- }
- }
- if (types&DLGCB_LOADED) {
- if (load_cbs && load_cbs!=POINTER_CLOSED_MARKER) {
- destroy_dlg_callbacks_list(load_cbs->first);
- shm_free(load_cbs);
- load_cbs = POINTER_CLOSED_MARKER;
- }
- }
- }
- int register_dlgcb_nodlg(str *callid, str *ftag, str *ttag,
- int types, dialog_cb f,
- void *param, param_free_cb ff )
- {
- struct dlg_cell *dlg;
-
- unsigned int dir = DLG_DIR_NONE;
- dlg = get_dlg(callid, ftag, ttag, &dir); //increments ref count!
-
- if (!dlg) {
- LM_ERR("Can't find dialog to register callback\n");
- return -1;
- }
-
- int ret = register_dlgcb(dlg, types, f, param, ff);
- unref_dlg(dlg, 1);
-
- return ret;
- }
- int register_dlgcb(struct dlg_cell *dlg, int types, dialog_cb f,
- void *param, param_free_cb ff )
- {
- struct dlg_callback *cb;
- if ( types&DLGCB_LOADED ) {
- if (types!=DLGCB_LOADED) {
- LM_CRIT("DLGCB_LOADED type must be register alone!\n");
- return -1;
- }
- } else if ( types&DLGCB_CREATED ) {
- if (types!=DLGCB_CREATED) {
- LM_CRIT("DLGCB_CREATED type must be register alone!\n");
- return -1;
- }
- } else {
- if (dlg==0) {
- LM_CRIT("non-DLGCB_CREATED type "
- "must be register to a dialog (dlg missing)!\n");
- return -1;
- }
- }
- cb = (struct dlg_callback*)shm_malloc(sizeof(struct dlg_callback));
- if (cb==0) {
- LM_ERR("no more shm mem\n");
- return -1;
- }
- cb->types = types;
- cb->callback = f;
- cb->param = param;
- cb->callback_param_free = ff;
- if ( types==DLGCB_CREATED ) {
- if (load_cbs==POINTER_CLOSED_MARKER) {
- LM_CRIT("DLGCB_CREATED type registered after shutdown!?!\n");
- goto error;
- }
- if (create_cbs==0) {
- /* not initialized yet */
- if ( (create_cbs=init_dlg_callback())==NULL ) {
- LM_ERR("no more shm mem\n");
- goto error;
- }
- }
- cb->next = create_cbs->first;
- create_cbs->first = cb;
- create_cbs->types |= types;
- } else if (types==DLGCB_LOADED) {
- if (load_cbs==POINTER_CLOSED_MARKER) {
- /* run the callback on the spot */
- run_load_callback(cb);
- destroy_dlg_callbacks_list(cb);
- return 0;
- }
- if (load_cbs==0) {
- /* not initialized yet */
- if ( (load_cbs=init_dlg_callback())==NULL ) {
- LM_ERR("no more shm mem\n");
- goto error;
- }
- }
- cb->next = load_cbs->first;
- load_cbs->first = cb;
- load_cbs->types |= types;
- } else {
- cb->next = dlg->cbs.first;
- dlg->cbs.first = cb;
- dlg->cbs.types |= types;
- }
- return 0;
- error:
- shm_free(cb);
- return -1;
- }
- static void run_load_callback(struct dlg_callback *cb)
- {
- struct dlg_cell *dlg;
- unsigned int i;
- params.req = NULL;
- params.rpl = NULL;
- params.direction = DLG_DIR_NONE;
- params.param = &cb->param;
- for( i=0 ; i<d_table->size ; i++ ) {
- for( dlg=d_table->entries[i].first ; dlg ; dlg=dlg->next )
- cb->callback( dlg, DLGCB_LOADED, ¶ms );
- }
- return;
- }
- void run_load_callbacks( void )
- {
- struct dlg_callback *cb;
- if (load_cbs && load_cbs!=POINTER_CLOSED_MARKER) {
- for ( cb=load_cbs->first; cb; cb=cb->next )
- run_load_callback( cb );
- }
- return;
- }
- void run_create_callbacks(struct dlg_cell *dlg, struct sip_msg *msg)
- {
- struct dlg_callback *cb;
- if (create_cbs==NULL || create_cbs->first==NULL)
- return;
- params.req = msg;
- params.rpl = NULL;
- /* initial request goes DOWNSTREAM all the time */
- params.direction = DLG_DIR_DOWNSTREAM;
- /* avoid garbage due static structure */
- params.param = NULL;
- params.dlg_data = NULL;
- for ( cb=create_cbs->first; cb; cb=cb->next) {
- LM_DBG("dialog=%p\n",dlg);
- params.param = &cb->param;
- cb->callback( dlg, DLGCB_CREATED, ¶ms );
- }
- return;
- }
- void run_dlg_callbacks( int type ,
- struct dlg_cell *dlg,
- struct sip_msg *req,
- struct sip_msg *rpl,
- unsigned int dir, void *dlg_data)
- {
- struct dlg_callback *cb;
- params.req = req;
- params.rpl = rpl;
- params.direction = dir;
- params.dlg_data = dlg_data;
- if (dlg->cbs.first==0 || ((dlg->cbs.types)&type)==0 )
- return;
- for ( cb=dlg->cbs.first; cb; cb=cb->next) {
- if ( (cb->types)&type ) {
- LM_DBG("dialog=%p, type=%d\n", dlg, type);
- params.param = &cb->param;
- cb->callback( dlg, type, ¶ms );
- }
- }
- return;
- }
|