Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
client.ml1 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(* * Copyright (c) 2019 Hannes Mehnert <hannes@mehnert.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *) open Util let service = "ssh-connection" let src = Logs.Src.create "awa.client" ~doc:"AWA client" module Log = (val Logs.src_log src : Logs.LOG) type event = [ | `Established of int32 | `Channel_data of int32 * Cstruct.t | `Channel_eof of int32 | `Channel_exit_status of int32 * int32 | `Disconnected ] let pp_event ppf = function | `Established id -> Format.fprintf ppf "established id %lu" id | `Channel_data (id, data) -> Format.fprintf ppf "data %lu: %s" id (Cstruct.to_string data) | `Channel_eof id -> Format.fprintf ppf "eof %lu" id | `Channel_exit_status (id, r) -> Format.fprintf ppf "exit %lu with %lu" id r | `Disconnected -> Format.fprintf ppf "disconnected" type kex_state = | Negotiated_kex of string * Ssh.kexinit * string * Ssh.kexinit * Kex.negotiation * Mirage_crypto_pk.Dh.secret * Ssh.mpint type eckex_state = | Negotiated_eckex of string * Ssh.kexinit * string * Ssh.kexinit * Kex.negotiation * Mirage_crypto_ec.X25519.secret * Ssh.mpint type gex_state = | Requested_gex of string * Ssh.kexinit * string * Ssh.kexinit * Kex.negotiation * int32 * int32 * int32 | Negotiated_gex of string * Ssh.kexinit * string * Ssh.kexinit * Kex.negotiation * int32 * int32 * int32 * Z.t * Z.t * Mirage_crypto_pk.Dh.secret * Ssh.mpint type state = | Init of string * Ssh.kexinit | Received_version of string * Ssh.kexinit * string | Kex of kex_state | Eckex of eckex_state | Gex of gex_state | Newkeys_before_auth of Kex.keys * Kex.keys | Requested_service of string | Userauth_request of Ssh.auth_method | Userauth_requested of Hostkey.pub option | Opening_channel of Channel.channel_end | Established type t = { state : state ; session_id : Cstruct.t option; keys_ctos : Kex.keys; keys_stoc : Kex.keys; keying : bool; key_eol : Mtime.t option; channels : Channel.db; sig_algs : Hostkey.alg list ; linger : Cstruct.t; user : string ; key : Hostkey.priv ; authenticator : Keys.authenticator ; } let established t = match t.state with Established -> true | _ -> false let rotate_keys_ctos t new_keys_ctos = let open Kex in let new_keys_ctos = { new_keys_ctos with seq = t.keys_ctos.seq } in { t with keys_ctos = new_keys_ctos } let rotate_keys_stoc t new_keys_stoc = let open Kex in let new_keys_stoc = { new_keys_stoc with seq = t.keys_stoc.seq } in { t with keys_stoc = new_keys_stoc; keying = false } let debug_msg prefix = function | Ssh.Msg_channel_data (id, data) -> Log.debug (fun m -> m "%s (Msg_data %d bytes for %lu)" prefix (Cstruct.length data) id) | msg -> Log.debug (fun m -> m "%s %s" prefix (Ssh.message_to_string msg)) let output_msg t msg = let buf, keys_ctos = Common.output_msg t.keys_ctos msg in let t = { t with keys_ctos } in debug_msg ">>>" msg; (* Do state transitions *) match t.state with | Newkeys_before_auth (my_keys, _) -> Log.debug (fun m -> m "rotating ctos keys"); let t' = rotate_keys_ctos t my_keys in t', buf | _ -> t, buf let output_msgs t msgs = let t', data = List.fold_left (fun (t, acc) msg -> let t', buf = output_msg t msg in (t', buf :: acc)) (t, []) msgs in t', List.rev data let make ?(authenticator = `No_authentication) ~user key = let open Ssh in let hostkey_algs = match authenticator with | `No_authentication -> Hostkey.preferred_algs | `Key Hostkey.Rsa_pub _ -> Hostkey.algs_of_typ `Rsa | `Key Hostkey.Ed25519_pub _ -> Hostkey.algs_of_typ `Ed25519 | `Fingerprint (typ, _) -> Hostkey.algs_of_typ typ in let client_kexinit = Kex.make_kexinit hostkey_algs Kex.client_supported () in let = Ssh.Msg_version version_banner in let kex_msg = Ssh.Msg_kexinit client_kexinit in let t = { state = Init (version_banner, client_kexinit); session_id = None; keys_ctos = Kex.make_plaintext (); keys_stoc = Kex.make_plaintext (); keying = true; key_eol = None; linger = Cstruct.empty; channels = Channel.empty_db; sig_algs = []; user ; key ; authenticator } in output_msgs t [ banner_msg ; kex_msg ] let handle_kexinit t c_v ckex s_v skex = let* neg = Kex.negotiate ~s:skex ~c:ckex in Log.info (fun m -> m "negotiated: %a" Kex.pp_negotiation neg); (* two cases: directly send the kexdh_init, or RFC 4419 and negotiate group *) let state, msg = if Kex.is_rfc4419 neg.kex_alg then Gex (Requested_gex (c_v, ckex, s_v, skex, neg, Ssh.min_dh, Ssh.n, Ssh.max_dh)), Ssh.Msg_kexdh_gex_request (Ssh.min_dh, Ssh.n, Ssh.max_dh) else if Kex.is_finite_field neg.kex_alg then let secret, my_pub = Kex.Dh.secret_pub neg.kex_alg in Kex (Negotiated_kex (c_v, ckex, s_v, skex, neg, secret, my_pub)), Ssh.Msg_kexdh_init my_pub else (* not RFC 4419, not finite field -> ECDH *) let secret, my_pub = Kex.Dh.ecdh_secret_pub neg.kex_alg in Eckex (Negotiated_eckex (c_v, ckex, s_v, skex, neg, secret, my_pub)), Ssh.Msg_kexecdh_init my_pub in (* this is not correct in respect to the specification (should use server-sig-algs extension of 8308): we reuse the server host key algorithms from the kex for client key authentication. we iterate over them on failure -> eventually we'll use ssh-rsa if the server denies sha256/512 *) let sig_algs = let s = List.fold_left (fun acc a -> match Hostkey.alg_of_string a with Ok a -> a :: acc | Error _ -> acc) [] skex.server_host_key_algs in let s = List.filter (fun a -> List.mem a s) Hostkey.preferred_algs in List.filter Hostkey.(alg_matches (priv_to_typ t.key)) s in Ok ({ t with state ; sig_algs }, [ msg ], []) let dh_reply ~ec t now v_c ckex v_s skex neg my_pub k_s theirs (alg, signed) = let h = Kex.Dh.compute_hash ~signed:(not ec) neg ~v_c ~v_s ~i_c:(Wire.blob_of_kexinit ckex) ~i_s:skex.Ssh.rawkex ~k_s ~e:my_pub ~f:theirs ~k:shared in if Keys.hostkey_matches t.authenticator k_s && alg = neg.server_host_key_alg && Hostkey.verify alg k_s ~unsigned:h ~signed then begin Log.info (fun m -> m "verified kexdh_reply!"); let session_id = match t.session_id with None -> h | Some x -> x in let* new_keys_ctos, new_keys_stoc, key_eol = Kex.Dh.derive_keys shared h session_id neg now in Ok ({ t with state = Newkeys_before_auth (new_keys_ctos, new_keys_stoc) ; session_id = Some session_id ; key_eol = Some key_eol }, [ Ssh.Msg_newkeys ], []) end else Error "couldn't verify kex" let handle_kexdh_reply t now v_c ckex v_s skex neg secret my_pub k_s theirs p = let* = Kex.Dh.shared secret theirs in dh_reply ~ec:false t now v_c ckex v_s skex neg shared my_pub k_s theirs p let handle_kexecdh_reply t now v_c ckex v_s skex neg secret my_pub k_s theirs p = let* = Kex.Dh.ecdh_shared secret theirs in dh_reply ~ec:true t now v_c ckex v_s skex neg shared my_pub k_s theirs p let handle_kexdh_gex_group t v_c ckex v_s skex neg min n max p gg = (* min <= |p| <= max *) let open Mirage_crypto_pk.Dh in let* group = Result.map_error (function `Msg m -> m) (group ~p ~gg ()) in let bits = modulus_size group in if Int32.to_int min <= bits && bits <= Int32.to_int max then let secret, = gen_key group in let pub = Mirage_crypto_pk.Z_extra.of_cstruct_be shared in let state = Negotiated_gex (v_c, ckex, v_s, skex, neg, min, n, max, p, gg, secret, pub) in Ok ({ t with state = Gex state }, [ Ssh.Msg_kexdh_gex_init pub ], []) else Error "DH group not between min and max" let handle_kexdh_gex_reply t now v_c ckex v_s skex neg min n max p g secret my_pub k_s theirs (alg, signed) = let* = Kex.Dh.shared secret theirs in let h = Kex.Dh.compute_hash_gex neg ~v_c ~v_s ~i_c:(Wire.blob_of_kexinit ckex) ~i_s:skex.Ssh.rawkex ~k_s ~min ~n ~max ~p ~g ~e:my_pub ~f:theirs ~k:shared in if Keys.hostkey_matches t.authenticator k_s && alg = neg.server_host_key_alg && Hostkey.verify alg k_s ~unsigned:h ~signed then begin Log.info (fun m -> m "verified kexdh_reply!"); let session_id = match t.session_id with None -> h | Some x -> x in let* new_keys_ctos, new_keys_stoc, key_eol = Kex.Dh.derive_keys shared h session_id neg now in Ok ({ t with state = Newkeys_before_auth (new_keys_ctos, new_keys_stoc) ; session_id = Some session_id ; key_eol = Some key_eol }, [ Ssh.Msg_newkeys ], []) end else Error "couldn't verify kex" let handle_newkeys_before_auth t keys = Log.debug (fun m -> m "rotating stoc keys"); let t' = rotate_keys_stoc t keys in let service = "ssh-userauth" in Ok ({ t' with state = Requested_service service }, [ Ssh.Msg_service_request service ], []) let service_accepted t = function | "ssh-userauth" -> Ok ({ t with state = Userauth_request Authnone }, [ Ssh.Msg_userauth_request (t.user, service, Authnone) ], []) | service -> Error ("unknown service: " ^ service) let handle_auth_failure t _ = function | [] -> Error "no authentication method left" | xs when List.mem "publickey" xs -> let pub = Hostkey.pub_of_priv t.key in let met = Ssh.Pubkey (pub, None) in Ok ({ t with state = Userauth_request met }, [ Ssh.Msg_userauth_request (t.user, service, met) ], []) | _ -> Error "no supported authentication methods left" let handle_pk_auth t pk = let session_id = match t.session_id with None -> assert false | Some x -> x in let* alg, sig_algs = match t.sig_algs with | [] -> Error "no more signature algorithms available" | a :: rt -> Ok (a, rt) in let signed = Auth.sign t.user alg t.key session_id service in let met = Ssh.Pubkey (Hostkey.pub_of_priv t.key, Some (alg, signed)) in Ok ({ t with state = Userauth_requested (Some pk) ; sig_algs }, [ Ssh.Msg_userauth_request (t.user, service, met) ], []) let handle_pk_ok t m pk = match m with | Ssh.Pubkey (pub, None) when pub = pk -> handle_pk_auth t pk | _ -> Error "not sure how we ended in pk ok now" let open_channel t = if Channel.is_empty t.channels then let channel, msg = let id = 0l and win = Ssh.channel_win_len and max_pkt = Ssh.channel_max_pkt_len in Channel.make_end id win max_pkt, (id, win, max_pkt, Ssh.Session) in Ok ({ t with state = Opening_channel channel }, [ Ssh.Msg_channel_open msg ], []) else Error "not sure what to do, there's already a channel" let open_channel_success t us our_id their_id win max_pkt _data = if us.Channel.id = our_id then let them = Channel.make_end their_id win max_pkt in let c = Channel.make ~us ~them in let channels = Channel.update c t.channels in Ok ({ t with channels ; state = Established }, [], [ `Established our_id ]) else Error (Printf.sprintf "channel ids do not match (our %lu their %lu)" us.Channel.id our_id) let input_msg t msg now = let open Ssh in match t.state, msg with | Init (cv, ckex), Msg_version v -> Ok ({ t with state = Received_version (cv, ckex, v) }, [], []) | Received_version (cv, ckex, sv), Msg_kexinit skex -> handle_kexinit t cv ckex sv skex | Kex (Negotiated_kex (cv, ckex, sv, skex, neg, sec, mypub)), Msg_kex (i, d) -> begin let* m = Wire.dh_kexdh_of_kex i d in match m with | Msg_kexdh_reply (pub, theirs, signed) -> handle_kexdh_reply t now cv ckex sv skex neg sec mypub pub theirs signed | _ -> Error "unexpected KEX message" end | Eckex (Negotiated_eckex (cv, ckex, sv, skex, neg, sec, mypub)), Msg_kex (i, d) -> begin let* m = Wire.dh_kexecdh_of_kex i d in match m with | Msg_kexecdh_reply (pub, theirs, signed) -> handle_kexecdh_reply t now cv ckex sv skex neg sec mypub pub theirs signed | _ -> Error "unexpected KEX message" end | Gex sub, Msg_kex (i, d) -> begin let* msg = Wire.dh_kexdh_gex_of_kex i d in match sub, msg with | Requested_gex (cv, ckex, sv, skex, neg, min, n, max), Msg_kexdh_gex_group (p, g) -> handle_kexdh_gex_group t cv ckex sv skex neg min n max p g | Negotiated_gex (cv, ckex, sv, skex, neg, min, n, max, p, g, sec, mypub), Msg_kexdh_gex_reply (pub, theirs, signed) -> handle_kexdh_gex_reply t now cv ckex sv skex neg min n max p g sec mypub pub theirs signed | _ -> Error "unexpected KEX message" end | Newkeys_before_auth (_, keys), Msg_newkeys -> handle_newkeys_before_auth t keys | Requested_service s, Msg_service_accept s' when s = s' -> service_accepted t s | Userauth_request m, Msg_userauth_failure (methods, _) -> handle_auth_failure t m methods | Userauth_request m, Msg_userauth_pk_ok pk -> handle_pk_ok t m pk | Userauth_requested (Some pk), Msg_userauth_failure _ -> handle_pk_auth t pk | Userauth_request _, Msg_userauth_success -> open_channel t | Userauth_requested _, Msg_userauth_success -> open_channel t | Opening_channel us, Msg_channel_open_confirmation (oid, tid, win, max, data) -> open_channel_success t us oid tid win max data | _, Msg_global_request (_, want_reply, Unknown_request _) -> Log.info (fun m -> m "ignoring unknown global request (want reply %B)" want_reply); Ok (t, [], []) | _, Msg_debug (_, msg, lang) -> Log.info (fun m -> m "ignoring debug %s (lang %s)" msg lang); Ok (t, [], []) | Established, Msg_channel_data (id, data) -> let* c = guard_some (Channel.lookup id t.channels) "no such channel" in let* c, data, adjust = Channel.input_data c data in let channels = Channel.update c t.channels in let out = match adjust with None -> [] | Some e -> [ e ] in Ok ({ t with channels }, out, [ `Channel_data (Channel.id c, data) ]) | Established, Msg_channel_window_adjust (id, len) -> let* c = guard_some (Channel.lookup id t.channels) "no such channel" in let* c, msgs = Channel.adjust_window c len in let channels = Channel.update c t.channels in Ok ({ t with channels }, msgs, []) | Established, Msg_channel_eof id -> let* c = guard_some (Channel.lookup id t.channels) "no such channel" in Ok (t, [], [ `Channel_eof (Channel.id c) ]) | Established, Msg_channel_request (id, false, Exit_status r) -> let* c = guard_some (Channel.lookup id t.channels) "no such channel" in Ok (t, [], [ `Channel_exit_status (Channel.id c, r) ]) | Established, Msg_channel_success id -> let* _c = guard_some (Channel.lookup id t.channels) "no such channel" in Log.info (fun m -> m "channel success %lu" id); Ok (t, [], []) | Established, Msg_channel_close id -> let* c = guard_some (Channel.lookup id t.channels) "no such channel" in let channels = Channel.remove (Channel.id c) t.channels in let msg = "all the channels are closed now, nothing left to do here" in Ok ({ t with channels }, [ Msg_channel_close (Channel.id c) ; Msg_disconnect (DISCONNECT_BY_APPLICATION, msg, "") ], [ `Disconnected ]) | _, _ -> debug_msg "unexpected" msg; Error "unexpected state and message" let rec incoming t now buf = let buf = Cstruct.append t.linger buf in let* t, msg = match t.state with | Init _ -> let* msg, buf = Common.version buf in Ok ({ t with linger = buf }, msg) | _ -> let* keys_stoc, msg, buf = Common.decrypt t.keys_stoc buf in Ok ({ t with keys_stoc ; linger = buf }, msg) in match msg with | None -> Ok (t, [], []) | Some msg -> debug_msg "<<<" msg; let* t', replies, events = input_msg t msg now in let t'', replies = output_msgs t' replies in let* t''', replies', events' = incoming t'' now Cstruct.empty in Ok (t''', replies @ replies', events @ events') let outgoing_request t ?(id = 0l) ?(want_reply = false) req = let* () = guard (established t) "not yet established" in let* c = guard_some (Channel.lookup id t.channels) "no such channel" in let msg = Ssh.Msg_channel_request (c.them.id, want_reply, req) in Ok (output_msg t msg) let outgoing_data t ?(id = 0l) data = let* () = guard (established t) "not yet established" in let* () = guard (Cstruct.length data > 0) "empty data" in let* c = guard_some (Channel.lookup id t.channels) "no such channel" in let* c, frags = Channel.output_data c data in let t' = { t with channels = Channel.update c t.channels } in Ok (output_msgs t' frags)