123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 |
- /*
- * ser osp module.
- *
- * This module enables ser to communicate with an Open Settlement
- * Protocol (OSP) server. The Open Settlement Protocol is an ETSI
- * defined standard for Inter-Domain VoIP pricing, authorization
- * and usage exchange. The technical specifications for OSP
- * (ETSI TS 101 321 V4.1.1) are available at www.etsi.org.
- *
- * Uli Abend was the original contributor to this module.
- *
- * Copyright (C) 2001-2005 Fhg Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * [email protected]
- *
- * ser is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #include <string.h>
- #include <osp/osp.h>
- #include "../../dset.h"
- #include "../../usr_avp.h"
- #include "../../mem/mem.h"
- #include "orig_transaction.h"
- #include "destination.h"
- #include "osptoolkit.h"
- #include "sipheader.h"
- #include "usage.h"
- extern char* _osp_device_ip;
- extern char* _osp_device_port;
- extern int _osp_max_dests;
- extern OSPTPROVHANDLE _osp_provider;
- extern int _osp_redir_uri;
- const int OSP_FIRST_ROUTE = 1;
- const int OSP_NEXT_ROUTE = 0;
- const int OSP_MAIN_ROUTE = 1;
- const int OSP_BRANCH_ROUTE = 0;
- const str OSP_CALLING_NAME = {"_osp_calling_translated_", 24};
- static int ospLoadRoutes(OSPTTRANHANDLE transaction, int destcount, char* source, char* sourcedev, char* origcalled, time_t authtime);
- static int ospPrepareDestination(struct sip_msg* msg, int isfirst, int type, int format);
- /*
- * Get routes from AuthRsp
- * param transaction Transaction handle
- * param destcount Expected destination count
- * param source Source IP
- * param sourcedev Source device IP
- * param origcalled Original called number
- * param authtime Request authorization time
- * return 0 success, -1 failure
- */
- static int ospLoadRoutes(
- OSPTTRANHANDLE transaction,
- int destcount,
- char* source,
- char* sourcedev,
- char* origcalled,
- time_t authtime)
- {
- int count;
- int errorcode;
- osp_dest* dest;
- osp_dest dests[OSP_DEF_DESTS];
- OSPE_DEST_PROT protocol;
- OSPE_DEST_OSP_ENABLED enabled;
- int result = 0;
-
- LOG(L_DBG, "osp: ospLoadRoutes\n");
- for (count = 0; count < destcount; count++) {
- /* This is necessary becuase we will save destinations in reverse order */
- dest = ospInitDestination(&dests[count]);
- if (dest == NULL) {
- result = -1;
- break;
- }
- dest->destinationCount = count + 1;
- strncpy(dest->origcalled, origcalled, sizeof(dest->origcalled) - 1);
- if (count == 0) {
- errorcode = OSPPTransactionGetFirstDestination(
- transaction,
- sizeof(dest->validafter),
- dest->validafter,
- dest->validuntil,
- &dest->timelimit,
- &dest->callidsize,
- (void*)dest->callid,
- sizeof(dest->called),
- dest->called,
- sizeof(dest->calling),
- dest->calling,
- sizeof(dest->host),
- dest->host,
- sizeof(dest->destdev),
- dest->destdev,
- &dest->tokensize,
- dest->token);
- } else {
- errorcode = OSPPTransactionGetNextDestination(
- transaction,
- 0,
- sizeof(dest->validafter),
- dest->validafter,
- dest->validuntil,
- &dest->timelimit,
- &dest->callidsize,
- (void*)dest->callid,
- sizeof(dest->called),
- dest->called,
- sizeof(dest->calling),
- dest->calling,
- sizeof(dest->host),
- dest->host,
- sizeof(dest->destdev),
- dest->destdev,
- &dest->tokensize,
- dest->token);
- }
-
- if (errorcode != OSPC_ERR_NO_ERROR) {
- LOG(L_ERR,
- "osp: ERROR: failed to load routes (%d) expected '%d' current '%d'\n",
- errorcode,
- destcount,
- count);
- result = -1;
- break;
- }
- errorcode = OSPPTransactionGetDestProtocol(transaction, &protocol);
- if (errorcode != OSPC_ERR_NO_ERROR) {
- /* This does not mean an ERROR. The OSP server may not support OSP 2.1.1 */
- LOG(L_DBG, "osp: cannot get dest protocol (%d)\n", errorcode);
- protocol = OSPE_DEST_PROT_SIP;
- }
- switch (protocol) {
- case OSPE_DEST_PROT_H323_LRQ:
- case OSPE_DEST_PROT_H323_SETUP:
- case OSPE_DEST_PROT_IAX:
- dest->supported = 0;
- break;
- case OSPE_DEST_PROT_SIP:
- case OSPE_DEST_PROT_UNDEFINED:
- case OSPE_DEST_PROT_UNKNOWN:
- default:
- dest->supported = 1;
- break;
- }
- errorcode = OSPPTransactionIsDestOSPEnabled(transaction, &enabled);
- if (errorcode != OSPC_ERR_NO_ERROR) {
- /* This does not mean an ERROR. The OSP server may not support OSP 2.1.1 */
- LOG(L_DBG, "osp: cannot get dest OSP version (%d)\n", errorcode);
- } else if (enabled == OSPE_OSP_FALSE) {
- /* Destination device does not support OSP. Do not send token to it */
- dest->token[0] = '\0';
- dest->tokensize = 0;
- }
- errorcode = OSPPTransactionGetDestNetworkId(transaction, dest->networkid);
- if (errorcode != OSPC_ERR_NO_ERROR) {
- /* This does not mean an ERROR. The OSP server may not support OSP 2.1.1 */
- LOG(L_DBG, "osp: cannot get dest network ID (%d)\n", errorcode);
- dest->networkid[0] = '\0';
- }
- strncpy(dest->source, source, sizeof(dest->source) - 1);
- strncpy(dest->srcdev, sourcedev, sizeof(dest->srcdev) - 1);
- dest->type = OSPC_SOURCE;
- dest->transid = ospGetTransactionId(transaction);
- dest->authtime = authtime;
- LOG(L_INFO,
- "osp: get destination '%d': "
- "valid after '%s' "
- "valid until '%s' "
- "time limit '%i' seconds "
- "call id '%.*s' "
- "calling number '%s' "
- "called number '%s' "
- "host '%s' "
- "supported '%d' "
- "network id '%s' "
- "token size '%i'\n",
- count,
- dest->validafter,
- dest->validuntil,
- dest->timelimit,
- dest->callidsize,
- dest->callid,
- dest->calling,
- dest->called,
- dest->host,
- dest->supported,
- dest->networkid,
- dest->tokensize);
- }
- /*
- * Save destination in reverse order,
- * when we start searching avps the destinations
- * will be in order
- */
- if (result == 0) {
- for(count = destcount -1; count >= 0; count--) {
- ospSaveOrigDestination(&dests[count]);
- }
- }
- return result;
- }
- /*
- * Request OSP authorization and routeing
- * param msg SIP message
- * param ignore1
- * param ignore2
- * return MODULE_RETURNCODE_TRUE success, MODULE_RETURNCODE_FALSE failure
- */
- int ospRequestRouting(
- struct sip_msg* msg,
- char* ignore1,
- char* ignore2)
- {
- int errorcode;
- time_t authtime;
- char source[OSP_E164BUF_SIZE];
- char sourcedev[OSP_STRBUF_SIZE];
- char src[OSP_STRBUF_SIZE];
- char destination[OSP_E164BUF_SIZE];
- unsigned int callidnumber = 1;
- OSPTCALLID* callids[callidnumber];
- unsigned int logsize = 0;
- char* detaillog = NULL;
- const char** preferred = NULL;
- unsigned int destcount;
- OSPTTRANHANDLE transaction = -1;
- int result = MODULE_RETURNCODE_FALSE;
- LOG(L_DBG, "osp: ospRequestRouting\n");
- authtime = time(NULL);
- destcount = _osp_max_dests;
- if ((errorcode = OSPPTransactionNew(_osp_provider, &transaction)) != OSPC_ERR_NO_ERROR) {
- LOG(L_ERR, "osp: ERROR: failed to create new OSP transaction (%d)\n", errorcode);
- } else if ((ospGetRpidUserpart(msg, source, sizeof(source)) != 0) &&
- (ospGetFromUserpart(msg, source, sizeof(source)) != 0))
- {
- LOG(L_ERR, "osp: ERROR: failed to extract calling number\n");
- } else if ((ospGetUriUserpart(msg, destination, sizeof(destination)) != 0) &&
- (ospGetToUserpart(msg, destination, sizeof(destination)) != 0))
- {
- LOG(L_ERR, "osp: ERROR: failed to extract called number\n");
- } else if (ospGetCallId(msg, &(callids[0])) != 0) {
- LOG(L_ERR, "osp: ERROR: failed to extract call id\n");
- } else if (ospGetSourceAddress(msg, sourcedev, sizeof(sourcedev)) != 0) {
- LOG(L_ERR, "osp: ERROR: failed to extract source address\n");
- } else {
- ospConvertAddress(sourcedev, src, sizeof(src));
- LOG(L_INFO,
- "osp: request auth and routing for: "
- "source '%s' "
- "source_port '%s' "
- "source_dev '%s' "
- "e164_source '%s' "
- "e164_dest '%s' "
- "call_id '%.*s' "
- "dest_count '%i'\n",
- _osp_device_ip,
- _osp_device_port,
- src, /* sourcedev in "[x.x.x.x]" or host.domain format */
- source,
- destination,
- callids[0]->ospmCallIdLen,
- callids[0]->ospmCallIdVal,
- destcount
- );
- /* try to request authorization */
- errorcode = OSPPTransactionRequestAuthorisation(
- transaction, /* transaction handle */
- _osp_device_ip, /* from the configuration file */
- src, /* source of call, protocol specific, in OSP format */
- source, /* calling number in nodotted e164 notation */
- OSPC_E164, /* calling number format */
- destination, /* called number */
- OSPC_E164, /* called number format */
- "", /* optional username string, used if no number */
- callidnumber, /* number of call ids, here always 1 */
- callids, /* sized-1 array of call ids */
- preferred, /* preferred destinations, here always NULL */
- &destcount, /* max destinations, after call dest_count */
- &logsize, /* size allocated for detaillog (next param) 0=no log */
- detaillog); /* memory location for detaillog to be stored */
- if ((errorcode == OSPC_ERR_NO_ERROR) &&
- (ospLoadRoutes(transaction, destcount, _osp_device_ip, sourcedev, destination, authtime) == 0))
- {
- LOG(L_INFO,
- "osp: there are '%d' OSP routes, call_id '%.*s'\n",
- destcount,
- callids[0]->ospmCallIdLen,
- callids[0]->ospmCallIdVal);
- result = MODULE_RETURNCODE_TRUE;
- } else {
- LOG(L_ERR,
- "osp: ERROR: failed to request auth and routing (%i), call_id '%.*s\n",
- errorcode,
- callids[0]->ospmCallIdLen,
- callids[0]->ospmCallIdVal);
- switch (errorcode) {
- case OSPC_ERR_TRAN_ROUTE_BLOCKED:
- result = -403;
- break;
- case OSPC_ERR_TRAN_ROUTE_NOT_FOUND:
- result = -404;
- break;
- case OSPC_ERR_NO_ERROR:
- /* AuthRsp ok but ospLoadRoutes fails */
- result = -500;
- break;
- default:
- result = MODULE_RETURNCODE_FALSE;
- break;
- }
- }
- }
- if (callids[0] != NULL) {
- OSPPCallIdDelete(&(callids[0]));
- }
- if (transaction != -1) {
- OSPPTransactionDelete(transaction);
- }
-
- return result;
- }
- /*
- * Check if there is a route
- * param msg SIP message
- * param ignore1
- * param ignore2
- * return MODULE_RETURNCODE_TRUE success, MODULE_RETURNCODE_FALSE failure
- */
- int ospCheckRoute(
- struct sip_msg* msg,
- char* ignore1,
- char* ignore2)
- {
- LOG(L_DBG, "osp: ospCheckRoute\n");
- if (ospCheckOrigDestination() == 0) {
- return MODULE_RETURNCODE_TRUE;
- } else {
- return MODULE_RETURNCODE_FALSE;
- }
- }
- /*
- * Append route specific OSP headers
- * This function only works in branch route block.
- * This function is only for SER. SER does not support rewrite_uri in BRANCH_ROUTE.
- * param msg SIP message
- * param ignore1
- * param ignore2
- * return MODULE_RETURNCODE_TRUE success MODULE_RETURNCODE_FALSE failed
- */
- int ospAppendHeaders(
- struct sip_msg* msg,
- char* ignore1,
- char* ignore2)
- {
- osp_dest* dest;
- int result = MODULE_RETURNCODE_FALSE;
- LOG(L_DBG, "osp: ospAppendHeaders\n");
- dest = ospGetLastOrigDestination();
- if (dest != NULL) {
- ospAddOspHeader(msg, dest->token, dest->tokensize);
- result = MODULE_RETURNCODE_TRUE;
- } else {
- LOG(L_ERR, "osp: ERROR: failed to get last used destination\n");
- }
- return result;
- }
- /*
- * Build SIP message for destination
- * param msg SIP message
- * param isfirst Is first destination
- * param type Main or branch route block
- * param format URI format
- * return MODULE_RETURNCODE_TRUE success MODULE_RETURNCODE_FALSE failure
- */
- static int ospPrepareDestination(
- struct sip_msg* msg,
- int isfirst,
- int type,
- int format)
- {
- str newuri = {NULL, 0};
- int result = MODULE_RETURNCODE_FALSE;
- LOG(L_DBG, "osp: ospPrepareDestination\n");
- osp_dest *dest = ospGetNextOrigDestination();
- if (dest != NULL) {
- ospRebuildDestionationUri(&newuri, dest->called, dest->host, "", format);
- LOG(L_INFO,
- "osp: prepare route to URI '%.*s' for call_id '%.*s' transaction_id '%llu'\n",
- newuri.len,
- newuri.s,
- dest->callidsize,
- dest->callid,
- dest->transid);
- if (type == OSP_MAIN_ROUTE) {
- if (isfirst == OSP_FIRST_ROUTE) {
- rewrite_uri(msg, &newuri);
- } else {
- append_branch(msg, &newuri, NULL, NULL, Q_UNSPECIFIED,
- 0, NULL);
- }
- result = MODULE_RETURNCODE_TRUE;
- } else {
- LOG(L_ERR, "osp: ERROR: unsupported route block type\n");
- }
- } else {
- LOG(L_DBG, "osp: there is no more routes\n");
- ospReportOrigSetupUsage();
- }
- if (newuri.len > 0) {
- pkg_free(newuri.s);
- }
-
- return result;
- }
- /*
- * Prepare OSP first route
- * This function prepare the first OSP route
- * This function is only for SER. SER does not support rewrite_uri in BRANCH_ROUTE.
- * param msg SIP message
- * param ignore1
- * param ignore2
- * return MODULE_RETURNCODE_TRUE success, MODULE_RETURNCODE_FALSE failure
- */
- int ospPrepareFirstRoute(
- struct sip_msg* msg,
- char* ignore1,
- char* ignore2)
- {
- int result = MODULE_RETURNCODE_TRUE;
- LOG(L_DBG, "osp: ospPrepareFirstRoute\n");
- result = ospPrepareDestination(msg, OSP_FIRST_ROUTE, OSP_MAIN_ROUTE, 0);
- return result;
- }
- /*
- * Prepare OSP next route
- * This function prepare the next OSP route
- * This function is only for SER. SER does not support rewrite_uri in BRANCH_ROUTE.
- * param msg SIP message
- * param ignore1
- * param ignore2
- * return MODULE_RETURNCODE_TRUE success, MODULE_RETURNCODE_FALSE failure
- */
- int ospPrepareNextRoute(
- struct sip_msg* msg,
- char* ignore1,
- char* ignore2)
- {
- int result = MODULE_RETURNCODE_TRUE;
- LOG(L_DBG, "osp: ospPrepareNextRoute\n");
- result = ospPrepareDestination(msg, OSP_NEXT_ROUTE, OSP_MAIN_ROUTE, 0);
- return result;
- }
- /*
- * Prepare all OSP routes
- * This function does not work in branch route block.
- * param msg SIP message
- * param ignore1
- * param ignore2
- * return MODULE_RETURNCODE_TRUE success, MODULE_RETURNCODE_FALSE failure
- */
- int ospPrepareAllRoutes(
- struct sip_msg* msg,
- char* ignore1,
- char* ignore2)
- {
- int result = MODULE_RETURNCODE_TRUE;
- LOG(L_DBG, "osp: ospPrepareAllRoutes\n");
- for(result = ospPrepareDestination(msg, OSP_FIRST_ROUTE, OSP_MAIN_ROUTE, _osp_redir_uri);
- result == MODULE_RETURNCODE_TRUE;
- result = ospPrepareDestination(msg, OSP_NEXT_ROUTE, OSP_MAIN_ROUTE, _osp_redir_uri))
- {
- }
- return MODULE_RETURNCODE_TRUE;
- }
|