Skip to content
Snippets Groups Projects
Commit 5a48d82b authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Checking of pointer size when compressing dname.

- Pointer must be less than 16383.
parent 4073bfaa
No related branches found
No related tags found
No related merge requests found
......@@ -127,6 +127,8 @@ typedef struct dnslib_compr dnslib_compr_t;
//static int COMPRESS_DNAMES = 1;
static const size_t DNSLIB_RESPONSE_MAX_PTR = 16383;
/*----------------------------------------------------------------------------*/
/* Non-API functions */
/*----------------------------------------------------------------------------*/
......@@ -565,6 +567,12 @@ DEBUG_DNSLIB_RESPONSE(
", pointer: %p\n", name, not_matched, pos, dname);
free(name);
);
if (pos > DNSLIB_RESPONSE_MAX_PTR) {
debug_dnslib_response("Pointer larger than it can be, not"
" saving\n");
return DNSLIB_EDNAMEPTR;
}
if (table->count == table->max &&
dnslib_response_realloc_compr(table) != 0) {
return DNSLIB_ENOMEM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment