123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517 |
- /**
- * $Id$
- *
- * Copyright (C) 2011 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
- *
- */
- #include <stdio.h>
- #include <unistd.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/time.h>
- #include <stdarg.h>
- #include "../../mem/mem.h"
- #include "../../dprint.h"
- #include "../../hashes.h"
- #include "../../ut.h"
- #include "redis_client.h"
- #define redisCommandNR(a...) (int)({ void *__tmp; __tmp = redisCommand(a); if (__tmp) freeReplyObject(__tmp); __tmp ? 0 : -1;})
- static redisc_server_t *_redisc_srv_list=NULL;
- static redisc_reply_t *_redisc_rpl_list=NULL;
- /**
- *
- */
- int redisc_init(void)
- {
- char *addr, *unix_sock_path = NULL;
- unsigned int port, db;
- redisc_server_t *rsrv=NULL;
- param_t *pit = NULL;
- struct timeval tv;
- tv.tv_sec = 1;
- tv.tv_usec = 0;
- if(_redisc_srv_list==NULL)
- {
- LM_ERR("no redis servers defined\n");
- return -1;
- }
- for(rsrv=_redisc_srv_list; rsrv; rsrv=rsrv->next)
- {
- addr = "127.0.0.1";
- port = 6379;
- db = 0;
- for (pit = rsrv->attrs; pit; pit=pit->next)
- {
- if(pit->name.len==4 && strncmp(pit->name.s, "unix", 4)==0) {
- unix_sock_path = pit->body.s;
- unix_sock_path[pit->body.len] = '\0';
- } else if(pit->name.len==4 && strncmp(pit->name.s, "addr", 4)==0) {
- addr = pit->body.s;
- addr[pit->body.len] = '\0';
- } else if(pit->name.len==4 && strncmp(pit->name.s, "port", 4)==0) {
- if(str2int(&pit->body, &port) < 0)
- port = 6379;
- } else if(pit->name.len==2 && strncmp(pit->name.s, "db", 2)==0) {
- if(str2int(&pit->body, &db) < 0)
- db = 0;
- }
- }
- if(unix_sock_path != NULL) {
- LM_DBG("Connecting to unix socket: %s\n", unix_sock_path);
- rsrv->ctxRedis = redisConnectUnixWithTimeout(unix_sock_path, tv);
- } else {
- rsrv->ctxRedis = redisConnectWithTimeout(addr, port, tv);
- }
- if(!rsrv->ctxRedis)
- goto err;
- if (rsrv->ctxRedis->err)
- goto err2;
- if (redisCommandNR(rsrv->ctxRedis, "PING"))
- goto err2;
- if (redisCommandNR(rsrv->ctxRedis, "SELECT %i", db))
- goto err2;
- }
- return 0;
- err2:
- if (unix_sock_path != NULL) {
- LM_ERR("error communicating with redis server [%.*s] (unix:%s db:%d): %s\n",
- rsrv->sname->len, rsrv->sname->s, unix_sock_path, db, rsrv->ctxRedis->errstr);
- } else {
- LM_ERR("error communicating with redis server [%.*s] (%s:%d/%d): %s\n",
- rsrv->sname->len, rsrv->sname->s, addr, port, db, rsrv->ctxRedis->errstr);
- }
- return -1;
- err:
- if (unix_sock_path != NULL) {
- LM_ERR("failed to connect to redis server [%.*s] (unix:%s db:%d)\n",
- rsrv->sname->len, rsrv->sname->s, unix_sock_path, db);
- } else {
- LM_ERR("failed to connect to redis server [%.*s] (%s:%d/%d)\n",
- rsrv->sname->len, rsrv->sname->s, addr, port, db);
- }
- return -1;
- }
- /**
- *
- */
- int redisc_destroy(void)
- {
- redisc_reply_t *rpl, *next_rpl;
- redisc_server_t *rsrv=NULL;
- redisc_server_t *rsrv1=NULL;
- rpl = _redisc_rpl_list;
- while(rpl != NULL)
- {
- next_rpl = rpl->next;
- if(rpl->rplRedis)
- freeReplyObject(rpl->rplRedis);
- if(rpl->rname.s != NULL)
- pkg_free(rpl->rname.s);
- pkg_free(rpl);
- rpl = next_rpl;
- }
- _redisc_rpl_list = NULL;
- if(_redisc_srv_list==NULL)
- return -1;
- rsrv=_redisc_srv_list;
- while(rsrv!=NULL)
- {
- rsrv1 = rsrv;
- rsrv=rsrv->next;
- if(rsrv1->ctxRedis!=NULL)
- redisFree(rsrv1->ctxRedis);
- free_params(rsrv1->attrs);
- pkg_free(rsrv1);
- }
- _redisc_srv_list = NULL;
- return 0;
- }
- /**
- *
- */
- int redisc_add_server(char *spec)
- {
- param_t *pit=NULL;
- param_hooks_t phooks;
- redisc_server_t *rsrv=NULL;
- str s;
- s.s = spec;
- s.len = strlen(spec);
- if(s.s[s.len-1]==';')
- s.len--;
- if (parse_params(&s, CLASS_ANY, &phooks, &pit)<0)
- {
- LM_ERR("failed parsing params value\n");
- goto error;
- }
- rsrv = (redisc_server_t*)pkg_malloc(sizeof(redisc_server_t));
- if(rsrv==NULL)
- {
- LM_ERR("no more pkg\n");
- goto error;
- }
- memset(rsrv, 0, sizeof(redisc_server_t));
- rsrv->attrs = pit;
- for (pit = rsrv->attrs; pit; pit=pit->next)
- {
- if(pit->name.len==4 && strncmp(pit->name.s, "name", 4)==0) {
- rsrv->sname = &pit->body;
- rsrv->hname = get_hash1_raw(rsrv->sname->s, rsrv->sname->len);
- break;
- }
- }
- if(rsrv->sname==NULL)
- {
- LM_ERR("no server name\n");
- goto error;
- }
- rsrv->next = _redisc_srv_list;
- _redisc_srv_list = rsrv;
- return 0;
- error:
- if(pit!=NULL)
- free_params(pit);
- if(rsrv!=NULL)
- pkg_free(rsrv);
- return -1;
- }
- /**
- *
- */
- redisc_server_t *redisc_get_server(str *name)
- {
- redisc_server_t *rsrv=NULL;
- unsigned int hname;
- hname = get_hash1_raw(name->s, name->len);
- rsrv=_redisc_srv_list;
- while(rsrv!=NULL)
- {
- if(rsrv->hname==hname && rsrv->sname->len==name->len
- && strncmp(rsrv->sname->s, name->s, name->len)==0)
- return rsrv;
- rsrv=rsrv->next;
- }
- return NULL;
- }
- /**
- *
- */
- int redisc_reconnect_server(redisc_server_t *rsrv)
- {
- char *addr, *unix_sock_path = NULL;
- unsigned int port, db;
- param_t *pit = NULL;
- struct timeval tv;
- tv.tv_sec = 1;
- tv.tv_usec = 0;
- addr = "127.0.0.1";
- port = 6379;
- db = 0;
- for (pit = rsrv->attrs; pit; pit=pit->next)
- {
- if(pit->name.len==4 && strncmp(pit->name.s, "unix", 4)==0) {
- unix_sock_path = pit->body.s;
- unix_sock_path[pit->body.len] = '\0';
- } else if(pit->name.len==4 && strncmp(pit->name.s, "addr", 4)==0) {
- addr = pit->body.s;
- addr[pit->body.len] = '\0';
- } else if(pit->name.len==4 && strncmp(pit->name.s, "port", 4)==0) {
- if(str2int(&pit->body, &port) < 0)
- port = 6379;
- } else if(pit->name.len==2 && strncmp(pit->name.s, "db", 2)==0) {
- if(str2int(&pit->body, &db) < 0)
- db = 0;
- }
- }
- if(rsrv->ctxRedis!=NULL) {
- redisFree(rsrv->ctxRedis);
- rsrv->ctxRedis = NULL;
- }
- if(unix_sock_path != NULL) {
- rsrv->ctxRedis = redisConnectUnixWithTimeout(unix_sock_path, tv);
- } else {
- rsrv->ctxRedis = redisConnectWithTimeout(addr, port, tv);
- }
- if(!rsrv->ctxRedis)
- goto err;
- if (rsrv->ctxRedis->err)
- goto err2;
- if (redisCommandNR(rsrv->ctxRedis, "PING"))
- goto err2;
- if (redisCommandNR(rsrv->ctxRedis, "SELECT %i", db))
- goto err2;
- return 0;
- err2:
- if (unix_sock_path != NULL) {
- LM_ERR("error communicating with redis server [%.*s] (unix:%s db:%d): %s\n",
- rsrv->sname->len, rsrv->sname->s, unix_sock_path, db, rsrv->ctxRedis->errstr);
- } else {
- LM_ERR("error communicating with redis server [%.*s] (%s:%d/%d): %s\n",
- rsrv->sname->len, rsrv->sname->s, addr, port, db, rsrv->ctxRedis->errstr);
- }
- err:
- if (unix_sock_path != NULL) {
- LM_ERR("failed to connect to redis server [%.*s] (unix:%s db:%d)\n",
- rsrv->sname->len, rsrv->sname->s, unix_sock_path, db);
- } else {
- LM_ERR("failed to connect to redis server [%.*s] (%s:%d/%d)\n",
- rsrv->sname->len, rsrv->sname->s, addr, port, db);
- }
- return -1;
- }
- /**
- *
- */
- int redisc_exec(str *srv, str *res, str *cmd, ...)
- {
- redisc_server_t *rsrv=NULL;
- redisc_reply_t *rpl;
- char c;
- va_list ap, ap2;
- va_start(ap, cmd);
- va_copy(ap2, ap);
- rsrv = redisc_get_server(srv);
- if(srv==NULL || cmd==NULL || res==NULL)
- {
- LM_ERR("invalid parameters");
- goto error_exec;
- }
- if(srv->len==0 || res->len==0 || cmd->len==0)
- {
- LM_ERR("invalid parameters");
- goto error_exec;
- }
- if(rsrv==NULL)
- {
- LM_ERR("no redis server found: %.*s\n", srv->len, srv->s);
- goto error_exec;
- }
- if(rsrv->ctxRedis==NULL)
- {
- LM_ERR("no redis context for server: %.*s\n", srv->len, srv->s);
- goto error_exec;
- }
- rpl = redisc_get_reply(res);
- if(rpl==NULL)
- {
- LM_ERR("no redis reply id found: %.*s\n", res->len, res->s);
- goto error_exec;
- }
- if(rpl->rplRedis!=NULL)
- {
- /* clean up previous redis reply */
- freeReplyObject(rpl->rplRedis);
- rpl->rplRedis = NULL;
- }
- c = cmd->s[cmd->len];
- cmd->s[cmd->len] = '\0';
- rpl->rplRedis = redisvCommand(rsrv->ctxRedis, cmd->s, ap );
- if(rpl->rplRedis == NULL)
- {
- /* null reply, reconnect and try again */
- if(rsrv->ctxRedis->err)
- {
- LM_ERR("Redis error: %s\n", rsrv->ctxRedis->errstr);
- }
- if(redisc_reconnect_server(rsrv)==0)
- {
- rpl->rplRedis = redisvCommand(rsrv->ctxRedis, cmd->s, ap2);
- } else {
- LM_ERR("unable to reconnect to redis server: %.*s\n", srv->len, srv->s);
- cmd->s[cmd->len] = c;
- goto error_exec;
- }
- }
- cmd->s[cmd->len] = c;
- va_end(ap);
- va_end(ap2);
- return 0;
- error_exec:
- va_end(ap);
- va_end(ap2);
- return -1;
- }
- /**
- * Executes a redis command.
- * Command is coded using a vector of strings, and a vector of lenghts.
- *
- * @param rsrv Pointer to a redis_server_t structure.
- * @param argc number of elements in the command vector.
- * @param argv vector of zero terminated strings forming the command.
- * @param argvlen vector of command string lenghts or NULL.
- * @return redisReply structure or NULL if there was an error.
- */
- void * redisc_exec_argv(redisc_server_t *rsrv, int argc, const char **argv, const size_t *argvlen)
- {
- redisReply *res=NULL;
- if(rsrv==NULL || rsrv->ctxRedis==NULL)
- {
- LM_ERR("no redis context found for server %.*s\n",
- rsrv->sname->len, rsrv->sname->s);
- return NULL;
- }
- if(argc<=0)
- {
- LM_ERR("invalid parameters\n");
- return NULL;
- }
- if(argv==NULL || *argv==NULL)
- {
- LM_ERR("invalid parameters\n");
- return NULL;
- }
- res = redisCommandArgv(rsrv->ctxRedis, argc, argv, argvlen);
- if(res)
- {
- return res;
- }
- /* null reply, reconnect and try again */
- if(rsrv->ctxRedis->err)
- {
- LM_ERR("Redis error: %s\n", rsrv->ctxRedis->errstr);
- }
- if(redisc_reconnect_server(rsrv)==0)
- {
- res = redisCommandArgv(rsrv->ctxRedis, argc, argv, argvlen);
- }
- else
- {
- LM_ERR("Unable to reconnect to server: %.*s\n",
- rsrv->sname->len, rsrv->sname->s);
- return NULL;
- }
- return res;
- }
- /**
- *
- */
- redisc_reply_t *redisc_get_reply(str *name)
- {
- redisc_reply_t *rpl;
- unsigned int hid;
- hid = get_hash1_raw(name->s, name->len);
- for(rpl=_redisc_rpl_list; rpl; rpl=rpl->next) {
- if(rpl->hname==hid && rpl->rname.len==name->len
- && strncmp(rpl->rname.s, name->s, name->len)==0)
- return rpl;
- }
- /* not found - add a new one */
- rpl = (redisc_reply_t*)pkg_malloc(sizeof(redisc_reply_t));
- if(rpl==NULL)
- {
- LM_ERR("no more pkg\n");
- return NULL;
- }
- memset(rpl, 0, sizeof(redisc_reply_t));
- rpl->hname = hid;
- rpl->rname.s = (char*)pkg_malloc(name->len+1);
- if(rpl->rname.s==NULL)
- {
- LM_ERR("no more pkg.\n");
- pkg_free(rpl);
- return NULL;
- }
- strncpy(rpl->rname.s, name->s, name->len);
- rpl->rname.len = name->len;
- rpl->rname.s[name->len] = '\0';
- rpl->next = _redisc_rpl_list;
- _redisc_rpl_list = rpl;
- return rpl;
- }
- /**
- *
- */
- int redisc_free_reply(str *name)
- {
- redisc_reply_t *rpl;
- unsigned int hid;
- if(name==NULL || name->len==0) {
- LM_ERR("invalid parameters");
- return -1;
- }
- hid = get_hash1_raw(name->s, name->len);
- rpl = _redisc_rpl_list;
- while(rpl) {
- if(rpl->hname==hid && rpl->rname.len==name->len
- && strncmp(rpl->rname.s, name->s, name->len)==0) {
- if(rpl->rplRedis) {
- freeReplyObject(rpl->rplRedis);
- rpl->rplRedis = NULL;
- }
- return 0;
- }
- rpl = rpl->next;
- }
- /* reply entry not found. */
- return -1;
- }
|