123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- /*
- * $Id$
- *
- * Usrloc record structure
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * [email protected]
- *
- * ser 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:
- * ---------
- * 2003-03-12 added replication mark and zombie state support (nils)
- * 2004-03-17 generic callbacks added (bogdan)
- * 2004-06-07 updated to the new DB api (andrei)
- */
- #include "urecord.h"
- #include <string.h>
- #include "../../mem/shm_mem.h"
- #include "../../dprint.h"
- #include "../../ut.h"
- #include "ul_mod.h"
- #include "utime.h"
- /* #include "del_list.h" */
- /* #include "ins_list.h" */
- #include "notify.h"
- #include "ul_callback.h"
- #include "reg_avps.h"
- /*
- * Create and initialize new record structure
- */
- int new_urecord(str* _dom, str* _uid, urecord_t** _r)
- {
- *_r = (urecord_t*)shm_malloc(sizeof(urecord_t));
- if (*_r == 0) {
- LOG(L_ERR, "new_urecord(): No memory left\n");
- return -1;
- }
- memset(*_r, 0, sizeof(urecord_t));
- (*_r)->uid.s = (char*)shm_malloc(_uid->len);
- if ((*_r)->uid.s == 0) {
- LOG(L_ERR, "new_urecord(): No memory left\n");
- shm_free(*_r);
- return -2;
- }
- memcpy((*_r)->uid.s, _uid->s, _uid->len);
- (*_r)->uid.len = _uid->len;
- (*_r)->domain = _dom;
- return 0;
- }
- /*
- * Free all memory used by the given structure
- * The structure must be removed from all linked
- * lists first
- */
- void free_urecord(urecord_t* _r)
- {
- notify_cb_t* watcher;
- ucontact_t* ptr;
- while(_r->watchers) {
- watcher = _r->watchers;
- _r->watchers = watcher->next;
- shm_free(watcher);
- }
- while(_r->contacts) {
- ptr = _r->contacts;
- _r->contacts = _r->contacts->next;
- free_ucontact(ptr);
- }
-
- if (_r->uid.s) shm_free(_r->uid.s);
- shm_free(_r);
- }
- /*
- * Print a record
- */
- void print_urecord(FILE* _f, urecord_t* _r)
- {
- ucontact_t* ptr;
- fprintf(_f, "...Record(%p)...\n", _r);
- fprintf(_f, "domain: '%.*s'\n", _r->domain->len, ZSW(_r->domain->s));
- fprintf(_f, "uid : '%.*s'\n", _r->uid.len, ZSW(_r->uid.s));
-
- if (_r->contacts) {
- ptr = _r->contacts;
- while(ptr) {
- print_ucontact(_f, ptr);
- ptr = ptr->next;
- }
- }
- fprintf(_f, ".../Record...\n");
- }
- /*
- * Add a new contact
- * Contacts are ordered by: 1) q
- * 2) descending modification time
- */
- int mem_insert_ucontact(urecord_t* _r, str* aor, str* _c, time_t _e, qvalue_t _q, str* _cid, int _cs,
- unsigned int _flags, struct ucontact** _con, str* _ua, str* _recv,
- struct socket_info* sock, str* _inst, int sid)
- {
- ucontact_t* ptr, *prev = 0;
- if (new_ucontact(_r->domain, &_r->uid, aor, _c, _e, _q, _cid, _cs, _flags, _con, _ua, _recv, sock, _inst, sid) < 0) {
- LOG(L_ERR, "mem_insert_ucontact(): Can't create new contact\n");
- return -1;
- }
-
- ptr = _r->contacts;
- if (!desc_time_order) {
- while(ptr) {
- if (ptr->q < _q) break;
- prev = ptr;
- ptr = ptr->next;
- }
- }
- if (ptr) {
- if (!ptr->prev) {
- ptr->prev = *_con;
- (*_con)->next = ptr;
- _r->contacts = *_con;
- } else {
- (*_con)->next = ptr;
- (*_con)->prev = ptr->prev;
- ptr->prev->next = *_con;
- ptr->prev = *_con;
- }
- } else if (prev) {
- prev->next = *_con;
- (*_con)->prev = prev;
- } else {
- _r->contacts = *_con;
- }
- return 0;
- }
- /*
- * Remove the contact from lists
- */
- void mem_remove_ucontact(urecord_t* _r, ucontact_t* _c)
- {
- if (_c->prev) {
- _c->prev->next = _c->next;
- if (_c->next) {
- _c->next->prev = _c->prev;
- }
- } else {
- _r->contacts = _c->next;
- if (_c->next) {
- _c->next->prev = 0;
- }
- }
- }
- /*
- * Remove contact from the list and delete
- */
- void mem_delete_ucontact(urecord_t* _r, ucontact_t* _c)
- {
- mem_remove_ucontact(_r, _c);
- free_ucontact(_c);
- }
- /*
- * This timer routine is used when
- * db_mode is set to NO_DB or READONLY
- */
- static inline int nodb_timer(urecord_t* _r)
- {
- ucontact_t* ptr, *t;
- int not = 0;
- ptr = _r->contacts;
- while(ptr) {
- if (!VALID_CONTACT(ptr, act_time)) {
- /* run callbacks for EXPIRE event */
- if (exists_ulcb_type(UL_CONTACT_EXPIRE))
- run_ul_callbacks( UL_CONTACT_EXPIRE, ptr);
- notify_watchers(_r, ptr, PRES_OFFLINE);
-
- LOG(L_NOTICE, "Binding '%.*s','%.*s' has expired\n",
- ptr->uid->len, ZSW(ptr->uid->s),
- ptr->c.len, ZSW(ptr->c.s));
-
- t = ptr;
- ptr = ptr->next;
-
- /* it was the last contact and it was in normal
- * state, so notify */
- if (!ptr && t->state == CS_NEW) not=1;
-
- delete_reg_avps(t);
- mem_delete_ucontact(_r, t);
- _r->slot->d->expired++;
- } else {
- ptr = ptr->next;
- }
- }
- return 0;
- }
- /*
- * This routine is used when db_mode is
- * set to WRITE_THROUGH
- */
- static inline int wt_timer(urecord_t* _r)
- {
- ucontact_t* ptr, *t;
- int not = 0;
-
- ptr = _r->contacts;
-
- while(ptr) {
- if (!VALID_CONTACT(ptr, act_time)) {
- /* run callbacks for EXPIRE event */
- if (exists_ulcb_type(UL_CONTACT_EXPIRE)) {
- run_ul_callbacks( UL_CONTACT_EXPIRE, ptr);
- }
- notify_watchers(_r, ptr, PRES_OFFLINE);
- LOG(L_NOTICE, "Binding '%.*s','%.*s' has expired\n",
- ptr->uid->len, ZSW(ptr->uid->s),
- ptr->c.len, ZSW(ptr->c.s));
-
- t = ptr;
- ptr = ptr->next;
-
- /* it was the last contact and it was in normal
- * state, so notify */
- if (!ptr && t->state == CS_SYNC) not=1;
-
- if (db_delete_ucontact(t) < 0) {
- LOG(L_ERR, "wt_timer(): Error while deleting contact from "
- "database\n");
- }
- delete_reg_avps(t);
- mem_delete_ucontact(_r, t);
- _r->slot->d->expired++;
- } else {
- /* the contact was unregistered and is not marked
- * for replication so remove it, but the notify was
- * already done during unregister */
- ptr = ptr->next;
- }
- }
-
- return 0;
- }
- /*
- * Write-back timer
- */
- static inline int wb_timer(urecord_t* _r)
- {
- ucontact_t* ptr, *t;
- int op;
- int not = 0;
- ptr = _r->contacts;
- while(ptr) {
- if (!VALID_CONTACT(ptr, act_time)) {
- /* run callbacks for EXPIRE event */
- if (exists_ulcb_type(UL_CONTACT_EXPIRE)) {
- run_ul_callbacks( UL_CONTACT_EXPIRE, ptr);
- }
- notify_watchers(_r, ptr, PRES_OFFLINE);
-
- LOG(L_NOTICE, "Binding '%.*s','%.*s' has expired\n",
- ptr->uid->len, ZSW(ptr->uid->s),
- ptr->c.len, ZSW(ptr->c.s));
- if (ptr->next == 0) not=1;
- _r->slot->d->expired++;
- t = ptr;
- ptr = ptr->next;
-
- /* Should we remove the contact from the database ? */
- if (st_expired_ucontact(t) == 1) {
- if (db_delete_ucontact(t) < 0) {
- LOG(L_ERR, "wb_timer(): Can't delete contact from the database\n");
- }
- }
-
- delete_reg_avps(t);
- mem_delete_ucontact(_r, t);
- } else {
- /* Determine the operation we have to do */
- op = st_flush_ucontact(ptr);
-
- switch(op) {
- case 0: /* do nothing, contact is synchronized */
- break;
- case 1: /* insert */
- if (db_store_ucontact(ptr) < 0) {
- LOG(L_ERR, "wb_timer(): Error while inserting contact into database\n");
- }
- break;
- case 2: /* update */
- if (db_store_ucontact(ptr) < 0) {
- LOG(L_ERR, "wb_timer(): Error while updating contact in db\n");
- }
- break;
- case 4: /* delete */
- if (db_delete_ucontact(ptr) < 0) {
- LOG(L_ERR, "wb_timer(): Can't delete contact from database\n");
- }
- /* fall through to the next case statement */
- case 3: /* delete from memory */
- delete_reg_avps(ptr);
- mem_delete_ucontact(_r, ptr);
- break;
- }
- ptr = ptr->next;
- }
- }
- return 0;
- }
- int timer_urecord(urecord_t* _r)
- {
- switch(db_mode) {
- case NO_DB: return nodb_timer(_r);
- case WRITE_THROUGH: return wt_timer(_r);
- case WRITE_BACK: return wb_timer(_r);
- case READONLY: return nodb_timer(_r);
- }
- return 0; /* Makes gcc happy */
- }
- /*
- * Release urecord previously obtained
- * through get_urecord
- */
- void release_urecord(urecord_t* _r)
- {
- if (_r->contacts == 0) {
- mem_delete_urecord(_r->slot->d, _r);
- }
- }
- /*
- * Create and insert new contact
- * into urecord
- */
- int insert_ucontact(urecord_t* _r, str* aor, str* _c, time_t _e, qvalue_t _q, str* _cid,
- int _cs, unsigned int _flags, struct ucontact** _con, str* _ua, str* _recv,
- struct socket_info* sock, str* _inst, int sid)
- {
- if (mem_insert_ucontact(_r, aor, _c, _e, _q, _cid, _cs, _flags, _con, _ua, _recv, sock, _inst, sid) < 0) {
- LOG(L_ERR, "insert_ucontact(): Error while inserting contact\n");
- return -1;
- }
- notify_watchers(_r, *_con, (_e > 0) ? PRES_ONLINE : PRES_OFFLINE);
- if (exists_ulcb_type(UL_CONTACT_INSERT)) {
- run_ul_callbacks( UL_CONTACT_INSERT, *_con);
- }
- save_reg_avps(*_con);
-
- if (db_mode == WRITE_THROUGH) {
- if (db_store_ucontact(*_con) < 0) {
- LOG(L_ERR, "insert_ucontact(): Error while inserting in database\n");
- }
- (*_con)->state = CS_SYNC;
- }
- return 0;
- }
- /*
- * Delete ucontact from urecord
- */
- int delete_ucontact(urecord_t* _r, struct ucontact* _c)
- {
- if (exists_ulcb_type(UL_CONTACT_DELETE)) {
- run_ul_callbacks( UL_CONTACT_DELETE, _c);
- }
- notify_watchers(_r, _c, PRES_OFFLINE);
-
- if (st_delete_ucontact(_c) > 0) {
- if (db_mode == WRITE_THROUGH) {
- if (db_delete_ucontact(_c) < 0) {
- LOG(L_ERR, "delete_ucontact(): Can't remove contact from "
- "database\n");
- }
- }
- delete_reg_avps(_c);
- mem_delete_ucontact(_r, _c);
- }
- return 0;
- }
- /*
- * Get pointer to ucontact with given contact
- */
- int get_ucontact(urecord_t* _r, str* _c, struct ucontact** _co)
- {
- ucontact_t* ptr;
-
- ptr = _r->contacts;
- while(ptr) {
- if ((_c->len == ptr->c.len &&
- !memcmp(_c->s, ptr->c.s, _c->len))) {
- *_co = ptr;
- return 0;
- }
-
- ptr = ptr->next;
- }
- return 1;
- }
- /*
- * Get pointer to ucontact with given contact and given sip.instance
- */
- int get_ucontact_by_instance(urecord_t* _r, str* _c, str* _i, struct ucontact** _co)
- {
- ucontact_t* ptr;
-
- if (_i == NULL) {
- return get_ucontact(_r, _c, _co);
- }
- ptr = _r->contacts;
- while(ptr) {
- if ((_i->len == ptr->instance.len &&
- !memcmp(_i->s, ptr->instance.s, _i->len)) ||
- (_c->len == ptr->c.len &&
- !memcmp(_c->s, ptr->c.s, _c->len))) {
- *_co = ptr;
- return 0;
- }
-
- ptr = ptr->next;
- }
- return 1;
- }
|