dns: fix non-NULL terminated C-string 05/22405/3
authorBenoît Ganne <bganne@cisco.com>
Mon, 30 Sep 2019 08:13:27 +0000 (10:13 +0200)
committerDave Barach <openvpp@barachs.net>
Mon, 30 Sep 2019 16:22:39 +0000 (16:22 +0000)
Type: fix

Change-Id: Ib030e6ac3386528901e0805d1ffe2eec033d819f
Signed-off-by: Benoît Ganne <bganne@cisco.com>
src/plugins/dns/dns.c

index 4a882eb..a6dff67 100644 (file)
@@ -797,6 +797,8 @@ dns_add_static_entry (dns_main_t * dm, u8 * name, u8 * dns_reply_data)
 
   /* Note: consumes the name vector */
   ep->name = name;
+  /* make sure it NULL-terminated as hash_set_mem will use strlen() */
+  vec_terminate_c_string (ep->name);
   hash_set_mem (dm->cache_entry_by_name, ep->name, ep - dm->entries);
   ep->flags = DNS_CACHE_ENTRY_FLAG_VALID | DNS_CACHE_ENTRY_FLAG_STATIC;
   ep->dns_response = dns_reply_data;