%% %% %CopyrightBegin% %% %% Copyright Ericsson AB 2013-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in %% compliance with the License. You should have received a copy of the %% Erlang Public License along with this software. If not, it can be %% retrieved online at http://www.erlang.org/. %% %% Software distributed under the License is distributed on an "AS IS" %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See %% the License for the specific language governing rights and limitations %% under the License. %% %% %CopyrightEnd% %% %% %%------------------------------------------------------------------ -module(ssh_message). -include_lib("public_key/include/public_key.hrl"). -include("ssh.hrl"). -include("ssh_connect.hrl"). -include("ssh_auth.hrl"). -include("ssh_transport.hrl"). -export([encode/1, decode/1, encode_host_key/1, decode_keyboard_interactive_prompts/2]). encode(#ssh_msg_global_request{ name = Name, want_reply = Bool, data = Data}) -> ssh_bits:encode([?SSH_MSG_GLOBAL_REQUEST, Name, Bool, Data], [byte, string, boolean, '...']); encode(#ssh_msg_request_success{data = Data}) -> <>; encode(#ssh_msg_request_failure{}) -> <>; encode(#ssh_msg_channel_open{ channel_type = Type, sender_channel = Sender, initial_window_size = Window, maximum_packet_size = Max, data = Data }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_OPEN, Type, Sender, Window, Max, Data], [byte, string, uint32, uint32, uint32, '...']); encode(#ssh_msg_channel_open_confirmation{ recipient_channel = Recipient, sender_channel = Sender, initial_window_size = InitWindowSize, maximum_packet_size = MaxPacketSize, data = Data }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_OPEN_CONFIRMATION, Recipient, Sender, InitWindowSize, MaxPacketSize, Data], [byte, uint32, uint32, uint32, uint32, '...']); encode(#ssh_msg_channel_open_failure{ recipient_channel = Recipient, reason = Reason, description = Desc, lang = Lang }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_OPEN_FAILURE, Recipient, Reason, Desc, Lang], [byte, uint32, uint32, string, string]); encode(#ssh_msg_channel_window_adjust{ recipient_channel = Recipient, bytes_to_add = Bytes }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_WINDOW_ADJUST, Recipient, Bytes], [byte, uint32, uint32]); encode(#ssh_msg_channel_data{ recipient_channel = Recipient, data = Data }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_DATA, Recipient, Data], [byte, uint32, binary]); encode(#ssh_msg_channel_extended_data{ recipient_channel = Recipient, data_type_code = DataType, data = Data }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_EXTENDED_DATA, Recipient, DataType, Data], [byte, uint32, uint32, binary]); encode(#ssh_msg_channel_eof{recipient_channel = Recipient }) -> <>; encode(#ssh_msg_channel_close{ recipient_channel = Recipient }) -> <>; encode(#ssh_msg_channel_request{ recipient_channel = Recipient, request_type = Type, want_reply = Bool, data = Data }) -> ssh_bits:encode([?SSH_MSG_CHANNEL_REQUEST, Recipient, Type, Bool, Data], [byte, uint32, string, boolean, '...']); encode(#ssh_msg_channel_success{ recipient_channel = Recipient }) -> <>; encode(#ssh_msg_channel_failure{ recipient_channel = Recipient }) -> <>; encode(#ssh_msg_userauth_request{ user = User, service = Service, method = Method, data = Data }) -> ssh_bits:encode([?SSH_MSG_USERAUTH_REQUEST, User, Service, Method, Data], [byte, string_utf8, string, string, '...']); encode(#ssh_msg_userauth_failure{ authentications = Auths, partial_success = Bool }) -> ssh_bits:encode([?SSH_MSG_USERAUTH_FAILURE, Auths, Bool], [byte, string, boolean]); encode(#ssh_msg_userauth_success{}) -> <>; encode(#ssh_msg_userauth_banner{ message = Banner, language = Lang }) -> ssh_bits:encode([?SSH_MSG_USERAUTH_BANNER, Banner, Lang], [byte, string_utf8, string]); encode(#ssh_msg_userauth_pk_ok{ algorithm_name = Alg, key_blob = KeyBlob }) -> ssh_bits:encode([?SSH_MSG_USERAUTH_PK_OK, Alg, KeyBlob], [byte, string, binary]); encode(#ssh_msg_userauth_passwd_changereq{prompt = Prompt, languge = Lang })-> ssh_bits:encode([?SSH_MSG_USERAUTH_PASSWD_CHANGEREQ, Prompt, Lang], [byte, string, string]); encode(#ssh_msg_userauth_info_request{ name = Name, instruction = Inst, language_tag = Lang, num_prompts = NumPromtps, data = Data}) -> ssh_bits:encode([?SSH_MSG_USERAUTH_INFO_REQUEST, Name, Inst, Lang, NumPromtps, Data], [byte, string, string, string, uint32, '...']); encode(#ssh_msg_userauth_info_response{ num_responses = Num, data = Data}) -> ssh_bits:encode([?SSH_MSG_USERAUTH_INFO_RESPONSE, Num, Data], [byte, uint32, '...']); encode(#ssh_msg_disconnect{ code = Code, description = Desc, language = Lang }) -> ssh_bits:encode([?SSH_MSG_DISCONNECT, Code, Desc, Lang], [byte, uint32, string, string]); encode(#ssh_msg_service_request{ name = Service }) -> ssh_bits:encode([?SSH_MSG_SERVICE_REQUEST, Service], [byte, string]); encode(#ssh_msg_service_accept{ name = Service }) -> ssh_bits:encode([?SSH_MSG_SERVICE_ACCEPT, Service], [byte, string]); encode(#ssh_msg_newkeys{}) -> <>; encode(#ssh_msg_kexinit{ cookie = Cookie, kex_algorithms = KeyAlgs, server_host_key_algorithms = HostKeyAlgs, encryption_algorithms_client_to_server = EncAlgC2S, encryption_algorithms_server_to_client = EncAlgS2C, mac_algorithms_client_to_server = MacAlgC2S, mac_algorithms_server_to_client = MacAlgS2C, compression_algorithms_client_to_server = CompAlgS2C, compression_algorithms_server_to_client = CompAlgC2S, languages_client_to_server = LangC2S, languages_server_to_client = LangS2C, first_kex_packet_follows = Bool, reserved = Reserved }) -> ssh_bits:encode([?SSH_MSG_KEXINIT, Cookie, KeyAlgs, HostKeyAlgs, EncAlgC2S, EncAlgS2C, MacAlgC2S, MacAlgS2C, CompAlgS2C, CompAlgC2S, LangC2S, LangS2C, Bool, Reserved], [byte, cookie, name_list, name_list, name_list, name_list, name_list, name_list, name_list, name_list, name_list, name_list, boolean, uint32]); encode(#ssh_msg_kexdh_init{e = E}) -> ssh_bits:encode([?SSH_MSG_KEXDH_INIT, E], [byte, mpint]); encode(#ssh_msg_kexdh_reply{ public_host_key = Key, f = F, h_sig = Signature }) -> EncKey = encode_host_key(Key), EncSign = encode_sign(Key, Signature), ssh_bits:encode([?SSH_MSG_KEXDH_REPLY, EncKey, F, EncSign], [byte, binary, mpint, binary]); encode(#ssh_msg_kex_dh_gex_request{ min = Min, n = N, max = Max }) -> ssh_bits:encode([?SSH_MSG_KEX_DH_GEX_REQUEST, Min, N, Max], [byte, uint32, uint32, uint32, uint32]); encode(#ssh_msg_kex_dh_gex_request_old{n = N}) -> ssh_bits:encode([?SSH_MSG_KEX_DH_GEX_REQUEST_OLD, N], [byte, uint32]); encode(#ssh_msg_kex_dh_gex_group{p = Prime, g = Generator}) -> ssh_bits:encode([?SSH_MSG_KEX_DH_GEX_GROUP, Prime, Generator], [byte, mpint, mpint]); encode(#ssh_msg_kex_dh_gex_init{e = Public}) -> ssh_bits:encode([?SSH_MSG_KEX_DH_GEX_INIT, Public], [byte, mpint]); encode(#ssh_msg_kex_dh_gex_reply{ %% Will be private key encode_host_key extracts only the public part! public_host_key = Key, f = F, h_sig = Signature }) -> EncKey = encode_host_key(Key), EncSign = encode_sign(Key, Signature), ssh_bits:encode([?SSH_MSG_KEXDH_REPLY, EncKey, F, EncSign], [byte, binary, mpint, binary]); encode(#ssh_msg_ignore{data = Data}) -> ssh_bits:encode([?SSH_MSG_IGNORE, Data], [byte, string]); encode(#ssh_msg_unimplemented{sequence = Seq}) -> ssh_bits:encode([?SSH_MSG_UNIMPLEMENTED, Seq], [byte, uint32]); encode(#ssh_msg_debug{always_display = Bool, message = Msg, language = Lang}) -> ssh_bits:encode([?SSH_MSG_DEBUG, Bool, Msg, Lang], [byte, boolean, string, string]). %% Connection Messages decode(<>) -> #ssh_msg_global_request{ name = Name, want_reply = erl_boolean(Bool), data = Data }; decode(<>) -> #ssh_msg_request_success{data = Data}; decode(<>) -> #ssh_msg_request_failure{}; decode(<>) -> #ssh_msg_channel_open{ channel_type = binary_to_list(Type), sender_channel = Sender, initial_window_size = Window, maximum_packet_size = Max, data = Data }; decode(<>) -> #ssh_msg_channel_open_confirmation{ recipient_channel = Recipient, sender_channel = Sender, initial_window_size = InitWindowSize, maximum_packet_size = MaxPacketSize, data = Data }; decode(<>) -> #ssh_msg_channel_open_failure{ recipient_channel = Recipient, reason = Reason, description = unicode:characters_to_list(Desc), lang = Lang }; decode(<>) -> #ssh_msg_channel_window_adjust{ recipient_channel = Recipient, bytes_to_add = Bytes }; decode(<>) -> #ssh_msg_channel_data{ recipient_channel = Recipient, data = Data }; decode(<>) -> #ssh_msg_channel_extended_data{ recipient_channel = Recipient, data_type_code = DataType, data = Data }; decode(<>) -> #ssh_msg_channel_eof{ recipient_channel = Recipient }; decode(<>) -> #ssh_msg_channel_close{ recipient_channel = Recipient }; decode(<>) -> #ssh_msg_channel_request{ recipient_channel = Recipient, request_type = unicode:characters_to_list(RequestType), want_reply = erl_boolean(Bool), data = Data }; decode(<>) -> #ssh_msg_channel_success{ recipient_channel = Recipient }; decode(<>) -> #ssh_msg_channel_failure{ recipient_channel = Recipient }; %%% Auth Messages decode(<>) -> #ssh_msg_userauth_request{ user = unicode:characters_to_list(User), service = unicode:characters_to_list(Service), method = unicode:characters_to_list(Method), data = Data }; decode(<>) -> #ssh_msg_userauth_failure { authentications = unicode:characters_to_list(Auths), partial_success = erl_boolean(Bool) }; decode(<>) -> #ssh_msg_userauth_success{}; decode(<>) -> #ssh_msg_userauth_banner{ message = Banner, language = Lang }; decode(<>) -> #ssh_msg_userauth_info_request{ name = Name, instruction = Inst, language_tag = Lang, num_prompts = NumPromtps, data = Data}; %%% Unhandled message, also masked by same 1:st byte value as ?SSH_MSG_USERAUTH_INFO_REQUEST: decode(<>) -> #ssh_msg_userauth_passwd_changereq{ prompt = Prompt, languge = Lang }; %%% Unhandled message, also masked by same 1:st byte value as ?SSH_MSG_USERAUTH_INFO_REQUEST: decode(<>) -> #ssh_msg_userauth_pk_ok{ algorithm_name = Alg, key_blob = KeyBlob }; decode(<>) -> #ssh_msg_userauth_info_response{ num_responses = Num, data = Data}; %%% Keyexchange messages decode(<>) -> decode_kex_init(Data, [Cookie, ssh_msg_kexinit], 10); decode(<>) -> #ssh_msg_kexdh_init{e = erlint(Len, E) }; decode(<>) -> #ssh_msg_kex_dh_gex_request{ min = Min, n = N, max = Max }; decode(<>) -> #ssh_msg_kex_dh_gex_request_old{ n = N }; decode(<>) -> #ssh_msg_kex_dh_gex_group{ p = Prime, g = Generator }; decode(<>) -> #ssh_msg_kexdh_reply{ public_host_key = decode_host_key(Key), f = erlint(Len1, F), h_sig = decode_sign(Hashsign) }; decode(<>) -> #ssh_msg_service_request{ name = unicode:characters_to_list(Service) }; decode(<>) -> #ssh_msg_service_accept{ name = unicode:characters_to_list(Service) }; decode(<>) -> #ssh_msg_disconnect{ code = Code, description = unicode:characters_to_list(Desc), language = Lang }; %% Accept bad disconnects from ancient openssh clients that doesn't send language tag. Use english as a work-around. decode(<>) -> #ssh_msg_disconnect{ code = Code, description = unicode:characters_to_list(Desc), language = <<"en">> }; decode(<>) -> #ssh_msg_newkeys{}; decode(<>) -> #ssh_msg_ignore{data = Data}; decode(<>) -> #ssh_msg_unimplemented{sequence = Seq}; decode(<>) -> #ssh_msg_debug{always_display = erl_boolean(Bool), message = Msg, language = Lang}. decode_keyboard_interactive_prompts(<<>>, Acc) -> lists:reverse(Acc); decode_keyboard_interactive_prompts(<>, Acc) -> decode_keyboard_interactive_prompts(Bin, [{Prompt, erl_boolean(Bool)} | Acc]). erl_boolean(0) -> false; erl_boolean(1) -> true. decode_kex_init(<>, Acc, 0) -> list_to_tuple(lists:reverse([X, erl_boolean(Bool) | Acc])); decode_kex_init(<>, Acc, N) -> Names = string:tokens(unicode:characters_to_list(Data), ","), decode_kex_init(Rest, [Names | Acc], N -1). erlint(MPIntSize, MPIntValue) -> Bits = MPIntSize * 8, <> = MPIntValue, Integer. decode_sign(<>) -> Signature. decode_host_key(<>) -> decode_host_key(Alg, Rest). decode_host_key(<<"ssh-rsa">>, <>) -> #'RSAPublicKey'{publicExponent = erlint(Len0, E), modulus = erlint(Len1, N)}; decode_host_key(<<"ssh-dss">>, <>) -> {erlint(Len3, Y), #'Dss-Parms'{p = erlint(Len0, P), q = erlint(Len1, Q), g = erlint(Len2, G)}}. encode_host_key(#'RSAPublicKey'{modulus = N, publicExponent = E}) -> ssh_bits:encode(["ssh-rsa", E, N], [string, mpint, mpint]); encode_host_key({Y, #'Dss-Parms'{p = P, q = Q, g = G}}) -> ssh_bits:encode(["ssh-dss", P, Q, G, Y], [string, mpint, mpint, mpint, mpint]); encode_host_key(#'RSAPrivateKey'{modulus = N, publicExponent = E}) -> ssh_bits:encode(["ssh-rsa", E, N], [string, mpint, mpint]); encode_host_key(#'DSAPrivateKey'{y = Y, p = P, q = Q, g = G}) -> ssh_bits:encode(["ssh-dss", P, Q, G, Y], [string, mpint, mpint, mpint, mpint]). encode_sign(#'RSAPrivateKey'{}, Signature) -> ssh_bits:encode(["ssh-rsa", Signature],[string, binary]); encode_sign(#'DSAPrivateKey'{}, Signature) -> ssh_bits:encode(["ssh-dss", Signature],[string, binary]).