2006-05-20 22:30:05 +00:00
|
|
|
/*
|
|
|
|
* Asterisk -- An open source telephony toolkit.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 - 2005, Digium, Inc.
|
|
|
|
*
|
|
|
|
* Mark Spencer <markster@digium.com>
|
|
|
|
*
|
|
|
|
* See http://www.asterisk.org for more information about
|
|
|
|
* the Asterisk project. Please do not directly contact
|
|
|
|
* any of the maintainers of this project for assistance;
|
|
|
|
* the project provides a web site, mailing lists and IRC
|
|
|
|
* channels for your use.
|
|
|
|
*
|
|
|
|
* This program is free software, distributed under the terms of
|
|
|
|
* the GNU General Public License Version 2. See the LICENSE file
|
|
|
|
* at the top of the source tree.
|
|
|
|
*/
|
|
|
|
|
2010-02-26 08:45:11 +00:00
|
|
|
/*!
|
|
|
|
* \file
|
2006-05-20 22:30:05 +00:00
|
|
|
* \brief RADIUS CDR Support
|
2010-02-26 08:45:11 +00:00
|
|
|
*
|
2006-05-20 22:30:05 +00:00
|
|
|
* \author Philippe Sultan
|
2012-09-21 17:14:59 +00:00
|
|
|
* The Radius Client Library
|
|
|
|
* http://developer.berlios.de/projects/radiusclient-ng/
|
2008-11-20 17:48:58 +00:00
|
|
|
*
|
2006-05-20 22:30:05 +00:00
|
|
|
* \arg See also \ref AstCDR
|
|
|
|
* \ingroup cdr_drivers
|
|
|
|
*/
|
|
|
|
|
2012-10-14 21:46:45 +00:00
|
|
|
/*! \li \ref cdr_radius.c uses the configuration file \ref cdr.conf
|
|
|
|
* \addtogroup configuration_file Configuration Files
|
|
|
|
*/
|
|
|
|
|
2006-05-20 22:30:05 +00:00
|
|
|
/*** MODULEINFO
|
2006-07-05 20:12:29 +00:00
|
|
|
<depend>radius</depend>
|
2011-07-14 20:28:54 +00:00
|
|
|
<support_level>extended</support_level>
|
2006-05-20 22:30:05 +00:00
|
|
|
***/
|
|
|
|
|
2006-06-07 18:54:56 +00:00
|
|
|
#include "asterisk.h"
|
|
|
|
|
git migration: Refactor the ASTERISK_FILE_VERSION macro
Git does not support the ability to replace a token with a version
string during check-in. While it does have support for replacing a
token on clone, this is somewhat sub-optimal: the token is replaced
with the object hash, which is not particularly easy for human
consumption. What's more, in practice, the source file version was often
not terribly useful. Generally, when triaging bugs, the overall version
of Asterisk is far more useful than an individual SVN version of a file. As a
result, this patch removes Asterisk's support for showing source file
versions.
Specifically, it does the following:
* Rename ASTERISK_FILE_VERSION macro to ASTERISK_REGISTER_FILE, and
remove passing the version in with the macro. Other facilities
than 'core show file version' make use of the file names, such as
setting a debug level only on a specific file. As such, the act of
registering source files with the Asterisk core still has use. The
macro rename now reflects the new macro purpose.
* main/asterisk:
- Refactor the file_version structure to reflect that it no longer
tracks a version field.
- Remove the "core show file version" CLI command. Without the file
version, it is no longer useful.
- Remove the ast_file_version_find function. The file version is no
longer tracked.
- Rename ast_register_file_version/ast_unregister_file_version to
ast_register_file/ast_unregister_file, respectively.
* main/manager: Remove value from the Version key of the ModuleCheck
Action. The actual key itself has not been removed, as doing so would
absolutely constitute a backwards incompatible change. However, since
the file version is no longer tracked, there is no need to attempt to
include it in the Version key.
* UPGRADE: Add notes for:
- Modification to the ModuleCheck AMI Action
- Removal of the "core show file version" CLI command
Change-Id: I6cf0ff280e1668bf4957dc21f32a5ff43444a40e
2015-04-11 21:38:22 -05:00
|
|
|
ASTERISK_REGISTER_FILE()
|
2006-06-07 18:54:56 +00:00
|
|
|
|
2014-01-28 23:23:15 +00:00
|
|
|
#ifdef FREERADIUS_CLIENT
|
|
|
|
#include <freeradius-client.h>
|
|
|
|
#else
|
2006-05-20 22:30:05 +00:00
|
|
|
#include <radiusclient-ng.h>
|
2014-01-28 23:23:15 +00:00
|
|
|
#endif
|
2006-05-20 22:30:05 +00:00
|
|
|
|
|
|
|
#include "asterisk/channel.h"
|
|
|
|
#include "asterisk/cdr.h"
|
|
|
|
#include "asterisk/module.h"
|
|
|
|
#include "asterisk/utils.h"
|
|
|
|
|
|
|
|
/*! ISO 8601 standard format */
|
|
|
|
#define DATE_FORMAT "%Y-%m-%d %T %z"
|
|
|
|
|
|
|
|
#define VENDOR_CODE 22736
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PW_AST_ACCT_CODE = 101,
|
|
|
|
PW_AST_SRC = 102,
|
|
|
|
PW_AST_DST = 103,
|
|
|
|
PW_AST_DST_CTX = 104,
|
|
|
|
PW_AST_CLID = 105,
|
|
|
|
PW_AST_CHAN = 106,
|
|
|
|
PW_AST_DST_CHAN = 107,
|
|
|
|
PW_AST_LAST_APP = 108,
|
|
|
|
PW_AST_LAST_DATA = 109,
|
|
|
|
PW_AST_START_TIME = 110,
|
|
|
|
PW_AST_ANSWER_TIME = 111,
|
|
|
|
PW_AST_END_TIME = 112,
|
|
|
|
PW_AST_DURATION = 113,
|
|
|
|
PW_AST_BILL_SEC = 114,
|
|
|
|
PW_AST_DISPOSITION = 115,
|
|
|
|
PW_AST_AMA_FLAGS = 116,
|
|
|
|
PW_AST_UNIQUE_ID = 117,
|
|
|
|
PW_AST_USER_FIELD = 118
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
/*! Log dates and times in UTC */
|
|
|
|
RADIUS_FLAG_USEGMTIME = (1 << 0),
|
|
|
|
/*! Log Unique ID */
|
|
|
|
RADIUS_FLAG_LOGUNIQUEID = (1 << 1),
|
|
|
|
/*! Log User Field */
|
|
|
|
RADIUS_FLAG_LOGUSERFIELD = (1 << 2)
|
|
|
|
};
|
|
|
|
|
2010-02-26 08:45:11 +00:00
|
|
|
static const char desc[] = "RADIUS CDR Backend";
|
|
|
|
static const char name[] = "radius";
|
|
|
|
static const char cdr_config[] = "cdr.conf";
|
2006-05-20 22:30:05 +00:00
|
|
|
|
2014-01-28 23:23:15 +00:00
|
|
|
#ifdef FREERADIUS_CLIENT
|
|
|
|
static char radiuscfg[PATH_MAX] = "/etc/radiusclient/radiusclient.conf";
|
|
|
|
#else
|
2006-06-09 20:40:10 +00:00
|
|
|
static char radiuscfg[PATH_MAX] = "/etc/radiusclient-ng/radiusclient.conf";
|
2014-01-28 23:23:15 +00:00
|
|
|
#endif
|
2006-05-20 22:30:05 +00:00
|
|
|
|
|
|
|
static struct ast_flags global_flags = { RADIUS_FLAG_USEGMTIME | RADIUS_FLAG_LOGUNIQUEID | RADIUS_FLAG_LOGUSERFIELD };
|
|
|
|
|
|
|
|
static rc_handle *rh = NULL;
|
|
|
|
|
2008-08-07 00:52:23 +00:00
|
|
|
static int build_radius_record(VALUE_PAIR **tosend, struct ast_cdr *cdr)
|
2006-05-20 22:30:05 +00:00
|
|
|
{
|
|
|
|
int recordtype = PW_STATUS_STOP;
|
2007-07-18 19:47:20 +00:00
|
|
|
struct ast_tm tm;
|
2006-05-20 22:30:05 +00:00
|
|
|
char timestr[128];
|
|
|
|
char *tmp;
|
|
|
|
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_ACCT_STATUS_TYPE, &recordtype, 0, 0))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Account code */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_ACCT_CODE, &cdr->accountcode, strlen(cdr->accountcode), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Source */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_SRC, &cdr->src, strlen(cdr->src), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Destination */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_DST, &cdr->dst, strlen(cdr->dst), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Destination context */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_DST_CTX, &cdr->dcontext, strlen(cdr->dcontext), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Caller ID */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_CLID, &cdr->clid, strlen(cdr->clid), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Channel */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_CHAN, &cdr->channel, strlen(cdr->channel), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Destination Channel */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_DST_CHAN, &cdr->dstchannel, strlen(cdr->dstchannel), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Last Application */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_LAST_APP, &cdr->lastapp, strlen(cdr->lastapp), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Last Data */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_LAST_DATA, &cdr->lastdata, strlen(cdr->lastdata), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
|
|
/* Start Time */
|
2008-11-20 17:48:58 +00:00
|
|
|
ast_strftime(timestr, sizeof(timestr), DATE_FORMAT,
|
2007-07-18 19:47:20 +00:00
|
|
|
ast_localtime(&cdr->start, &tm,
|
|
|
|
ast_test_flag(&global_flags, RADIUS_FLAG_USEGMTIME) ? "GMT" : NULL));
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_START_TIME, timestr, strlen(timestr), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Answer Time */
|
2008-11-20 17:48:58 +00:00
|
|
|
ast_strftime(timestr, sizeof(timestr), DATE_FORMAT,
|
2007-07-18 19:47:20 +00:00
|
|
|
ast_localtime(&cdr->answer, &tm,
|
|
|
|
ast_test_flag(&global_flags, RADIUS_FLAG_USEGMTIME) ? "GMT" : NULL));
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_ANSWER_TIME, timestr, strlen(timestr), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* End Time */
|
2008-11-20 17:48:58 +00:00
|
|
|
ast_strftime(timestr, sizeof(timestr), DATE_FORMAT,
|
2007-07-18 19:47:20 +00:00
|
|
|
ast_localtime(&cdr->end, &tm,
|
|
|
|
ast_test_flag(&global_flags, RADIUS_FLAG_USEGMTIME) ? "GMT" : NULL));
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_END_TIME, timestr, strlen(timestr), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
2008-11-20 17:48:58 +00:00
|
|
|
/* Duration */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_DURATION, &cdr->duration, 0, VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Billable seconds */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_BILL_SEC, &cdr->billsec, 0, VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Disposition */
|
2013-06-17 03:00:38 +00:00
|
|
|
tmp = ast_strdupa(ast_cdr_disp2str(cdr->disposition));
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_DISPOSITION, tmp, strlen(tmp), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* AMA Flags */
|
2013-06-17 03:00:38 +00:00
|
|
|
tmp = ast_strdupa(ast_channel_amaflags2string(cdr->amaflags));
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_AMA_FLAGS, tmp, strlen(tmp), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (ast_test_flag(&global_flags, RADIUS_FLAG_LOGUNIQUEID)) {
|
|
|
|
/* Unique ID */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_UNIQUE_ID, &cdr->uniqueid, strlen(cdr->uniqueid), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ast_test_flag(&global_flags, RADIUS_FLAG_LOGUSERFIELD)) {
|
|
|
|
/* append the user field */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_AST_USER_FIELD, &cdr->userfield, strlen(cdr->userfield), VENDOR_CODE))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setting Acct-Session-Id & User-Name attributes for proper generation
|
2012-09-21 17:14:59 +00:00
|
|
|
* of Acct-Unique-Session-Id on server side
|
|
|
|
*/
|
2006-05-20 22:30:05 +00:00
|
|
|
/* Channel */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_USER_NAME, &cdr->channel, strlen(cdr->channel), 0))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
2006-05-30 11:23:48 +00:00
|
|
|
|
2006-05-20 22:30:05 +00:00
|
|
|
/* Unique ID */
|
2008-08-07 00:52:23 +00:00
|
|
|
if (!rc_avpair_add(rh, tosend, PW_ACCT_SESSION_ID, &cdr->uniqueid, strlen(cdr->uniqueid), 0))
|
2006-05-20 22:30:05 +00:00
|
|
|
return -1;
|
2006-05-30 11:23:48 +00:00
|
|
|
|
2006-05-20 22:30:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int radius_log(struct ast_cdr *cdr)
|
|
|
|
{
|
|
|
|
int result = ERROR_RC;
|
2008-08-07 00:52:23 +00:00
|
|
|
VALUE_PAIR *tosend = NULL;
|
2006-05-20 22:30:05 +00:00
|
|
|
|
2008-08-07 00:52:23 +00:00
|
|
|
if (build_radius_record(&tosend, cdr)) {
|
2007-06-14 19:39:12 +00:00
|
|
|
ast_debug(1, "Unable to create RADIUS record. CDR not recorded!\n");
|
Merged revisions 186229 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r186229 | russell | 2009-04-02 20:57:44 -0500 (Thu, 02 Apr 2009) | 21 lines
Fix a memory leak in cdr_radius.
I came across this while doing some testing of my ast_channel_ao2 branch.
After running a test overnight that generated over 5 million calls, Asterisk
had taken up about 1 GB of my system memory. So, I re-ran the test with
MALLOC_DEBUG turned on. However, it showed no leaks in Asterisk during the
test, even though Asterisk was still consuming it somehow.
Instead, I turned to valgrind, which when run with --leak-check=full, told
me exactly where the leak came from, which was from allocations inside the
radiusclient-ng library. This explains why MALLOC_DEBUG did not report it.
After a bit of analysis, I found that we were leaking a little bit of memory
every time a CDR record was passed to cdr_radius.
I don't actually have a radius server set up to receive CDR records. However,
I always have my development systems compile and install all modules. In
addition to making sure there are not build errors across modules, always
loading modules helps find bugs like this, too, so it is strongly recommend for
all developers.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@186230 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2009-04-03 02:03:48 +00:00
|
|
|
goto return_cleanup;
|
2006-05-20 22:30:05 +00:00
|
|
|
}
|
2008-11-20 17:48:58 +00:00
|
|
|
|
2008-08-07 00:52:23 +00:00
|
|
|
result = rc_acct(rh, 0, tosend);
|
Merged revisions 186229 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r186229 | russell | 2009-04-02 20:57:44 -0500 (Thu, 02 Apr 2009) | 21 lines
Fix a memory leak in cdr_radius.
I came across this while doing some testing of my ast_channel_ao2 branch.
After running a test overnight that generated over 5 million calls, Asterisk
had taken up about 1 GB of my system memory. So, I re-ran the test with
MALLOC_DEBUG turned on. However, it showed no leaks in Asterisk during the
test, even though Asterisk was still consuming it somehow.
Instead, I turned to valgrind, which when run with --leak-check=full, told
me exactly where the leak came from, which was from allocations inside the
radiusclient-ng library. This explains why MALLOC_DEBUG did not report it.
After a bit of analysis, I found that we were leaking a little bit of memory
every time a CDR record was passed to cdr_radius.
I don't actually have a radius server set up to receive CDR records. However,
I always have my development systems compile and install all modules. In
addition to making sure there are not build errors across modules, always
loading modules helps find bugs like this, too, so it is strongly recommend for
all developers.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@186230 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2009-04-03 02:03:48 +00:00
|
|
|
if (result != OK_RC) {
|
2006-05-20 22:30:05 +00:00
|
|
|
ast_log(LOG_ERROR, "Failed to record Radius CDR record!\n");
|
Merged revisions 186229 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r186229 | russell | 2009-04-02 20:57:44 -0500 (Thu, 02 Apr 2009) | 21 lines
Fix a memory leak in cdr_radius.
I came across this while doing some testing of my ast_channel_ao2 branch.
After running a test overnight that generated over 5 million calls, Asterisk
had taken up about 1 GB of my system memory. So, I re-ran the test with
MALLOC_DEBUG turned on. However, it showed no leaks in Asterisk during the
test, even though Asterisk was still consuming it somehow.
Instead, I turned to valgrind, which when run with --leak-check=full, told
me exactly where the leak came from, which was from allocations inside the
radiusclient-ng library. This explains why MALLOC_DEBUG did not report it.
After a bit of analysis, I found that we were leaking a little bit of memory
every time a CDR record was passed to cdr_radius.
I don't actually have a radius server set up to receive CDR records. However,
I always have my development systems compile and install all modules. In
addition to making sure there are not build errors across modules, always
loading modules helps find bugs like this, too, so it is strongly recommend for
all developers.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@186230 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2009-04-03 02:03:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return_cleanup:
|
|
|
|
if (tosend) {
|
|
|
|
rc_avpair_free(tosend);
|
|
|
|
}
|
2006-05-20 22:30:05 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-08-21 02:11:39 +00:00
|
|
|
static int unload_module(void)
|
2006-05-20 22:30:05 +00:00
|
|
|
{
|
2013-10-27 20:04:17 +00:00
|
|
|
if (ast_cdr_unregister(name)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-06-03 22:15:56 +00:00
|
|
|
if (rh) {
|
|
|
|
rc_destroy(rh);
|
|
|
|
rh = NULL;
|
|
|
|
}
|
2006-05-20 22:30:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-21 02:11:39 +00:00
|
|
|
static int load_module(void)
|
2006-05-20 22:30:05 +00:00
|
|
|
{
|
|
|
|
struct ast_config *cfg;
|
2007-08-16 21:09:46 +00:00
|
|
|
struct ast_flags config_flags = { 0 };
|
2006-09-20 21:14:33 +00:00
|
|
|
const char *tmp;
|
2006-05-20 22:30:05 +00:00
|
|
|
|
2008-11-19 19:25:14 +00:00
|
|
|
if ((cfg = ast_config_load(cdr_config, config_flags)) && cfg != CONFIG_STATUS_FILEINVALID) {
|
2006-05-20 22:30:05 +00:00
|
|
|
ast_set2_flag(&global_flags, ast_true(ast_variable_retrieve(cfg, "radius", "usegmtime")), RADIUS_FLAG_USEGMTIME);
|
|
|
|
ast_set2_flag(&global_flags, ast_true(ast_variable_retrieve(cfg, "radius", "loguniqueid")), RADIUS_FLAG_LOGUNIQUEID);
|
|
|
|
ast_set2_flag(&global_flags, ast_true(ast_variable_retrieve(cfg, "radius", "loguserfield")), RADIUS_FLAG_LOGUSERFIELD);
|
|
|
|
if ((tmp = ast_variable_retrieve(cfg, "radius", "radiuscfg")))
|
|
|
|
ast_copy_string(radiuscfg, tmp, sizeof(radiuscfg));
|
|
|
|
ast_config_destroy(cfg);
|
2008-11-20 17:48:58 +00:00
|
|
|
} else
|
2006-08-31 21:00:20 +00:00
|
|
|
return AST_MODULE_LOAD_DECLINE;
|
2008-11-20 17:48:58 +00:00
|
|
|
|
2011-06-03 22:15:56 +00:00
|
|
|
/*
|
|
|
|
* start logging
|
|
|
|
*
|
|
|
|
* NOTE: Yes this causes a slight memory leak if the module is
|
|
|
|
* unloaded. However, it is better than a crash if cdr_radius
|
|
|
|
* and cel_radius are both loaded.
|
|
|
|
*/
|
|
|
|
tmp = ast_strdup("asterisk");
|
|
|
|
if (tmp) {
|
|
|
|
rc_openlog((char *) tmp);
|
|
|
|
}
|
2006-05-20 22:30:05 +00:00
|
|
|
|
|
|
|
/* read radiusclient-ng config file */
|
|
|
|
if (!(rh = rc_read_config(radiuscfg))) {
|
|
|
|
ast_log(LOG_NOTICE, "Cannot load radiusclient-ng configuration file %s.\n", radiuscfg);
|
2007-05-02 17:24:03 +00:00
|
|
|
return AST_MODULE_LOAD_DECLINE;
|
2006-05-20 22:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* read radiusclient-ng dictionaries */
|
|
|
|
if (rc_read_dictionary(rh, rc_conf_str(rh, "dictionary"))) {
|
|
|
|
ast_log(LOG_NOTICE, "Cannot load radiusclient-ng dictionary file.\n");
|
2011-06-03 22:15:56 +00:00
|
|
|
rc_destroy(rh);
|
|
|
|
rh = NULL;
|
2007-05-02 17:24:03 +00:00
|
|
|
return AST_MODULE_LOAD_DECLINE;
|
2006-05-20 22:30:05 +00:00
|
|
|
}
|
2008-11-20 17:48:58 +00:00
|
|
|
|
2011-06-03 22:15:56 +00:00
|
|
|
if (ast_cdr_register(name, desc, radius_log)) {
|
|
|
|
rc_destroy(rh);
|
|
|
|
rh = NULL;
|
|
|
|
return AST_MODULE_LOAD_DECLINE;
|
|
|
|
} else {
|
|
|
|
return AST_MODULE_LOAD_SUCCESS;
|
|
|
|
}
|
2006-05-20 22:30:05 +00:00
|
|
|
}
|
|
|
|
|
2010-07-20 19:35:02 +00:00
|
|
|
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "RADIUS CDR Backend",
|
2015-05-04 23:57:57 -04:00
|
|
|
.support_level = AST_MODULE_SUPPORT_EXTENDED,
|
|
|
|
.load = load_module,
|
|
|
|
.unload = unload_module,
|
|
|
|
.load_pri = AST_MODPRI_CDR_DRIVER,
|
|
|
|
);
|