123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /*
- * Copyright (C) 2001-2004 iptel.org
- * Copyright (C) 2008 1&1 Internet AG
- *
- * 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_POSTGRES :: Core
- * \ingroup db_postgres
- * Module: \ref db_postgres
- */
- #include "km_pg_con.h"
- #include "pg_mod.h"
- #include "../../mem/mem.h"
- #include "../../dprint.h"
- #include "../../ut.h"
- #include "../../tls_hooks_init.h"
- #include <string.h>
- #include <time.h>
- #include <netinet/in.h>
- #include <netinet/tcp.h>
- /*!
- * \brief Create a new connection
- *
- * Create a new connection structure in private memory, open the PostgreSQL
- * connection and set reference count to 1
- * \param id database id
- * \return postgres connection structure, 0 on error
- */
- struct pg_con* db_postgres_new_connection(struct db_id* id)
- {
- struct pg_con* ptr;
- char *ports;
- int i = 0;
- const char *keywords[10], *values[10];
- char to[16];
- LM_DBG("db_id = %p\n", id);
-
- if (!id) {
- LM_ERR("invalid db_id parameter value\n");
- return 0;
- }
- ptr = (struct pg_con*)pkg_malloc(sizeof(struct pg_con));
- if (!ptr) {
- LM_ERR("failed trying to allocated %lu bytes for connection structure."
- "\n", (unsigned long)sizeof(struct pg_con));
- return 0;
- }
- LM_DBG("%p=pkg_malloc(%lu)\n", ptr, (unsigned long)sizeof(struct pg_con));
- memset(ptr, 0, sizeof(struct pg_con));
- ptr->ref = 1;
- memset(keywords, 0, (sizeof(char*) * 10));
- memset(values, 0, (sizeof(char*) * 10));
- memset(to, 0, (sizeof(char) * 16));
- if (id->port) {
- ports = int2str(id->port, 0);
- keywords[i] = "port";
- values[i++] = ports;
- LM_DBG("opening connection: postgres://xxxx:xxxx@%s:%d/%s\n", ZSW(id->host),
- id->port, ZSW(id->database));
- } else {
- ports = NULL;
- LM_DBG("opening connection: postgres://xxxx:xxxx@%s/%s\n", ZSW(id->host),
- ZSW(id->database));
- }
- keywords[i] = "host";
- values[i++] = id->host;
- keywords[i] = "dbname";
- values[i++] = id->database;
- keywords[i] = "user";
- values[i++] = id->username;
- keywords[i] = "password";
- values[i++] = id->password;
- if (pg_timeout > 0) {
- snprintf(to, sizeof(to)-1, "%d", pg_timeout + 3);
- keywords[i] = "connect_timeout";
- values[i++] = to;
- }
- keywords[i] = values[i] = NULL;
- /* don't attempt to re-init openssl if done already */
- if(tls_loaded()) PQinitSSL(0);
- ptr->con = PQconnectdbParams(keywords, values, 1);
- LM_DBG("PQconnectdbParams(%p)\n", ptr->con);
- if( (ptr->con == 0) || (PQstatus(ptr->con) != CONNECTION_OK) )
- {
- LM_ERR("%s\n", PQerrorMessage(ptr->con));
- PQfinish(ptr->con);
- goto err;
- }
- ptr->connected = 1;
- ptr->timestamp = time(0);
- ptr->id = id;
- #if defined(SO_KEEPALIVE) && defined(TCP_KEEPIDLE)
- if (pg_keepalive) {
- i = 1;
- setsockopt(PQsocket(ptr->con), SOL_SOCKET, SO_KEEPALIVE, &i, sizeof(i));
- setsockopt(PQsocket(ptr->con), IPPROTO_TCP, TCP_KEEPIDLE, &pg_keepalive, sizeof(pg_keepalive));
- }
- #endif
- return ptr;
- err:
- if (ptr) {
- LM_ERR("cleaning up %p=pkg_free()\n", ptr);
- pkg_free(ptr);
- }
- return 0;
- }
- /*!
- * \brief Close the connection and release memory
- * \param con connection
- */
- void db_postgres_free_connection(struct pool_con* con)
- {
- struct pg_con * _c;
-
- if (!con) return;
- _c = (struct pg_con*)con;
- if (_c->res) {
- LM_DBG("PQclear(%p)\n", _c->res);
- PQclear(_c->res);
- _c->res = 0;
- }
- if (_c->id) free_db_id(_c->id);
- if (_c->con) {
- LM_DBG("PQfinish(%p)\n", _c->con);
- PQfinish(_c->con);
- _c->con = 0;
- }
- LM_DBG("pkg_free(%p)\n", _c);
- pkg_free(_c);
- }
|