rawmsg.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package dns
  2. import "encoding/binary"
  3. // rawSetRdlength sets the rdlength in the header of
  4. // the RR. The offset 'off' must be positioned at the
  5. // start of the header of the RR, 'end' must be the
  6. // end of the RR.
  7. func rawSetRdlength(msg []byte, off, end int) bool {
  8. l := len(msg)
  9. Loop:
  10. for {
  11. if off+1 > l {
  12. return false
  13. }
  14. c := int(msg[off])
  15. off++
  16. switch c & 0xC0 {
  17. case 0x00:
  18. if c == 0x00 {
  19. // End of the domainname
  20. break Loop
  21. }
  22. if off+c > l {
  23. return false
  24. }
  25. off += c
  26. case 0xC0:
  27. // pointer, next byte included, ends domainname
  28. off++
  29. break Loop
  30. }
  31. }
  32. // The domainname has been seen, we at the start of the fixed part in the header.
  33. // Type is 2 bytes, class is 2 bytes, ttl 4 and then 2 bytes for the length.
  34. off += 2 + 2 + 4
  35. if off+2 > l {
  36. return false
  37. }
  38. //off+1 is the end of the header, 'end' is the end of the rr
  39. //so 'end' - 'off+2' is the length of the rdata
  40. rdatalen := end - (off + 2)
  41. if rdatalen > 0xFFFF {
  42. return false
  43. }
  44. binary.BigEndian.PutUint16(msg[off:], uint16(rdatalen))
  45. return true
  46. }