2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2003 - 2006
6 * Matthew D. Hardeman <mhardemn@papersoft.com>
7 * Adapted from the MySQL CDR logger originally by James Sharp
9 * Modified September 2003
10 * Matthew D. Hardeman <mhardemn@papersoft.com>
12 * See http://www.asterisk.org for more information about
13 * the Asterisk project. Please do not directly contact
14 * any of the maintainers of this project for assistance;
15 * the project provides a web site, mailing lists and IRC
16 * channels for your use.
18 * This program is free software, distributed under the terms of
19 * the GNU General Public License Version 2. See the LICENSE file
20 * at the top of the source tree.
25 * \brief PostgreSQL CDR logger
27 * \author Matthew D. Hardeman <mhardemn@papersoft.com>
28 * \extref PostgreSQL http://www.postgresql.org/
31 * \arg \ref Config_cdr
32 * \arg http://www.postgresql.org/
33 * \ingroup cdr_drivers
37 <depend>pgsql</depend>
42 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
44 #include <sys/types.h>
53 #include "asterisk/config.h"
54 #include "asterisk/options.h"
55 #include "asterisk/channel.h"
56 #include "asterisk/cdr.h"
57 #include "asterisk/module.h"
58 #include "asterisk/logger.h"
61 #define DATE_FORMAT "%Y-%m-%d %T"
63 static char *name = "pgsql";
64 static char *config = "cdr_pgsql.conf";
65 static char *pghostname = NULL, *pgdbname = NULL, *pgdbuser = NULL, *pgpassword = NULL, *pgdbport = NULL, *table = NULL;
66 static int connected = 0;
68 AST_MUTEX_DEFINE_STATIC(pgsql_lock);
70 static PGconn *conn = NULL;
72 static int pgsql_log(struct ast_cdr *cdr)
75 char sqlcmd[2048] = "", timestr[128];
79 ast_mutex_lock(&pgsql_lock);
81 localtime_r(&cdr->start.tv_sec,&tm);
82 strftime(timestr, sizeof(timestr), DATE_FORMAT, &tm);
84 if ((!connected) && pghostname && pgdbuser && pgpassword && pgdbname) {
85 conn = PQsetdbLogin(pghostname, pgdbport, NULL, NULL, pgdbname, pgdbuser, pgpassword);
86 if (PQstatus(conn) != CONNECTION_BAD) {
89 pgerror = PQerrorMessage(conn);
90 ast_log(LOG_ERROR, "cdr_pgsql: Unable to connect to database server %s. Calls will not be logged!\n", pghostname);
91 ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
96 char *clid=NULL, *dcontext=NULL, *channel=NULL, *dstchannel=NULL, *lastapp=NULL, *lastdata=NULL;
97 char *uniqueid=NULL, *userfield=NULL;
99 /* Maximum space needed would be if all characters needed to be escaped, plus a trailing NULL */
100 if ((clid = alloca(strlen(cdr->clid) * 2 + 1)) != NULL)
101 PQescapeString(clid, cdr->clid, strlen(cdr->clid));
102 if ((dcontext = alloca(strlen(cdr->dcontext) * 2 + 1)) != NULL)
103 PQescapeString(dcontext, cdr->dcontext, strlen(cdr->dcontext));
104 if ((channel = alloca(strlen(cdr->channel) * 2 + 1)) != NULL)
105 PQescapeString(channel, cdr->channel, strlen(cdr->channel));
106 if ((dstchannel = alloca(strlen(cdr->dstchannel) * 2 + 1)) != NULL)
107 PQescapeString(dstchannel, cdr->dstchannel, strlen(cdr->dstchannel));
108 if ((lastapp = alloca(strlen(cdr->lastapp) * 2 + 1)) != NULL)
109 PQescapeString(lastapp, cdr->lastapp, strlen(cdr->lastapp));
110 if ((lastdata = alloca(strlen(cdr->lastdata) * 2 + 1)) != NULL)
111 PQescapeString(lastdata, cdr->lastdata, strlen(cdr->lastdata));
112 if ((uniqueid = alloca(strlen(cdr->uniqueid) * 2 + 1)) != NULL)
113 PQescapeString(uniqueid, cdr->uniqueid, strlen(cdr->uniqueid));
114 if ((userfield = alloca(strlen(cdr->userfield) * 2 + 1)) != NULL)
115 PQescapeString(userfield, cdr->userfield, strlen(cdr->userfield));
117 /* Check for all alloca failures above at once */
118 if ((!clid) || (!dcontext) || (!channel) || (!dstchannel) || (!lastapp) || (!lastdata) || (!uniqueid) || (!userfield)) {
119 ast_log(LOG_ERROR, "cdr_pgsql: Out of memory error (insert fails)\n");
120 ast_mutex_unlock(&pgsql_lock);
124 if (option_debug > 1)
125 ast_log(LOG_DEBUG, "cdr_pgsql: inserting a CDR record.\n");
127 snprintf(sqlcmd,sizeof(sqlcmd),"INSERT INTO %s (calldate,clid,src,dst,dcontext,channel,dstchannel,"
128 "lastapp,lastdata,duration,billsec,disposition,amaflags,accountcode,uniqueid,userfield) VALUES"
129 " ('%s','%s','%s','%s','%s', '%s','%s','%s','%s',%ld,%ld,'%s',%ld,'%s','%s','%s')",
130 table,timestr,clid,cdr->src, cdr->dst, dcontext,channel, dstchannel, lastapp, lastdata,
131 cdr->duration,cdr->billsec,ast_cdr_disp2str(cdr->disposition),cdr->amaflags, cdr->accountcode, uniqueid, userfield);
133 if (option_debug > 2)
134 ast_log(LOG_DEBUG, "cdr_pgsql: SQL command executed: %s\n",sqlcmd);
136 /* Test to be sure we're still connected... */
137 /* If we're connected, and connection is working, good. */
138 /* Otherwise, attempt reconnect. If it fails... sorry... */
139 if (PQstatus(conn) == CONNECTION_OK) {
142 ast_log(LOG_ERROR, "cdr_pgsql: Connection was lost... attempting to reconnect.\n");
144 if (PQstatus(conn) == CONNECTION_OK) {
145 ast_log(LOG_ERROR, "cdr_pgsql: Connection reestablished.\n");
148 pgerror = PQerrorMessage(conn);
149 ast_log(LOG_ERROR, "cdr_pgsql: Unable to reconnect to database server %s. Calls will not be logged!\n", pghostname);
150 ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
152 ast_mutex_unlock(&pgsql_lock);
156 result = PQexec(conn, sqlcmd);
157 if (PQresultStatus(result) != PGRES_COMMAND_OK) {
158 pgerror = PQresultErrorMessage(result);
159 ast_log(LOG_ERROR,"cdr_pgsql: Failed to insert call detail record into database!\n");
160 ast_log(LOG_ERROR,"cdr_pgsql: Reason: %s\n", pgerror);
161 ast_log(LOG_ERROR,"cdr_pgsql: Connection may have been lost... attempting to reconnect.\n");
163 if (PQstatus(conn) == CONNECTION_OK) {
164 ast_log(LOG_ERROR, "cdr_pgsql: Connection reestablished.\n");
166 result = PQexec(conn, sqlcmd);
167 if (PQresultStatus(result) != PGRES_COMMAND_OK) {
168 pgerror = PQresultErrorMessage(result);
169 ast_log(LOG_ERROR,"cdr_pgsql: HARD ERROR! Attempted reconnection failed. DROPPING CALL RECORD!\n");
170 ast_log(LOG_ERROR,"cdr_pgsql: Reason: %s\n", pgerror);
173 ast_mutex_unlock(&pgsql_lock);
179 ast_mutex_unlock(&pgsql_lock);
183 static int my_unload_module(void)
188 ast_free(pghostname);
194 ast_free(pgpassword);
199 ast_cdr_unregister(name);
203 static int process_my_load_module(struct ast_config *cfg)
205 struct ast_variable *var;
209 if (!(var = ast_variable_browse(cfg, "global")))
212 if (!(tmp = ast_variable_retrieve(cfg,"global","hostname"))) {
213 ast_log(LOG_WARNING,"PostgreSQL server hostname not specified. Assuming unix socket connection\n");
214 tmp = ""; /* connect via UNIX-socket by default */
217 if (!(pghostname = ast_strdup(tmp)))
220 if (!(tmp = ast_variable_retrieve(cfg, "global", "dbname"))) {
221 ast_log(LOG_WARNING,"PostgreSQL database not specified. Assuming asterisk\n");
222 tmp = "asteriskcdrdb";
225 if (!(pgdbname = ast_strdup(tmp)))
228 if (!(tmp = ast_variable_retrieve(cfg, "global", "user"))) {
229 ast_log(LOG_WARNING,"PostgreSQL database user not specified. Assuming asterisk\n");
233 if (!(pgdbuser = ast_strdup(tmp)))
236 if (!(tmp = ast_variable_retrieve(cfg, "global", "password"))) {
237 ast_log(LOG_WARNING,"PostgreSQL database password not specified. Assuming blank\n");
241 if (!(pgpassword = ast_strdup(tmp)))
244 if (!(tmp = ast_variable_retrieve(cfg,"global","port"))) {
245 ast_log(LOG_WARNING,"PostgreSQL database port not specified. Using default 5432.\n");
249 if (!(pgdbport = ast_strdup(tmp)))
252 if (!(tmp = ast_variable_retrieve(cfg, "global", "table"))) {
253 ast_log(LOG_WARNING,"CDR table not specified. Assuming cdr\n");
257 if (!(table = ast_strdup(tmp)))
261 if (ast_strlen_zero(pghostname))
262 ast_log(LOG_DEBUG, "cdr_pgsql: using default unix socket\n");
264 ast_log(LOG_DEBUG, "cdr_pgsql: got hostname of %s\n", pghostname);
265 ast_log(LOG_DEBUG, "cdr_pgsql: got port of %s\n", pgdbport);
266 ast_log(LOG_DEBUG, "cdr_pgsql: got user of %s\n", pgdbuser);
267 ast_log(LOG_DEBUG, "cdr_pgsql: got dbname of %s\n", pgdbname);
268 ast_log(LOG_DEBUG, "cdr_pgsql: got password of %s\n", pgpassword);
269 ast_log(LOG_DEBUG, "cdr_pgsql: got sql table name of %s\n", table);
272 conn = PQsetdbLogin(pghostname, pgdbport, NULL, NULL, pgdbname, pgdbuser, pgpassword);
273 if (PQstatus(conn) != CONNECTION_BAD) {
275 ast_log(LOG_DEBUG, "Successfully connected to PostgreSQL database.\n");
278 pgerror = PQerrorMessage(conn);
279 ast_log(LOG_ERROR, "cdr_pgsql: Unable to connect to database server %s. CALLS WILL NOT BE LOGGED!!\n", pghostname);
280 ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
284 return ast_cdr_register(name, ast_module_info->description, pgsql_log);
287 static int my_load_module(void)
289 struct ast_config *cfg;
292 if (!(cfg = ast_config_load(config))) {
293 ast_log(LOG_WARNING, "Unable to load config for PostgreSQL CDR's: %s\n", config);
294 return AST_MODULE_LOAD_DECLINE;
297 res = process_my_load_module(cfg);
298 ast_config_destroy(cfg);
303 static int load_module(void)
305 return my_load_module();
308 static int unload_module(void)
310 return my_unload_module();
313 static int reload(void)
316 return my_load_module();
319 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "PostgreSQL CDR Backend",
321 .unload = unload_module,