labels.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. package dns
  2. // Holds a bunch of helper functions for dealing with labels.
  3. // SplitDomainName splits a name string into it's labels.
  4. // www.miek.nl. returns []string{"www", "miek", "nl"}
  5. // .www.miek.nl. returns []string{"", "www", "miek", "nl"},
  6. // The root label (.) returns nil. Note that using
  7. // strings.Split(s) will work in most cases, but does not handle
  8. // escaped dots (\.) for instance.
  9. // s must be a syntactically valid domain name, see IsDomainName.
  10. func SplitDomainName(s string) (labels []string) {
  11. if len(s) == 0 {
  12. return nil
  13. }
  14. fqdnEnd := 0 // offset of the final '.' or the length of the name
  15. idx := Split(s)
  16. begin := 0
  17. if s[len(s)-1] == '.' {
  18. fqdnEnd = len(s) - 1
  19. } else {
  20. fqdnEnd = len(s)
  21. }
  22. switch len(idx) {
  23. case 0:
  24. return nil
  25. case 1:
  26. // no-op
  27. default:
  28. end := 0
  29. for i := 1; i < len(idx); i++ {
  30. end = idx[i]
  31. labels = append(labels, s[begin:end-1])
  32. begin = end
  33. }
  34. }
  35. labels = append(labels, s[begin:fqdnEnd])
  36. return labels
  37. }
  38. // CompareDomainName compares the names s1 and s2 and
  39. // returns how many labels they have in common starting from the *right*.
  40. // The comparison stops at the first inequality. The names are downcased
  41. // before the comparison.
  42. //
  43. // www.miek.nl. and miek.nl. have two labels in common: miek and nl
  44. // www.miek.nl. and www.bla.nl. have one label in common: nl
  45. //
  46. // s1 and s2 must be syntactically valid domain names.
  47. func CompareDomainName(s1, s2 string) (n int) {
  48. // the first check: root label
  49. if s1 == "." || s2 == "." {
  50. return 0
  51. }
  52. l1 := Split(s1)
  53. l2 := Split(s2)
  54. j1 := len(l1) - 1 // end
  55. i1 := len(l1) - 2 // start
  56. j2 := len(l2) - 1
  57. i2 := len(l2) - 2
  58. // the second check can be done here: last/only label
  59. // before we fall through into the for-loop below
  60. if equal(s1[l1[j1]:], s2[l2[j2]:]) {
  61. n++
  62. } else {
  63. return
  64. }
  65. for {
  66. if i1 < 0 || i2 < 0 {
  67. break
  68. }
  69. if equal(s1[l1[i1]:l1[j1]], s2[l2[i2]:l2[j2]]) {
  70. n++
  71. } else {
  72. break
  73. }
  74. j1--
  75. i1--
  76. j2--
  77. i2--
  78. }
  79. return
  80. }
  81. // CountLabel counts the the number of labels in the string s.
  82. // s must be a syntactically valid domain name.
  83. func CountLabel(s string) (labels int) {
  84. if s == "." {
  85. return
  86. }
  87. off := 0
  88. end := false
  89. for {
  90. off, end = NextLabel(s, off)
  91. labels++
  92. if end {
  93. return
  94. }
  95. }
  96. }
  97. // Split splits a name s into its label indexes.
  98. // www.miek.nl. returns []int{0, 4, 9}, www.miek.nl also returns []int{0, 4, 9}.
  99. // The root name (.) returns nil. Also see SplitDomainName.
  100. // s must be a syntactically valid domain name.
  101. func Split(s string) []int {
  102. if s == "." {
  103. return nil
  104. }
  105. idx := make([]int, 1, 3)
  106. off := 0
  107. end := false
  108. for {
  109. off, end = NextLabel(s, off)
  110. if end {
  111. return idx
  112. }
  113. idx = append(idx, off)
  114. }
  115. }
  116. // NextLabel returns the index of the start of the next label in the
  117. // string s starting at offset.
  118. // The bool end is true when the end of the string has been reached.
  119. // Also see PrevLabel.
  120. func NextLabel(s string, offset int) (i int, end bool) {
  121. quote := false
  122. for i = offset; i < len(s)-1; i++ {
  123. switch s[i] {
  124. case '\\':
  125. quote = !quote
  126. default:
  127. quote = false
  128. case '.':
  129. if quote {
  130. quote = !quote
  131. continue
  132. }
  133. return i + 1, false
  134. }
  135. }
  136. return i + 1, true
  137. }
  138. // PrevLabel returns the index of the label when starting from the right and
  139. // jumping n labels to the left.
  140. // The bool start is true when the start of the string has been overshot.
  141. // Also see NextLabel.
  142. func PrevLabel(s string, n int) (i int, start bool) {
  143. if n == 0 {
  144. return len(s), false
  145. }
  146. lab := Split(s)
  147. if lab == nil {
  148. return 0, true
  149. }
  150. if n > len(lab) {
  151. return 0, true
  152. }
  153. return lab[len(lab)-n], false
  154. }
  155. // equal compares a and b while ignoring case. It returns true when equal otherwise false.
  156. func equal(a, b string) bool {
  157. // might be lifted into API function.
  158. la := len(a)
  159. lb := len(b)
  160. if la != lb {
  161. return false
  162. }
  163. for i := la - 1; i >= 0; i-- {
  164. ai := a[i]
  165. bi := b[i]
  166. if ai >= 'A' && ai <= 'Z' {
  167. ai |= ('a' - 'A')
  168. }
  169. if bi >= 'A' && bi <= 'Z' {
  170. bi |= ('a' - 'A')
  171. }
  172. if ai != bi {
  173. return false
  174. }
  175. }
  176. return true
  177. }