Skip to content
Snippets Groups Projects
cdr_unixodbc.c 11.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mark Spencer's avatar
    Mark Spencer committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
    /*
     * Asterisk -- A telephony toolkit for Linux.
     *
     * unixODBC CDR Backend
     * 
     * Brian K. West <brian@bkw.org>
     *
     * This program is free software, distributed under the terms of
     * the GNU General Public License.
     *
     */
    
    #include <sys/types.h>
    #include <asterisk/config.h>
    #include <asterisk/options.h>
    #include <asterisk/channel.h>
    #include <asterisk/cdr.h>
    #include <asterisk/module.h>
    #include <asterisk/logger.h>
    #include "../asterisk.h"
    
    #include <stdio.h>
    #include <string.h>
    
    #include <stdlib.h>
    #include <unistd.h>
    #include <time.h>
    
    #include <sql.h>
    #include <sqlext.h>
    #include <sqltypes.h>
    
    #define DATE_FORMAT "%Y-%m-%d %T"
    
    static char *desc = "unixODBC CDR Backend";
    static char *name = "unixODBC";
    static char *config = "cdr_unixodbc.conf";
    static char *dsn = NULL, *username = NULL, *password = NULL, *loguniqueid = NULL;
    static int dsn_alloc = 0, username_alloc = 0, password_alloc = 0;
    static int connected = 0;
    
    static ast_mutex_t unixodbc_lock = AST_MUTEX_INITIALIZER;
    
    extern int unixodbc_do_query(char *sqlcmd);
    extern int unixodbc_init(void);
    
    static SQLHENV	ODBC_env = SQL_NULL_HANDLE;	/* global ODBC Environment */
    static int 	ODBC_res;			/* global ODBC Result of Functions */
    static SQLHDBC	ODBC_con;			/* global ODBC Connection Handle */
    static SQLHSTMT	ODBC_stmt;			/* global ODBC Statement Handle */
    
    static int unixodbc_log(struct ast_cdr *cdr)
    {
    	int res;
    	/*
            long int ODBC_err, ODBC_id;
            short int ODBC_mlen;
            char ODBC_msg[200], ODBC_buffer[200], ODBC_stat[10];
    	*/
    	struct tm tm;
    	struct timeval tv;
    	time_t t;
    	char sqlcmd[2048], timestr[128];
    	
    	ast_mutex_lock(&unixodbc_lock);
    
    	gettimeofday(&tv,NULL);
    	t = tv.tv_sec;
    	localtime_r(&t,&tm);
    	strftime(timestr,128,DATE_FORMAT,&tm);
    
    	memset(sqlcmd,0,2048);
    
    	if((strcmp(loguniqueid, "1") == 0) || (strcmp(loguniqueid, "yes") == 0))
    	{
    		sprintf(sqlcmd,"INSERT INTO cdr (calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,duration,billsec,disposition,amaflags,accountcode,uniqueid) VALUES ('%s','%s','%s','%s','%s', '%s','%s','%s','%s',%i,%i,%i,%i,'%s','%s')", timestr, cdr->clid, cdr->src, cdr->dst, cdr->dcontext, cdr->channel, cdr->dstchannel, cdr->lastapp, cdr->lastdata, cdr->duration, cdr->billsec, cdr->disposition, cdr->amaflags, cdr->accountcode, cdr->uniqueid);
    	}
    	else
    	{
    		sprintf(sqlcmd,"INSERT INTO cdr (calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,duration,billsec,disposition,amaflags,accountcode) VALUES ('%s','%s','%s','%s','%s', '%s','%s','%s','%s',%i,%i,%i,%i,'%s')", timestr, cdr->clid, cdr->src, cdr->dst, cdr->dcontext, cdr->channel, cdr->dstchannel, cdr->lastapp, cdr->lastdata, cdr->duration, cdr->billsec, cdr->disposition, cdr->amaflags, cdr->accountcode);
    	}
    
    	if(connected)
    	{
    		res = unixodbc_do_query(sqlcmd);
    		if(res < 0)
    		{
    			if(option_verbose > 3)		
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Query FAILED Call not logged!\n");
    			res = unixodbc_init();
    			if(option_verbose > 3)
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Reconnecting to dsn %s\n", dsn);
    			if(res < 0)
    			{
    				if(option_verbose > 3)
    					ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: %s has gone away!\n", dsn);
    				connected = 0;
    			}
    			else
    			{
    				if(option_verbose > 3)
    					ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Trying Query again!\n");
    				res = unixodbc_do_query(sqlcmd);
    				if(res < 0)
    				{
    					if(option_verbose > 3)
    						ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Query FAILED Call not logged!\n");
    				}
    			}
    		}
    	}
    	else
    	{
    		if(option_verbose > 3)
    			 ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Reconnecting to dsn %s\n", dsn);
    		res = unixodbc_init();
    		if(res < 0)
    		{
    			if(option_verbose > 3)
    			{
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: %s has gone away!\n", dsn);
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Call not logged!\n");
    			}
    		}
    		else
    		{
    			if(option_verbose > 3)
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Trying Query again!\n");
    			res = unixodbc_do_query(sqlcmd);
    			if(res < 0)
    			{
    				if(option_verbose > 3)
    					ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Query FAILED Call not logged!\n");
    			}
    		}
    	}
    	ast_mutex_unlock(&unixodbc_lock);
    	return 0;
    }
    
    char *description(void)
    {
    	return desc;
    }
    
    static int unixodbc_unload_module(void)
    {
    	if (connected)
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Disconnecting from %s\n", dsn);
    		SQLFreeHandle(SQL_HANDLE_STMT, ODBC_stmt);
    		SQLDisconnect(ODBC_con);
    		SQLFreeHandle(SQL_HANDLE_DBC, ODBC_con);
    		SQLFreeHandle(SQL_HANDLE_ENV, ODBC_env);
    		connected = 0;
    	}
    	if (dsn && dsn_alloc)
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: free dsn\n");
    		free(dsn);
    		dsn = NULL;
    		dsn_alloc = 0;
    	}
    	if (username && username_alloc)
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: free username\n");
    		free(username);
    		username = NULL;
    		username_alloc = 0;
    	}
    	if (password && password_alloc)
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: free password\n");
    		free(password);
    		password = NULL;
    		password_alloc = 0;
    	}
    	ast_cdr_unregister(name);
    	return 0;
    }
    
    static int unixodbc_load_module(void)
    {
    	int res;
    	struct ast_config *cfg;
    	struct ast_variable *var;
    	char *tmp;
    
    	cfg = ast_load(config);
    	if (!cfg)
    	{
    		ast_log(LOG_WARNING, "cdr_unixodbc: Unable to load config for unixODBC CDR's: %s\n", config);
    		return 0;
    	}
    	
    	var = ast_variable_browse(cfg, "global");
    	if (!var) {
    		/* nothing configured */
    		return 0;
    	}
    
    	tmp = ast_variable_retrieve(cfg,"global","dsn");
    	if (tmp)
    	{
    		dsn = malloc(strlen(tmp) + 1);
    		if (dsn != NULL)
    		{
    			dsn_alloc = 1;
    			strcpy(dsn,tmp);
    		}
    		else
    		{
    			ast_log(LOG_ERROR,"cdr_unixodbc: Out of memory error.\n");
    			return -1;
    		}
    	}
    	else
    	{
    		ast_log(LOG_WARNING,"cdr_unixodbc: dsn not specified.  Assuming asteriskdb\n");
    		dsn = "asteriskdb";
    	}
    
    	tmp = ast_variable_retrieve(cfg,"global","username");
    	if (tmp)
    	{
    		username = malloc(strlen(tmp) + 1);
    		if (username != NULL)
    		{
    			username_alloc = 1;
    			strcpy(username,tmp);
    		}
    		else
    		{
    			ast_log(LOG_ERROR,"cdr_unixodbc: Out of memory error.\n");
    			return -1;
    		}
    	}
    	else
    	{
    		ast_log(LOG_WARNING,"cdr_unixodbc: username not specified.  Assuming root\n");
    		username = "root";
    	}
    
    	tmp = ast_variable_retrieve(cfg,"global","password");
    	if (tmp)
    	{
    		password = malloc(strlen(tmp) + 1);
    		if (password != NULL)
    		{
    			password_alloc = 1;
    			strcpy(password,tmp);
    		}
    		else
    		{
    			ast_log(LOG_ERROR,"cdr_unixodbc: Out of memory error.\n");
    			return -1;
    		}
    	}
    	else
    	{
    		ast_log(LOG_WARNING,"cdr_unixodbc: database password not specified.  Assuming blank\n");
    		password = "";
    	}
    
    	tmp = ast_variable_retrieve(cfg,"global","loguniqueid");
    	if (tmp)
    	{
    		loguniqueid = malloc(strlen(tmp) + 1);
    		if (loguniqueid != NULL)
    		{
    			strcpy(loguniqueid,tmp);
    			ast_log(LOG_WARNING,"cdr_unixodbc: Logging uniqueid\n");
    		}
    		else
    		{
    			ast_log(LOG_ERROR,"cdr_unixodbc: Not logging uniqueid\n");
    		}
    	}
    	else
    	{
    		ast_log(LOG_WARNING,"cdr_unixodbc: Not logging uniqueid\n");
    		loguniqueid = NULL;
    	}
    
    	ast_destroy(cfg);
    	if(option_verbose > 3)
    	{
    		ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: dsn is %s\n",dsn);
    		ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: username is %s\n",username);
    		ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: password is [secret]\n");
    
    	}
    	
    	res = unixodbc_init();
    	if(res < 0)
    	{
    		ast_log(LOG_ERROR, "cdr_unixodbc: Unable to connect to datasource: %s\n", dsn);
    		ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Unable to connect to datasource: %s\n", dsn);
    	}
    
    	res = ast_cdr_register(name, desc, unixodbc_log);
    	if (res)
    	{
    		ast_log(LOG_ERROR, "cdr_unixodbc: Unable to register unixODBC CDR handling\n");
    	}
    	return res;
    }
    
    int unixodbc_do_query(char *sqlcmd)
    {
            long int ODBC_err;
            short int ODBC_mlen;
            char ODBC_msg[200], ODBC_stat[10];
    
    	ODBC_res = SQLAllocHandle(SQL_HANDLE_STMT, ODBC_con, &ODBC_stmt);
    
    	if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Failure in AllocStatement %d\n", ODBC_res);
    		SQLGetDiagRec(SQL_HANDLE_DBC, ODBC_con, 1, ODBC_stat, &ODBC_err, ODBC_msg, 100, &ODBC_mlen);
    		SQLFreeHandle(SQL_HANDLE_STMT, ODBC_stmt);	
    		connected = 0;
    		return -1;
    	}
    
    	ODBC_res = SQLPrepare(ODBC_stmt, sqlcmd, SQL_NTS);
    
    	if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Error in PREPARE %d\n", ODBC_res);
    		SQLGetDiagRec(SQL_HANDLE_DBC, ODBC_con, 1, ODBC_stat, &ODBC_err, ODBC_msg, 100, &ODBC_mlen);
    		SQLFreeHandle(SQL_HANDLE_STMT, ODBC_stmt);
    		return -1;
    	}
    
    	ODBC_res = SQLExecute(ODBC_stmt);
    
    	if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Error in Query %d\n", ODBC_res);
    		SQLGetDiagRec(SQL_HANDLE_DBC, ODBC_con, 1, ODBC_stat, &ODBC_err, ODBC_msg, 100, &ODBC_mlen);
    		SQLFreeHandle(SQL_HANDLE_STMT, ODBC_stmt);
    		connected = 0;
    		return -1;
    	}
    	else
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Query Successful!\n");
    		connected = 1;
    	}
    	return 0;
    }
    
    int unixodbc_init()
    {
    	long int ODBC_err;
    	short int ODBC_mlen;
    	char ODBC_msg[200], ODBC_stat[10];
    
    	if ( ODBC_env == SQL_NULL_HANDLE || connected == 0)
    	{
    		ODBC_res = SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &ODBC_env);
    
    		if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    		{
    			if(option_verbose > 3)
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Error AllocHandle\n");
    			connected = 0;
    			return -1;
    		}
    
    		ODBC_res = SQLSetEnvAttr(ODBC_env, SQL_ATTR_ODBC_VERSION, (void*)SQL_OV_ODBC3, 0);
    
    		if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    		{
    			if(option_verbose > 3)
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Error SetEnv\n");
    			SQLFreeHandle(SQL_HANDLE_ENV, ODBC_env);
    			connected = 0;
    			return -1;
    		}
    
    		ODBC_res = SQLAllocHandle(SQL_HANDLE_DBC, ODBC_env, &ODBC_con);
    
    		if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    		{
    			if(option_verbose > 3)
    				ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Error AllocHDB %d\n", ODBC_res);
    			SQLFreeHandle(SQL_HANDLE_ENV, ODBC_env);
    			connected = 0;
    			return -1;
    		}
    
    		SQLSetConnectAttr(ODBC_con, SQL_LOGIN_TIMEOUT, (SQLPOINTER *)10, 0);	
    	}
    
    	ODBC_res = SQLConnect(ODBC_con, (SQLCHAR*)dsn, SQL_NTS, (SQLCHAR*)username, SQL_NTS, (SQLCHAR*)password, SQL_NTS);
    
    	if((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO))
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Error SQLConnect %d\n", ODBC_res);
    		SQLGetDiagRec(SQL_HANDLE_DBC, ODBC_con, 1, ODBC_stat, &ODBC_err, ODBC_msg, 100, &ODBC_mlen);
    		SQLFreeHandle(SQL_HANDLE_ENV, ODBC_env);
    		connected = 0;
    		return -1;
    	}
    	else
    	{
    		if(option_verbose > 3)
    			ast_verbose( VERBOSE_PREFIX_4 "cdr_unixodbc: Connected to %s\n", dsn);
    		connected = 1;
    	}
    
    	return 0;
    }
    
    int load_module(void)
    {
    	return unixodbc_load_module();
    }
    
    int unload_module(void)
    {
    	return unixodbc_unload_module();
    }
    
    int reload(void)
    {
    	unixodbc_unload_module();
    	return unixodbc_load_module();
    }
    
    int usecount(void)
    {
    	return connected;
    }
    
    char *key()
    {
    	return ASTERISK_GPL_KEY;
    }