aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2015-11-11 16:11:35 +0100
committerHans Nilsson <[email protected]>2015-11-11 16:11:35 +0100
commit0a4d4450d2143ca824644c6da96f98fc95811e3e (patch)
treefa9a7b341556eb5d33472e81f5315fcb6de4b82d /lib
parent6da32c313f53990eb9ca718cccc72f2b4df29839 (diff)
parent98e1d3394514181648c64ab9e5f7a1af2573d658 (diff)
downloadotp-0a4d4450d2143ca824644c6da96f98fc95811e3e.tar.gz
otp-0a4d4450d2143ca824644c6da96f98fc95811e3e.tar.bz2
otp-0a4d4450d2143ca824644c6da96f98fc95811e3e.zip
Merge branch 'maint'
* maint: ssh: add better error handling in ssh_file
Diffstat (limited to 'lib')
-rw-r--r--lib/ssh/src/ssh_file.erl16
1 files changed, 12 insertions, 4 deletions
diff --git a/lib/ssh/src/ssh_file.erl b/lib/ssh/src/ssh_file.erl
index c087ce14d7..2f16a31cba 100644
--- a/lib/ssh/src/ssh_file.erl
+++ b/lib/ssh/src/ssh_file.erl
@@ -221,9 +221,11 @@ do_lookup_host_key(KeyToMatch, Host, Alg, Opts) ->
{ok, Fd} ->
Res = lookup_host_key_fd(Fd, KeyToMatch, Host, Alg),
file:close(Fd),
- {ok, Res};
- {error, enoent} -> {error, not_found};
- Error -> Error
+ Res;
+ {error, enoent} ->
+ {error, not_found};
+ Error ->
+ Error
end.
identity_key_filename('ssh-dss' ) -> "id_dsa";
@@ -242,6 +244,9 @@ lookup_host_key_fd(Fd, KeyToMatch, Host, KeyType) ->
case io:get_line(Fd, '') of
eof ->
{error, not_found};
+ {error,Error} ->
+ %% Rare... For example NFS errors
+ {error,Error};
Line ->
case ssh_decode_line(Line, known_hosts) of
[{Key, Attributes}] ->
@@ -262,7 +267,7 @@ handle_host(Fd, KeyToMatch, Host, HostList, Key, KeyType) ->
Host1 = host_name(Host),
case lists:member(Host1, HostList) andalso key_match(Key, KeyType) of
true when KeyToMatch == Key ->
- Key;
+ {ok,Key};
_ ->
lookup_host_key_fd(Fd, KeyToMatch, Host, KeyType)
end.
@@ -309,6 +314,9 @@ lookup_user_key_fd(Fd, Key) ->
case io:get_line(Fd, '') of
eof ->
{error, not_found};
+ {error,Error} ->
+ %% Rare... For example NFS errors
+ {error,Error};
Line ->
case ssh_decode_line(Line, auth_keys) of
[{AuthKey, _}] ->