2011-11-25 17:26:46 +08:00

2508 lines
83 KiB
C

/*
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
* Copyright (C) 2005-2009, Anthony Minessale II <anthm@freeswitch.org>
*
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
*
* The Initial Developer of the Original Code is
* Anthony Minessale II <anthm@freeswitch.org>
* Portions created by the Initial Developer are Copyright (C)
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Di-Shi Sun <di-shi@transnexus.com>
*
* mod_osp.c -- Open Settlement Protocol (OSP) Module
*
*/
#include <switch.h>
#include <osp/osp.h>
#include <osp/ospb64.h>
#include <osp/osptrans.h>
/* OSP Buffer Size Constants */
#define OSP_SIZE_NORSTR 256 /* OSP normal string buffer size */
#define OSP_SIZE_KEYSTR 1024 /* OSP certificate string buffer size */
#define OSP_SIZE_ROUSTR 2048 /* OSP route buffer size */
#define OSP_SIZE_TOKSTR 4096 /* OSP token string buffer size */
/* OSP Settings Constants */
#define OSP_MAX_SP 8 /* Max number of OSP service points */
#define OSP_AUDIT_URL "localhost" /* OSP default Audit URL */
#define OSP_LOCAL_VALID 1 /* OSP token validating method, locally */
#define OSP_DEF_LIFETIME 300 /* OSP default SSL lifetime */
#define OSP_DEF_MAXCONN 20 /* OSP default max connections */
#define OSP_MIN_MAXCONN 1 /* OSP min max connections */
#define OSP_MAX_MAXCONN 1000 /* OSP max max connections */
#define OSP_DEF_PERSIST 60 /* OSP default HTTP persistence in seconds */
#define OSP_DEF_RETRYDELAY 0 /* OSP default retry delay in seconds */
#define OSP_MIN_RETRYDELAY 0 /* OSP min retry delay */
#define OSP_MAX_RETRYDELAY 10 /* OSP max retry delay */
#define OSP_DEF_RETRYLIMIT 2 /* OSP default retry times */
#define OSP_MIN_RETRYLIMIT 0 /* OSP min retry times */
#define OSP_MAX_RETRYLIMIT 100 /* OSP max retry times */
#define OSP_DEF_TIMEOUT 10000 /* OSP default timeout in ms */
#define OSP_MIN_TIMEOUT 200 /* OSP min timeout in ms */
#define OSP_MAX_TIMEOUT 60000 /* OSP max timeout in ms */
#define OSP_CUSTOMER_ID "" /* OSP customer ID */
#define OSP_DEVICE_ID "" /* OSP device ID */
#define OSP_DEF_MAXDEST 5 /* OSP default max destinations */
#define OSP_MIN_MAXDEST 1 /* OSP min max destinations */
#define OSP_MAX_MAXDEST 12 /* OSP max max destinations */
#define OSP_DEF_PROFILE "default" /* OSP default profile name */
#define OSP_DEF_STRING "" /* OSP default empty string */
#define OSP_DEF_CALLID "UNDEFINED" /* OSP default Call-ID */
#define OSP_DEF_STATS -1 /* OSP default statistics */
#define OSP_URI_DELIM '@' /* URI delimit */
#define OSP_USER_DELIM ";:" /* URI userinfo delimit */
#define OSP_HOST_DELIM ";>" /* URI hostport delimit */
#define OSP_MAX_CINFO 8 /* Max number of custom info */
/* OSP Handle Constant */
#define OSP_INVALID_HANDLE -1 /* Invalid OSP handle, provider, transaction etc. */
/* OSP Supported Signaling Protocols for Default Protocol */
#define OSP_PROTOCOL_SIP "sip" /* SIP protocol name */
#define OSP_PROTOCOL_H323 "h323" /* H.323 protocol name */
#define OSP_PROTOCOL_IAX "iax" /* IAX protocol name */
#define OSP_PROTOCOL_SKYPE "skype" /* Skype protocol name */
#define OSP_PROTOCOL_UNKNO "unknown" /* Unknown protocol */
#define OSP_PROTOCOL_UNDEF "undefined" /* Undefined protocol */
#define OSP_PROTOCOL_UNSUP "unsupported" /* Unsupported protocol */
/* OSP Supported Signaling Protocols for Signaling Protocol Usage */
#define OSP_MODULE_SIP "mod_sofia" /* FreeSWITCH SIP module name */
#define OSP_MODULE_H323 "mod_h323" /* FreeSWITCH H.323 module name */
#define OSP_MODULE_IAX "mod_iax" /* FreeSWITCH IAX module name */
#define OSP_MODULE_SKYPE "mod_skypopen" /* FreeSWITCH Skype module name */
/* OSP Variables Name */
#define OSP_VAR_PROFILE "osp_profile" /* Profile name, in cookie */
#define OSP_VAR_TRANSID "osp_transaction_id" /* Transaction ID, in cookie */
#define OSP_VAR_CALLING "osp_calling" /* Original calling number, in cookie */
#define OSP_VAR_CALLED "osp_called" /* Original called number, in cookie */
#define OSP_VAR_START "osp_start_time" /* Inbound Call start time, in cookie */
#define OSP_VAR_SRCDEV "osp_source_device" /* Source device IP, in cookie or inbound (actual source device)*/
#define OSP_VAR_SRCNID "osp_source_nid" /* Source network ID, inbound and in cookie */
#define OSP_VAR_DESTTOTAL "osp_destination_total" /* Total number of destinations in AuthRsp, in cookie */
#define OSP_VAR_DESTCOUNT "osp_destination_count" /* Destination count, in cookie */
#define OSP_VAR_DESTIP "osp_destination_ip" /* Destination IP, in cookie */
#define OSP_VAR_DESTNID "osp_destination_nid" /* Destination network ID, in cookie */
#define OSP_VAR_CUSTOMINFO "osp_custom_info_" /* Custom info */
#define OSP_VAR_DNIDUSERPARAM "osp_networkid_userparam" /* Destination network ID user parameter name */
#define OSP_VAR_DNIDURIPARAM "osp_networkid_uriparam" /* Destination network ID URI parameter name */
#define OSP_VAR_USERPHONE "osp_user_phone" /* If to add "user=phone" */
#define OSP_VAR_OUTPROXY "osp_outbound_proxy" /* Outbound proxy */
#define OSP_VAR_AUTHSTATUS "osp_authreq_status" /* AuthReq Status */
#define OSP_VAR_ROUTECOUNT "osp_route_count" /* Number of destinations */
#define OSP_VAR_ROUTEPRE "osp_route_" /* Destination prefix */
#define OSP_VAR_AUTOROUTE "osp_auto_route" /* Bridge route string */
/* OSP Use Variable Name */
#define OSP_FS_FROMUSER "sip_from_user" /* Inbound SIP From user */
#define OSP_FS_TOHOST "sip_to_host" /* Inbound SIP To host */
#define OSP_FS_TOPORT "sip_to_port" /* Inbound SIP To port */
#define OSP_FS_RPID "sip_Remote-Party-ID" /* Inbound SIP Remote-Party-ID header */
#define OSP_FS_PAI "sip_P-Asserted-Identity" /* Inbound SIP P-Asserted-Identity header */
#define OSP_FS_DIV "sip_h_Diversion" /* Inbound SIP Diversion header */
#define OSP_FS_PCI "sip_h_P-Charge-Info" /* Inbound SIP P-Charge-Info header */
#define OSP_FS_OUTCALLID "sip_call_id" /* Outbound SIP Call-ID */
#define OSP_FS_OUTCALLING "origination_caller_id_number" /* Outbound calling number */
#define OSP_FS_SIPRELEASE "sip_hangup_disposition" /* SIP release source */
#define OSP_FS_SRCCODEC "write_codec" /* Source codec */
#define OSP_FS_DESTCODEC "read_codec" /* Destiantion codec */
#define OSP_FS_RTPSRCREPOCTS "rtp_audio_out_media_bytes" /* Source->reporter octets */
#define OSP_FS_RTPDESTREPOCTS "rtp_audio_in_media_bytes" /* Destination->reporter octets */
#define OSP_FS_RTPSRCREPPKTS "rtp_audio_out_media_packet_count" /* Source->reporter packets */
#define OSP_FS_RTPDESTREPPKTS "rtp_audio_in_media_packet_count" /* Destination->reporter packets */
typedef struct osp_settings {
switch_bool_t debug; /* OSP module debug info flag */
switch_log_level_t loglevel; /* Log level for debug info */
switch_bool_t hardware; /* Crypto hardware flag */
const char *modules[OSPC_PROTNAME_NUMBER]; /* Endpoint names */
const char *profiles[OSPC_PROTNAME_NUMBER]; /* Endpoint profile names */
OSPE_PROTOCOL_NAME protocol; /* Default signaling protocol */
switch_bool_t shutdown; /* OSP module status */
switch_memory_pool_t *pool; /* OSP module memory pool */
} osp_settings_t;
/* OSP Work Modes */
typedef enum osp_workmode {
OSP_MODE_DIRECT = 0, /* Direct work mode */
OSP_MODE_INDIRECT /* Indirect work mode */
} osp_workmode_t;
/* OSP Service Types */
typedef enum osp_srvtype {
OSP_SRV_VOICE = 0, /* Normal voice service */
OSP_SRV_NPQUERY /* Number portability query service */
} osp_srvtype_t;
typedef struct osp_profile {
const char *name; /* OSP profile name */
int spnum; /* Number of OSP service points */
const char *spurls[OSP_MAX_SP]; /* OSP service point URLs */
const char *device; /* OSP source IP */
int lifetime; /* SSL life time */
int maxconnect; /* Max number of HTTP connections */
int persistence; /* HTTP persistence in seconds */
int retrydelay; /* HTTP retry delay in seconds */
int retrylimit; /* HTTP retry times */
int timeout; /* HTTP timeout in ms */
osp_workmode_t workmode; /* OSP work mode */
osp_srvtype_t srvtype; /* OSP service type */
int maxdest; /* Max destinations */
OSPTPROVHANDLE provider; /* OSP provider handle */
struct osp_profile *next; /* Next OSP profile */
} osp_profile_t;
typedef struct osp_inbound {
const char *actsrc; /* Actual source device IP address */
const char *srcdev; /* Source device IP address */
OSPE_PROTOCOL_NAME protocol; /* Inbound signaling protocol */
char calling[OSP_SIZE_NORSTR]; /* Inbound calling number */
char called[OSP_SIZE_NORSTR]; /* Inbound called number */
char nprn[OSP_SIZE_NORSTR]; /* Inbound NP routing number */
char npcic[OSP_SIZE_NORSTR]; /* Inbound NP carrier identification code */
int npdi; /* Inbound NP database dip indicator */
const char *tohost; /* Inbound host of To URI */
const char *toport; /* Inbound port of To URI */
char rpiduser[OSP_SIZE_NORSTR]; /* Inbound user of SIP Remote-Party-ID header */
char paiuser[OSP_SIZE_NORSTR]; /* Inbound user of SIP P-Asserted-Identity header */
char divuser[OSP_SIZE_NORSTR]; /* Inbound user of SIP Diversion header */
char divhost[OSP_SIZE_NORSTR]; /* Inbound hostport of SIP Diversion header */
char pciuser[OSP_SIZE_NORSTR]; /* Inbound user of SIP P-Charge-Info header */
const char *srcnid; /* Inbound source network ID */
switch_time_t start; /* Call start time */
const char *cinfo[OSP_MAX_CINFO]; /* Custom info */
} osp_inbound_t;
typedef struct osp_destination {
unsigned int timelimit; /* Outbound duration limit */
char dest[OSP_SIZE_NORSTR]; /* Destination IP address */
char calling[OSP_SIZE_NORSTR]; /* Outbound calling number, may be translated */
char called[OSP_SIZE_NORSTR]; /* Outbound called number, may be translated */
char destnid[OSP_SIZE_NORSTR]; /* Destination network ID */
char nprn[OSP_SIZE_NORSTR]; /* Outbound NP routing number */
char npcic[OSP_SIZE_NORSTR]; /* Outbound NP carrier identification code */
int npdi; /* Outbound NP database dip indicator */
char opname[OSPC_OPNAME_NUMBER][OSP_SIZE_NORSTR]; /* Outbound Operator names */
OSPE_PROTOCOL_NAME protocol; /* Signaling protocol */
switch_bool_t supported; /* Supported by FreeRADIUS OSP module */
} osp_destination_t;
typedef struct osp_results {
const char *profile; /* Profile name */
uint64_t transid; /* Transaction ID */
switch_time_t start; /* Call start time */
char calling[OSP_SIZE_NORSTR]; /* Original calling number */
char called[OSP_SIZE_NORSTR]; /* Original called number */
const char *srcdev; /* Source device IP */
const char *srcnid; /* Source network ID */
int status; /* AuthReq status */
int numdest; /* Number of destinations */
osp_destination_t dests[OSP_MAX_SP]; /* Destinations */
} osp_results_t;
typedef struct osp_cookie {
const char *profile; /* Profile name */
uint64_t transid; /* Transaction ID */
const char *calling; /* Original calling number */
const char *called; /* Original called number */
switch_time_t start; /* Call start time */
const char *srcdev; /* Source Device IP */
int desttotal; /* Total number of destinations in AuthRsp */
int destcount; /* Destination count */
const char *dest; /* Destination IP */
const char *srcnid; /* Source network ID */
const char *destnid; /* Destination network ID */
} osp_cookie_t;
typedef struct osp_outbound {
const char *dniduserparam; /* Destination network ID user parameter name */
const char *dniduriparam; /* Destination network ID URI parameter name */
switch_bool_t userphone; /* If to add "user=phone" parameter */
const char *outproxy; /* Outbound proxy IP address */
} osp_outbound_t;
typedef struct osp_usage {
const char *srcdev; /* Source device IP */
const char *callid; /* Call-ID */
OSPE_PROTOCOL_NAME inprotocol; /* Inbound signaling protocol */
OSPE_PROTOCOL_NAME outprotocol; /* Outbound signaling protocol */
int release; /* Release source */
switch_call_cause_t cause; /* Termination cause */
switch_time_t alert; /* Call alert time */
switch_time_t connect; /* Call answer time */
switch_time_t end; /* Call end time */
switch_time_t duration; /* Call duration */
switch_time_t pdd; /* Post dial delay, in us */
const char *srccodec; /* Source codec */
const char *destcodec; /* Destination codec */
int rtpsrcrepoctets; /* RTP source->reporter bytes */
int rtpdestrepoctets; /* RTP destination->reporter bytes */
int rtpsrcreppackets; /* RTP source->reporter packets */
int rtpdestreppackets; /* RTP destiantion->reporter packets */
} osp_usage_t;
typedef struct osp_threadarg {
OSPTTRANHANDLE transaction; /* Transaction handle */
uint64_t transid; /* Transaction ID */
switch_call_cause_t cause; /* Release code */
time_t start; /* Call start time */
time_t alert; /* Call alert time */
time_t connect; /* Call connect time */
time_t end; /* Call end time */
int duration; /* Call duration */
int pdd; /* Post dial delay, in ms */
int release; /* EP that released the call */
} osp_threadarg_t;
/* OSP module global settings */
static osp_settings_t osp_globals;
/* OSP module profiles */
static osp_profile_t *osp_profiles = NULL;
/* switch_status_t mod_osp_load(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool) */
SWITCH_MODULE_LOAD_FUNCTION(mod_osp_load);
/* switch_status_t mod_osp_shutdown(void) */
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_osp_shutdown);
/* SWITCH_MODULE_DEFINITION(name, load, shutdown, runtime) */
SWITCH_MODULE_DEFINITION(mod_osp, mod_osp_load, mod_osp_shutdown, NULL);
/* Macro to prevent NULL string */
#define osp_filter_null(_str) switch_strlen_zero(_str) ? OSP_DEF_STRING : _str
#define osp_adjust_len(_head, _size, _len) { _len = strlen(_head); _head += _len; _size -= _len; }
/*
* Find OSP profile by name
* param name OSP profile name
* param profile OSP profile, NULL is allowed
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_find_profile(
const char *name,
osp_profile_t **profile)
{
osp_profile_t *p;
switch_status_t status = SWITCH_STATUS_FALSE;
if (name) {
if (profile) {
*profile = NULL;
}
for (p = osp_profiles; p; p = p->next) {
if (!strcasecmp(p->name, name)) {
if (profile) {
*profile = p;
}
status = SWITCH_STATUS_SUCCESS;
break;
}
}
}
return status;
}
/*
* Load OSP module configuration
* param pool OSP module memory pool
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed, SWITCH_STATUS_MEMERR Memory Error.
*/
static switch_status_t osp_load_settings(
switch_memory_pool_t *pool)
{
char *cf = "osp.conf";
switch_xml_t cfg, xml = NULL, param, settings, xprofile, profiles;
const char *name;
const char *value;
const char *module;
const char *context;
osp_profile_t *profile;
int number;
switch_status_t status = SWITCH_STATUS_SUCCESS;
if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to open '%s'\n", cf);
status = SWITCH_STATUS_FALSE;
return status;
}
memset(&osp_globals, 0, sizeof(osp_globals));
osp_globals.loglevel = SWITCH_LOG_DEBUG;
osp_globals.pool = pool;
osp_globals.protocol = OSPC_PROTNAME_SIP;
if ((settings = switch_xml_child(cfg, "settings"))) {
for (param = switch_xml_child(settings, "param"); param; param = param->next) {
name = switch_xml_attr_soft(param, "name");
value = switch_xml_attr_soft(param, "value");
module = switch_xml_attr_soft(param, "module");
context = switch_xml_attr_soft(param, "profile");
if (switch_strlen_zero(name)) {
continue;
}
if (!strcasecmp(name, "debug-info")) {
if (!switch_strlen_zero(value)) {
osp_globals.debug = switch_true(value);
}
} else if (!strcasecmp(name, "log-level")) {
if (switch_strlen_zero(value)) {
continue;
} else if (!strcasecmp(value, "console")) {
osp_globals.loglevel = SWITCH_LOG_CONSOLE;
} else if (!strcasecmp(value, "alert")) {
osp_globals.loglevel = SWITCH_LOG_ALERT;
} else if (!strcasecmp(value, "crit")) {
osp_globals.loglevel = SWITCH_LOG_CRIT;
} else if (!strcasecmp(value, "error")) {
osp_globals.loglevel = SWITCH_LOG_ERROR;
} else if (!strcasecmp(value, "warning")) {
osp_globals.loglevel = SWITCH_LOG_WARNING;
} else if (!strcasecmp(value, "notice")) {
osp_globals.loglevel = SWITCH_LOG_NOTICE;
} else if (!strcasecmp(value, "info")) {
osp_globals.loglevel = SWITCH_LOG_INFO;
} else if (!strcasecmp(value, "debug")) {
osp_globals.loglevel = SWITCH_LOG_DEBUG;
}
} else if (!strcasecmp(name, "crypto-hardware")) {
if (!switch_strlen_zero(value)) {
osp_globals.hardware = switch_true(value);
}
} else if (!strcasecmp(name, "default-protocol")) {
if (switch_strlen_zero(value)) {
continue;
} else if (!strcasecmp(value, OSP_PROTOCOL_SIP)) {
osp_globals.protocol = OSPC_PROTNAME_SIP;
} else if (!strcasecmp(value, OSP_PROTOCOL_H323)) {
osp_globals.protocol = OSPC_PROTNAME_Q931;
} else if (!strcasecmp(value, OSP_PROTOCOL_IAX)) {
osp_globals.protocol = OSPC_PROTNAME_IAX;
} else if (!strcasecmp(value, OSP_PROTOCOL_SKYPE)) {
osp_globals.protocol = OSPC_PROTNAME_SKYPE;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unsupported default protocol '%s'\n", value);
}
} else if (!strcasecmp(name, "sip")) {
if (!switch_strlen_zero(module)) {
if (!(osp_globals.modules[OSPC_PROTNAME_SIP] = switch_core_strdup(osp_globals.pool, module))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate SIP module name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
if (!switch_strlen_zero(context)) {
if (!(osp_globals.profiles[OSPC_PROTNAME_SIP] = switch_core_strdup(osp_globals.pool, context))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate SIP profile name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
} else if (!strcasecmp(name, "h323")) {
if (!switch_strlen_zero(module)) {
if (!(osp_globals.modules[OSPC_PROTNAME_Q931] = switch_core_strdup(osp_globals.pool, module))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate H.323 module name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
if (!switch_strlen_zero(context)) {
if (!(osp_globals.profiles[OSPC_PROTNAME_Q931] = switch_core_strdup(osp_globals.pool, context))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate H.323 profile name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
} else if (!strcasecmp(name, "iax")) {
if (!switch_strlen_zero(module)) {
if (!(osp_globals.modules[OSPC_PROTNAME_IAX] = switch_core_strdup(osp_globals.pool, module))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate IAX module name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
if (!switch_strlen_zero(context)) {
if (!(osp_globals.profiles[OSPC_PROTNAME_IAX] = switch_core_strdup(osp_globals.pool, context))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate IAX profile name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
} else if (!strcasecmp(name, "skype")) {
if (!switch_strlen_zero(module)) {
if (!(osp_globals.modules[OSPC_PROTNAME_SKYPE] = switch_core_strdup(osp_globals.pool, module))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate Skype module name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
if (!switch_strlen_zero(context)) {
if (!(osp_globals.profiles[OSPC_PROTNAME_SKYPE] = switch_core_strdup(osp_globals.pool, context))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate Skype profile name\n");
status = SWITCH_STATUS_MEMERR;
break;
}
}
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unknown parameter '%s'\n", name);
}
}
}
if (status != SWITCH_STATUS_SUCCESS) {
switch_xml_free(xml);
return status;
}
if ((profiles = switch_xml_child(cfg, "profiles"))) {
for (xprofile = switch_xml_child(profiles, "profile"); xprofile; xprofile = xprofile->next) {
name = switch_xml_attr_soft(xprofile, "name");
if (switch_strlen_zero(name)) {
name = OSP_DEF_PROFILE;
}
if (osp_find_profile(name, NULL) == SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Ignored duplicate profile '%s'\n", name);
continue;
}
if (!(profile = switch_core_alloc(osp_globals.pool, sizeof(*profile)))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to alloc profile\n");
status = SWITCH_STATUS_MEMERR;
break;
}
if (!(profile->name = switch_core_strdup(osp_globals.pool, name))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate profile name\n");
status = SWITCH_STATUS_MEMERR;
/* "profile" cannot free to pool in FreeSWITCH */
break;
}
/* "profile" has been set to 0 by switch_core_alloc */
profile->lifetime = OSP_DEF_LIFETIME;
profile->maxconnect = OSP_DEF_MAXCONN;
profile->persistence = OSP_DEF_PERSIST;
profile->retrydelay = OSP_DEF_RETRYDELAY;
profile->retrylimit = OSP_DEF_RETRYLIMIT;
profile->timeout = OSP_DEF_TIMEOUT;
profile->maxdest = OSP_DEF_MAXDEST;
profile->provider = OSP_INVALID_HANDLE;
for (param = switch_xml_child(xprofile, "param"); param; param = param->next) {
name = switch_xml_attr_soft(param, "name");
value = switch_xml_attr_soft(param, "value");
if (switch_strlen_zero(name) || switch_strlen_zero(value)) {
continue;
}
if (!strcasecmp(name, "service-point-url")) {
if (profile->spnum < OSP_MAX_SP) {
profile->spurls[profile->spnum] = switch_core_strdup(osp_globals.pool, value);
profile->spnum++;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Ignored excess service point '%s'\n", value);
}
} else if (!strcasecmp(name, "device-ip")) {
profile->device = switch_core_strdup(osp_globals.pool, value);
} else if (!strcasecmp(name, "ssl-lifetime")) {
if (sscanf(value, "%d", &number) == 1) {
profile->lifetime = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "ssl-lifetime must be a number\n");
}
} else if (!strcasecmp(name, "http-max-connections")) {
if ((sscanf(value, "%d", &number) == 1) && (number >= OSP_MIN_MAXCONN) && (number <= OSP_MAX_MAXCONN)) {
profile->maxconnect = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"http-max-connections must be between %d and %d\n", OSP_MIN_MAXCONN, OSP_MAX_MAXCONN);
}
} else if (!strcasecmp(name, "http-persistence")) {
if (sscanf(value, "%d", &number) == 1) {
profile->persistence = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "http-persistence must be a number\n");
}
} else if (!strcasecmp(name, "http-retry-delay")) {
if ((sscanf(value, "%d", &number) == 1) && (number >= OSP_MIN_RETRYDELAY) && (number <= OSP_MAX_RETRYDELAY)) {
profile->retrydelay = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"http-retry-delay must be between %d and %d\n", OSP_MIN_RETRYDELAY, OSP_MAX_RETRYDELAY);
}
} else if (!strcasecmp(name, "http-retry-limit")) {
if ((sscanf(value, "%d", &number) == 1) && (number >= OSP_MIN_RETRYLIMIT) && (number <= OSP_MAX_RETRYLIMIT)) {
profile->retrylimit = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"http-retry-limit must be between %d and %d\n", OSP_MIN_RETRYLIMIT, OSP_MAX_RETRYLIMIT);
}
} else if (!strcasecmp(name, "http-timeout")) {
if ((sscanf(value, "%d", &number) == 1) && (number >= OSP_MIN_TIMEOUT) && (number <= OSP_MAX_TIMEOUT)) {
profile->timeout = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"http-timeout must be between %d and %d\n", OSP_MIN_TIMEOUT, OSP_MAX_TIMEOUT);
}
} else if (!strcasecmp(name, "work-mode")) {
if (!strcasecmp(value, "direct")) {
profile->workmode = OSP_MODE_DIRECT;
} else if (!strcasecmp(value, "indirect")) {
profile->workmode = OSP_MODE_INDIRECT;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unknown work mode '%s'\n", value);
}
} else if (!strcasecmp(name, "service-type")) {
if (!strcasecmp(value, "voice")) {
profile->srvtype = OSP_SRV_VOICE;
} else if (!strcasecmp(value, "npquery")) {
profile->srvtype = OSP_SRV_NPQUERY;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unknown service type '%s'\n", value);
}
} else if (!strcasecmp(name, "max-destinations")) {
if ((sscanf(value, "%d", &number) == 1) && (number >= OSP_MIN_MAXDEST) && (number <= OSP_MAX_MAXDEST)) {
profile->maxdest = number;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"max-destinations must be between %d and %d\n", OSP_MIN_MAXDEST, OSP_MAX_MAXDEST);
}
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unknown parameter '%s'\n", name);
}
}
if (!profile->spnum) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Without service point URI in profile '%s'\n", profile->name);
/* "profile" cannot free to pool in FreeSWITCH */
continue;
}
profile->next = osp_profiles;
osp_profiles = profile;
}
}
switch_xml_free(xml);
return status;
}
/* OSP default certificates */
const char *B64PKey = "MIIBOgIBAAJBAK8t5l+PUbTC4lvwlNxV5lpl+2dwSZGW46dowTe6y133XyVEwNiiRma2YNk3xKs/TJ3Wl9Wpns2SYEAJsFfSTukCAwEAAQJAPz13vCm2GmZ8Zyp74usTxLCqSJZNyMRLHQWBM0g44Iuy4wE3vpi7Wq+xYuSOH2mu4OddnxswCP4QhaXVQavTAQIhAOBVCKXtppEw9UaOBL4vW0Ed/6EA/1D8hDW6St0h7EXJAiEAx+iRmZKhJD6VT84dtX5ZYNVk3j3dAcIOovpzUj9a0CECIEduTCapmZQ5xqAEsLXuVlxRtQgLTUD4ZxDElPn8x0MhAiBE2HlcND0+qDbvtwJQQOUzDgqg5xk3w8capboVdzAlQQIhAMC+lDL7+gDYkNAft5Mu+NObJmQs4Cr+DkDFsKqoxqrm";
const char *B64LCert = "MIIBeTCCASMCEHqkOHVRRWr+1COq3CR/xsowDQYJKoZIhvcNAQEEBQAwOzElMCMGA1UEAxMcb3NwdGVzdHNlcnZlci50cmFuc25leHVzLmNvbTESMBAGA1UEChMJT1NQU2VydmVyMB4XDTA1MDYyMzAwMjkxOFoXDTA2MDYyNDAwMjkxOFowRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNVBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDBcMA0GCSqGSIb3DQEBAQUAA0sAMEgCQQCvLeZfj1G0wuJb8JTcVeZaZftncEmRluOnaME3ustd918lRMDYokZmtmDZN8SrP0yd1pfVqZ7NkmBACbBX0k7pAgMBAAEwDQYJKoZIhvcNAQEEBQADQQDnV8QNFVVJx/+7IselU0wsepqMurivXZzuxOmTEmTVDzCJx1xhA8jd3vGAj7XDIYiPub1PV23eY5a2ARJuw5w9";
const char *B64CACert = "MIIBYDCCAQoCAQEwDQYJKoZIhvcNAQEEBQAwOzElMCMGA1UEAxMcb3NwdGVzdHNlcnZlci50cmFuc25leHVzLmNvbTESMBAGA1UEChMJT1NQU2VydmVyMB4XDTAyMDIwNDE4MjU1MloXDTEyMDIwMzE4MjU1MlowOzElMCMGA1UEAxMcb3NwdGVzdHNlcnZlci50cmFuc25leHVzLmNvbTESMBAGA1UEChMJT1NQU2VydmVyMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAPGeGwV41EIhX0jEDFLRXQhDEr50OUQPq+f55VwQd0TQNts06BP29+UiNdRW3c3IRHdZcJdC1Cg68ME9cgeq0h8CAwEAATANBgkqhkiG9w0BAQQFAANBAGkzBSj1EnnmUxbaiG1N4xjIuLAWydun7o3bFk2tV8dBIhnuh445obYyk1EnQ27kI7eACCILBZqi2MHDOIMnoN0=";
/*
* Init OSP client end
* return
*/
static void osp_init_osptk(void)
{
osp_profile_t *profile;
OSPTPRIVATEKEY privatekey;
unsigned char privatekeydata[OSP_SIZE_KEYSTR];
OSPT_CERT localcert;
unsigned char localcertdata[OSP_SIZE_KEYSTR];
const OSPT_CERT *pcacert;
OSPT_CERT cacert;
unsigned char cacertdata[OSP_SIZE_KEYSTR];
int error;
if (osp_globals.hardware) {
if ((error = OSPPInit(OSPC_TRUE)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to enable crypto hardware, error '%d'\n", error);
osp_globals.hardware = SWITCH_FALSE;
OSPPInit(OSPC_FALSE);
}
} else {
OSPPInit(OSPC_FALSE);
}
for (profile = osp_profiles; profile; profile = profile->next) {
privatekey.PrivateKeyData = privatekeydata;
privatekey.PrivateKeyLength = sizeof(privatekeydata);
localcert.CertData = localcertdata;
localcert.CertDataLength = sizeof(localcertdata);
pcacert = &cacert;
cacert.CertData = cacertdata;
cacert.CertDataLength = sizeof(cacertdata);
if ((error = OSPPBase64Decode(B64PKey, strlen(B64PKey), privatekey.PrivateKeyData, &privatekey.PrivateKeyLength)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to decode private key, error '%d'\n", error);
} else if ((error = OSPPBase64Decode(B64LCert, strlen(B64LCert), localcert.CertData, &localcert.CertDataLength)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to decode local cert, error '%d'\n", error);
} else if ((error = OSPPBase64Decode(B64CACert, strlen(B64CACert), cacert.CertData, &cacert.CertDataLength)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to decode cacert, error '%d'\n", error);
}
if (error == OSPC_ERR_NO_ERROR) {
error = OSPPProviderNew(
profile->spnum, /* Number of service points */
profile->spurls, /* Service point URLs */
NULL, /* Weights */
OSP_AUDIT_URL, /* Audit URL */
&privatekey, /* Provate key */
&localcert, /* Local cert */
1, /* Number of cacerts */
&pcacert, /* cacerts */
OSP_LOCAL_VALID, /* Validating method */
profile->lifetime, /* SS lifetime */
profile->maxconnect, /* HTTP max connections */
profile->persistence, /* HTTP persistence */
profile->retrydelay, /* HTTP retry delay, in seconds */
profile->retrylimit, /* HTTP retry times */
profile->timeout, /* HTTP timeout */
OSP_CUSTOMER_ID, /* Customer ID */
OSP_DEVICE_ID, /* Device ID */
&profile->provider); /* Provider handle */
if (error != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to create provider for profile %s, error '%d'\n", profile->name, error);
profile->provider = OSP_INVALID_HANDLE;
}
}
}
}
/*
* Get protocol name
* param protocol Supported protocol
* return protocol name
*/
static const char *osp_get_protocol(
OSPE_PROTOCOL_NAME protocol)
{
const char *name;
switch (protocol) {
case OSPC_PROTNAME_UNKNOWN:
name = OSP_PROTOCOL_UNKNO;
break;
case OSPC_PROTNAME_UNDEFINED:
name = OSP_PROTOCOL_UNDEF;
break;
case OSPC_PROTNAME_SIP:
name = OSP_PROTOCOL_SIP;
break;
case OSPC_PROTNAME_Q931:
name = OSP_PROTOCOL_H323;
break;
case OSPC_PROTNAME_IAX:
name = OSP_PROTOCOL_IAX;
break;
case OSPC_PROTNAME_SKYPE:
name = OSP_PROTOCOL_SKYPE;
break;
case OSPC_PROTNAME_LRQ:
case OSPC_PROTNAME_T37:
case OSPC_PROTNAME_T38:
case OSPC_PROTNAME_SMPP:
case OSPC_PROTNAME_XMPP:
case OSPC_PROTNAME_SMS:
default:
name = OSP_PROTOCOL_UNSUP;
break;
}
return name;
}
/*
* Macro expands to:
* static switch_status_t osp_api_function(_In_opt_z_ const char *cmd, _In_opt_ switch_core_session_t *session, _In_ switch_stream_handle_t *stream)
*/
SWITCH_STANDARD_API(osp_api_function)
{
int i, argc = 0;
char *argv[2] = { 0 };
char *params = NULL;
char *param = NULL;
osp_profile_t *profile;
char *loglevel;
if (session) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "This function cannot be called from the dialplan.\n");
return SWITCH_STATUS_FALSE;
}
if (switch_strlen_zero(cmd)) {
stream->write_function(stream, "Usage: osp status\n");
return SWITCH_STATUS_SUCCESS;
}
if (!(params = switch_safe_strdup(cmd))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to duplicate parameters\n");
return SWITCH_STATUS_MEMERR;
}
if ((argc = switch_separate_string(params, ' ', argv, (sizeof(argv) / sizeof(argv[0]))))) {
param = argv[0];
if (!strcasecmp(param, "status")) {
stream->write_function(stream, "=============== OSP Module Settings & Status ===============\n");
stream->write_function(stream, " debug-info: %s\n", osp_globals.debug ? "enabled" : "disabled");
switch (osp_globals.loglevel) {
case SWITCH_LOG_CONSOLE:
loglevel = "console";
break;
case SWITCH_LOG_ALERT:
loglevel = "alert";
break;
case SWITCH_LOG_CRIT:
loglevel = "crit";
break;
case SWITCH_LOG_ERROR:
loglevel = "error";
break;
case SWITCH_LOG_WARNING:
loglevel = "warning";
break;
case SWITCH_LOG_NOTICE:
loglevel = "notice";
break;
case SWITCH_LOG_INFO:
loglevel = "info";
break;
case SWITCH_LOG_DEBUG:
default:
loglevel = "debug";
break;
}
stream->write_function(stream, " log-level: %s\n", loglevel);
stream->write_function(stream, " crypto-hardware: %s\n", osp_globals.hardware ? "enabled" : "disabled");
if (switch_strlen_zero(osp_globals.modules[OSPC_PROTNAME_SIP]) || switch_strlen_zero(osp_globals.profiles[OSPC_PROTNAME_SIP])) {
stream->write_function(stream, " sip: unsupported\n");
} else {
stream->write_function(stream, " sip: %s/%s\n",
osp_globals.modules[OSPC_PROTNAME_SIP], osp_globals.profiles[OSPC_PROTNAME_SIP]);
}
if (switch_strlen_zero(osp_globals.modules[OSPC_PROTNAME_Q931]) || switch_strlen_zero(osp_globals.profiles[OSPC_PROTNAME_Q931])) {
stream->write_function(stream, " h323: unsupported\n");
} else {
stream->write_function(stream, " h323: %s/%s\n",
osp_globals.modules[OSPC_PROTNAME_Q931], osp_globals.profiles[OSPC_PROTNAME_Q931]);
}
if (switch_strlen_zero(osp_globals.modules[OSPC_PROTNAME_IAX]) || switch_strlen_zero(osp_globals.profiles[OSPC_PROTNAME_IAX])) {
stream->write_function(stream, " iax: unsupported\n");
} else {
stream->write_function(stream, " iax: %s/%s\n",
osp_globals.modules[OSPC_PROTNAME_IAX], osp_globals.profiles[OSPC_PROTNAME_IAX]);
}
if (switch_strlen_zero(osp_globals.modules[OSPC_PROTNAME_SKYPE]) || switch_strlen_zero(osp_globals.profiles[OSPC_PROTNAME_SKYPE])) {
stream->write_function(stream, " skype: unsupported\n");
} else {
stream->write_function(stream, " skype: %s/%s\n",
osp_globals.modules[OSPC_PROTNAME_SKYPE], osp_globals.profiles[OSPC_PROTNAME_SKYPE]);
}
stream->write_function(stream, " default-protocol: %s\n", osp_get_protocol(osp_globals.protocol));
stream->write_function(stream, "============== OSP Profile Settings & Status ==============\n");
for (profile = osp_profiles; profile; profile = profile->next) {
stream->write_function(stream, "Profile: %s\n", profile->name);
for (i = 0; i < profile->spnum; i++) {
stream->write_function(stream, " service-point-url: %s\n", profile->spurls[i]);
}
stream->write_function(stream, " device-ip: %s\n", profile->device);
stream->write_function(stream, " ssl-lifetime: %d\n", profile->lifetime);
stream->write_function(stream, " http-max-connections: %d\n", profile->maxconnect);
stream->write_function(stream, " http-persistence: %d\n", profile->persistence);
stream->write_function(stream, " http-retry-dalay: %d\n", profile->retrydelay);
stream->write_function(stream, " http-retry-limit: %d\n", profile->retrylimit);
stream->write_function(stream, " http-timeout: %d\n", profile->timeout);
switch (profile->workmode) {
case OSP_MODE_DIRECT:
stream->write_function(stream, " work-mode: direct\n");
break;
case OSP_MODE_INDIRECT:
default:
stream->write_function(stream, " work-mode: indirect\n");
break;
}
switch (profile->srvtype) {
case OSP_SRV_NPQUERY:
stream->write_function(stream, " service-type: npquery\n");
break;
case OSP_SRV_VOICE:
default:
stream->write_function(stream, " service-type: voice\n");
break;
}
stream->write_function(stream, " max-destinations: %d\n", profile->maxdest);
stream->write_function(stream, " status: %s\n", profile->provider != OSP_INVALID_HANDLE ? "enabled" : "disabled");
}
} else {
stream->write_function(stream, "Invalid Syntax!\n");
}
} else {
stream->write_function(stream, "Invalid Input!\n");
}
switch_safe_free(params);
return SWITCH_STATUS_SUCCESS;
}
/*
* Parse Userinfo for user and LNP
* param userinfo SIP URI userinfo
* param user User part
* param usersize Size of user buffer
* param rn Routing number
* param rnsize Size of rn buffer
* param cic Carrier Identification Cod
* param cicsize Size of cic buffer
* param npdi NP Database Dip Indicator
* return
*/
static void osp_parse_userinfo(
const char *userinfo,
char *user,
switch_size_t usersize,
char *rn,
switch_size_t rnsize,
char *cic,
switch_size_t cicsize,
int *npdi)
{
char buffer[OSP_SIZE_NORSTR];
char *item;
char *tmp;
if (!switch_strlen_zero(userinfo)) {
switch_copy_string(buffer, userinfo, sizeof(buffer));
item = strtok_r(buffer, OSP_USER_DELIM, &tmp);
if (user && usersize) {
switch_copy_string(user, item, usersize);
}
for (item = strtok_r(NULL, OSP_USER_DELIM, &tmp); item; item = strtok_r(NULL, OSP_USER_DELIM, &tmp)) {
if (!strncasecmp(item, "rn=", 3)) {
if (rn && rnsize) {
switch_copy_string(rn, item + 3, rnsize);
}
} else if (!strncasecmp(item, "cic=", 4)) {
if (cic && cicsize) {
switch_copy_string(cic, item + 4, cicsize);
}
} else if (!strcasecmp(item, "npdi")) {
*npdi = 1;
}
}
}
}
/*
* Parse SIP header user
* param header SIP header
* param user SIP header user
* param usersize Size of user buffer
* return
*/
static void osp_parse_header_user(
const char *header,
char *user,
switch_size_t usersize)
{
char buffer[OSP_SIZE_NORSTR];
char *head;
char *tmp;
char *item;
if (!switch_strlen_zero(header) && user && usersize) {
*user = '\0';
switch_copy_string(buffer, header, sizeof(buffer));
if ((head = strstr(buffer, "sip:"))) {
head += 4;
if ((tmp = strchr(head, OSP_URI_DELIM))) {
*tmp = '\0';
item = strtok_r(head, OSP_USER_DELIM, &tmp);
switch_copy_string(user, item, usersize);
}
}
}
}
/*
* Parse SIP header host
* param header SIP header
* param host SIP header host
* param hostsize Size of host buffer
* return
*/
static void osp_parse_header_host(
const char *header,
char *host,
switch_size_t hostsize)
{
char buffer[OSP_SIZE_NORSTR];
char *head;
char *tmp;
if (!switch_strlen_zero(header) && host && hostsize) {
*host = '\0';
switch_copy_string(buffer, header, sizeof(buffer));
if ((head = strstr(buffer, "sip:"))) {
head += 4;
if ((tmp = strchr(head, OSP_URI_DELIM))) {
head = tmp + 1;
}
tmp = strtok(head, OSP_HOST_DELIM);
switch_copy_string(host, tmp, hostsize);
}
}
}
/*
* Log AuthReq parameters
* param profile OSP profile
* param inbound Inbound info
* return
*/
static void osp_log_authreq(
osp_profile_t *profile,
osp_inbound_t *inbound)
{
char *srvtype;
const char *source;
const char *srcdev;
char term[OSP_SIZE_NORSTR];
int total;
if (osp_globals.debug) {
if (profile->workmode == OSP_MODE_INDIRECT) {
source = inbound->srcdev;
if (switch_strlen_zero(inbound->actsrc)) {
srcdev = inbound->srcdev;
} else {
srcdev = inbound->actsrc;
}
} else {
source = profile->device;
srcdev = inbound->srcdev;
}
if (profile->srvtype == OSP_SRV_NPQUERY) {
srvtype = "npquery";
if (switch_strlen_zero(inbound->tohost)) {
switch_copy_string(term, source, sizeof(term));
} else {
if (switch_strlen_zero(inbound->toport)) {
switch_copy_string(term, inbound->tohost, sizeof(term));
} else {
switch_snprintf(term, sizeof(term), "%s:%s", inbound->tohost, inbound->toport);
}
}
total = 1;
} else {
srvtype = "voice";
term[0] = '\0';
total = profile->maxdest;
}
switch_log_printf(SWITCH_CHANNEL_LOG, osp_globals.loglevel,
"AuthReq: "
"srvtype '%s' "
"source '%s' "
"srcdev '%s' "
"protocol '%s' "
"calling '%s' "
"called '%s' "
"lnp '%s/%s/%d' "
"prefer '%s' "
"rpid '%s' "
"pai '%s' "
"div '%s/%s' "
"pci '%s' "
"srcnid '%s' "
"cinfo '%s/%s/%s/%s/%s/%s/%s/%s' "
"maxcount '%d'\n",
srvtype,
source,
srcdev,
osp_get_protocol(inbound->protocol),
inbound->calling,
inbound->called,
inbound->nprn, inbound->npcic, inbound->npdi,
term,
inbound->rpiduser,
inbound->paiuser,
inbound->divuser, inbound->divhost,
inbound->pciuser,
osp_filter_null(inbound->srcnid),
osp_filter_null(inbound->cinfo[0]), osp_filter_null(inbound->cinfo[1]),
osp_filter_null(inbound->cinfo[2]), osp_filter_null(inbound->cinfo[3]),
osp_filter_null(inbound->cinfo[4]), osp_filter_null(inbound->cinfo[5]),
osp_filter_null(inbound->cinfo[6]), osp_filter_null(inbound->cinfo[7]),
total);
}
}
/*
* Get protocol from module name
* param module Module name
* return protocol name
*/
static OSPE_PROTOCOL_NAME osp_get_moduleprotocol(
const char *module)
{
OSPE_PROTOCOL_NAME protocol;
if (!strcasecmp(module, OSP_MODULE_SIP)) {
protocol = OSPC_PROTNAME_SIP;
} else if (!strcasecmp(module, OSP_MODULE_H323)) {
protocol = OSPC_PROTNAME_Q931;
} else if (!strcasecmp(module, OSP_MODULE_IAX)) {
protocol = OSPC_PROTNAME_IAX;
} else if (!strcasecmp(module, OSP_MODULE_SKYPE)) {
protocol = OSPC_PROTNAME_SKYPE;
} else {
protocol = OSPC_PROTNAME_UNKNOWN;
}
return protocol;
}
/*
* Get inbound info
* param channel Inbound channel
* param inbound Inbound info
* return
*/
static void osp_get_inbound(
switch_channel_t *channel,
osp_inbound_t *inbound)
{
switch_caller_profile_t *caller;
switch_channel_timetable_t *times;
const char *tmp;
int i;
char name[OSP_SIZE_NORSTR];
memset(inbound, 0, sizeof(*inbound));
caller = switch_channel_get_caller_profile(channel);
inbound->actsrc = switch_channel_get_variable(channel, OSP_VAR_SRCDEV);
inbound->srcdev = caller->network_addr;
inbound->protocol = osp_get_moduleprotocol(caller->source);
if ((tmp = switch_channel_get_variable(channel, OSP_FS_FROMUSER))) {
osp_parse_userinfo(tmp, inbound->calling, sizeof(inbound->calling), NULL, 0, NULL, 0, NULL);
} else {
osp_parse_userinfo(caller->caller_id_number, inbound->calling, sizeof(inbound->calling), NULL, 0, NULL, 0, NULL);
}
osp_parse_userinfo(caller->destination_number, inbound->called, sizeof(inbound->called), inbound->nprn, sizeof(inbound->nprn),
inbound->npcic, sizeof(inbound->npcic), &inbound->npdi);
inbound->tohost = switch_channel_get_variable(channel, OSP_FS_TOHOST);
inbound->toport = switch_channel_get_variable(channel, OSP_FS_TOPORT);
if ((tmp = switch_channel_get_variable(channel, OSP_FS_RPID))) {
osp_parse_header_user(tmp, inbound->rpiduser, sizeof(inbound->rpiduser));
}
if ((tmp = switch_channel_get_variable(channel, OSP_FS_PAI))) {
osp_parse_userinfo(tmp, inbound->paiuser, sizeof(inbound->paiuser), NULL, 0, NULL, 0, NULL);
}
if ((tmp = switch_channel_get_variable(channel, OSP_FS_DIV))) {
osp_parse_header_user(tmp, inbound->divuser, sizeof(inbound->divuser));
osp_parse_header_host(tmp, inbound->divhost, sizeof(inbound->divhost));
}
if ((tmp = switch_channel_get_variable(channel, OSP_FS_PCI))) {
osp_parse_header_user(tmp, inbound->pciuser, sizeof(inbound->pciuser));
}
inbound->srcnid = switch_channel_get_variable(channel, OSP_VAR_SRCNID);
times = switch_channel_get_timetable(channel);
inbound->start = times->created;
for (i = 0; i < OSP_MAX_CINFO; i++) {
switch_snprintf(name, sizeof(name), "%s%d", OSP_VAR_CUSTOMINFO, i + 1);
inbound->cinfo[i] = switch_channel_get_variable(channel, name);
}
}
/*
* Get outbound settings
* param channel Inbound channel
* param outbound Outbound settings
* return
*/
static void osp_get_outbound(
switch_channel_t *channel,
osp_outbound_t *outbound)
{
const char *value;
memset(outbound, 0, sizeof(*outbound));
/* Get destination network ID namd & location info */
outbound->dniduserparam = switch_channel_get_variable(channel, OSP_VAR_DNIDUSERPARAM);
outbound->dniduriparam = switch_channel_get_variable(channel, OSP_VAR_DNIDURIPARAM);
/* Get "user=phone" insert flag */
value = switch_channel_get_variable(channel, OSP_VAR_USERPHONE);
if (!switch_strlen_zero(value)) {
outbound->userphone = switch_true(value);
}
/* Get outbound proxy info */
outbound->outproxy = switch_channel_get_variable(channel, OSP_VAR_OUTPROXY);
}
/*
* Convert "address:port" to "[x.x.x.x]:port" or "hostname:port" format
* param src Source address string
* param dest Destination address string
* param destsize Size of dest buffer
* return
*/
static void osp_convert_inout(
const char *src,
char *dest,
int destsize)
{
struct in_addr inp;
char buffer[OSP_SIZE_NORSTR];
char *port;
if (dest && (destsize > 0)) {
if (!switch_strlen_zero(src)) {
switch_copy_string(buffer, src, sizeof(buffer));
if((port = strchr(buffer, ':'))) {
*port = '\0';
port++;
}
if (inet_pton(AF_INET, buffer, &inp) == 1) {
if (port) {
switch_snprintf(dest, destsize, "[%s]:%s", buffer, port);
} else {
switch_snprintf(dest, destsize, "[%s]", buffer);
}
dest[destsize - 1] = '\0';
} else {
switch_copy_string(dest, src, destsize);
}
} else {
*dest = '\0';
}
}
}
/*
* Convert "[x.x.x.x]:port" or "hostname:prot" to "address:port" format
* param src Source address string
* param dest Destination address string
* param destsize Size of dest buffer
* return
*/
static void osp_convert_outin(
const char *src,
char *dest,
int destsize)
{
char buffer[OSP_SIZE_NORSTR];
char *end;
char *port;
if (dest && (destsize > 0)) {
if (!switch_strlen_zero(src)) {
switch_copy_string(buffer, src, sizeof(buffer));
if (buffer[0] == '[') {
if((port = strchr(buffer + 1, ':'))) {
*port = '\0';
port++;
}
if ((end = strchr(buffer + 1, ']'))) {
*end = '\0';
}
if (port) {
switch_snprintf(dest, destsize, "%s:%s", buffer + 1, port);
dest[destsize - 1] = '\0';
} else {
switch_copy_string(dest, buffer + 1, destsize);
}
} else {
switch_copy_string(dest, src, destsize);
}
} else {
*dest = '\0';
}
}
}
/*
* Check destination
* param transaction Transaction handle
* param dest Destination
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_check_destination(
OSPTTRANHANDLE transaction,
osp_destination_t *dest)
{
OSPE_DEST_OSPENABLED enabled;
OSPE_PROTOCOL_NAME protocol;
OSPE_OPERATOR_NAME type;
int error;
switch_status_t status = SWITCH_STATUS_FALSE;
if ((transaction == OSP_INVALID_HANDLE) || !dest) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid parameters\n");
return status;
}
dest->supported = SWITCH_FALSE;
if ((error = OSPPTransactionIsDestOSPEnabled(transaction, &enabled)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to get destination OSP version, error '%d'\n", error);
return status;
}
if ((error = OSPPTransactionGetDestProtocol(transaction, &protocol)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to get signaling protocol, error '%d'\n", error);
return status;
}
switch(protocol) {
case OSPC_PROTNAME_UNDEFINED:
case OSPC_PROTNAME_UNKNOWN:
protocol = osp_globals.protocol;
case OSPC_PROTNAME_SIP:
case OSPC_PROTNAME_Q931:
case OSPC_PROTNAME_IAX:
case OSPC_PROTNAME_SKYPE:
dest->protocol = protocol;
if (!switch_strlen_zero(osp_globals.modules[protocol]) && !switch_strlen_zero(osp_globals.profiles[protocol])) {
dest->supported = SWITCH_TRUE;
status = SWITCH_STATUS_SUCCESS;
}
break;
case OSPC_PROTNAME_LRQ:
case OSPC_PROTNAME_T37:
case OSPC_PROTNAME_T38:
case OSPC_PROTNAME_SMPP:
case OSPC_PROTNAME_XMPP:
default:
dest->protocol = protocol;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unsupported protocol '%d'\n", protocol);
break;
}
if ((error = OSPPTransactionGetDestinationNetworkId(transaction, sizeof(dest->destnid), dest->destnid)) != OSPC_ERR_NO_ERROR) {
dest->destnid[0] = '\0';
}
error = OSPPTransactionGetNumberPortabilityParameters(
transaction,
sizeof(dest->nprn),
dest->nprn,
sizeof(dest->npcic),
dest->npcic,
&dest->npdi);
if (error != OSPC_ERR_NO_ERROR) {
dest->nprn[0] = '\0';
dest->npcic[0] = '\0';
dest->npdi = 0;
}
for (type = OSPC_OPNAME_START; type < OSPC_OPNAME_NUMBER; type++) {
if ((error = OSPPTransactionGetOperatorName(transaction, type, sizeof(dest->opname[type]), dest->opname[type])) != OSPC_ERR_NO_ERROR) {
dest->opname[type][0] = '\0';
}
}
return status;
}
/*
* Log AuthRsp parameters
* param results Routing info
* return
*/
static void osp_log_authrsp(
osp_results_t *results)
{
int i;
if (osp_globals.debug) {
for (i = 0; i < results->numdest; i++) {
switch_log_printf(SWITCH_CHANNEL_LOG, osp_globals.loglevel,
"AuthRsp: "
"transid '%"PRIu64"' "
"destcount '%d' "
"timelimit '%u' "
"destination '%s' "
"calling '%s' "
"called '%s' "
"destnid '%s' "
"lnp '%s/%s/%d' "
"protocol '%s' "
"supported '%d'\n",
results->transid,
i + 1,
results->dests[i].timelimit,
results->dests[i].dest,
results->dests[i].calling,
results->dests[i].called,
results->dests[i].destnid,
results->dests[i].nprn, results->dests[i].npcic, results->dests[i].npdi,
osp_get_protocol(results->dests[i].protocol),
results->dests[i].supported);
}
}
}
/*
* Do auth/routing request
* param profile OSP profile
* param transaction Transaction handle
* param inbound Call originator info
* param results Routing info
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_do_request(
osp_profile_t *profile,
OSPTTRANHANDLE transaction,
osp_inbound_t *inbound,
osp_results_t *results)
{
OSPTTRANS *context;
osp_destination_t *dest;
char tmp[OSP_SIZE_NORSTR];
const char *source;
const char *srcdev;
char src[OSP_SIZE_NORSTR];
char dev[OSP_SIZE_NORSTR];
char term[OSP_SIZE_NORSTR];
const char *preferred[2] = { NULL };
unsigned int callidlen = 0, tokenlen = 0, total;
int count, error;
switch_status_t status = SWITCH_STATUS_FALSE;
osp_log_authreq(profile, inbound);
OSPPTransactionSetProtocol(transaction, OSPC_PROTTYPE_SOURCE, inbound->protocol);
OSPPTransactionSetNumberPortability(transaction, inbound->nprn, inbound->npcic, inbound->npdi);
OSPPTransactionSetRemotePartyId(transaction, OSPC_NFORMAT_E164, inbound->rpiduser);
OSPPTransactionSetAssertedId(transaction, OSPC_NFORMAT_E164, inbound->paiuser);
osp_convert_inout(inbound->divhost, tmp, sizeof(tmp));
OSPPTransactionSetDiversion(transaction, inbound->divuser, tmp);
OSPPTransactionSetChargeInfo(transaction, OSPC_NFORMAT_E164, inbound->pciuser);
OSPPTransactionSetNetworkIds(transaction, inbound->srcnid, NULL);
for (count = 0; count < OSP_MAX_CINFO; count++) {
if (!switch_strlen_zero(inbound->cinfo[count])) {
OSPPTransactionSetCustomInfo(transaction, count, inbound->cinfo[count]);
}
}
if (profile->workmode == OSP_MODE_INDIRECT) {
source = inbound->srcdev;
if (switch_strlen_zero(inbound->actsrc)) {
srcdev = inbound->srcdev;
} else {
srcdev = inbound->actsrc;
}
} else {
source = profile->device;
srcdev = inbound->srcdev;
}
osp_convert_inout(source, src, sizeof(src));
osp_convert_inout(srcdev, dev, sizeof(dev));
if (profile->srvtype == OSP_SRV_NPQUERY) {
OSPPTransactionSetServiceType(transaction, OSPC_SERVICE_NPQUERY);
if (switch_strlen_zero(inbound->tohost)) {
switch_copy_string(term, src, sizeof(term));
} else {
if (switch_strlen_zero(inbound->toport)) {
switch_copy_string(tmp, inbound->tohost, sizeof(tmp));
} else {
switch_snprintf(tmp, sizeof(tmp), "%s:%s", inbound->tohost, inbound->toport);
}
osp_convert_inout(tmp, term, sizeof(term));
}
preferred[0] = term;
total = 1;
} else {
OSPPTransactionSetServiceType(transaction, OSPC_SERVICE_VOICE);
total = profile->maxdest;
}
error = OSPPTransactionRequestAuthorisation(
transaction, /* Transaction handle */
src, /* Source */
dev, /* Source device */
inbound->calling, /* Calling */
OSPC_NFORMAT_E164, /* Calling format */
inbound->called, /* Called */
OSPC_NFORMAT_E164, /* Called format */
NULL, /* User */
0, /* Number of callids */
NULL, /* Callids */
preferred, /* Preferred destinations */
&total, /* Destination number */
NULL, /* Log buffer size */
NULL); /* Log buffer */
if (error != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to request routing for '%s/%s', error '%d'\n",
inbound->calling, inbound->called, error);
results->status = error;
results->numdest = 0;
return status;
} else if (!total) {
results->status = error;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Without destination\n");
results->status = error;
results->numdest = 0;
return status;
}
context = OSPPTransactionGetContext(transaction, &error);
if (error == OSPC_ERR_NO_ERROR) {
results->transid = context->TransactionID;
} else {
results->transid = 0;
}
switch_copy_string(results->calling, inbound->calling, sizeof(results->calling));
switch_copy_string(results->called, inbound->called, sizeof(results->called));
results->srcdev = srcdev;
results->srcnid = inbound->srcnid;
results->start = inbound->start;
count = 0;
dest = &results->dests[count];
error = OSPPTransactionGetFirstDestination(
transaction, /* Transaction handle */
0, /* Timestamp buffer size */
NULL, /* Valid after */
NULL, /* Valid until */
&dest->timelimit, /* Call duration limit */
&callidlen, /* Callid buffer size */
NULL, /* Callid buffer */
sizeof(dest->called), /* Called buffer size */
dest->called, /* Called buffer */
sizeof(dest->calling), /* Calling buffer size */
dest->calling, /* Calling buffer */
sizeof(term), /* Destination buffer size */
term, /* Destination buffer */
0, /* Destination device buffer size */
NULL, /* Destination device buffer */
&tokenlen, /* Token buffer length */
NULL); /* Token buffer */
if (error != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to get first destination, error '%d'\n", error);
results->status = error;
results->numdest = 0;
return status;
}
osp_convert_outin(term, dest->dest, sizeof(dest->dest));
osp_check_destination(transaction, dest);
for (count = 1; count < total; count++) {
dest = &results->dests[count];
error = OSPPTransactionGetNextDestination(
transaction, /* Transsaction handle */
OSPC_FAIL_NONE, /* Failure reason */
0, /* Timestamp buffer size */
NULL, /* Valid after */
NULL, /* Valid until */
&dest->timelimit, /* Call duration limit */
&callidlen, /* Callid buffer size */
NULL, /* Callid buffer */
sizeof(dest->called), /* Called buffer size */
dest->called, /* Called buffer */
sizeof(dest->calling), /* Calling buffer size */
dest->calling, /* Calling buffer */
sizeof(term), /* Destination buffer size */
term, /* Destination buffer */
0, /* Destination device buffer size */
NULL, /* Destination device buffer */
&tokenlen, /* Token buffer length */
NULL); /* Token buffer */
if (error == OSPC_ERR_NO_ERROR) {
osp_convert_outin(term, dest->dest, sizeof(dest->dest));
osp_check_destination(transaction, dest);
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to get destination, error '%d'\n", error);
break;
}
}
if (count == total) {
results->status = OSPC_ERR_NO_ERROR;
results->numdest = total;
osp_log_authrsp(results);
status = SWITCH_STATUS_SUCCESS;
} else {
results->status = error;
results->numdest = 0;
}
return status;
}
/*
* Request auth/routing info
* param channel Originator channel
* param profile Profile name
* param results Routing info
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_request_routing(
switch_channel_t *channel,
const char *profilename,
osp_results_t *results)
{
osp_profile_t *profile;
OSPTTRANHANDLE transaction;
osp_inbound_t inbound;
int error;
switch_status_t status = SWITCH_STATUS_FALSE;
if (osp_find_profile(profilename, &profile) != SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to find profile '%s'\n", profilename);
return status;
}
if (profile->provider == OSP_INVALID_HANDLE) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Disabled profile '%s'\n", profilename);
return status;
}
results->profile = profilename;
if ((error = OSPPTransactionNew(profile->provider, &transaction)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to create transaction handle, error '%d'\n", error);
return status;
}
osp_get_inbound(channel, &inbound);
status = osp_do_request(profile, transaction, &inbound, results);
OSPPTransactionDelete(transaction);
return status;
}
/*
* Build parameter string for all channels
* param results Routing results
* param buffer Buffer
* param bufsize Buffer size
* return
*/
static void osp_build_allparam(
osp_results_t *results,
char *buffer,
switch_size_t bufsize)
{
char *head = buffer;
switch_size_t len, size = bufsize;
if (results && head && size) {
switch_snprintf(head, size,
"{%s=%s,%s=%"PRIu64",%s=%s,%s=%s,%s=%"PRId64",%s=%s,%s=%d",
OSP_VAR_PROFILE, results->profile,
OSP_VAR_TRANSID, results->transid,
OSP_VAR_CALLING, results->calling,
OSP_VAR_CALLED, results->called,
OSP_VAR_START, results->start,
OSP_VAR_SRCDEV, results->srcdev,
OSP_VAR_DESTTOTAL, results->numdest);
osp_adjust_len(head, size, len);
if (!switch_strlen_zero(results->srcnid)) {
switch_snprintf(head, size, ",%s=%s", OSP_VAR_SRCNID, results->srcnid);
}
osp_adjust_len(head, size, len);
switch_snprintf(head, size, "}");
osp_adjust_len(head, size, len);
}
}
/*
* Build parameter string for each channel
* param count Destination count
* param dest Destination
* param buffer Buffer
* param bufsize Buffer size
* return
*/
static void osp_build_eachparam(
int count,
osp_destination_t *dest,
char *buffer,
switch_size_t bufsize)
{
char *head = buffer;
switch_size_t len, size = bufsize;
if ((count > 0) && dest && head && size) {
switch_snprintf(buffer, bufsize,
"[%s=%d,%s=%s,%s=%s",
OSP_VAR_DESTCOUNT, count,
OSP_VAR_DESTIP, dest->dest,
OSP_FS_OUTCALLING, dest->calling);
osp_adjust_len(head, size, len);
if (!switch_strlen_zero_buf(dest->destnid)) {
switch_snprintf(head, size, ",%s=%s", OSP_VAR_DESTNID, dest->destnid);
}
osp_adjust_len(head, size, len);
switch_snprintf(head, size, "]");
osp_adjust_len(head, size, len);
}
}
/*
* Build endpoint string
* param dest Destination
* param outbound Outbound settings
* param buffer Buffer
* param bufsize Buffer size
* return
*/
static void osp_build_endpoint(
osp_destination_t *dest,
osp_outbound_t *outbound,
char *buffer,
switch_size_t bufsize)
{
char *head = buffer;
switch_size_t len, size = bufsize;
if (head && size) {
switch (dest->protocol) {
case OSPC_PROTNAME_SIP:
switch_snprintf(head, size, "%s/%s/%s", osp_globals.modules[OSPC_PROTNAME_SIP], osp_globals.profiles[OSPC_PROTNAME_SIP],
dest->called);
osp_adjust_len(head, size, len);
if (!switch_strlen_zero_buf(dest->nprn)) {
switch_snprintf(head, size, ";rn=%s", dest->nprn);
osp_adjust_len(head, size, len);
}
if (!switch_strlen_zero_buf(dest->npcic)) {
switch_snprintf(head, size, ";cic=%s", dest->npcic);
osp_adjust_len(head, size, len);
}
if (dest->npdi) {
switch_snprintf(head, size, ";npdi");
osp_adjust_len(head, size, len);
}
if (!switch_strlen_zero(outbound->dniduserparam) && !switch_strlen_zero_buf(dest->destnid)) {
switch_snprintf(head, size, ";%s=%s", outbound->dniduserparam, dest->destnid);
osp_adjust_len(head, size, len);
}
switch_snprintf(head, size, "@%s", dest->dest);
osp_adjust_len(head, size, len);
if (!switch_strlen_zero(outbound->dniduriparam) && !switch_strlen_zero_buf(dest->destnid)) {
switch_snprintf(head, size, ";%s=%s", outbound->dniduriparam, dest->destnid);
osp_adjust_len(head, size, len);
}
if (outbound->userphone) {
switch_snprintf(head, size, ";user=phone");
osp_adjust_len(head, size, len);
}
if (!switch_strlen_zero(outbound->outproxy)) {
switch_snprintf(head, size, ";fs_path=sip:%s", outbound->outproxy);
osp_adjust_len(head, size, len);
}
break;
case OSPC_PROTNAME_Q931:
switch_snprintf(head, size, "%s/%s/%s@%s", osp_globals.modules[OSPC_PROTNAME_Q931], osp_globals.profiles[OSPC_PROTNAME_Q931],
dest->called, dest->dest);
osp_adjust_len(head, size, len);
break;
case OSPC_PROTNAME_IAX:
switch_snprintf(head, size, "%s/%s/%s/%s", osp_globals.modules[OSPC_PROTNAME_Q931], osp_globals.profiles[OSPC_PROTNAME_Q931],
dest->dest, dest->called);
osp_adjust_len(head, size, len);
break;
case OSPC_PROTNAME_SKYPE:
switch_snprintf(head, size, "%s/%s/%s", osp_globals.modules[OSPC_PROTNAME_Q931], osp_globals.profiles[OSPC_PROTNAME_Q931],
dest->called);
osp_adjust_len(head, size, len);
break;
default:
buffer[0] = '\0';
break;
}
}
}
/*
* Create route string
* param channel Originator channel
* param results Routing info
* return
*/
static void osp_create_route(
switch_channel_t *channel,
osp_results_t *results)
{
osp_destination_t *dest;
char name[OSP_SIZE_NORSTR];
char value[OSP_SIZE_ROUSTR];
char allparam[OSP_SIZE_NORSTR];
char eachparam[OSP_SIZE_NORSTR];
char endpoint[OSP_SIZE_NORSTR];
osp_outbound_t outbound;
char tmp[OSP_SIZE_ROUSTR];
char buffer[OSP_SIZE_ROUSTR];
int i, len, count, size = sizeof(buffer);
char *head = buffer;
switch_event_header_t *hi;
char *var;
osp_get_outbound(channel, &outbound);
/* Cleanup OSP varibales in originator */
if ((hi = switch_channel_variable_first(channel))) {
for (; hi; hi = hi->next) {
var = hi->name;
if (var && !strncmp(var, "osp_", 4)) {
switch_channel_set_variable(channel, var, NULL);
}
}
switch_channel_variable_last(channel);
}
switch_snprintf(value, sizeof(value), "%d", results->status);
switch_channel_set_variable_var_check(channel, OSP_VAR_AUTHSTATUS, value, SWITCH_FALSE);
osp_build_allparam(results, head, size);
switch_copy_string(allparam, head, sizeof(allparam));
osp_adjust_len(head, size, len);
for (count = 0, i = 0; i < results->numdest; i++) {
dest = &results->dests[i];
if (dest->supported) {
count++;
osp_build_eachparam(i + 1, dest, eachparam, sizeof(eachparam));
osp_build_endpoint(dest, &outbound, endpoint, sizeof(endpoint));
switch_snprintf(name, sizeof(name), "%s%d", OSP_VAR_ROUTEPRE, count);
switch_snprintf(value, sizeof(value), "%s%s%s", allparam, eachparam, endpoint);
switch_channel_set_variable_var_check(channel, name, value, SWITCH_FALSE);
switch_snprintf(tmp, sizeof(tmp), "%s%s", eachparam, endpoint);
switch_snprintf(head, size, "%s|", tmp);
osp_adjust_len(head, size, len);
}
}
switch_snprintf(value, sizeof(value), "%d", count);
switch_channel_set_variable_var_check(channel, OSP_VAR_ROUTECOUNT, value, SWITCH_FALSE);
if (count) {
*(buffer + strlen(buffer) - 1) = '\0';
} else {
buffer[0] = '\0';
}
switch_channel_set_variable_var_check(channel, OSP_VAR_AUTOROUTE, buffer, SWITCH_FALSE);
}
/*
* Export AuthReq status to channel
* param channel Originator channel
* param results Routing info
* return
*/
static void osp_export_failure(
switch_channel_t *channel,
osp_results_t *results)
{
char value[OSP_SIZE_NORSTR];
switch_event_header_t *hi;
char *var;
/* Cleanup OSP varibales in originator */
if ((hi = switch_channel_variable_first(channel))) {
for (; hi; hi = hi->next) {
var = hi->name;
if (var && !strncmp(var, "osp_", 4)) {
switch_channel_set_variable(channel, var, NULL);
}
}
switch_channel_variable_last(channel);
}
switch_snprintf(value, sizeof(value), "%d", results->status);
switch_channel_set_variable_var_check(channel, OSP_VAR_AUTHSTATUS, value, SWITCH_FALSE);
switch_snprintf(value, sizeof(value), "%d", results->numdest);
switch_channel_set_variable_var_check(channel, OSP_VAR_ROUTECOUNT, value, SWITCH_FALSE);
}
/*
* Macro expands to:
* static void osp_app_function(switch_core_session_t *session, const char *data)
*/
SWITCH_STANDARD_APP(osp_app_function)
{
int argc = 0;
char *argv[2] = { 0 };
char *params = NULL;
char *profile = NULL;
switch_channel_t *channel;
osp_results_t results;
switch_status_t retval;
if (osp_globals.shutdown) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "OSP application inavailable\n");
return;
}
/* Make sure there is a valid channel when starting the OSP application */
if (!(channel = switch_core_session_get_channel(session))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to find origiantor channel\n");
return;
}
if (!(params = switch_core_session_strdup(session, data))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to alloc parameters\n");
return;
}
if ((argc = switch_separate_string(params, ' ', argv, (sizeof(argv) / sizeof(argv[0]))))) {
profile = argv[0];
} else {
profile = OSP_DEF_PROFILE;
}
retval = osp_request_routing(channel, profile, &results);
if (retval == SWITCH_STATUS_SUCCESS) {
osp_create_route(channel, &results);
} else {
osp_export_failure(channel, &results);
}
}
/*
* Add application
* param session
* param channel Originator channel
* param extenstion
* param results OSP routing info
* return
*/
static void osp_add_application(
switch_core_session_t *session,
switch_channel_t *channel,
switch_caller_extension_t **extension,
osp_results_t *results)
{
osp_destination_t *dest;
char allparam[OSP_SIZE_NORSTR];
char eachparam[OSP_SIZE_NORSTR];
char endpoint[OSP_SIZE_NORSTR];
osp_outbound_t outbound;
char name[OSP_SIZE_NORSTR];
char value[OSP_SIZE_ROUSTR];
int i, count;
switch_event_header_t *hi;
char *var;
if ((*extension = switch_caller_extension_new(session, results->called, results->called)) == 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Failed to create extension\n");
return;
}
osp_get_outbound(channel, &outbound);
switch_channel_set_variable(channel, SWITCH_HANGUP_AFTER_BRIDGE_VARIABLE, "true");
/* Cleanup OSP varibales in originator */
if ((hi = switch_channel_variable_first(channel))) {
for (; hi; hi = hi->next) {
var = hi->name;
if (var && !strncmp(var, "osp_", 4)) {
switch_channel_set_variable(channel, var, NULL);
}
}
switch_channel_variable_last(channel);
}
switch_snprintf(value, sizeof(value), "%d", results->status);
switch_channel_set_variable_var_check(channel, OSP_VAR_AUTHSTATUS, value, SWITCH_FALSE);
osp_build_allparam(results, allparam, sizeof(allparam));
for (count = 0, i = 0; i < results->numdest; i++) {
dest = &results->dests[i];
if (dest->supported) {
count++;
osp_build_eachparam(i + 1, dest, eachparam, sizeof(eachparam));
osp_build_endpoint(dest, &outbound, endpoint, sizeof(endpoint));
switch_snprintf(name, sizeof(name), "%s%d", OSP_VAR_ROUTEPRE, count);
switch_snprintf(value, sizeof(value), "%s%s%s", allparam, eachparam, endpoint);
switch_channel_set_variable_var_check(channel, name, value, SWITCH_FALSE);
switch_caller_extension_add_application(session, *extension, "bridge", value);
}
}
switch_snprintf(value, sizeof(value), "%d", count);
switch_channel_set_variable_var_check(channel, OSP_VAR_ROUTECOUNT, value, SWITCH_FALSE);
}
/*
* Macro expands to:
* switch_caller_extension_t * osp_dialplan_function(switch_core_session_t *session, void *arg, switch_caller_profile_t *caller_profile)
*/
SWITCH_STANDARD_DIALPLAN(osp_dialplan_function)
{
int argc = 0;
char *argv[2] = { 0 };
char *profile = NULL;
switch_caller_extension_t *extension = NULL;
switch_channel_t *channel = switch_core_session_get_channel(session);
osp_results_t results;
switch_status_t retval;
if (osp_globals.shutdown) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "OSP dialplan inavailable\n");
return extension;
}
if ((argc = switch_separate_string((char *)arg, ' ', argv, (sizeof(argv) / sizeof(argv[0]))))) {
profile = argv[0];
} else {
profile = OSP_DEF_PROFILE;
}
retval = osp_request_routing(channel, profile, &results);
if (retval == SWITCH_STATUS_SUCCESS) {
osp_add_application(session, channel, &extension, &results);
} else {
osp_export_failure(channel, &results);
}
return extension;
}
/*
* Retrieve cookie
* param channel Destination channel
* param cookie Cookie
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_get_cookie(
switch_channel_t *channel,
osp_cookie_t *cookie)
{
const char *strvar;
if (!(cookie->profile = switch_channel_get_variable(channel, OSP_VAR_PROFILE))) {
return SWITCH_STATUS_FALSE;
}
if (!(strvar = switch_channel_get_variable(channel, OSP_VAR_TRANSID)) || (sscanf(strvar, "%"PRIu64"", &cookie->transid) != 1)) {
cookie->transid = 0;
}
cookie->calling = switch_channel_get_variable(channel, OSP_VAR_CALLING);
cookie->called = switch_channel_get_variable(channel, OSP_VAR_CALLED);
if (!(strvar = switch_channel_get_variable(channel, OSP_VAR_START)) || (sscanf(strvar, "%"PRId64"", &cookie->start) != 1)) {
cookie->start = 0;
}
cookie->srcdev = switch_channel_get_variable(channel, OSP_VAR_SRCDEV);
if (!(strvar = switch_channel_get_variable(channel, OSP_VAR_DESTTOTAL)) || (sscanf(strvar, "%d", &cookie->desttotal) != 1)) {
cookie->desttotal = 0;
}
if (!(strvar = switch_channel_get_variable(channel, OSP_VAR_DESTCOUNT)) || (sscanf(strvar, "%d", &cookie->destcount) != 1)) {
cookie->destcount = 0;
}
cookie->dest = switch_channel_get_variable(channel, OSP_VAR_DESTIP);
cookie->srcnid = switch_channel_get_variable(channel, OSP_VAR_SRCNID);
cookie->destnid = switch_channel_get_variable(channel, OSP_VAR_DESTNID);
return SWITCH_STATUS_SUCCESS;
}
/*
* Retrieve usage info
* param channel Destination channel
* param originator Originator channel
* param cookie Cookie
* param usage Usage info
* return
*/
static void osp_get_usage(
switch_channel_t *channel,
switch_caller_profile_t *originator,
osp_cookie_t *cookie,
osp_usage_t *usage)
{
const char *strvar;
switch_caller_profile_t *terminator;
switch_channel_timetable_t *times;
memset(usage, 0, sizeof(*usage));
usage->callid = switch_channel_get_variable(channel, OSP_FS_OUTCALLID);
if (switch_strlen_zero(usage->callid)) {
usage->callid = OSP_DEF_CALLID;
}
/* Originator had been checked by osp_on_reporting */
if (originator) {
usage->srcdev = originator->network_addr;
usage->inprotocol = osp_get_moduleprotocol(originator->source);
}
terminator = switch_channel_get_caller_profile(channel);
usage->outprotocol = osp_get_moduleprotocol(terminator->source);
if (usage->outprotocol == OSPC_PROTNAME_SIP) {
strvar = switch_channel_get_variable(channel, OSP_FS_SIPRELEASE);
if (!strvar || !strcasecmp(strvar, "recv_bye")) {
usage->release = 1;
}
}
usage->cause = switch_channel_get_cause_q850(channel);
times = switch_channel_get_timetable(channel);
usage->alert = times->progress;
usage->connect = times->answered;
usage->end = times->hungup;
if (times->answered) {
usage->duration = times->hungup - times->answered;
usage->pdd = times->answered - cookie->start;
}
usage->srccodec = switch_channel_get_variable(channel, OSP_FS_SRCCODEC);
usage->destcodec = switch_channel_get_variable(channel, OSP_FS_DESTCODEC);
if (!(strvar = switch_channel_get_variable(channel, OSP_FS_RTPSRCREPOCTS)) ||
(sscanf(strvar, "%d", &usage->rtpsrcrepoctets) != 1))
{
usage->rtpsrcrepoctets = OSP_DEF_STATS;
}
if (!(strvar = switch_channel_get_variable(channel, OSP_FS_RTPDESTREPOCTS)) ||
(sscanf(strvar, "%d", &usage->rtpdestrepoctets) != 1))
{
usage->rtpdestrepoctets = OSP_DEF_STATS;
}
if (!(strvar = switch_channel_get_variable(channel, OSP_FS_RTPSRCREPPKTS)) ||
(sscanf(strvar, "%d", &usage->rtpsrcreppackets) != 1))
{
usage->rtpsrcreppackets = OSP_DEF_STATS;
}
if (!(strvar = switch_channel_get_variable(channel, OSP_FS_RTPDESTREPPKTS)) ||
(sscanf(strvar, "%d", &usage->rtpdestreppackets) != 1))
{
usage->rtpdestreppackets = OSP_DEF_STATS;
}
}
/*
* Report OSP usage thread function
* param threadarg Thread argments
* return
*/
static OSPTTHREADRETURN osp_report_thread(
void *threadarg)
{
int i, error;
osp_threadarg_t *info;
info = (osp_threadarg_t *)threadarg;
OSPPTransactionRecordFailure(info->transaction, info->cause);
for (i = 0; i < 3; i++) {
error = OSPPTransactionReportUsage(
info->transaction, /* Transaction handle */
info->duration, /* Call duration */
info->start, /* Call start time */
info->end, /* Call end time */
info->alert, /* Call alert time */
info->connect, /* Call connect time */
info->pdd != 0, /* Post dial delay present */
info->pdd, /* Post dial delay */
info->release, /* Release source */
NULL, /* Conference ID */
-1, /* Packets not received by peer */
-1, /* Fraction of packets not received by peer */
-1, /* Packets not received that were expected */
-1, /* Fraction of packets expected but not received */
NULL, /* Log buffer size */
NULL); /* Log buffer */
if (error != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR,
"Failed to report usage for '%"PRIu64"' attempt '%d'\n",
info->transid,
i + 1);
} else {
break;
}
}
OSPPTransactionDelete(info->transaction);
switch_safe_free(info);
OSPTTHREADRETURN_NULL();
}
/*
* Report usage
* param cookie Cookie
* param usage Usage
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_report_usage(
osp_cookie_t *cookie,
osp_usage_t *usage)
{
osp_profile_t *profile;
char source[OSP_SIZE_NORSTR];
char destination[OSP_SIZE_NORSTR];
char srcdev[OSP_SIZE_NORSTR];
OSPTTRANHANDLE transaction;
osp_threadarg_t *info;
OSPTTHREADID threadid;
OSPTTHRATTR threadattr;
int error;
switch_status_t status = SWITCH_STATUS_FALSE;
if (osp_find_profile(cookie->profile, &profile) != SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to find profile '%s'\n", cookie->profile);
return status;
}
if ((error = OSPPTransactionNew(profile->provider, &transaction)) != OSPC_ERR_NO_ERROR) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to create transaction handle, error '%d'\n", error);
return status;
}
if (profile->workmode == OSP_MODE_INDIRECT) {
osp_convert_inout(usage->srcdev, source, sizeof(source));
} else {
osp_convert_inout(profile->device, source, sizeof(source));
}
osp_convert_inout(cookie->dest, destination, sizeof(destination));
osp_convert_inout(cookie->srcdev, srcdev, sizeof(srcdev));
error = OSPPTransactionBuildUsageFromScratch(
transaction, /* Transaction handle */
cookie->transid, /* Transaction ID */
OSPC_ROLE_SOURCE, /* CDR type, source */
source, /* Source */
destination, /* Destination */
srcdev, /* Source device */
OSP_DEF_STRING, /* Destination device */
cookie->calling, /* Calling */
OSPC_NFORMAT_E164, /* Calling format */
cookie->called, /* Called */
OSPC_NFORMAT_E164, /* Called format */
strlen(usage->callid), /* Size of Call-ID */
usage->callid, /* Call-ID */
0, /* Failure reason */
NULL, /* Log buffer size */
NULL); /* Log buffer */
if (error != OSPC_ERR_NO_ERROR) {
OSPPTransactionDelete(transaction);
return status;
}
status = SWITCH_STATUS_SUCCESS;
OSPPTransactionSetDestinationCount(transaction, cookie->destcount);
OSPPTransactionSetProtocol(transaction, OSPC_PROTTYPE_SOURCE, usage->inprotocol);
OSPPTransactionSetProtocol(transaction, OSPC_PROTTYPE_DESTINATION, usage->outprotocol);
if (!switch_strlen_zero(cookie->srcnid)) {
OSPPTransactionSetSrcNetworkId(transaction, cookie->srcnid);
}
if (!switch_strlen_zero(cookie->destnid)) {
OSPPTransactionSetDestNetworkId(transaction, cookie->destnid);
}
if (!switch_strlen_zero(usage->srccodec)) {
OSPPTransactionSetCodec(transaction, OSPC_CODEC_SOURCE, usage->srccodec);
}
if (!switch_strlen_zero(usage->destcodec)) {
OSPPTransactionSetCodec(transaction, OSPC_CODEC_DESTINATION, usage->destcodec);
}
if (usage->rtpsrcrepoctets != OSP_DEF_STATS) {
OSPPTransactionSetOctets(transaction, OSPC_SMETRIC_RTP, OSPC_SDIR_SRCREP, usage->rtpsrcrepoctets);
}
if (usage->rtpdestrepoctets != OSP_DEF_STATS) {
OSPPTransactionSetOctets(transaction, OSPC_SMETRIC_RTP, OSPC_SDIR_DESTREP, usage->rtpdestrepoctets);
}
if (usage->rtpsrcreppackets != OSP_DEF_STATS) {
OSPPTransactionSetPackets(transaction, OSPC_SMETRIC_RTP, OSPC_SDIR_SRCREP, usage->rtpsrcreppackets);
}
if (usage->rtpdestreppackets != OSP_DEF_STATS) {
OSPPTransactionSetPackets(transaction, OSPC_SMETRIC_RTP, OSPC_SDIR_DESTREP, usage->rtpdestreppackets);
}
if ((cookie->destcount == cookie->desttotal) || (usage->cause == SWITCH_CAUSE_NORMAL_CLEARING)) {
OSPPTransactionSetRoleInfo(transaction, OSPC_RSTATE_STOP, OSPC_RFORMAT_OSP, OSPC_RVENDOR_FREESWITCH);
} else {
OSPPTransactionSetRoleInfo(transaction, OSPC_RSTATE_INTERIM, OSPC_RFORMAT_OSP, OSPC_RVENDOR_FREESWITCH);
}
info = (osp_threadarg_t *)malloc(sizeof(osp_threadarg_t));
info->transaction = transaction;
info->transid = cookie->transid;
info->cause = usage->cause;
info->start = cookie->start / 1000000;
info->alert = usage->alert / 1000000;
info->connect = usage->connect / 1000000;
info->end = usage->end / 1000000;
info->duration = usage->duration / 1000000;
info->pdd = usage->pdd / 1000;
info->release = usage->release;
OSPM_THRATTR_INIT(threadattr, error);
OSPM_SETDETACHED_STATE(threadattr, error);
OSPM_CREATE_THREAD(threadid, &threadattr, osp_report_thread, info, error);
OSPM_THRATTR_DESTROY(threadattr);
/* transaction and info will be released by osp_report_thread */
return status;
}
/*
* Log UsageInd parameters
* param cookie Cookie
* param usage Usage info
* return
*/
static void osp_log_usageind(
osp_cookie_t *cookie,
osp_usage_t *usage)
{
if (osp_globals.debug) {
switch_log_printf(SWITCH_CHANNEL_LOG, osp_globals.loglevel,
"UsageInd: "
"transid '%"PRIu64"' "
"destcount '%d' "
"callid '%s' "
"calling '%s' "
"called '%s' "
"srcdev '%s' "
"dest '%s' "
"nid '%s/%s' "
"protocol '%s/%s' "
"cause '%d' "
"release '%s' "
"times '%"PRId64"/%"PRId64"/%"PRId64"/%"PRId64"' "
"duration '%"PRId64"' "
"pdd '%"PRId64"' "
"outsessionid '%s' "
"codec '%s/%s' "
"rtpctets '%d/%d' "
"rtppackets '%d/%d'\n",
cookie->transid,
cookie->destcount,
usage->callid,
cookie->calling,
cookie->called,
cookie->srcdev,
cookie->dest,
osp_filter_null(cookie->srcnid), osp_filter_null(cookie->destnid),
osp_get_protocol(usage->inprotocol), osp_get_protocol(usage->outprotocol),
usage->cause,
usage->release ? "term" : "orig",
cookie->start / 1000000, usage->alert / 1000000, usage->connect / 1000000, usage->end / 1000000,
usage->duration / 1000000,
usage->pdd / 1000000,
usage->callid,
osp_filter_null(usage->srccodec), osp_filter_null(usage->destcodec),
usage->rtpsrcrepoctets, usage->rtpdestrepoctets,
usage->rtpsrcreppackets, usage->rtpdestreppackets);
}
}
/*
* OSP module CS_REPORTING state handler
* param session Session
* return SWITCH_STATUS_SUCCESS Successful, SWITCH_STATUS_FALSE Failed
*/
static switch_status_t osp_on_reporting(
switch_core_session_t *session)
{
switch_channel_t *channel;
osp_cookie_t cookie;
osp_usage_t usage;
switch_caller_profile_t *originator;
switch_status_t status = SWITCH_STATUS_SUCCESS;
if (osp_globals.shutdown) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "OSP application inavailable\n");
return status;
}
/* Only report for B-leg */
if (!(channel = switch_core_session_get_channel(session)) || !(originator = switch_channel_get_originator_caller_profile(channel))) {
return status;
}
if (osp_get_cookie(channel, &cookie) != SWITCH_STATUS_SUCCESS) {
return status;
}
osp_get_usage(channel, originator, &cookie, &usage);
osp_log_usageind(&cookie, &usage);
osp_report_usage(&cookie, &usage);
return status;
}
/*
* OSP module state handlers
*/
static switch_state_handler_table_t state_handlers = {
NULL, /*.on_init */
NULL, /*.on_routing */
NULL, /*.on_execute */
NULL, /*.on_hangup */
NULL, /*.on_exchange_media */
NULL, /*.on_soft_execute */
NULL, /*.on_consume_media */
NULL, /*.on_hibernate */
NULL, /*.on_reset */
NULL, /*.on_park */
osp_on_reporting /*.on_reporting */
};
/*
* Macro expands to:
* switch_status_t mod_osp_load(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool)
*/
SWITCH_MODULE_LOAD_FUNCTION(mod_osp_load)
{
switch_api_interface_t *api_interface;
switch_application_interface_t *app_interface;
switch_dialplan_interface_t *dp_interface;
switch_status_t status = SWITCH_STATUS_SUCCESS;
/* Load OSP configuration */
if ((status = osp_load_settings(pool)) != SWITCH_STATUS_SUCCESS) {
return status;
}
/* Init OSP Toolkit */
osp_init_osptk();
/* Connect OSP internal structure to the blank pointer passed to OSP module */
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
/* Add CLI OSP command */
SWITCH_ADD_API(api_interface, "osp", "OSP", osp_api_function, "status");
switch_console_set_complete("add osp status");
/* Add OSP application */
SWITCH_ADD_APP(app_interface, "osp", "Perform an OSP lookup", "Perform an OSP lookup", osp_app_function, "", SAF_SUPPORT_NOMEDIA | SAF_ROUTING_EXEC);
/* Add OSP dialplan */
SWITCH_ADD_DIALPLAN(dp_interface, "osp", osp_dialplan_function);
/* Add OSP state handlers */
switch_core_add_state_handler(&state_handlers);
/* Indicate that the module should continue to be loaded */
return status;
}
/*
* Cleanup OSP client end
* return
*/
static void osp_cleanup_osptk(void)
{
osp_profile_t *profile;
for (profile = osp_profiles; profile; profile = profile->next) {
OSPPProviderDelete(profile->provider, 0);
profile->provider = OSP_INVALID_HANDLE;
}
OSPPCleanup();
}
/*
* Called when the system shuts down
* Macro expands to:
* switch_status_t mod_osp_shutdown(void)
*/
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_osp_shutdown)
{
/* Shutdown OSP module */
osp_globals.shutdown = SWITCH_TRUE;
/* Cleanup OSP Toolkit */
osp_cleanup_osptk();
/* Remoeve OSP state handlers */
switch_core_remove_state_handler(&state_handlers);
return SWITCH_STATUS_SUCCESS;
}
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4
*/