handle labels with 8-bit byte values in dn_skipname
authorRyan Fairfax <rfairfax@microsoft.com>
Thu, 7 Mar 2019 21:20:54 +0000 (13:20 -0800)
committerRich Felker <dalias@aerifal.cx>
Wed, 13 Mar 2019 15:44:12 +0000 (11:44 -0400)
commit2a0ff45b362b7f0f89374ba7240c469d9ea53562
tree3a4fffa419b7ac9b7c2d781e099eeba1f791fcc1
parent4b125dd408d54487dc8843b9553502aa0c4167f8
handle labels with 8-bit byte values in dn_skipname

The original logic considered each byte until it either found a 0
value or a value >= 192. This means if a string segment contained any
byte >= 192 it was interepretted as a compressed segment marker even
if it wasn't in a position where it should be interpretted as such.

The fix is to adjust dn_skipname to increment by each segments size
rather than look at each character. This avoids misinterpretting
string segment characters by not considering those bytes.
src/network/dn_skipname.c