update.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package dns
  2. // NameUsed sets the RRs in the prereq section to
  3. // "Name is in use" RRs. RFC 2136 section 2.4.4.
  4. func (u *Msg) NameUsed(rr []RR) {
  5. if u.Answer == nil {
  6. u.Answer = make([]RR, 0, len(rr))
  7. }
  8. for _, r := range rr {
  9. u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: TypeANY, Class: ClassANY}})
  10. }
  11. }
  12. // NameNotUsed sets the RRs in the prereq section to
  13. // "Name is in not use" RRs. RFC 2136 section 2.4.5.
  14. func (u *Msg) NameNotUsed(rr []RR) {
  15. if u.Answer == nil {
  16. u.Answer = make([]RR, 0, len(rr))
  17. }
  18. for _, r := range rr {
  19. u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: TypeANY, Class: ClassNONE}})
  20. }
  21. }
  22. // Used sets the RRs in the prereq section to
  23. // "RRset exists (value dependent -- with rdata)" RRs. RFC 2136 section 2.4.2.
  24. func (u *Msg) Used(rr []RR) {
  25. if len(u.Question) == 0 {
  26. panic("dns: empty question section")
  27. }
  28. if u.Answer == nil {
  29. u.Answer = make([]RR, 0, len(rr))
  30. }
  31. for _, r := range rr {
  32. r.Header().Class = u.Question[0].Qclass
  33. u.Answer = append(u.Answer, r)
  34. }
  35. }
  36. // RRsetUsed sets the RRs in the prereq section to
  37. // "RRset exists (value independent -- no rdata)" RRs. RFC 2136 section 2.4.1.
  38. func (u *Msg) RRsetUsed(rr []RR) {
  39. if u.Answer == nil {
  40. u.Answer = make([]RR, 0, len(rr))
  41. }
  42. for _, r := range rr {
  43. u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: r.Header().Rrtype, Class: ClassANY}})
  44. }
  45. }
  46. // RRsetNotUsed sets the RRs in the prereq section to
  47. // "RRset does not exist" RRs. RFC 2136 section 2.4.3.
  48. func (u *Msg) RRsetNotUsed(rr []RR) {
  49. if u.Answer == nil {
  50. u.Answer = make([]RR, 0, len(rr))
  51. }
  52. for _, r := range rr {
  53. u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: r.Header().Rrtype, Class: ClassNONE}})
  54. }
  55. }
  56. // Insert creates a dynamic update packet that adds an complete RRset, see RFC 2136 section 2.5.1.
  57. func (u *Msg) Insert(rr []RR) {
  58. if len(u.Question) == 0 {
  59. panic("dns: empty question section")
  60. }
  61. if u.Ns == nil {
  62. u.Ns = make([]RR, 0, len(rr))
  63. }
  64. for _, r := range rr {
  65. r.Header().Class = u.Question[0].Qclass
  66. u.Ns = append(u.Ns, r)
  67. }
  68. }
  69. // RemoveRRset creates a dynamic update packet that deletes an RRset, see RFC 2136 section 2.5.2.
  70. func (u *Msg) RemoveRRset(rr []RR) {
  71. if u.Ns == nil {
  72. u.Ns = make([]RR, 0, len(rr))
  73. }
  74. for _, r := range rr {
  75. u.Ns = append(u.Ns, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: r.Header().Rrtype, Class: ClassANY}})
  76. }
  77. }
  78. // RemoveName creates a dynamic update packet that deletes all RRsets of a name, see RFC 2136 section 2.5.3
  79. func (u *Msg) RemoveName(rr []RR) {
  80. if u.Ns == nil {
  81. u.Ns = make([]RR, 0, len(rr))
  82. }
  83. for _, r := range rr {
  84. u.Ns = append(u.Ns, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: TypeANY, Class: ClassANY}})
  85. }
  86. }
  87. // Remove creates a dynamic update packet deletes RR from a RRSset, see RFC 2136 section 2.5.4
  88. func (u *Msg) Remove(rr []RR) {
  89. if u.Ns == nil {
  90. u.Ns = make([]RR, 0, len(rr))
  91. }
  92. for _, r := range rr {
  93. r.Header().Class = ClassNONE
  94. r.Header().Ttl = 0
  95. u.Ns = append(u.Ns, r)
  96. }
  97. }