summaryrefslogtreecommitdiffhomepage
path: root/Network/DNS/Query.hs
blob: a431dbda80eedc4f266d031f7ff7972c710d7b14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module Network.DNS.Query (composeQuery) where

import qualified Data.ByteString.Lazy.Char8 as L
import Data.Char
import Network.DNS.StateBinary
import Network.DNS.Internal

----------------------------------------------------------------

composeQuery :: Int -> [Question] -> L.ByteString
composeQuery idt qs = runSPut (encodeQuery qry)
  where
    hdr = header defaultQuery
    qry = defaultQuery {
        header = hdr {
           identifier = idt
         , qdCount = length qs
         }
      , question = qs
      }

----------------------------------------------------------------

encodeQuery :: DNSFormat -> SPut
encodeQuery fmt = do
  let hdr = header fmt
      qs = question fmt
  encodeHeader hdr
  encodeQuestion qs
  return ()

encodeHeader :: DNSHeader -> SPut
encodeHeader hdr = do
    encodeIdentifier $ identifier hdr
    encodeFlags $ flags hdr
    decodeQdCount $ qdCount hdr
    decodeAnCount $ anCount hdr
    decodeNsCount $ nsCount hdr
    decodeArCount $ arCount hdr
  where
    encodeIdentifier = putInt16
    decodeQdCount = putInt16
    decodeAnCount = putInt16
    decodeNsCount = putInt16
    decodeArCount = putInt16

encodeFlags :: DNSFlags -> SPut
encodeFlags _ = put16 0x0100 -- xxx

encodeQuestion :: [Question] -> SPut
encodeQuestion qs = do
  let q = head qs
      dom = qname q
      typ = qtype q
  encodeDomain dom
  putInt16 . typeToInt $ typ
  put16 1

----------------------------------------------------------------

encodeDomain :: Domain -> SPut
encodeDomain dom = do
    let ss = split '.' dom
        ls = map length ss
    mapM_ encodeSubDomain $ zip ls ss
    put8 0
  where
    encodeSubDomain (len,sub) = do
      putInt8 len
      mapM_ (putInt8 . ord) sub

split :: Char -> String -> [String]
split _ "" = []
split c cs
  | null rest = s : split c rest
  | otherwise = s : split c (tail rest)
  where
    (s,rest) = break (c ==) cs