package dns-client
DNS resolver API
Install
Dune Dependency
Authors
Maintainers
Sources
dns-6.4.0.tbz
sha256=00472d566bbfd66da13642eab5fade12fde56b20dd7ac5c50415b88d052d6175
sha512=0ddeee4a155852c7ffa619de603e54dabe9ec315b79e4a1cb22a13884f9d3893458f1fa3c7b97f2eda60b29f1bfa401e53d531d8ded1089dcd8497ffa3ad1afb
doc/src/dns-client.mirage/dns_client_mirage.ml.html
Source file dns_client_mirage.ml
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
open Lwt.Infix let src = Logs.Src.create "dns_client_mirage" ~doc:"effectful DNS client layer" module Log = (val Logs.src_log src : Logs.LOG) module IM = Map.Make(Int) module type S = sig module Transport : Dns_client.S with type io_addr = [ | `Plaintext of Ipaddr.t * int | `Tls of Tls.Config.client * Ipaddr.t * int ] and type +'a io = 'a Lwt.t include module type of Dns_client.Make(Transport) val nameserver_of_string : string -> (Dns.proto * Transport.io_addr, [> `Msg of string ]) result val connect : ?cache_size:int -> ?edns:[ `None | `Auto | `Manual of Dns.Edns.t ] -> ?nameservers:string list -> ?timeout:int64 -> Transport.stack -> t Lwt.t end module Make (R : Mirage_random.S) (T : Mirage_time.S) (M : Mirage_clock.MCLOCK) (P : Mirage_clock.PCLOCK) (S : Tcpip.Stack.V4V6) = struct module TLS = Tls_mirage.Make(S.TCP) module CA = Ca_certs_nss.Make(P) let auth_err = match X509.Authenticator.of_string "" with | Ok _ -> "should not happen" | Error `Msg m -> m let format = {| The format of an IP address and optional port is: - '[::1]:port' for an IPv6 address, or - '127.0.0.1:port' for an IPv4 address. The format of a nameserver is: - 'udp:IP' where the first element is the string "udp" and the [IP] as described above (port defaults to 53): UDP packets to the provided IP address will be sent from a random source port; - 'tcp:IP' where the first element is the string "tcp" and the [IP] as described above (port defaults to 53): a TCP connection to the provided IP address will be established; - 'tls:IP' where the first element is the string "tls", the [IP] as described above (port defaults to 853): a TCP connection will be established, on top of which a TLS handshake with the authenticator (https://github.com/mirage/ca-certs-nss) will be done (which checks for the IP address being in the certificate as SubjectAlternativeName); - 'tls:IP!hostname' where the first element is the string "tls", the [IP] as described above (port defaults to 853), the [hostname] a host name used for the TLS authentication: a TCP connection will be established, on top of which a TLS handshake with the authenticator (https://github.com/mirage/ca-certs-nss) will be done; - 'tls:IP!hostname!authenticator' where the first element is the string "tls", the [IP] as described above (port defaults to 853), the [hostname] a host name used for the TLS authentication, and the [authenticator] an X509 authenticator: a TCP connection will be established, on top of which a TLS handshake with the authenticator will be done. |} ^ auth_err let nameserver_of_string str = let ( let* ) = Result.bind in begin match String.split_on_char ':' str with | "tls" :: rest -> let str = String.concat ":" rest in ( match String.split_on_char '!' str with | [ nameserver ] -> let* ipaddr, port = Ipaddr.with_port_of_string ~default:853 nameserver in let* authenticator = CA.authenticator () in let tls = Tls.Config.client ~authenticator () in Ok (`Tcp, `Tls (tls, ipaddr, port)) | nameserver :: opt_hostname :: authenticator -> let* ipaddr, port = Ipaddr.with_port_of_string ~default:853 nameserver in let peer_name, data = match let* dn = Domain_name.of_string opt_hostname in Domain_name.host dn with | Ok hostname -> Some hostname, String.concat "!" authenticator | Error _ -> None, String.concat "!" (opt_hostname :: authenticator) in let* authenticator = if data = "" then CA.authenticator () else let* a = X509.Authenticator.of_string data in Ok (a (fun () -> Some (Ptime.v (P.now_d_ps ())))) in let tls = Tls.Config.client ~authenticator ?peer_name () in Ok (`Tcp, `Tls (tls, ipaddr, port)) | [] -> assert false ) | "tcp" :: nameserver -> let str = String.concat ":" nameserver in let* ipaddr, port = Ipaddr.with_port_of_string ~default:53 str in Ok (`Tcp, `Plaintext (ipaddr, port)) | "udp" :: nameserver -> let str = String.concat ":" nameserver in let* ipaddr, port = Ipaddr.with_port_of_string ~default:53 str in Ok (`Udp, `Plaintext (ipaddr, port)) | _ -> Error (`Msg ("Unable to decode nameserver " ^ str)) end |> Result.map_error (function `Msg e -> `Msg (e ^ format)) module Transport : Dns_client.S with type stack = S.t and type +'a io = 'a Lwt.t and type io_addr = [ | `Plaintext of Ipaddr.t * int | `Tls of Tls.Config.client * Ipaddr.t * int ] = struct type stack = S.t type io_addr = [ | `Plaintext of Ipaddr.t * int | `Tls of Tls.Config.client * Ipaddr.t * int ] type +'a io = 'a Lwt.t module IS = Set.Make(Int) type t = { nameservers : io_addr list ; proto : Dns.proto ; timeout_ns : int64 ; stack : stack ; mutable udp_ports : IS.t ; mutable flow : [`Plain of S.TCP.flow | `Tls of TLS.flow ] option ; mutable connected_condition : unit Lwt_condition.t option ; mutable requests : (Cstruct.t * (Cstruct.t, [ `Msg of string ]) result Lwt_condition.t) IM.t ; mutable he : Happy_eyeballs.t ; mutable waiters : ((Ipaddr.t * int) * S.TCP.flow, [ `Msg of string ]) result Lwt.u Happy_eyeballs.Waiter_map.t ; timer_condition : unit Lwt_condition.t ; } type context = t let clock = M.elapsed_ns let he_timer_interval = Duration.of_ms 500 let rec handle_action t action = (match action with | Happy_eyeballs.Connect (host, id, addr) -> begin S.TCP.create_connection (S.tcp t.stack) addr >>= function | Error e -> Log.err (fun m -> m "error connecting to nameserver %a: %a" Ipaddr.pp (fst addr) S.TCP.pp_error e) ; Lwt.return (Some (Happy_eyeballs.Connection_failed (host, id, addr))) | Ok flow -> let waiters, r = Happy_eyeballs.Waiter_map.find_and_remove id t.waiters in t.waiters <- waiters; begin match r with | Some waiter -> Lwt.wakeup_later waiter (Ok (addr, flow)); Lwt.return_unit | None -> S.TCP.close flow end >|= fun () -> Some (Happy_eyeballs.Connected (host, id, addr)) end | Connect_failed (_host, id) -> let waiters, r = Happy_eyeballs.Waiter_map.find_and_remove id t.waiters in t.waiters <- waiters; begin match r with | Some waiter -> Lwt.wakeup_later waiter (Error (`Msg "connection failed")) | None -> () end; Lwt.return None | a -> Log.warn (fun m -> m "ignoring action %a" Happy_eyeballs.pp_action a); Lwt.return None) >>= function | None -> Lwt.return_unit | Some event -> let he, actions = Happy_eyeballs.event t.he (clock ()) event in t.he <- he; Lwt_list.iter_p (handle_action t) actions let handle_timer_actions t actions = Lwt.async (fun () -> Lwt_list.iter_p (fun a -> handle_action t a) actions) let rec he_timer t = let open Lwt.Infix in let rec loop () = let he, cont, actions = Happy_eyeballs.timer t.he (clock ()) in t.he <- he ; handle_timer_actions t actions ; match cont with | `Suspend -> he_timer t | `Act -> T.sleep_ns he_timer_interval >>= fun () -> loop () in Lwt_condition.wait t.timer_condition >>= fun () -> loop () let read_udp t ip ip_us ~src ~dst ~src_port:_ data = if Ipaddr.compare ip_us dst = 0 && Ipaddr.compare ip src = 0 && Cstruct.length data > 12 (* minimum DNS length (header length) *) then (let id = Cstruct.BE.get_uint16 data 0 in (match IM.find_opt id t.requests with | None -> Log.warn (fun m -> m "received unsolicited data, ignoring") | Some (_, cond) -> Lwt_condition.broadcast cond (Ok data))); Lwt.return_unit let generate_udp_port t = let rec go retries = if retries = 0 then Error (`Msg "couldn't find a free UDP port") else let port = 1024 + ((Cstruct.BE.get_uint16 (R.generate 2) 0) mod (65536 - 1024)) in if IS.mem port t.udp_ports then go (retries - 1) else (t.udp_ports <- IS.add port t.udp_ports; Ok port) in go 32 let create ?nameservers ~timeout stack = let proto, nameservers = match nameservers with | None -> let authenticator = match CA.authenticator () with | Ok a -> a | Error `Msg m -> invalid_arg ("bad CA certificates " ^ m) in let tls_cfg = let peer_name = Dns_client.default_resolver_hostname in Tls.Config.client ~authenticator ~peer_name () in let ns = List.map (fun ip -> `Tls (tls_cfg, ip, 853)) Dns_client.default_resolvers in `Tcp, ns | Some (a, ns) -> a, ns in let t = { nameservers ; proto ; timeout_ns = timeout ; stack ; udp_ports = IS.empty ; flow = None ; connected_condition = None ; requests = IM.empty ; he = Happy_eyeballs.create (clock ()) ; waiters = Happy_eyeballs.Waiter_map.empty ; timer_condition = Lwt_condition.create () ; } in match proto with | `Tcp -> Lwt.async (fun () -> he_timer t); t | `Udp -> t let nameservers { proto ; nameservers ; _ } = proto, nameservers let rng = R.generate ?g:None let with_timeout time_left f = let timeout = T.sleep_ns time_left >|= fun () -> Error (`Msg "DNS request timeout") in Lwt.pick [ f ; timeout ] let bind = Lwt.bind let lift = Lwt.return let rec read_loop ?(linger = Cstruct.empty) t flow = let process cs = let rec handle_data data = let cs_len = Cstruct.length data in if cs_len > 2 then let len = Cstruct.BE.get_uint16 data 0 in if cs_len - 2 >= len then let packet, rest = if cs_len - 2 = len then data, Cstruct.empty else Cstruct.split data (len + 2) in let id = Cstruct.BE.get_uint16 packet 2 in (match IM.find_opt id t.requests with | None -> Log.warn (fun m -> m "received unsolicited data, ignoring") | Some (_, cond) -> Lwt_condition.broadcast cond (Ok packet)); handle_data rest else read_loop ~linger:data t flow else read_loop ~linger:data t flow in handle_data (if Cstruct.length linger = 0 then cs else Cstruct.append linger cs) in match flow with | `Plain flow -> begin S.TCP.read flow >>= function | Error e -> t.flow <- None; Log.err (fun m -> m "error %a reading from resolver" S.TCP.pp_error e); Lwt.return_unit | Ok `Eof -> t.flow <- None; Log.info (fun m -> m "end of file reading from resolver"); Lwt.return_unit | Ok (`Data cs) -> process cs end | `Tls flow -> begin TLS.read flow >>= function | Error e -> t.flow <- None; Log.err (fun m -> m "error %a reading from resolver" TLS.pp_error e); Lwt.return_unit | Ok `Eof -> t.flow <- None; Log.info (fun m -> m "end of file reading from resolver"); Lwt.return_unit | Ok (`Data cs) -> process cs end let query_one flow data = match flow with | `Plain flow -> begin S.TCP.write flow data >>= function | Error e -> Lwt.return (Error (`Msg (Fmt.to_to_string S.TCP.pp_write_error e))) | Ok () -> Lwt.return (Ok ()) end | `Tls flow -> begin TLS.write flow data >>= function | Error e -> Lwt.return (Error (`Msg (Fmt.to_to_string TLS.pp_write_error e))) | Ok () -> Lwt.return (Ok ()) end let req_all flow t = IM.fold (fun _id (data, _) r -> r >>= function | Error _ as e -> Lwt.return e | Ok () -> query_one flow data) t.requests (Lwt.return (Ok ())) let to_pairs = List.map (function `Plaintext (ip, port) | `Tls (_, ip, port) -> (ip, port)) let find_ns ns (addr, port) = List.find (function `Plaintext (ip, p) | `Tls (_, ip, p) -> Ipaddr.compare ip addr = 0 && p = port) ns let rec connect_ns t nameservers = let connected_condition = Lwt_condition.create () in t.connected_condition <- Some connected_condition ; let waiter, notify = Lwt.task () in let waiters, id = Happy_eyeballs.Waiter_map.register notify t.waiters in t.waiters <- waiters; let ns = to_pairs nameservers in let he, actions = Happy_eyeballs.connect_ip t.he (clock ()) ~id ns in t.he <- he; Lwt_condition.signal t.timer_condition (); Lwt.async (fun () -> Lwt_list.iter_p (handle_action t) actions); waiter >>= function | Error `Msg msg -> Lwt_condition.broadcast connected_condition (); t.connected_condition <- None; Log.err (fun m -> m "error connecting to resolver %s" msg); Lwt.return (Error (`Msg "connect failure")) | Ok (addr, flow) -> let continue flow = t.flow <- Some flow; Lwt.async (fun () -> read_loop t flow >>= fun () -> if not (IM.is_empty t.requests) then connect_ns t t.nameservers >|= function | Error `Msg msg -> Log.err (fun m -> m "error while connecting to resolver: %s" msg) | Ok () -> () else Lwt.return_unit); Lwt_condition.broadcast connected_condition (); t.connected_condition <- None; req_all flow t in let config = find_ns t.nameservers addr in match config with | `Plaintext _ -> continue (`Plain flow) | `Tls (tls_cfg, _ip, _port) -> TLS.client_of_flow tls_cfg flow >>= function | Ok tls -> continue (`Tls tls) | Error e -> Log.warn (fun m -> m "error establishing TLS connection to %a:%d: %a" Ipaddr.pp (fst addr) (snd addr) TLS.pp_write_error e); Lwt_condition.broadcast connected_condition (); t.connected_condition <- None; let ns' = List.filter (function | `Tls (_, ip, port) -> not (Ipaddr.compare ip (fst addr) = 0 && port = snd addr) | _ -> true) nameservers in if ns' = [] then Lwt.return (Error (`Msg "no further nameservers configured")) else connect_ns t ns' let rec connect t = match t.proto with | `Udp -> Lwt.return (Ok (`Udp, t)) | `Tcp -> match t.flow, t.connected_condition with | Some _, _ -> Lwt.return (Ok (`Tcp, t)) | None, Some w -> Lwt_condition.wait w >>= fun () -> connect t | None, None -> connect_ns t t.nameservers >|= function | Ok () -> Ok (`Tcp, t) | Error `Msg msg -> Error (`Msg msg) let close _f = (* ignoring this here *) Lwt.return_unit let send_recv t tx = let ( >>>= ) = Lwt_result.bind in if Cstruct.length tx > 4 then match t.proto, t.flow with | `Udp, _ -> let dst, dst_port = match t.nameservers with | `Plaintext (ip, port) :: _ -> ip, port | _ -> assert false in let src = S.IP.src (S.ip t.stack) ~dst in let id = Cstruct.BE.get_uint16 tx 0 in Lwt.return (generate_udp_port t) >>>= fun udp_port -> with_timeout t.timeout_ns (S.UDP.listen (S.udp t.stack) ~port:udp_port (read_udp t dst src); (S.UDP.write ~src_port:udp_port ~dst ~dst_port (S.udp t.stack) tx >|= function | Error e -> Error (`Msg (Fmt.to_to_string S.UDP.pp_error e)) | Ok () -> Ok ()) >>>= fun () -> let cond = Lwt_condition.create () in t.requests <- IM.add id (tx, cond) t.requests; let open Lwt.Infix in Lwt_condition.wait cond >|= fun data -> match data with Ok _ | Error `Msg _ as r -> r) >|= fun r -> S.UDP.unlisten (S.udp t.stack) ~port:udp_port; t.udp_ports <- IS.remove udp_port t.udp_ports; t.requests <- IM.remove id t.requests; r | `Tcp, None -> Lwt.return (Error (`Msg "no connection to resolver")) | `Tcp, Some flow -> let id = Cstruct.BE.get_uint16 tx 2 in with_timeout t.timeout_ns (let open Lwt_result.Infix in query_one flow tx >>= fun () -> let cond = Lwt_condition.create () in t.requests <- IM.add id (tx, cond) t.requests; let open Lwt.Infix in Lwt_condition.wait cond >|= fun data -> match data with Ok _ | Error `Msg _ as r -> r) >|= fun r -> t.requests <- IM.remove id t.requests; r else Lwt.return (Error (`Msg "invalid context (data length <= 4)")) end include Dns_client.Make(Transport) let connect ?cache_size ?edns ?(nameservers= []) ?timeout stack = let nameservers = List.map (fun nameserver -> match nameserver_of_string nameserver with | Ok nameserver -> nameserver | Error (`Msg err) -> invalid_arg err) nameservers in let tcp, udp = List.fold_left (fun (tcp, udp) -> function | `Tcp, a -> a :: tcp, udp | `Udp, a -> tcp, a :: udp) ([], []) nameservers in let nameservers = match tcp, udp with | [], [] -> None | [], _::_ -> Some (`Udp, udp) | _::_, _ -> Some (`Tcp, tcp) in Lwt.return (create ?cache_size ?edns ?nameservers ?timeout stack) end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>