123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513 |
- /*
- * $Id$
- *
- * DB CLuster core functions
- *
- * Copyright (C) 2012 Daniel-Constantin Mierla (asipto.com)
- *
- * 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
- */
- /*! \file
- * \brief DB_CLUSTER :: Core
- * \ingroup db_cluster
- * Module: \ref db_cluster
- */
- #include "../../parser/parse_param.h"
- #include "../../dprint.h"
- #include "../../hashes.h"
- #include "../../trim.h"
- #include "../../timer.h"
- #include "../../mem/mem.h"
- #include "../../mem/shm_mem.h"
- #include "dbcl_data.h"
- static dbcl_con_t *_dbcl_con_root = NULL;
- static dbcl_cls_t *_dbcl_cls_root = NULL;
- dbcl_con_t *dbcl_get_connection(str *name)
- {
- dbcl_con_t *sc;
- unsigned int conid;
- conid = core_case_hash(name, 0, 0);
- sc = _dbcl_con_root;
- while(sc)
- {
- if(conid==sc->conid && sc->name.len==name->len
- && strncmp(sc->name.s, name->s, name->len)==0)
- {
- LM_DBG("connection found [%.*s]\n", name->len, name->s);
- return sc;
- }
- sc = sc->next;
- }
- return NULL;
- }
- dbcl_cls_t *dbcl_get_cluster(str *name)
- {
- dbcl_cls_t *sc;
- unsigned int clsid;
- clsid = core_case_hash(name, 0, 0);
- sc = _dbcl_cls_root;
- while(sc)
- {
- if(clsid==sc->clsid && sc->name.len==name->len
- && strncmp(sc->name.s, name->s, name->len)==0)
- {
- LM_DBG("cluster found [%.*s]\n", name->len, name->s);
- return sc;
- }
- sc = sc->next;
- }
- return NULL;
- }
- int dbcl_init_con(str *name, str *url)
- {
- dbcl_con_t *sc;
- unsigned int conid;
- conid = core_case_hash(name, 0, 0);
- sc = _dbcl_con_root;
- while(sc)
- {
- if(conid==sc->conid && sc->name.len==name->len
- && strncmp(sc->name.s, name->s, name->len)==0)
- {
- LM_ERR("duplicate connection name\n");
- return -1;
- }
- sc = sc->next;
- }
- sc = (dbcl_con_t*)pkg_malloc(sizeof(dbcl_con_t));
- if(sc==NULL)
- {
- LM_ERR("no pkg memory\n");
- return -1;
- }
- memset(sc, 0, sizeof(dbcl_con_t));
- sc->conid = conid;
- sc->name = *name;
- sc->db_url = *url;
- sc->sinfo = (dbcl_shared_t*)shm_malloc(sizeof(dbcl_shared_t));
- if(sc->sinfo==NULL)
- {
- LM_ERR("no shm memory\n");
- return -1;
- }
- memset(sc->sinfo, 0, sizeof(dbcl_shared_t));
- sc->next = _dbcl_con_root;
- _dbcl_con_root = sc;
- return 0;
- }
- int dbcl_valid_con(dbcl_con_t *sc)
- {
- if(sc==NULL || sc->flags==0 || sc->dbh==NULL)
- return -1;
- if(sc->sinfo==NULL)
- return 0;
- if(sc->sinfo->state & DBCL_CON_INACTIVE)
- {
- if(sc->sinfo->aticks==0)
- return -1;
- if(sc->sinfo->aticks>get_ticks())
- return -1;
- sc->sinfo->aticks = 0;
- sc->sinfo->state &= ~DBCL_CON_INACTIVE;
- }
- return 0;
- }
- extern int dbcl_inactive_interval;
- int dbcl_inactive_con(dbcl_con_t *sc)
- {
- if(sc==NULL || sc->sinfo==NULL)
- return -1;
- sc->sinfo->aticks = get_ticks() + dbcl_inactive_interval;
- sc->sinfo->state |= DBCL_CON_INACTIVE;
- return 0;
- }
- int dbcl_parse_con_param(char *val)
- {
- str name;
- str tok;
- str in;
- char *p;
- /* parse: name=>db_url*/
- in.s = val;
- in.len = strlen(in.s);
- p = in.s;
- while(p<in.s+in.len && (*p==' ' || *p=='\t' || *p=='\n' || *p=='\r'))
- p++;
- if(p>in.s+in.len || *p=='\0')
- goto error;
- name.s = p;
- while(p < in.s + in.len)
- {
- if(*p=='=' || *p==' ' || *p=='\t' || *p=='\n' || *p=='\r')
- break;
- p++;
- }
- if(p>in.s+in.len || *p=='\0')
- goto error;
- name.len = p - name.s;
- if(*p!='=')
- {
- while(p<in.s+in.len && (*p==' ' || *p=='\t' || *p=='\n' || *p=='\r'))
- p++;
- if(p>in.s+in.len || *p=='\0' || *p!='=')
- goto error;
- }
- p++;
- if(*p!='>')
- goto error;
- p++;
- while(p<in.s+in.len && (*p==' ' || *p=='\t' || *p=='\n' || *p=='\r'))
- p++;
- tok.s = p;
- tok.len = in.len + (int)(in.s - p);
- LM_DBG("connection: [%.*s] url: [%.*s]\n", name.len, name.s, tok.len, tok.s);
- return dbcl_init_con(&name, &tok);
- error:
- LM_ERR("invalid connection parameter [%.*s] at [%d]\n", in.len, in.s,
- (int)(p-in.s));
- return -1;
- }
- /**
- * cons: conid1=1s1p;...
- */
- int dbcl_cls_set_connections(dbcl_cls_t *cls, str *cons)
- {
- param_t* params_list = NULL;
- param_hooks_t phooks;
- param_t *pit=NULL;
- dbcl_con_t *sc;
- str s;
- int i;
- if(cls==NULL || cons==NULL)
- return -1;
- s = *cons;
- if(s.s[s.len-1]==';')
- s.len--;
- if (parse_params(&s, CLASS_ANY, &phooks, ¶ms_list)<0)
- return -1;
- for (pit = params_list; pit; pit=pit->next)
- {
- sc = dbcl_get_connection(&pit->name);
- if(sc==NULL)
- {
- LM_ERR("invalid connection id [%.*s]\n",
- pit->name.len, pit->name.s);
- goto error;
- }
- s = pit->body;
- trim(&s);
- if(s.len!=4)
- {
- LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",
- pit->body.len, pit->body.s,
- pit->name.len, pit->name.s);
- goto error;
- }
- if(s.s[0]<'0' || s.s[0]>'9')
- {
- LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",
- pit->body.len, pit->body.s,
- pit->name.len, pit->name.s);
- goto error;
- }
- i = s.s[0] - '0';
- if(s.s[1]!='s' && s.s[1]!='S' && s.s[1]!='r' && s.s[1]!='R')
- {
- LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",
- pit->body.len, pit->body.s,
- pit->name.len, pit->name.s);
- goto error;
- }
- if(cls->rlist[i].clen<DBCL_CLIST_SIZE)
- {
- if(cls->rlist[i].mode==0)
- cls->rlist[i].mode = s.s[1] | 32;
- cls->rlist[i].prio = i;
- cls->rlist[i].clist[cls->rlist[i].clen] = sc;
- LM_DBG("added con-id [%.*s] to rlist[%d] at [%d]\n",
- pit->name.len, pit->name.s, i, cls->rlist[i].clen);
- cls->rlist[i].clen++;
- } else {
- LM_WARN("too many read connections in cluster - con-id [%.*s]\n",
- pit->name.len, pit->name.s);
- }
- if(s.s[2]<'0' || s.s[2]>'9')
- {
- LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",
- pit->body.len, pit->body.s,
- pit->name.len, pit->name.s);
- goto error;
- }
- i = s.s[2] - '0';
- if(s.s[3]!='s' && s.s[3]!='S' && s.s[3]!='r' && s.s[3]!='R'
- && s.s[3]!='p' && s.s[3]!='P')
- {
- LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",
- pit->body.len, pit->body.s,
- pit->name.len, pit->name.s);
- goto error;
- }
- if(cls->wlist[i].clen<DBCL_CLIST_SIZE)
- {
- if(cls->wlist[i].mode==0)
- cls->wlist[i].mode = s.s[3] | 32;
- cls->wlist[i].prio = i;
- cls->wlist[i].clist[cls->wlist[i].clen] = sc;
- LM_DBG("added con-id [%.*s] to wlist[%d] at [%d]\n",
- pit->name.len, pit->name.s, i, cls->wlist[i].clen);
- cls->wlist[i].clen++;
- } else {
- LM_WARN("too many write connections in cluster - con-id [%.*s]\n",
- pit->name.len, pit->name.s);
- }
- }
- return 0;
- error:
- return -1;
- }
- int dbcl_init_cls(str *name, str *cons)
- {
- dbcl_cls_t *sc;
- unsigned int clsid;
- clsid = core_case_hash(name, 0, 0);
- sc = _dbcl_cls_root;
- while(sc)
- {
- if(clsid==sc->clsid && sc->name.len==name->len
- && strncmp(sc->name.s, name->s, name->len)==0)
- {
- LM_ERR("duplicate cluster name\n");
- return -1;
- }
- sc = sc->next;
- }
- sc = (dbcl_cls_t*)pkg_malloc(sizeof(dbcl_cls_t));
- if(sc==NULL)
- {
- LM_ERR("no pkg memory\n");
- return -1;
- }
- memset(sc, 0, sizeof(dbcl_cls_t));
- sc->clsid = clsid;
- sc->name = *name;
- /* parse cls con list */
- if(dbcl_cls_set_connections(sc, cons)<0)
- {
- LM_ERR("unable to add connections to cluster definition\n");
- pkg_free(sc);
- return -1;
- }
- sc->next = _dbcl_cls_root;
- _dbcl_cls_root = sc;
- return 0;
- }
- int dbcl_parse_cls_param(char *val)
- {
- str name;
- str tok;
- str in;
- char *p;
- /* parse: name=>conlist*/
- in.s = val;
- in.len = strlen(in.s);
- p = in.s;
- while(p<in.s+in.len && (*p==' ' || *p=='\t' || *p=='\n' || *p=='\r'))
- p++;
- if(p>in.s+in.len || *p=='\0')
- goto error;
- name.s = p;
- while(p < in.s + in.len)
- {
- if(*p=='=' || *p==' ' || *p=='\t' || *p=='\n' || *p=='\r')
- break;
- p++;
- }
- if(p>in.s+in.len || *p=='\0')
- goto error;
- name.len = p - name.s;
- if(*p!='=')
- {
- while(p<in.s+in.len && (*p==' ' || *p=='\t' || *p=='\n' || *p=='\r'))
- p++;
- if(p>in.s+in.len || *p=='\0' || *p!='=')
- goto error;
- }
- p++;
- if(*p!='>')
- goto error;
- p++;
- while(p<in.s+in.len && (*p==' ' || *p=='\t' || *p=='\n' || *p=='\r'))
- p++;
- tok.s = p;
- tok.len = in.len + (int)(in.s - p);
- LM_DBG("cluster: [%.*s] : con-list [%.*s]\n", name.len, name.s, tok.len, tok.s);
- return dbcl_init_cls(&name, &tok);
- error:
- LM_ERR("invalid cluster parameter [%.*s] at [%d]\n", in.len, in.s,
- (int)(p-in.s));
- return -1;
- }
- int dbcl_init_dbf(dbcl_cls_t *cls)
- {
- int i;
- int j;
- for(i=1; i<DBCL_PRIO_SIZE; i++)
- {
- for(j=0; j<cls->rlist[i].clen; j++)
- {
- if(cls->rlist[i].clist[j] != NULL && cls->rlist[i].clist[j]->flags==0)
- {
- if(db_bind_mod(&cls->rlist[i].clist[j]->db_url,
- &cls->rlist[i].clist[j]->dbf)<0)
- {
- LM_ERR("unable to bind database module\n");
- return -1;
- }
- cls->rlist[i].clist[j]->flags = 1;
- }
- }
- for(j=0; j<cls->wlist[i].clen; j++)
- {
- if(cls->wlist[i].clist[j] != NULL && cls->wlist[i].clist[j]->flags==0)
- {
- if(db_bind_mod(&cls->wlist[i].clist[j]->db_url,
- &cls->wlist[i].clist[j]->dbf)<0)
- {
- LM_ERR("unable to bind database module\n");
- return -1;
- }
- cls->wlist[i].clist[j]->flags = 1;
- }
- }
- }
- return 0;
- }
- int dbcl_init_connections(dbcl_cls_t *cls)
- {
- int i;
- int j;
- for(i=1; i<DBCL_PRIO_SIZE; i++)
- {
- for(j=0; j<cls->rlist[i].clen; j++)
- {
- if(cls->rlist[i].clist[j] != NULL && cls->rlist[i].clist[j]->flags!=0)
- {
- LM_DBG("setting up read connection [%.*s]\n",
- cls->rlist[i].clist[j]->name.len,
- cls->rlist[i].clist[j]->name.s);
- cls->rlist[i].clist[j]->dbh =
- cls->rlist[i].clist[j]->dbf.init(&cls->rlist[i].clist[j]->db_url);
- if(cls->rlist[i].clist[j]->dbh==NULL)
- {
- LM_WARN("cannot connect to database - connection [%.*s]\n",
- cls->rlist[i].clist[j]->name.len,
- cls->rlist[i].clist[j]->name.s);
- }
- }
- }
- for(j=0; j<cls->wlist[i].clen; j++)
- {
- if(cls->wlist[i].clist[j] != NULL && cls->wlist[i].clist[j]->flags!=0)
- {
- LM_DBG("setting up write connection [%.*s]\n",
- cls->wlist[i].clist[j]->name.len,
- cls->wlist[i].clist[j]->name.s);
- cls->wlist[i].clist[j]->dbh =
- cls->wlist[i].clist[j]->dbf.init(&cls->wlist[i].clist[j]->db_url);
- if(cls->wlist[i].clist[j]->dbh==NULL)
- {
- LM_WARN("cannot connect to database - connection [%.*s]\n",
- cls->wlist[i].clist[j]->name.len,
- cls->wlist[i].clist[j]->name.s);
- }
- }
- }
- }
- return 0;
- }
- int dbcl_close_connections(dbcl_cls_t *cls)
- {
- int i;
- int j;
- if(cls->ref > 0)
- return 0;
- for(i=1; i<DBCL_PRIO_SIZE; i++)
- {
- for(j=0; j<cls->rlist[i].clen; j++)
- {
- if(cls->rlist[i].clist[j] != NULL && cls->rlist[i].clist[j]->flags!=0
- && cls->rlist[i].clist[j]->dbh != NULL)
- {
-
- cls->rlist[i].clist[j]->dbf.close(cls->rlist[i].clist[j]->dbh);
- cls->rlist[i].clist[j]->dbh = NULL;
- }
- }
- for(j=0; j<cls->wlist[i].clen; j++)
- {
- if(cls->wlist[i].clist[j] != NULL && cls->wlist[i].clist[j]->flags!=0
- && cls->wlist[i].clist[j]->dbh != NULL)
- {
- cls->wlist[i].clist[j]->dbf.close(cls->wlist[i].clist[j]->dbh);
- cls->wlist[i].clist[j]->dbh = NULL;
- }
- }
- }
- return 0;
- }
|