2 * Asterisk -- A telephony toolkit for Linux.
4 * PostgreSQL CDR logger
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 * This program is free software, distributed under the terms of
13 * the GNU General Public License.
17 #include <sys/types.h>
18 #include <asterisk/config.h>
19 #include <asterisk/options.h>
20 #include <asterisk/channel.h>
21 #include <asterisk/cdr.h>
22 #include <asterisk/module.h>
23 #include <asterisk/logger.h>
24 #include "../asterisk.h"
35 #define DATE_FORMAT "%Y-%m-%d %T"
37 static char *desc = "PostgreSQL CDR Backend";
38 static char *name = "pgsql";
39 static char *config = "cdr_pgsql.conf";
40 static char *pghostname = NULL, *pgdbname = NULL, *pgdbuser = NULL, *pgpassword = NULL, *pgdbsock = NULL, *pgdbport = NULL;
41 static int hostname_alloc = 0, dbname_alloc = 0, dbuser_alloc = 0, password_alloc = 0, dbsock_alloc = 0, dbport_alloc = 0;
42 static int connected = 0;
44 AST_MUTEX_DEFINE_STATIC(pgsql_lock);
49 static int pgsql_log(struct ast_cdr *cdr)
52 char sqlcmd[2048] = "", timestr[128];
55 ast_mutex_lock(&pgsql_lock);
57 localtime_r(&cdr->start.tv_sec,&tm);
58 strftime(timestr, sizeof(timestr), DATE_FORMAT, &tm);
60 if ((!connected) && pghostname && pgdbuser && pgpassword && pgdbname) {
61 conn = PQsetdbLogin(pghostname, pgdbport, NULL, NULL, pgdbname, pgdbuser, pgpassword);
62 if (PQstatus(conn) != CONNECTION_BAD) {
65 pgerror = PQerrorMessage(conn);
66 ast_log(LOG_ERROR, "cdr_pgsql: Unable to connect to database server %s. Calls will not be logged!\n", pghostname);
67 ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
72 char *clid=NULL, *dcontext=NULL, *channel=NULL, *dstchannel=NULL, *lastapp=NULL, *lastdata=NULL;
73 char *uniqueid=NULL, *userfield=NULL;
75 /* Maximum space needed would be if all characters needed to be escaped, plus a trailing NULL */
76 if ((clid = alloca(strlen(cdr->clid) * 2 + 1)) != NULL)
77 PQescapeString(clid, cdr->clid, strlen(cdr->clid));
78 if ((dcontext = alloca(strlen(cdr->dcontext) * 2 + 1)) != NULL)
79 PQescapeString(dcontext, cdr->dcontext, strlen(cdr->dcontext));
80 if ((channel = alloca(strlen(cdr->channel) * 2 + 1)) != NULL)
81 PQescapeString(channel, cdr->channel, strlen(cdr->channel));
82 if ((dstchannel = alloca(strlen(cdr->dstchannel) * 2 + 1)) != NULL)
83 PQescapeString(dstchannel, cdr->dstchannel, strlen(cdr->dstchannel));
84 if ((lastapp = alloca(strlen(cdr->lastapp) * 2 + 1)) != NULL)
85 PQescapeString(lastapp, cdr->lastapp, strlen(cdr->lastapp));
86 if ((lastdata = alloca(strlen(cdr->lastdata) * 2 + 1)) != NULL)
87 PQescapeString(lastdata, cdr->lastdata, strlen(cdr->lastdata));
88 if ((uniqueid = alloca(strlen(cdr->uniqueid) * 2 + 1)) != NULL)
89 PQescapeString(uniqueid, cdr->uniqueid, strlen(cdr->uniqueid));
90 if ((userfield = alloca(strlen(cdr->userfield) * 2 + 1)) != NULL)
91 PQescapeString(userfield, cdr->userfield, strlen(cdr->userfield));
93 /* Check for all alloca failures above at once */
94 if ((!clid) || (!dcontext) || (!channel) || (!dstchannel) || (!lastapp) || (!lastdata) || (!uniqueid) || (!userfield)) {
95 ast_log(LOG_ERROR, "cdr_pgsql: Out of memory error (insert fails)\n");
96 ast_mutex_unlock(&pgsql_lock);
100 ast_log(LOG_DEBUG,"cdr_pgsql: inserting a CDR record.\n");
102 snprintf(sqlcmd,sizeof(sqlcmd),"INSERT INTO cdr (calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,duration,billsec,disposition,amaflags,accountcode,uniqueid,userfield) VALUES ('%s','%s','%s','%s','%s', '%s','%s','%s','%s',%i,%i,'%s',%i,'%s','%s','%s')",timestr,clid,cdr->src, cdr->dst, dcontext,channel, dstchannel, lastapp, lastdata,cdr->duration,cdr->billsec,ast_cdr_disp2str(cdr->disposition),cdr->amaflags, cdr->accountcode, uniqueid, userfield);
103 ast_log(LOG_DEBUG,"cdr_pgsql: SQL command executed: %s\n",sqlcmd);
105 /* Test to be sure we're still connected... */
106 /* If we're connected, and connection is working, good. */
107 /* Otherwise, attempt reconnect. If it fails... sorry... */
108 if (PQstatus(conn) == CONNECTION_OK) {
111 ast_log(LOG_ERROR, "cdr_pgsql: Connection was lost... attempting to reconnect.\n");
113 if (PQstatus(conn) == CONNECTION_OK) {
114 ast_log(LOG_ERROR, "cdr_pgsql: Connection reestablished.\n");
117 pgerror = PQerrorMessage(conn);
118 ast_log(LOG_ERROR, "cdr_pgsql: Unable to reconnect to database server %s. Calls will not be logged!\n", pghostname);
119 ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
121 ast_mutex_unlock(&pgsql_lock);
125 result = PQexec(conn, sqlcmd);
126 if ( PQresultStatus(result) != PGRES_COMMAND_OK) {
127 pgerror = PQresultErrorMessage(result);
128 ast_log(LOG_ERROR,"cdr_pgsql: Failed to insert call detail record into database!\n");
129 ast_log(LOG_ERROR,"cdr_pgsql: Reason: %s\n", pgerror);
130 ast_mutex_unlock(&pgsql_lock);
134 ast_mutex_unlock(&pgsql_lock);
138 char *description(void)
143 static int my_unload_module(void)
149 if (pghostname && hostname_alloc) {
154 if (pgdbname && dbname_alloc) {
159 if (pgdbuser && dbuser_alloc) {
164 if (pgdbsock && dbsock_alloc) {
169 if (pgpassword && password_alloc) {
174 if (pgdbport && dbport_alloc) {
179 ast_cdr_unregister(name);
183 static int process_my_load_module(struct ast_config *cfg)
186 struct ast_variable *var;
190 var = ast_variable_browse(cfg, "global");
192 /* nothing configured */
196 tmp = ast_variable_retrieve(cfg,"global","hostname");
198 pghostname = malloc(strlen(tmp) + 1);
199 if (pghostname != NULL) {
200 memset(pghostname, 0, strlen(tmp) + 1);
202 strncpy(pghostname, tmp, strlen(tmp));
204 ast_log(LOG_ERROR,"Out of memory error.\n");
208 ast_log(LOG_WARNING,"PostgreSQL server hostname not specified. Assuming localhost\n");
209 pghostname = "localhost";
212 tmp = ast_variable_retrieve(cfg,"global","dbname");
214 pgdbname = malloc(strlen(tmp) + 1);
215 if (pgdbname != NULL) {
216 memset(pgdbname, 0, strlen(tmp) + 1);
218 strncpy(pgdbname, tmp, strlen(tmp));
220 ast_log(LOG_ERROR,"Out of memory error.\n");
224 ast_log(LOG_WARNING,"PostgreSQL database not specified. Assuming asterisk\n");
225 pgdbname = "asteriskcdrdb";
228 tmp = ast_variable_retrieve(cfg,"global","user");
230 pgdbuser = malloc(strlen(tmp) + 1);
231 if (pgdbuser != NULL) {
232 memset(pgdbuser, 0, strlen(tmp) + 1);
234 strncpy(pgdbuser, tmp, strlen(tmp));
236 ast_log(LOG_ERROR,"Out of memory error.\n");
240 ast_log(LOG_WARNING,"PostgreSQL database user not specified. Assuming root\n");
244 tmp = ast_variable_retrieve(cfg,"global","password");
246 pgpassword = malloc(strlen(tmp) + 1);
247 if (pgpassword != NULL) {
248 memset(pgpassword, 0, strlen(tmp) + 1);
250 strncpy(pgpassword, tmp, strlen(tmp));
252 ast_log(LOG_ERROR,"Out of memory error.\n");
256 ast_log(LOG_WARNING,"PostgreSQL database password not specified. Assuming blank\n");
260 tmp = ast_variable_retrieve(cfg,"global","port");
262 pgdbport = malloc(strlen(tmp) + 1);
263 if (pgdbport != NULL) {
264 memset(pgdbport, 0, strlen(tmp) + 1);
266 strncpy(pgdbport, tmp, strlen(tmp));
268 ast_log(LOG_ERROR,"Out of memory error.\n");
272 ast_log(LOG_WARNING,"PostgreSQL database port not specified. Using default 5432.\n");
276 ast_log(LOG_DEBUG,"cdr_pgsql: got hostname of %s\n",pghostname);
277 ast_log(LOG_DEBUG,"cdr_pgsql: got port of %s\n",pgdbport);
279 ast_log(LOG_DEBUG,"cdr_pgsql: got sock file of %s\n",pgdbsock);
280 ast_log(LOG_DEBUG,"cdr_pgsql: got user of %s\n",pgdbuser);
281 ast_log(LOG_DEBUG,"cdr_pgsql: got dbname of %s\n",pgdbname);
282 ast_log(LOG_DEBUG,"cdr_pgsql: got password of %s\n",pgpassword);
284 conn = PQsetdbLogin(pghostname, pgdbport, NULL, NULL, pgdbname, pgdbuser, pgpassword);
285 if (PQstatus(conn) != CONNECTION_BAD) {
286 ast_log(LOG_DEBUG,"Successfully connected to PostgreSQL database.\n");
289 pgerror = PQerrorMessage(conn);
290 ast_log(LOG_ERROR, "cdr_pgsql: Unable to connect to database server %s. Calls will not be logged!\n", pghostname);
291 ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
295 res = ast_cdr_register(name, desc, pgsql_log);
297 ast_log(LOG_ERROR, "Unable to register PGSQL CDR handling\n");
302 static int my_load_module(void)
304 struct ast_config *cfg;
306 cfg = ast_load(config);
308 ast_log(LOG_WARNING, "Unable to load config for PostgreSQL CDR's: %s\n", config);
311 res = process_my_load_module(cfg);
316 int load_module(void)
318 return my_load_module();
321 int unload_module(void)
323 return my_unload_module();
329 return my_load_module();
339 return ASTERISK_GPL_KEY;