/** * enum of all possible bencoding types and some options to use * to check a type, use ORing, not direct comparison, as bdecoded structs inherit opts from bdecode function in their ->types */ enum benc { string = 1 << 0, num = 1 << 1, list = 1 << 2, dict = 1 << 3, replace = 1 << 4 /**< replace existing element with same key when using binsert() instead of prepending the new element before the old. see binsert() docs. */ }; /** * structure representation of bencoded data * the structure copies strings */ struct bencoding { struct bencoding * next; /**< NULL if element is not member of a list or dict */ struct bencoding * prev; struct bencoding * child; /**< NULL if element is not a list or dict or if it has 0 children */ struct bencoding * parent; enum benc type; /**< type | opts of this element */ struct bencoding * key; /**< the key element, string according to the spec, applicable for dict */ char * value; /**< set to the content of the element. \0 terminated. NULL for dict and list. */ size_t valuelen; /**< length of string value. */ long int intvalue; int index; const char * after; /**< internal, set to character after this bencoded element in input string, used by recursive bdecode */ }; /** * frees the passed bencoding struct or performs no action if NULL was passed. caller should NULL the pointer to prevent reuse. */ void free_bencoding (struct bencoding * b) { if (!b) return; free_bencoding(b->child); /* we free the child should it exist. it can be NULL. */ free_bencoding(b->key); /* should this be an element of a dict, free the key */ free_bencoding(b->next); free(b->value); free(b); return; } /** * compares two bencoding elements. used in binsert. elements with different types are always different. * * @param a [in] if this one is higher, -1 is returned * @param b [in] if this one is higher, 1 is returned * @return -1 if a is higher, 1 if b is higher, 0 if they are the same */ int bcompare (struct bencoding * a, struct bencoding * b) { if (!a && !b) return 0; if (!a && b) return -1; if (a && !b) return 1; if (a->type & (num | string | list | dict) < b->type (num | string | list | dict)) return -1; if (a->type & (num | string | list | dict) > b->type (num | string | list | dict)) return 1; int ret = bcompare(a->key, b->key); if (ret) return ret; if (a->type & num) { if (a->intvalue != b->intvalue) return a->intvalue < b->intvalue ? -1 : 1; else return 0; } if (a->type & string) { if (a->valuelen != b->valuelen) return a->valuelen < b->valuelen ? -1 : 1; else return memcmp(a->value, b->value, a->valuelen); } if (!a->child && b->child) return -1; if (a->child && !b->child) return 1; a = a->child; b = b->child; if (a->value & (list | dict)) { while (1) { if (!a && !b) return 0; int ret = bcompare(a, b); if (ret) return ret; a = a->next; b = b->next; } } } /** * insert into bencoding dict or list. if key already exists, it's prepended to the already existing key, unless opts has replace set. * * the memory pointed to by elem is considered ownership and responsibility of the dict now, so it shouldn't be freed by the caller. it can still be modified, however. * * if elem or benc is NULL, function does nothing. * * default (without replace), new element will be inserted into the dict, but before the old element, with the aim that finders, such as bpath(), would return the new element instead of the old. * replace option frees the old element and inserts this one instead if the key already exists in the dict. this is not the default, because it frees objects that may be used elsewhere. * * @param benc [in] the structure to which elem will be inserted into * @param elem [in] the element that will be inserted into the structure */ void binsert (struct bencoding * benc, struct bencoding * elem) { if (!benc || !elem) return NULL; elem->parent = benc; if (!benc->child) { elem->next = NULL; elem->prev = NULL; elem->parent = benc; benc->child = elem; return; } benc = benc->child; while (benc->next && bcompare(elem->key, benc->next->key) < 0) benc = benc->next; struct bencoding * oldnext = benc->next; benc->next = elem; elem->prev = benc; elem->next = oldnext; if (oldnext) oldnext->prev = elem; } /** * returns a bencoding element that represents a string * * the string ownership is not transfered, the string is strdup()ed * * @param str [in] the string to be converted to a bencoding element */ struct bencoding * bstr (const char * str) { struct bencoding * b = calloc(1, sizeof *b); if (!b) return NULL; b->type = string; b->valuelen = strlen(str); b->value = strdup(str); if (!b->value) { free(b); return NULL; } return b; } /** * returns a bencoding element that represents a number * * @param num [in] the number to be converted to a bencoding number */ struct bencoding * bnum (long int num) { struct bencoding * b = calloc(1, sizeof *b); if (!b) return NULL; b->type = num; char buf[512]; sprintf(buf, "%ld", num); b->value = strdup(buf); if (!b->valueint) { free(b); return NULL; } b->valueint = num; return b; } /** * helper macros for number comparisons */ #define MAX(x, y) ((x) >= (y) ? (x) : (y)) #define MIN(x, y) ((x) <= (y) ? (x) : (y)) /** * return how much space a character in a string uses * * @param a [in] the character in question */ int b2json_charsize (unsigned char a) { if (a == '"') return 2; if (a == '\\') return 2; if (a == '\b') return 2; if (a == '\f') return 2; if (a == '\n') return 2; if (a == '\r') return 2; if (a == '\t') return 2; if (a < ' ') return 6; return 1; } /** * write a string representation of a character in a JSON string * * @param dest [out] destination * @param a [in] the character in question * @return the destination pointer, incremented for the number of bytes written */ char * b2json_charrepr (char * dest, unsigned char a) { switch (a) { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstringop-truncation" case '"': strncpy(dest, "\\\"", 2); return dest+2; case '\\': strncpy(dest, "\\\\", 2); return dest+2; case '\b': strncpy(dest, "\\b", 2); return dest+2; case '\f': strncpy(dest, "\\f", 2); return dest+2; case '\n': strncpy(dest, "\\n", 2); return dest+2; case '\r': strncpy(dest, "\\r", 2); return dest+2; case '\t': strncpy(dest, "\\t", 2); return dest+2; default: if (a < ' ') { char buf[7]; sprintf(buf, "\\u00%02x", a); strncpy(dest, buf, 6); return dest+6; } else { *dest++ = a; return dest; } #pragma GCC diagnostic pop } } /** * get size required for JSON representation of a bencoding struct. terminating NULL byte is not counted, because b2json does not write it. write it yourself. * * @param b [in] bencoding structure of a bdecoded element */ int b2json_length (struct bencoding * b) { if (!b) return 4; if (b->type & string) { int size = 2; for (size_t i = 0; i < b->valuelen; i++) size += b2json_charsize(b->value[i]); return size; } if (b->type & num) { char buf[512]; sprintf(buf, "%ld", b->intvalue); return strlen(buf); } if (b->type & list) { if (!b->child) return 2; struct bencoding * t = b->child; int size = 2 + b2json_length(t); while (t->next) { t = t->next; size += b2json_length(t) + 1; } return size; } if (b->type & dict) { if (!b->child) return 2; struct bencoding * t = b->child; int size = 3 + b2json_length(t) + b2json_length(t->key); while (t->next) { t = t->next; size += 1 + b2json_length(t) + 1 + b2json_length(t->key); } return size; } return 5; } /** * write json representation of a bencoding struct. does not write terminating nullbyte, b2json_length does not include it in count. add it yourself. should write exactly b2json_length bytes. * * writes false when struct has an incorrect type and null when NULL pointer is passed, this is in ordnung with b2json_length. * * @param dest [in] destination * @param b [in] bencoding structure of a bdecoded element * @return the destination pointer, incremented for the number of bytes written */ char * b2json (char * dest, struct bencoding * b) { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstringop-truncation" if (!b) { strncpy(dest, "null", 4); return dest+4; } if (b->type & string) { *dest++ = '"'; for (size_t i = 0; i < b->valuelen; i++) dest = b2json_charrepr(dest, b->value[i]); *dest++ = '"'; return dest; } if (b->type & num) { char buf[512]; sprintf(buf, "%ld", b->intvalue); strncpy(dest, buf, strlen(buf)); return dest+strlen(buf); } if (b->type & list) { if (!b->child) { strncpy(dest, "[]", 2); return dest+2; } struct bencoding * t = b->child; *dest++ = '['; dest = b2json(dest, t); while (t->next) { t = t->next; *dest++ = ','; dest = b2json(dest, t); } *dest++ = ']'; return dest; } if (b->type & dict) { if (!b->child) { strncpy(dest, "{}", 2); return dest+2; } *dest++ = '{'; struct bencoding * t = b->child; dest = b2json(dest, t->key); *dest++ = ':'; dest = b2json(dest, t); while (t->next) { t = t->next; *dest++ = ','; dest = b2json(dest, t->key); *dest++ = ':'; dest = b2json(dest, t); } *dest++ = '}'; return dest; } strncpy(dest, "false", 4); return dest+4; #pragma GCC diagnostic pop } /** * bdecodes a bencoded structure from a string into a bencoding structure that must be free_bencodinged by the caller. * * nonstandard things: this parser allows for dict keys to be of any type, valuekey * * @param len [in] * if set to -1, string is assumed to be correct and not NULL terminated, NULLs may be in strings. * - malicious strings may trigger reads past the end of the buffer, which may lead to undefined * behaviour, crashes (DoS) or leaks of content, stored in memory. * - if opts&terminate, another character will be written after the bencoded structure in memory if * that structure is a string. beware and have space allocated for it! * * if set to -2, string is assumed to be NULL terminated and no further reading will be done after the NULL. * - if such terminator breaks an incomplete element, the resulting structure may be incomplete, but * will be correct - for example valuelen of a misterminated string will correctly be shortened. * * if set to a positive number, reading will only be allowed up to that many characters. * - if the input string reads the end and the structure is incomplete, same thing as with -2 happens. * - if the structure ends cleanly (string length satisfied or end of list, dict or num found), * processing stops, no mather how many characters of len are left. * @param opts [in] sets options. do not set the type bits here, this is the same enum as the ->type enum of returned struct. * opts will be reflected in the ->type of the returning struct. opts will apply to childs of lists&dicts too. */ struct bencoding * bdecode (const char * s, int len, enum benc opts) { if (!s || len < -2 || (len >= 0 && len < 2 /* 2 being the smallest bencoding string */)) return NULL; if (len == -2) len = strlen(s); struct bencoding * b = calloc(1, sizeof(struct bencoding)); /* SEGV if OOM */ char * ch = NULL; switch (s[0]) { case 'i': /* num */ b->type = num; if (len == -1 || memchr(s, 'e', len)) { /* correct string or end found */ b->intvalue = strtol(s+1, &ch, 10); b->valuelen = ch-(s+1); b->value = malloc(b->valuelen+1); if (!b->value) return NULL; strncpy(b->value, s+1, b->valuelen); b->value[b->valuelen] = '\0'; b->after = s+2+b->valuelen; } else return NULL; break; case 'd': /* dict */ b->type = dict; __attribute__((fallthrough)); case 'l': /* list */ if (!b->type) b->type = list; const char * cp = s+1; struct bencoding * arbeit = NULL; struct bencoding * oldarbeit = NULL; struct bencoding * oldoldarbeit = NULL; /* for dicts, holds previous value */ int index = 0; while (len == -1 || cp <= s+len) { /* s+len is max we are allowed to read */ arbeit = bdecode(cp, len == -1 ? -1 : len-(cp-s), opts); if (arbeit) arbeit->parent = b; if (!arbeit) /* bdecoding failed or last element */ break; #define ISDICT (b->type & dict) #define ISLIST !ISDICT #define ISVAL (index % 2) #define ISKEY !ISVAL if (ISDICT && ISVAL) arbeit->key = oldarbeit; cp = arbeit->after; arbeit->prev = ISDICT ? ISVAL ? oldoldarbeit : oldarbeit : oldarbeit; arbeit->index = ISDICT ? index/2 : index; if (ISLIST) { if (index) oldarbeit->next = arbeit; else b->child = arbeit; } if (ISDICT) { if (index == 1) b->child = arbeit; else if (ISVAL) oldoldarbeit->next = arbeit; } oldoldarbeit = oldarbeit; oldarbeit = arbeit; index++; } b->after = cp+1; b->type = b->type | opts; if (ISDICT && ISVAL) // e je torej value, če je prej samoten key free_bencoding(oldarbeit); // this key would be otherwise leaked return b; case 'e': /* end of list/dict */ free(b); return NULL; default: if (!(s[0] >= '0' && s[0] <= '9')) { /* not a string. not checking this would allow DoS for parsing "lx" */ fprintf(stderr, "bencoding: unknown type %c\n", s[0]); free(b); return NULL; } b->type = string; if (len == -1 || (b->value = memchr(s, ':', len))) { b->valuelen = strtol(s, &ch, 10); if (len != -1 && (unsigned)len < b->valuelen + (ch+1 - s) /* len minus prefix; strlen & colon */) b->valuelen = len - (ch+1 - s); /* malformed bencoded data, truncating string */ b->value = malloc(b->valuelen+1); strncpy(b->value, ch+1, b->valuelen); b->value[b->valuelen] = '\0'; b->after = ch+1+b->valuelen; } else { free(b); return NULL; } break; } b->type = b->type | opts; return b; } /** * returns a pointer to bencoding struct matching bencoding path or NULL if not found. * * path key/key2/key3 will given object {"key":{"key2":{"key3":val}}} return val * * @param benc [in] the bencoding dict to look in * @param key [in] the path */ struct bencoding * bpath (struct bencoding * benc, const char * key) { if (!benc) return NULL; if (!benc->child) return NULL; benc = benc->child; if (key[0] == '/') key++; size_t len = strlen(key); char * c = strchr(key, '/'); if (c) len = c - key; while (benc) { if (benc->key && benc->key->type & num) { char buf[512]; sprintf(buf, "%ld", benc->key->intvalue); if (len == strlen(buf) && !strncmp(buf, key, len)) { if (!c) return benc; else return bpath(benc, key+len); } } if (benc->key && benc->key->type & string) { if (len == benc->key->valuelen && !strncmp(key, benc->key->value, len)) { if (!c) return benc; else return bpath(benc, key+len); } } benc = benc->next; } return NULL; } /** * macro that loops following code body across a list or values of dict * * @param elem [out] name of element that will be used for value while looping * @param list [in] list/dict of values */ #define bforeach(elem, list) \ for (struct bencoding * elem = list ? list->child : NULL; elem; elem = elem->next) /** * find a value in a list. returns NULL if not found. * * @param benc [in] the bencoding list or dict to look in * @param str [in] the value */ struct bencoding * bval (struct bencoding * benc, const char * val) { if (!benc) return NULL; if (!benc->child) return NULL; benc = benc->child; while (benc) { if (benc->type & num) { char buf[412]; sprintf(buf, "%ld", benc->intvalue); if (!strcmp(buf, val)) return benc; } if (benc->type & string && strlen(val) == benc->valuelen && !strncmp(benc->value, val, benc->valuelen)) return benc; benc = benc->next; } return NULL; }