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 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
|
#include "bencode.h"
#include <stdio.h>
#include <sys/uio.h>
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
/* set to 0 for alloc debugging, e.g. through valgrind */
#define BENCODE_MIN_BUFFER_PIECE_LEN 512
#define BENCODE_HASH_BUCKETS 31 /* prime numbers work best */
struct __bencode_buffer_piece {
char *tail;
unsigned int left;
struct __bencode_buffer_piece *next;
char buf[0];
};
struct __bencode_free_list {
void *ptr;
free_func_t func;
struct __bencode_free_list *next;
};
struct __bencode_hash {
struct bencode_item *buckets[BENCODE_HASH_BUCKETS];
};
static bencode_item_t __bencode_end_marker = {
.type = BENCODE_END_MARKER,
.iov[0].iov_base = "e",
.iov[0].iov_len = 1,
.iov_cnt = 1,
.str_len = 1,
};
static bencode_item_t *__bencode_decode(bencode_buffer_t *buf, const char *s, const char *end);
static void __bencode_item_init(bencode_item_t *item) {
item->last_child = item->parent = item->child = item->sibling = NULL;
}
static void __bencode_container_init(bencode_item_t *cont) {
cont->iov[0].iov_len = 1;
cont->iov[1].iov_base = "e";
cont->iov[1].iov_len = 1;
cont->iov_cnt = 2;
cont->str_len = 2;
}
static void __bencode_dictionary_init(bencode_item_t *dict) {
dict->type = BENCODE_DICTIONARY;
dict->iov[0].iov_base = "d";
dict->value = 0;
__bencode_container_init(dict);
}
static void __bencode_list_init(bencode_item_t *list) {
list->type = BENCODE_LIST;
list->iov[0].iov_base = "l";
__bencode_container_init(list);
}
static struct __bencode_buffer_piece *__bencode_piece_new(unsigned int size) {
struct __bencode_buffer_piece *ret;
if (size < BENCODE_MIN_BUFFER_PIECE_LEN)
size = BENCODE_MIN_BUFFER_PIECE_LEN;
ret = BENCODE_MALLOC(sizeof(*ret) + size);
if (!ret)
return NULL;
ret->tail = ret->buf;
ret->left = size;
ret->next = NULL;
return ret;
}
int bencode_buffer_init(bencode_buffer_t *buf) {
buf->pieces = __bencode_piece_new(0);
if (!buf->pieces)
return -1;
buf->free_list = NULL;
buf->error = 0;
return 0;
}
static void *__bencode_alloc(bencode_buffer_t *buf, unsigned int size) {
struct __bencode_buffer_piece *piece;
void *ret;
if (!buf)
return NULL;
if (buf->error)
return NULL;
piece = buf->pieces;
if (size <= piece->left)
goto alloc;
piece = __bencode_piece_new(size);
if (!piece) {
buf->error = 1;
return NULL;
}
piece->next = buf->pieces;
buf->pieces = piece;
assert(size <= piece->left);
alloc:
piece->left -= size;
ret = piece->tail;
piece->tail += size;
return ret;
}
void bencode_buffer_free(bencode_buffer_t *buf) {
struct __bencode_free_list *fl;
struct __bencode_buffer_piece *piece, *next;
for (fl = buf->free_list; fl; fl = fl->next)
fl->func(fl->ptr);
for (piece = buf->pieces; piece; piece = next) {
next = piece->next;
BENCODE_FREE(piece);
}
}
static bencode_item_t *__bencode_item_alloc(bencode_buffer_t *buf, unsigned int payload) {
bencode_item_t *ret;
ret = __bencode_alloc(buf, sizeof(struct bencode_item) + payload);
if (!ret)
return NULL;
ret->buffer = buf;
__bencode_item_init(ret);
return ret;
}
bencode_item_t *bencode_dictionary(bencode_buffer_t *buf) {
bencode_item_t *ret;
ret = __bencode_item_alloc(buf, 0);
if (!ret)
return NULL;
__bencode_dictionary_init(ret);
return ret;
}
bencode_item_t *bencode_list(bencode_buffer_t *buf) {
bencode_item_t *ret;
ret = __bencode_item_alloc(buf, 0);
if (!ret)
return NULL;
__bencode_list_init(ret);
return ret;
}
static void __bencode_container_add(bencode_item_t *parent, bencode_item_t *child) {
if (!parent)
return;
if (!child)
return;
assert(child->parent == NULL);
assert(child->sibling == NULL);
child->parent = parent;
if (parent->last_child)
parent->last_child->sibling = child;
parent->last_child = child;
if (!parent->child)
parent->child = child;
while (parent) {
parent->iov_cnt += child->iov_cnt;
parent->str_len += child->str_len;
parent = parent->parent;
}
}
static bencode_item_t *__bencode_string_alloc(bencode_buffer_t *buf, const void *base,
int str_len, int iov_len, int iov_cnt, bencode_type_t type)
{
bencode_item_t *ret;
int len_len;
assert((str_len <= 99999) && (str_len >= 0));
ret = __bencode_item_alloc(buf, 7);
if (!ret)
return NULL;
len_len = sprintf(ret->__buf, "%d:", str_len);
ret->type = type;
ret->iov[0].iov_base = ret->__buf;
ret->iov[0].iov_len = len_len;
ret->iov[1].iov_base = (void *) base;
ret->iov[1].iov_len = iov_len;
ret->iov_cnt = iov_cnt + 1;
ret->str_len = len_len + str_len;
return ret;
}
bencode_item_t *bencode_string_len_dup(bencode_buffer_t *buf, const char *s, int len) {
char *sd = __bencode_alloc(buf, len);
if (!sd)
return NULL;
memcpy(sd, s, len);
return bencode_string_len(buf, sd, len);
}
bencode_item_t *bencode_string_len(bencode_buffer_t *buf, const char *s, int len) {
return __bencode_string_alloc(buf, s, len, len, 1, BENCODE_STRING);
}
bencode_item_t *bencode_string_iovec(bencode_buffer_t *buf, const struct iovec *iov, int iov_cnt, int str_len) {
int i;
if (iov_cnt < 0)
return NULL;
if (str_len < 0) {
str_len = 0;
for (i = 0; i < iov_cnt; i++)
str_len += iov[i].iov_len;
}
return __bencode_string_alloc(buf, iov, str_len, iov_cnt, iov_cnt, BENCODE_IOVEC);
}
bencode_item_t *bencode_integer(bencode_buffer_t *buf, long long int i) {
bencode_item_t *ret;
int alen, rlen;
alen = 8;
while (1) {
ret = __bencode_item_alloc(buf, alen + 3);
if (!ret)
return NULL;
rlen = snprintf(ret->__buf, alen, "i%llde", i);
if (rlen < alen)
break;
alen <<= 1;
}
ret->type = BENCODE_INTEGER;
ret->iov[0].iov_base = ret->__buf;
ret->iov[0].iov_len = rlen;
ret->iov[1].iov_base = NULL;
ret->iov[1].iov_len = 0;
ret->iov_cnt = 1;
ret->str_len = rlen;
return ret;
}
bencode_item_t *bencode_dictionary_add_len(bencode_item_t *dict, const char *key, int keylen, bencode_item_t *val) {
bencode_item_t *str;
if (!dict || !val)
return NULL;
assert(dict->type == BENCODE_DICTIONARY);
str = bencode_string_len(dict->buffer, key, keylen);
if (!str)
return NULL;
__bencode_container_add(dict, str);
__bencode_container_add(dict, val);
return val;
}
bencode_item_t *bencode_list_add(bencode_item_t *list, bencode_item_t *item) {
if (!list || !item)
return NULL;
assert(list->type == BENCODE_LIST);
__bencode_container_add(list, item);
return item;
}
static int __bencode_iovec_cpy(struct iovec *out, const struct iovec *in, int num) {
memcpy(out, in, num * sizeof(*out));
return num;
}
static int __bencode_str_cpy(char *out, const struct iovec *in, int num) {
char *orig = out;
while (--num >= 0) {
memcpy(out, in->iov_base, in->iov_len);
out += in->iov_len;
in++;
}
return out - orig;
}
static int __bencode_iovec_dump(struct iovec *out, bencode_item_t *item) {
bencode_item_t *child;
struct iovec *orig = out;
assert(item->iov[0].iov_base != NULL);
out += __bencode_iovec_cpy(out, &item->iov[0], 1);
child = item->child;
while (child) {
out += __bencode_iovec_dump(out, child);
child = child->sibling;
}
if (item->type == BENCODE_IOVEC)
out += __bencode_iovec_cpy(out, item->iov[1].iov_base, item->iov[1].iov_len);
else if (item->iov[1].iov_base)
out += __bencode_iovec_cpy(out, &item->iov[1], 1);
assert((out - orig) == item->iov_cnt);
return item->iov_cnt;
}
static int __bencode_str_dump(char *out, bencode_item_t *item) {
char *orig = out;
bencode_item_t *child;
assert(item->iov[0].iov_base != NULL);
out += __bencode_str_cpy(out, &item->iov[0], 1);
child = item->child;
while (child) {
out += __bencode_str_dump(out, child);
child = child->sibling;
}
if (item->type == BENCODE_IOVEC)
out += __bencode_str_cpy(out, item->iov[1].iov_base, item->iov[1].iov_len);
else if (item->iov[1].iov_base)
out += __bencode_str_cpy(out, &item->iov[1], 1);
assert((out - orig) == item->str_len);
*out = '\0';
return item->str_len;
}
struct iovec *bencode_iovec(bencode_item_t *root, int *cnt, unsigned int head, unsigned int tail) {
struct iovec *ret;
if (!root)
return NULL;
assert(cnt != NULL);
assert(root->iov_cnt > 0);
ret = __bencode_alloc(root->buffer, sizeof(*ret) * (root->iov_cnt + head + tail));
if (!ret)
return NULL;
*cnt = __bencode_iovec_dump(ret + head, root);
return ret;
}
char *bencode_collapse(bencode_item_t *root, int *len) {
char *ret;
int l;
if (!root)
return NULL;
assert(root->str_len > 0);
ret = __bencode_alloc(root->buffer, root->str_len + 1);
if (!ret)
return NULL;
l = __bencode_str_dump(ret, root);
if (len)
*len = l;
return ret;
}
char *bencode_collapse_dup(bencode_item_t *root, int *len) {
char *ret;
int l;
if (!root)
return NULL;
assert(root->str_len > 0);
ret = BENCODE_MALLOC(root->str_len + 1);
if (!ret)
return NULL;
l = __bencode_str_dump(ret, root);
if (len)
*len = l;
return ret;
}
static unsigned int __bencode_hash_str_len(const unsigned char *s, int len) {
unsigned long *ul;
unsigned int *ui;
unsigned short *us;
if (len >= sizeof(*ul)) {
ul = (void *) s;
return *ul % BENCODE_HASH_BUCKETS;
}
if (len >= sizeof(*ui)) {
ui = (void *) s;
return *ui % BENCODE_HASH_BUCKETS;
}
if (len >= sizeof(*us)) {
us = (void *) s;
return *us % BENCODE_HASH_BUCKETS;
}
if (len >= sizeof(*s))
return *s % BENCODE_HASH_BUCKETS;
return 0;
}
static unsigned int __bencode_hash_str(bencode_item_t *str) {
assert(str->type == BENCODE_STRING);
return __bencode_hash_str_len(str->iov[1].iov_base, str->iov[1].iov_len);
}
static void __bencode_hash_insert(bencode_item_t *key, struct __bencode_hash *hash) {
unsigned int bucket, i;
i = bucket = __bencode_hash_str(key);
while (1) {
if (!hash->buckets[i]) {
hash->buckets[i] = key;
break;
}
i++;
if (i >= BENCODE_HASH_BUCKETS)
i = 0;
if (i == bucket)
break;
}
}
static bencode_item_t *__bencode_decode_dictionary(bencode_buffer_t *buf, const char *s, const char *end) {
bencode_item_t *ret, *key, *value;
struct __bencode_hash *hash;
if (*s != 'd')
return NULL;
s++;
ret = __bencode_item_alloc(buf, sizeof(*hash));
if (!ret)
return NULL;
__bencode_dictionary_init(ret);
ret->value = 1;
hash = (void *) ret->__buf;
memset(hash, 0, sizeof(*hash));
while (s < end) {
key = __bencode_decode(buf, s, end);
if (!key)
return NULL;
s += key->str_len;
if (key->type == BENCODE_END_MARKER)
break;
if (key->type != BENCODE_STRING)
return NULL;
__bencode_container_add(ret, key);
if (s >= end)
return NULL;
value = __bencode_decode(buf, s, end);
if (!value)
return NULL;
s += value->str_len;
if (value->type == BENCODE_END_MARKER)
return NULL;
__bencode_container_add(ret, value);
__bencode_hash_insert(key, hash);
}
return ret;
}
static bencode_item_t *__bencode_decode_list(bencode_buffer_t *buf, const char *s, const char *end) {
bencode_item_t *ret, *item;
if (*s != 'l')
return NULL;
s++;
ret = __bencode_item_alloc(buf, 0);
if (!ret)
return NULL;
__bencode_list_init(ret);
while (s < end) {
item = __bencode_decode(buf, s, end);
if (!item)
return NULL;
s += item->str_len;
if (item->type == BENCODE_END_MARKER)
break;
__bencode_container_add(ret, item);
}
return ret;
}
static bencode_item_t *__bencode_decode_integer(bencode_buffer_t *buf, const char *s, const char *end) {
long long int i;
const char *orig = s;
char *convend;
bencode_item_t *ret;
if (*s != 'i')
return NULL;
s++;
if (s >= end)
return NULL;
if (*s == '0') {
i = 0;
s++;
goto done;
}
i = strtoll(s, &convend, 10);
if (convend == s)
return NULL;
s += (convend - s);
done:
if (s >= end)
return NULL;
if (*s != 'e')
return NULL;
s++;
ret = __bencode_item_alloc(buf, 0);
if (!ret)
return NULL;
ret->type = BENCODE_INTEGER;
ret->iov[0].iov_base = (void *) orig;
ret->iov[0].iov_len = s - orig;
ret->iov[1].iov_base = NULL;
ret->iov[1].iov_len = 0;
ret->iov_cnt = 1;
ret->str_len = s - orig;
ret->value = i;
return ret;
}
static bencode_item_t *__bencode_decode_string(bencode_buffer_t *buf, const char *s, const char *end) {
unsigned long int sl;
char *convend;
const char *orig = s;
bencode_item_t *ret;
if (*s == '0') {
sl = 0;
s++;
goto colon;
}
sl = strtoul(s, &convend, 10);
if (convend == s)
return NULL;
s += (convend - s);
colon:
if (s >= end)
return NULL;
if (*s != ':')
return NULL;
s++;
if (s + sl > end)
return NULL;
ret = __bencode_item_alloc(buf, 0);
if (!ret)
return NULL;
ret->type = BENCODE_STRING;
ret->iov[0].iov_base = (void *) orig;
ret->iov[0].iov_len = s - orig;
ret->iov[1].iov_base = (void *) s;
ret->iov[1].iov_len = sl;
ret->iov_cnt = 2;
ret->str_len = s - orig + sl;
return ret;
}
static bencode_item_t *__bencode_decode(bencode_buffer_t *buf, const char *s, const char *end) {
if (s >= end)
return NULL;
switch (*s) {
case 'd':
return __bencode_decode_dictionary(buf, s, end);
case 'l':
return __bencode_decode_list(buf, s, end);
case 'i':
return __bencode_decode_integer(buf, s, end);
case 'e':
return &__bencode_end_marker;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
return __bencode_decode_string(buf, s, end);
default:
return NULL;
}
}
bencode_item_t *bencode_decode(bencode_buffer_t *buf, const char *s, int len) {
assert(s != NULL);
return __bencode_decode(buf, s, s + len);
}
static int __bencode_dictionary_key_match(bencode_item_t *key, const char *keystr, int keylen) {
assert(key->type == BENCODE_STRING);
if (keylen != key->iov[1].iov_len)
return 0;
if (memcmp(keystr, key->iov[1].iov_base, keylen))
return 0;
return 1;
}
bencode_item_t *bencode_dictionary_get_len(bencode_item_t *dict, const char *keystr, int keylen) {
bencode_item_t *key;
unsigned int bucket, i;
struct __bencode_hash *hash;
if (!dict)
return NULL;
if (dict->type != BENCODE_DICTIONARY)
return NULL;
/* try hash lookup first if possible */
if (dict->value == 1) {
hash = (void *) dict->__buf;
i = bucket = __bencode_hash_str_len((const unsigned char *) keystr, keylen);
while (1) {
key = hash->buckets[i];
if (!key)
return NULL; /* would be there, but isn't */
assert(key->sibling != NULL);
if (__bencode_dictionary_key_match(key, keystr, keylen))
return key->sibling;
i++;
if (i >= BENCODE_HASH_BUCKETS)
i = 0;
if (i == bucket)
break; /* fall back to regular lookup */
}
}
for (key = dict->child; key; key = key->sibling->sibling) {
assert(key->sibling != NULL);
if (__bencode_dictionary_key_match(key, keystr, keylen))
return key->sibling;
}
return NULL;
}
void bencode_buffer_destroy_add(bencode_buffer_t *buf, free_func_t func, void *p) {
struct __bencode_free_list *li;
if (!p)
return;
li = __bencode_alloc(buf, sizeof(*li));
if (!li)
return;
li->ptr = p;
li->func = func;
li->next = buf->free_list;
buf->free_list = li;
}
|