1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
|
/*
* $Id: avpair.c,v 1.2 1997/12/25 23:28:08 lf Exp $
*
* Copyright (C) 1995 Lars Fenneberg
*
* Copyright 1992 Livingston Enterprises, Inc.
*
* Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan
* and Merit Network, Inc. All Rights Reserved
*
* See the file COPYRIGHT for the respective terms and conditions.
* If the file is missing contact me at lf@elemental.net
* and I'll send you a copy.
*
*/
#include <config.h>
#include <includes.h>
#include <radiusclient.h>
/*
* Function: rc_avpair_add
*
* Purpose: add an attribute-value pair to the given list.
*
* Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
*
* Remarks: Always appends the new pair to the end of the list.
*
*/
VALUE_PAIR *rc_avpair_add (VALUE_PAIR **list, int attrid, void *pval, int len)
{
VALUE_PAIR *vp;
vp = rc_avpair_new (attrid, pval, len);
if (vp != (VALUE_PAIR *) NULL)
{
rc_avpair_insert (list, (VALUE_PAIR *) NULL, vp);
}
return vp;
}
/*
* Function: rc_avpair_assign
*
* Purpose: assign the given value to an attribute-value pair.
*
* Returns: 0 on success,
* -1 on failure.
*
*/
int rc_avpair_assign (VALUE_PAIR *vp, void *pval, int len)
{
int result = -1;
switch (vp->type)
{
case PW_TYPE_STRING:
if (((len == 0) && (strlen ((char *) pval)) > AUTH_STRING_LEN)
|| (len > AUTH_STRING_LEN)) {
rc_log(LOG_ERR, "rc_avpair_assign: bad attribute length");
return result;
}
if (len > 0) {
memcpy(vp->strvalue, (char *)pval, len);
vp->strvalue[len] = '\0';
vp->lvalue = len;
} else {
strncpy (vp->strvalue, (char *) pval, AUTH_STRING_LEN);
vp->lvalue = strlen((char *) pval);
}
result = 0;
break;
case PW_TYPE_DATE:
case PW_TYPE_INTEGER:
case PW_TYPE_IPADDR:
vp->lvalue = * (UINT4 *) pval;
result = 0;
break;
default:
rc_log(LOG_ERR, "rc_avpair_assign: unknown attribute %d", vp->type);
}
return result;
}
/*
* Function: rc_avpair_new
*
* Purpose: make a new attribute-value pair with given parameters.
*
* Returns: pointer to generated a/v pair when successful, NULL when failure.
*
*/
VALUE_PAIR *rc_avpair_new (int attrid, void *pval, int len)
{
VALUE_PAIR *vp = (VALUE_PAIR *) NULL;
DICT_ATTR *pda;
if ((pda = rc_dict_getattr (attrid)) == (DICT_ATTR *) NULL)
{
rc_log(LOG_ERR,"rc_avpair_new: unknown attribute %d", attrid);
}
else
{
if ((vp = (VALUE_PAIR *) malloc (sizeof (VALUE_PAIR)))
!= (VALUE_PAIR *) NULL)
{
strncpy (vp->name, pda->name, sizeof (vp->name));
vp->attribute = attrid;
vp->next = (VALUE_PAIR *) NULL;
vp->type = pda->type;
if (rc_avpair_assign (vp, pval, len) == 0)
{
return vp;
}
free (vp);
vp = (VALUE_PAIR *) NULL;
}
else
{
rc_log(LOG_CRIT,"rc_avpair_new: out of memory");
}
}
return vp;
}
/*
*
* Function: rc_avpair_gen
*
* Purpose: takes attribute/value pairs from buffer and builds a
* value_pair list using allocated memory.
*
* Returns: value_pair list or NULL on failure
*/
VALUE_PAIR *rc_avpair_gen (AUTH_HDR *auth)
{
int length;
int x_len;
int attribute;
int attrlen;
UINT4 lvalue;
unsigned char *x_ptr;
unsigned char *ptr;
DICT_ATTR *attr;
VALUE_PAIR *vp;
VALUE_PAIR *pair;
unsigned char hex[3]; /* For hex string conversion. */
char buffer[256];
/*
* Extract attribute-value pairs
*/
ptr = auth->data;
length = ntohs ((unsigned short) auth->length) - AUTH_HDR_LEN;
vp = (VALUE_PAIR *) NULL;
while (length > 0)
{
attribute = *ptr++;
attrlen = *ptr++;
attrlen -= 2;
if (attrlen < 0)
{
rc_log(LOG_ERR, "rc_avpair_gen: received attribute with invalid length");
break;
}
if ((attr = rc_dict_getattr (attribute)) == (DICT_ATTR *) NULL)
{
*buffer= '\0'; /* Initial length. */
for (x_ptr = ptr, x_len = attrlen ;
x_len > 0 ;
x_len--, x_ptr++)
{
sprintf (hex, "%2.2X", *x_ptr);
strcat (buffer, hex);
}
rc_log(LOG_WARNING, "rc_avpair_gen: received unknown attribute %d of length %d: 0x%s",
attribute, attrlen, buffer);
}
else
{
if ((pair =
(VALUE_PAIR *) malloc (sizeof (VALUE_PAIR))) ==
(VALUE_PAIR *) NULL)
{
rc_log(LOG_CRIT, "rc_avpair_gen: out of memory");
rc_avpair_free(vp);
return NULL;
}
strcpy (pair->name, attr->name);
pair->attribute = attr->value;
pair->type = attr->type;
pair->next = (VALUE_PAIR *) NULL;
switch (attr->type)
{
case PW_TYPE_STRING:
memcpy (pair->strvalue, (char *) ptr, (size_t) attrlen);
pair->strvalue[attrlen] = '\0';
pair->lvalue = attrlen;
rc_avpair_insert (&vp, (VALUE_PAIR *) NULL, pair);
break;
case PW_TYPE_INTEGER:
case PW_TYPE_IPADDR:
memcpy ((char *) &lvalue, (char *) ptr,
sizeof (UINT4));
pair->lvalue = ntohl (lvalue);
rc_avpair_insert (&vp, (VALUE_PAIR *) NULL, pair);
break;
default:
rc_log(LOG_WARNING, "rc_avpair_gen: %s has unknown type", attr->name);
free (pair);
break;
}
}
ptr += attrlen;
length -= attrlen + 2;
}
return (vp);
}
/*
* Function: rc_avpair_get
*
* Purpose: Find the first attribute value-pair (which matches the given
* attribute) from the specified value-pair list.
*
* Returns: found value_pair
*
*/
VALUE_PAIR *rc_avpair_get (VALUE_PAIR *vp, UINT4 attr)
{
for (; vp != (VALUE_PAIR *) NULL && vp->attribute != attr; vp = vp->next)
{
continue;
}
return (vp);
}
/*
* Function: rc_avpair_insert
*
* Purpose: Given the address of an existing list "a" and a pointer
* to an entry "p" in that list, add the value pair "b" to
* the "a" list after the "p" entry. If "p" is NULL, add
* the value pair "b" to the end of "a".
*
*/
void rc_avpair_insert (VALUE_PAIR **a, VALUE_PAIR *p, VALUE_PAIR *b)
{
VALUE_PAIR *this_node = NULL;
VALUE_PAIR *vp;
if (b->next != (VALUE_PAIR *) NULL)
{
rc_log(LOG_CRIT, "rc_avpair_insert: value pair (0x%p) next ptr. (0x%p) not NULL", b, b->next);
abort ();
}
if (*a == (VALUE_PAIR *) NULL)
{
*a = b;
return;
}
vp = *a;
if ( p == (VALUE_PAIR *) NULL) /* run to end of "a" list */
{
while (vp != (VALUE_PAIR *) NULL)
{
this_node = vp;
vp = vp->next;
}
}
else /* look for the "p" entry in the "a" list */
{
this_node = *a;
while (this_node != (VALUE_PAIR *) NULL)
{
if (this_node == p)
{
break;
}
this_node = this_node->next;
}
}
b->next = this_node->next;
this_node->next = b;
return;
}
/*
* Function: rc_avpair_free
*
* Purpose: frees all value_pairs in the list
*
*/
void rc_avpair_free (VALUE_PAIR *pair)
{
VALUE_PAIR *next;
while (pair != (VALUE_PAIR *) NULL)
{
next = pair->next;
free (pair);
pair = next;
}
}
/*
* Function: rc_fieldcpy
*
* Purpose: Copy a data field from the buffer. Advance the buffer
* past the data field.
*
*/
static void rc_fieldcpy (char *string, char **uptr)
{
char *ptr;
ptr = *uptr;
if (*ptr == '"')
{
ptr++;
while (*ptr != '"' && *ptr != '\0' && *ptr != '\n')
{
*string++ = *ptr++;
}
*string = '\0';
if (*ptr == '"')
{
ptr++;
}
*uptr = ptr;
return;
}
while (*ptr != ' ' && *ptr != '\t' && *ptr != '\0' && *ptr != '\n' &&
*ptr != '=' && *ptr != ',')
{
*string++ = *ptr++;
}
*string = '\0';
*uptr = ptr;
return;
}
/*
* Function: rc_avpair_parse
*
* Purpose: parses the buffer to extract the attribute-value pairs.
*
* Returns: 0 = successful parse of attribute-value pair,
* -1 = syntax (or other) error detected.
*
*/
#define PARSE_MODE_NAME 0
#define PARSE_MODE_EQUAL 1
#define PARSE_MODE_VALUE 2
#define PARSE_MODE_INVALID 3
int rc_avpair_parse (char *buffer, VALUE_PAIR **first_pair)
{
int mode;
char attrstr[AUTH_ID_LEN];
char valstr[AUTH_ID_LEN];
DICT_ATTR *attr = NULL;
DICT_VALUE *dval;
VALUE_PAIR *pair;
VALUE_PAIR *link;
struct tm *tm;
time_t timeval;
mode = PARSE_MODE_NAME;
while (*buffer != '\n' && *buffer != '\0')
{
if (*buffer == ' ' || *buffer == '\t')
{
buffer++;
continue;
}
switch (mode)
{
case PARSE_MODE_NAME: /* Attribute Name */
rc_fieldcpy (attrstr, &buffer);
if ((attr =
rc_dict_findattr (attrstr)) == (DICT_ATTR *) NULL)
{
rc_log(LOG_ERR, "rc_avpair_parse: unknown attribute");
if (*first_pair) {
rc_avpair_free(*first_pair);
*first_pair = (VALUE_PAIR *) NULL;
}
return (-1);
}
mode = PARSE_MODE_EQUAL;
break;
case PARSE_MODE_EQUAL: /* Equal sign */
if (*buffer == '=')
{
mode = PARSE_MODE_VALUE;
buffer++;
}
else
{
rc_log(LOG_ERR, "rc_avpair_parse: missing or misplaced equal sign");
if (*first_pair) {
rc_avpair_free(*first_pair);
*first_pair = (VALUE_PAIR *) NULL;
}
return (-1);
}
break;
case PARSE_MODE_VALUE: /* Value */
rc_fieldcpy (valstr, &buffer);
if ((pair =
(VALUE_PAIR *) malloc (sizeof (VALUE_PAIR)))
== (VALUE_PAIR *) NULL)
{
rc_log(LOG_CRIT, "rc_avpair_parse: out of memory");
if (*first_pair) {
rc_avpair_free(*first_pair);
*first_pair = (VALUE_PAIR *) NULL;
}
return (-1);
}
strcpy (pair->name, attr->name);
pair->attribute = attr->value;
pair->type = attr->type;
switch (pair->type)
{
case PW_TYPE_STRING:
strcpy (pair->strvalue, valstr);
pair->lvalue = strlen(valstr);
break;
case PW_TYPE_INTEGER:
if (isdigit (*valstr))
{
pair->lvalue = atoi (valstr);
}
else
{
if ((dval = rc_dict_findval (valstr))
== (DICT_VALUE *) NULL)
{
rc_log(LOG_ERR, "rc_avpair_parse: unknown attribute value: %s", valstr);
if (*first_pair) {
rc_avpair_free(*first_pair);
*first_pair = (VALUE_PAIR *) NULL;
}
free (pair);
return (-1);
}
else
{
pair->lvalue = dval->value;
}
}
break;
case PW_TYPE_IPADDR:
pair->lvalue = rc_get_ipaddr(valstr);
break;
case PW_TYPE_DATE:
timeval = time (0);
tm = localtime (&timeval);
tm->tm_hour = 0;
tm->tm_min = 0;
tm->tm_sec = 0;
rc_str2tm (valstr, tm);
#ifdef TIMELOCAL
pair->lvalue = (UINT4) timelocal (tm);
#else /* TIMELOCAL */
pair->lvalue = (UINT4) mktime (tm);
#endif /* TIMELOCAL */
break;
default:
rc_log(LOG_ERR, "rc_avpair_parse: unknown attribute type %d", pair->type);
if (*first_pair) {
rc_avpair_free(*first_pair);
*first_pair = (VALUE_PAIR *) NULL;
}
free (pair);
return (-1);
}
pair->next = (VALUE_PAIR *) NULL;
if (*first_pair == (VALUE_PAIR *) NULL)
{
*first_pair = pair;
}
else
{
link = *first_pair;
while (link->next != (VALUE_PAIR *) NULL)
{
link = link->next;
}
link->next = pair;
}
mode = PARSE_MODE_NAME;
break;
default:
mode = PARSE_MODE_NAME;
break;
}
}
return (0);
}
/*
* Function: rc_avpair_tostr
*
* Purpose: Translate an av_pair into two strings
*
* Returns: 0 on success, -1 on failure
*
*/
int rc_avpair_tostr (VALUE_PAIR *pair, char *name, int ln, char *value, int lv)
{
DICT_VALUE *dval;
char buffer[32];
struct in_addr inad;
unsigned char *ptr;
*name = *value = '\0';
if (!pair || pair->name[0] == '\0') {
rc_log(LOG_ERR, "rc_avpair_tostr: pair is NULL or empty");
return (-1);
}
strncpy(name, pair->name, (size_t) ln);
switch (pair->type)
{
case PW_TYPE_STRING:
lv--;
ptr = (unsigned char *) pair->strvalue;
while (*ptr != '\0')
{
if (!(isprint (*ptr)))
{
sprintf (buffer, "\\%03o", *ptr);
strncat(value, buffer, (size_t) lv);
lv -= 4;
if (lv < 0) break;
}
else
{
strncat(value, ptr, 1);
lv--;
if (lv < 0) break;
}
ptr++;
}
break;
case PW_TYPE_INTEGER:
dval = rc_dict_getval (pair->lvalue, pair->name);
if (dval != (DICT_VALUE *) NULL)
{
strncpy(value, dval->name, (size_t) lv-1);
}
else
{
sprintf (buffer, "%ld", pair->lvalue);
strncpy(value, buffer, (size_t) lv);
}
break;
case PW_TYPE_IPADDR:
inad.s_addr = htonl(pair->lvalue);
strncpy (value, inet_ntoa (inad), (size_t) lv-1);
break;
case PW_TYPE_DATE:
strftime (buffer, sizeof (buffer), "%m/%d/%y %H:%M:%S",
gmtime ((time_t *) & pair->lvalue));
strncpy(value, buffer, lv-1);
break;
default:
rc_log(LOG_ERR, "rc_avpair_tostr: unknown attribute type %d", pair->type);
return (-1);
break;
}
return 0;
}
/*
* Function: rc_avpair_readin
*
* Purpose: get a sequence of attribute value pairs from the file input
* and make them into a list of value_pairs
*
*/
VALUE_PAIR *rc_avpair_readin(FILE *input)
{
VALUE_PAIR *vp = NULL;
char buffer[1024], *q;
while (fgets(buffer, sizeof(buffer), input) != NULL)
{
q = buffer;
while(*q && isspace(*q)) q++;
if ((*q == '\n') || (*q == '#') || (*q == '\0'))
continue;
if (rc_avpair_parse(q, &vp) < 0) {
rc_log(LOG_ERR, "rc_avpair_readin: malformed attribute: %s", buffer);
rc_avpair_free(vp);
return NULL;
}
}
return vp;
}
|