Asterisk - The Open Source Telephony Project GIT-master-7e7a603
cdr_odbc.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2003-2005, Digium, Inc.
5 *
6 * Brian K. West <brian@bkw.org>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*!
20 * \file
21 * \brief ODBC CDR Backend
22 *
23 * \author Brian K. West <brian@bkw.org>
24 * http://www.unixodbc.org
25 * \ingroup cdr_drivers
26 */
27
28/*! \li \ref cdr_odbc.c uses the configuration file \ref cdr_odbc.conf
29 * \addtogroup configuration_file Configuration Files
30 */
31
32/*!
33 * \page cdr_odbc.conf cdr_odbc.conf
34 * \verbinclude cdr_odbc.conf.sample
35 */
36
37/*** MODULEINFO
38 <depend>res_odbc</depend>
39 <depend>generic_odbc</depend>
40 <support_level>extended</support_level>
41 ***/
42
43#include "asterisk.h"
44
45#include "asterisk/config.h"
46#include "asterisk/channel.h"
47#include "asterisk/cdr.h"
48#include "asterisk/module.h"
49#include "asterisk/res_odbc.h"
50
51#define DATE_FORMAT "%Y-%m-%d %T"
52
53static const char name[] = "ODBC";
54static const char config_file[] = "cdr_odbc.conf";
55static char *dsn = NULL, *table = NULL;
56
57enum {
61 CONFIG_HRTIME = 1 << 3,
64};
65
66static struct ast_flags config = { 0 };
67
68static SQLHSTMT execute_cb(struct odbc_obj *obj, void *data)
69{
70 struct ast_cdr *cdr = data;
71 SQLRETURN ODBC_res;
72 char sqlcmd[2048] = "", timestr[128], new_columns[120] = "", new_values[7] = "";
73 struct ast_tm tm;
74 SQLHSTMT stmt;
75 int i = 0;
76
78 ast_strftime(timestr, sizeof(timestr), DATE_FORMAT, &tm);
79
81 snprintf(new_columns, sizeof(new_columns), "%s", ",peeraccount,linkedid,sequence");
82 snprintf(new_values, sizeof(new_values), "%s", ",?,?,?");
83 }
84
86 snprintf(sqlcmd,sizeof(sqlcmd),"INSERT INTO %s "
87 "(calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,"
88 "lastdata,duration,billsec,disposition,amaflags,accountcode,uniqueid,userfield%s) "
89 "VALUES ({ts '%s'},?,?,?,?,?,?,?,?,?,?,?,?,?,?,?%s)", table, new_columns, timestr, new_values);
90 } else {
91 snprintf(sqlcmd,sizeof(sqlcmd),"INSERT INTO %s "
92 "(calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,"
93 "duration,billsec,disposition,amaflags,accountcode%s) "
94 "VALUES ({ts '%s'},?,?,?,?,?,?,?,?,?,?,?,?,?%s)", table, new_columns, timestr, new_values);
95 }
96
97 ODBC_res = SQLAllocHandle(SQL_HANDLE_STMT, obj->con, &stmt);
98
99 if ((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO)) {
100 ast_log(LOG_WARNING, "cdr_odbc: Failure in AllocStatement %d\n", ODBC_res);
101 SQLFreeHandle(SQL_HANDLE_STMT, stmt);
102 return NULL;
103 }
104
105 SQLBindParameter(stmt, 1, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->clid), 0, cdr->clid, 0, NULL);
106 SQLBindParameter(stmt, 2, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->src), 0, cdr->src, 0, NULL);
107 SQLBindParameter(stmt, 3, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->dst), 0, cdr->dst, 0, NULL);
108 SQLBindParameter(stmt, 4, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->dcontext), 0, cdr->dcontext, 0, NULL);
109 SQLBindParameter(stmt, 5, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->channel), 0, cdr->channel, 0, NULL);
110 SQLBindParameter(stmt, 6, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->dstchannel), 0, cdr->dstchannel, 0, NULL);
111 SQLBindParameter(stmt, 7, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->lastapp), 0, cdr->lastapp, 0, NULL);
112 SQLBindParameter(stmt, 8, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->lastdata), 0, cdr->lastdata, 0, NULL);
113
115 double hrbillsec = 0.0;
116 double hrduration;
117
118 if (!ast_tvzero(cdr->answer)) {
119 hrbillsec = (double) ast_tvdiff_us(cdr->end, cdr->answer) / 1000000.0;
120 }
121 hrduration = (double) ast_tvdiff_us(cdr->end, cdr->start) / 1000000.0;
122
123 SQLBindParameter(stmt, 9, SQL_PARAM_INPUT, SQL_C_DOUBLE, SQL_FLOAT, 0, 0, &hrduration, 0, NULL);
124 SQLBindParameter(stmt, 10, SQL_PARAM_INPUT, SQL_C_DOUBLE, SQL_FLOAT, 0, 0, &hrbillsec, 0, NULL);
125 } else {
126 SQLBindParameter(stmt, 9, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &cdr->duration, 0, NULL);
127 SQLBindParameter(stmt, 10, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &cdr->billsec, 0, NULL);
128 }
129
131 char *disposition;
132 disposition = ast_strdupa(ast_cdr_disp2str(cdr->disposition));
133 SQLBindParameter(stmt, 11, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, strlen(disposition) + 1, 0, disposition, 0, NULL);
134 } else {
135 SQLBindParameter(stmt, 11, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &cdr->disposition, 0, NULL);
136 }
137 SQLBindParameter(stmt, 12, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &cdr->amaflags, 0, NULL);
138 SQLBindParameter(stmt, 13, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->accountcode), 0, cdr->accountcode, 0, NULL);
139
140 i = 14;
142 SQLBindParameter(stmt, 14, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->uniqueid), 0, cdr->uniqueid, 0, NULL);
143 SQLBindParameter(stmt, 15, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->userfield), 0, cdr->userfield, 0, NULL);
144 i = 16;
145 }
146
148 SQLBindParameter(stmt, i, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->peeraccount), 0, cdr->peeraccount, 0, NULL);
149 SQLBindParameter(stmt, i + 1, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, sizeof(cdr->linkedid), 0, cdr->linkedid, 0, NULL);
150 SQLBindParameter(stmt, i + 2, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &cdr->sequence, 0, NULL);
151 }
152
153 ODBC_res = ast_odbc_execute_sql(obj, stmt, sqlcmd);
154
155 if ((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO)) {
156 ast_log(LOG_WARNING, "cdr_odbc: Error in ExecDirect: %d, query is: %s\n", ODBC_res, sqlcmd);
157 SQLFreeHandle(SQL_HANDLE_STMT, stmt);
158 return NULL;
159 }
160
161 return stmt;
162}
163
164
165static int odbc_log(struct ast_cdr *cdr)
166{
167 struct odbc_obj *obj = ast_odbc_request_obj(dsn, 0);
168 SQLHSTMT stmt;
169
170 if (!obj) {
171 ast_log(LOG_ERROR, "Unable to retrieve database handle. CDR failed.\n");
172 return -1;
173 }
174
175 stmt = ast_odbc_direct_execute(obj, execute_cb, cdr);
176 if (stmt) {
177 SQLLEN rows = 0;
178
179 SQLRowCount(stmt, &rows);
180 SQLFreeHandle(SQL_HANDLE_STMT, stmt);
181
182 if (rows == 0)
183 ast_log(LOG_WARNING, "CDR successfully ran, but inserted 0 rows?\n");
184 } else
185 ast_log(LOG_ERROR, "CDR direct execute failed\n");
187 return 0;
188}
189
191{
192 int res = 0;
193 struct ast_config *cfg;
194 struct ast_variable *var;
195 const char *tmp;
196 struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
197
198 do {
199 cfg = ast_config_load(config_file, config_flags);
200 if (!cfg || cfg == CONFIG_STATUS_FILEINVALID) {
201 ast_log(LOG_WARNING, "cdr_odbc: Unable to load config for ODBC CDR's: %s\n", config_file);
203 break;
204 } else if (cfg == CONFIG_STATUS_FILEUNCHANGED)
205 break;
206
207 var = ast_variable_browse(cfg, "global");
208 if (!var) {
209 /* nothing configured */
210 break;
211 }
212
213 if ((tmp = ast_variable_retrieve(cfg, "global", "dsn")) == NULL) {
214 ast_log(LOG_WARNING, "cdr_odbc: dsn not specified. Assuming asteriskdb\n");
215 tmp = "asteriskdb";
216 }
217 if (dsn)
218 ast_free(dsn);
219 dsn = ast_strdup(tmp);
220 if (dsn == NULL) {
221 res = -1;
222 break;
223 }
224
225 if (((tmp = ast_variable_retrieve(cfg, "global", "dispositionstring"))) && ast_true(tmp))
227 else
229
230 if (((tmp = ast_variable_retrieve(cfg, "global", "loguniqueid"))) && ast_true(tmp)) {
232 ast_debug(1, "cdr_odbc: Logging uniqueid\n");
233 } else {
235 ast_debug(1, "cdr_odbc: Not logging uniqueid\n");
236 }
237
238 if (((tmp = ast_variable_retrieve(cfg, "global", "usegmtime"))) && ast_true(tmp)) {
240 ast_debug(1, "cdr_odbc: Logging in GMT\n");
241 } else {
243 ast_debug(1, "cdr_odbc: Logging in local time\n");
244 }
245
246 if (((tmp = ast_variable_retrieve(cfg, "global", "hrtime"))) && ast_true(tmp)) {
248 ast_debug(1, "cdr_odbc: Logging billsec and duration fields as floats\n");
249 } else {
251 ast_debug(1, "cdr_odbc: Logging billsec and duration fields as integers\n");
252 }
253
254 if ((tmp = ast_variable_retrieve(cfg, "global", "table")) == NULL) {
255 ast_log(LOG_WARNING, "cdr_odbc: table not specified. Assuming cdr\n");
256 tmp = "cdr";
257 }
258 if (table)
261 if (table == NULL) {
262 res = -1;
263 break;
264 }
265
268 if (res) {
269 ast_log(LOG_ERROR, "cdr_odbc: Unable to register ODBC CDR handling\n");
270 } else {
272 }
273 }
274 if (((tmp = ast_variable_retrieve(cfg, "global", "newcdrcolumns"))) && ast_true(tmp)) {
276 ast_debug(1, "cdr_odbc: Add new cdr columns\n");
277 } else {
279 ast_debug(1, "cdr_odbc: Not add new cdr columns\n");
280 }
281 } while (0);
282
283 if (ast_test_flag(&config, CONFIG_REGISTERED) && (!cfg || dsn == NULL || table == NULL)) {
286 } else {
288 }
289
290 if (cfg && cfg != CONFIG_STATUS_FILEUNCHANGED && cfg != CONFIG_STATUS_FILEINVALID) {
292 }
293 return res;
294}
295
296static int load_module(void)
297{
298 return odbc_load_module(0);
299}
300
301static int unload_module(void)
302{
304 return -1;
305 }
306
307 if (dsn) {
308 ast_free(dsn);
309 }
310 if (table) {
312 }
313
314 return 0;
315}
316
317static int reload(void)
318{
319 return odbc_load_module(1);
320}
321
323 .support_level = AST_MODULE_SUPPORT_EXTENDED,
324 .load = load_module,
325 .unload = unload_module,
326 .reload = reload,
327 .load_pri = AST_MODPRI_CDR_DRIVER,
328 .requires = "cdr,res_odbc",
#define var
Definition: ast_expr2f.c:605
Asterisk main include file. File version handling, generic pbx functions.
#define ast_free(a)
Definition: astmm.h:180
#define ast_strdup(str)
A wrapper for strdup()
Definition: astmm.h:241
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#define ast_log
Definition: astobj2.c:42
static int tmp()
Definition: bt_open.c:389
Call Detail Record API.
int ast_cdr_backend_unsuspend(const char *name)
Unsuspend a CDR backend.
Definition: cdr.c:2946
int ast_cdr_unregister(const char *name)
Unregister a CDR handling engine.
Definition: cdr.c:3050
const char * ast_cdr_disp2str(int disposition)
Disposition to a string.
Definition: cdr.c:3492
int ast_cdr_register(const char *name, const char *desc, ast_cdrbe be)
Register a CDR handling engine.
Definition: cdr.c:3005
int ast_cdr_backend_suspend(const char *name)
Suspend a CDR backend temporarily.
Definition: cdr.c:2928
static const char name[]
Definition: cdr_odbc.c:53
@ CONFIG_NEWCDRCOLUMNS
Definition: cdr_odbc.c:63
@ CONFIG_HRTIME
Definition: cdr_odbc.c:61
@ CONFIG_REGISTERED
Definition: cdr_odbc.c:62
@ CONFIG_USEGMTIME
Definition: cdr_odbc.c:59
@ CONFIG_DISPOSITIONSTRING
Definition: cdr_odbc.c:60
@ CONFIG_LOGUNIQUEID
Definition: cdr_odbc.c:58
static int odbc_log(struct ast_cdr *cdr)
Definition: cdr_odbc.c:165
static char * table
Definition: cdr_odbc.c:55
static const char config_file[]
Definition: cdr_odbc.c:54
static int load_module(void)
Definition: cdr_odbc.c:296
static int unload_module(void)
Definition: cdr_odbc.c:301
static int reload(void)
Definition: cdr_odbc.c:317
static struct ast_flags config
Definition: cdr_odbc.c:66
static SQLHSTMT execute_cb(struct odbc_obj *obj, void *data)
Definition: cdr_odbc.c:68
#define DATE_FORMAT
Definition: cdr_odbc.c:51
static int odbc_load_module(int reload)
Definition: cdr_odbc.c:190
General Asterisk PBX channel definitions.
Configuration File Parser.
#define ast_config_load(filename, flags)
Load a config file.
#define CONFIG_STATUS_FILEUNCHANGED
#define CONFIG_STATUS_FILEINVALID
void ast_config_destroy(struct ast_config *cfg)
Destroys a config.
Definition: extconf.c:1289
const char * ast_variable_retrieve(struct ast_config *config, const char *category, const char *variable)
Definition: main/config.c:783
struct ast_variable * ast_variable_browse(const struct ast_config *config, const char *category_name)
Definition: extconf.c:1215
@ CONFIG_FLAG_FILEUNCHANGED
#define ast_debug(level,...)
Log a DEBUG message.
#define LOG_ERROR
#define LOG_WARNING
struct ast_tm * ast_localtime(const struct timeval *timep, struct ast_tm *p_tm, const char *zone)
Timezone-independent version of localtime_r(3).
Definition: localtime.c:1739
int ast_strftime(char *buf, size_t len, const char *format, const struct ast_tm *tm)
Special version of strftime(3) that handles fractions of a second. Takes the same arguments as strfti...
Definition: localtime.c:2524
Asterisk module definitions.
@ AST_MODFLAG_LOAD_ORDER
Definition: module.h:317
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
Definition: module.h:543
@ AST_MODPRI_CDR_DRIVER
Definition: module.h:331
@ AST_MODULE_SUPPORT_EXTENDED
Definition: module.h:122
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
@ AST_MODULE_LOAD_DECLINE
Module has failed to load, may be in an inconsistent state.
Definition: module.h:78
ODBC resource manager.
void ast_odbc_release_obj(struct odbc_obj *obj)
Releases an ODBC object previously allocated by ast_odbc_request_obj()
Definition: res_odbc.c:804
SQLHSTMT ast_odbc_direct_execute(struct odbc_obj *obj, SQLHSTMT(*exec_cb)(struct odbc_obj *obj, void *data), void *data)
Executes an non prepared statement and returns the resulting statement handle.
Definition: res_odbc.c:360
SQLRETURN ast_odbc_execute_sql(struct odbc_obj *obj, SQLHSTMT *stmt, const char *sql)
Execute a unprepared SQL query.
Definition: res_odbc.c:469
#define ast_odbc_request_obj(name, check)
Get a ODBC connection object.
Definition: res_odbc.h:120
#define NULL
Definition: resample.c:96
int attribute_pure ast_true(const char *val)
Make sure something is true. Determine if a string containing a boolean value is "true"....
Definition: utils.c:2199
Responsible for call detail data.
Definition: cdr.h:279
char dstchannel[AST_MAX_EXTENSION]
Definition: cdr.h:291
long int disposition
Definition: cdr.h:307
char lastdata[AST_MAX_EXTENSION]
Definition: cdr.h:295
char linkedid[AST_MAX_UNIQUEID]
Definition: cdr.h:319
char userfield[AST_MAX_USER_FIELD]
Definition: cdr.h:321
long int billsec
Definition: cdr.h:305
struct timeval answer
Definition: cdr.h:299
char channel[AST_MAX_EXTENSION]
Definition: cdr.h:289
char peeraccount[AST_MAX_ACCOUNT_CODE]
Definition: cdr.h:313
long int duration
Definition: cdr.h:303
long int amaflags
Definition: cdr.h:309
char src[AST_MAX_EXTENSION]
Definition: cdr.h:283
char dst[AST_MAX_EXTENSION]
Definition: cdr.h:285
char clid[AST_MAX_EXTENSION]
Definition: cdr.h:281
char uniqueid[AST_MAX_UNIQUEID]
Definition: cdr.h:317
int sequence
Definition: cdr.h:323
struct timeval start
Definition: cdr.h:297
char accountcode[AST_MAX_ACCOUNT_CODE]
Definition: cdr.h:311
char lastapp[AST_MAX_EXTENSION]
Definition: cdr.h:293
char dcontext[AST_MAX_EXTENSION]
Definition: cdr.h:287
struct timeval end
Definition: cdr.h:301
Structure used to handle boolean flags.
Definition: utils.h:199
const char * description
Definition: module.h:352
Structure for variables, used for configurations and for channel variables.
Data source name.
Definition: func_odbc.c:167
ODBC container.
Definition: res_odbc.h:46
SQLHDBC con
Definition: res_odbc.h:47
int64_t ast_tvdiff_us(struct timeval end, struct timeval start)
Computes the difference (in microseconds) between two struct timeval instances.
Definition: time.h:87
int ast_tvzero(const struct timeval t)
Returns true if the argument is 0,0.
Definition: time.h:117
#define ast_test_flag(p, flag)
Definition: utils.h:63
#define ast_clear_flag(p, flag)
Definition: utils.h:77
#define ast_set_flag(p, flag)
Definition: utils.h:70