1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
/*
* $Id$
*
* Copyright (C) 2004-2006 Voice Sistem SRL
* Copyright (C) 2008 Juha Heinanen
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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.
*
* Kamailio 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.
*
*
* History:
* ---------
* 2004-10-28 first version (ramona)
* 2005-05-30 acc_extra patch commited (ramona)
* 2005-07-13 acc_extra specification moved to use pseudo-variables (bogdan)
* 2006-09-08 flexible multi leg accounting support added,
* code cleanup for low level functions (bogdan)
* 2006-09-19 final stage of a masive re-structuring and cleanup (bogdan)
* 2008-09-03 added support for integer type Radius attributes (jh)
*/
/*! \file
* \ingroup acc
* \brief Acc:: Extra attributes
*
* - Module: \ref acc
*/
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "../../dprint.h"
#include "../../ut.h"
#include "../../usr_avp.h"
#include "../../mem/mem.h"
#include "acc_api.h"
#include "acc_extra.h"
#define EQUAL '='
#define SEPARATOR ';'
#if MAX_ACC_EXTRA<MAX_ACC_LEG
#define MAX_ACC_INT_BUF MAX_ACC_LEG
#else
#define MAX_ACC_INT_BUF MAX_ACC_EXTRA
#endif
/* here we copy the strings returned by int2str (which uses a static buffer) */
static char int_buf[INT2STR_MAX_LEN*MAX_ACC_INT_BUF];
struct acc_extra *parse_acc_leg(char *extra_str)
{
struct acc_extra *legs;
struct acc_extra *it;
int n;
legs = parse_acc_extra(extra_str);
if (legs==0) {
LM_ERR("failed to parse extra leg\n");
return 0;
}
/* check the type and len */
for( it=legs,n=0 ; it ; it=it->next ) {
if (it->spec.type!=PVT_AVP) {
LM_ERR("only AVP are accepted as leg info\n");
destroy_extras(legs);
return 0;
}
n++;
if (n>MAX_ACC_LEG) {
LM_ERR("too many leg info; MAX=%d\n", MAX_ACC_LEG);
destroy_extras(legs);
return 0;
}
}
return legs;
}
struct acc_extra *parse_acc_extra(char *extra_str)
{
struct acc_extra *head;
struct acc_extra *tail;
struct acc_extra *extra;
char *foo;
char *s;
int n;
str stmp;
n = 0;
head = 0;
extra = 0;
tail = 0;
s = extra_str;
if (s==0) {
LM_ERR("null string received\n");
goto error;
}
while (*s) {
/* skip white spaces */
while (*s && isspace((int)*s)) s++;
if (*s==0)
goto parse_error;
if (n==MAX_ACC_EXTRA) {
LM_ERR("too many extras -> please increase the internal buffer\n");
goto error;
}
extra = (struct acc_extra*)pkg_malloc(sizeof(struct acc_extra));
if (extra==0) {
LM_ERR("no more pkg mem 1\n");
goto error;
}
memset( extra, 0, sizeof(struct acc_extra));
/* link the new extra at the end */
if (tail==0) {
head = extra;
} else {
tail->next = extra;
}
tail = extra;
n++;
/* get name */
foo = s;
while (*s && !isspace((int)*s) && EQUAL!=*s) s++;
if (*s==0)
goto parse_error;
if (*s==EQUAL) {
extra->name.len = (s++) - foo;
} else {
extra->name.len = (s++) - foo;
/* skip spaces */
while (*s && isspace((int)*s)) s++;
if (*s!=EQUAL)
goto parse_error;
s++;
}
extra->name.s = foo;
/* skip spaces */
while (*s && isspace((int)*s)) s++;
/* get value type */
stmp.s = s; stmp.len = strlen(s);
if ( (foo=pv_parse_spec(&stmp, &extra->spec))==0 )
goto parse_error;
s = foo;
/* skip spaces */
while (*s && isspace((int)*s)) s++;
if (*s && (*(s++)!=SEPARATOR || *s==0))
goto parse_error;
}
/* go throught all extras and make the names null terminated */
for( extra=head ; extra ; extra=extra->next)
extra->name.s[extra->name.len] = 0;
return head;
parse_error:
LM_ERR("parse failed in <%s> "
"around position %d\n",extra_str, (int)(long)(s-extra_str));
error:
LM_ERR("error\n");
destroy_extras(head);
return 0;
}
void destroy_extras( struct acc_extra *extra)
{
struct acc_extra *foo;
while (extra) {
foo = extra;
extra = extra->next;
pkg_free(foo);
}
}
#ifdef RAD_ACC
/*! \brief extra name is moved as string part of an attribute; str.len will contain an
* index to the corresponding attribute
*/
int extra2attrs( struct acc_extra *extra, struct attr *attrs, int offset)
{
int i;
for(i=0 ; extra ; i++, extra=extra->next) {
attrs[offset+i].n = extra->name.s;
}
return i;
}
#endif
/*! \brief converts the name of the extra from str to integer
* and stores it over str.len ; str.s is freed and made zero
*/
int extra2int( struct acc_extra *extra, int *attrs )
{
unsigned int ui;
int i;
for( i=0 ; extra ; i++,extra=extra->next ) {
if (str2int( &extra->name, &ui)!=0) {
LM_ERR("<%s> is not a number\n", extra->name.s);
return -1;
}
attrs[i] = (int)ui;
}
return i;
}
int extra2strar(struct acc_extra *extra, struct sip_msg *rq, str *val_arr,
int *int_arr, char *type_arr)
{
pv_value_t value;
int n;
int i;
n = 0;
i = 0;
while (extra) {
/* get the value */
if (pv_get_spec_value( rq, &extra->spec, &value)!=0) {
LM_ERR("failed to get '%.*s'\n", extra->name.len,extra->name.s);
}
/* check for overflow */
if (n==MAX_ACC_EXTRA) {
LM_WARN("array to short -> ommiting extras for accounting\n");
goto done;
}
if(value.flags&PV_VAL_NULL) {
/* convert <null> to empty to have consistency */
val_arr[n].s = 0;
val_arr[n].len = 0;
type_arr[n] = TYPE_NULL;
} else {
val_arr[n].s = (char *)pkg_malloc(value.rs.len);
if (val_arr[n].s == NULL ) {
LM_ERR("extra2strar: out of memory.\n");
/* Cleanup already allocated memory and
return that we didn't do anything */
for (i = 0; i < n ; i++) {
if (NULL != val_arr[i].s){
pkg_free(val_arr[i].s);
val_arr[i].s = NULL;
}
}
n = 0;
goto done;
}
memcpy(val_arr[n].s, value.rs.s, value.rs.len);
val_arr[n].len = value.rs.len;
if (value.flags&PV_VAL_INT) {
int_arr[n] = value.ri;
type_arr[n] = TYPE_INT;
} else {
type_arr[n] = TYPE_STR;
}
}
n++;
extra = extra->next;
}
done:
return n;
}
int extra2strar_dlg_only(struct acc_extra *extra, struct dlg_cell* dlg, str *val_arr,
int *int_arr, char *type_arr, const struct dlg_binds* p_dlgb)
{
//string value;
str* value = 0;
int n=0;
if( !dlg || !val_arr || !int_arr || !type_arr || !p_dlgb)
{
LM_ERR( "invalid input parameter!\n");
return 0;
}
while (extra) {
/* check for overflow */
if (n==MAX_ACC_EXTRA) {
LM_WARN("array to short -> ommiting extras for accounting\n");
goto done;
}
val_arr[n].s = 0;
val_arr[n].len = 0;
type_arr[n] = TYPE_NULL;
str key = extra->spec.pvp.pvn.u.isname.name.s;
if ( key.len == 0 || !key.s)
{
n++; extra = extra->next; continue;
}
/* get the value */
value = p_dlgb->get_dlg_var( dlg, &key);
if (value)
{
val_arr[n].s = value->s;
val_arr[n].len = value->len;
type_arr[n] = TYPE_STR;
}
n++;
extra = extra->next;
}
done:
return n;
}
int legs2strar( struct acc_extra *legs, struct sip_msg *rq, str *val_arr,
int *int_arr, char *type_arr, int start)
{
static struct usr_avp *avp[MAX_ACC_LEG];
static struct search_state st[MAX_ACC_LEG];
unsigned short name_type;
int_str name;
int_str value;
int n;
int found;
int r;
found = 0;
r = 0;
for( n=0 ; legs ; legs=legs->next,n++ ) {
/* search for the AVP */
if (start) {
if ( pv_get_avp_name( rq, &(legs->spec.pvp), &name, &name_type)<0 )
goto exit;
avp[n] = search_first_avp( name_type, name, &value, st + n);
} else {
avp[n] = search_next_avp(st + n, &value);
}
/* set new leg record */
if (avp[n]) {
found = 1;
/* get its value */
if(avp[n]->flags & AVP_VAL_STR) {
val_arr[n] = value.s;
type_arr[n] = TYPE_STR;
} else {
val_arr[n].s = int2bstr( value.n, int_buf+r*INT2STR_MAX_LEN,
&val_arr[n].len);
r++;
int_arr[n] = value.n;
type_arr[n] = TYPE_INT;
}
} else {
val_arr[n].s = 0;
val_arr[n].len = 0;
type_arr[n] = TYPE_NULL;
}
}
if (found || start)
return n;
exit:
return 0;
}
|