2009-07-19 22:45:02 -04:00
|
|
|
# Copyright (C) 2008 Robey Pointer <robeypointer@gmail.com>
|
2008-01-23 20:38:49 -05:00
|
|
|
#
|
|
|
|
# This file is part of paramiko.
|
|
|
|
#
|
|
|
|
# Paramiko is free software; you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU Lesser General Public License as published by the Free
|
|
|
|
# Software Foundation; either version 2.1 of the License, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
2013-09-28 00:29:18 -04:00
|
|
|
# Paramiko is distributed in the hope that it will be useful, but WITHOUT ANY
|
2008-01-23 20:38:49 -05:00
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Paramiko; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Some unit tests for authenticating over a Transport.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import threading
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from paramiko import Transport, ServerInterface, RSAKey, DSSKey, \
|
2008-03-22 22:57:51 -04:00
|
|
|
SSHException, BadAuthenticationType, InteractiveQuery, ChannelException, \
|
|
|
|
AuthenticationException
|
2008-01-23 20:38:49 -05:00
|
|
|
from paramiko import AUTH_FAILED, AUTH_PARTIALLY_SUCCESSFUL, AUTH_SUCCESSFUL
|
|
|
|
from paramiko import OPEN_SUCCEEDED, OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED
|
2013-10-30 19:19:30 -04:00
|
|
|
from tests.loop import LoopSocket
|
|
|
|
from tests.util import test_path
|
2008-01-23 20:38:49 -05:00
|
|
|
|
2013-10-30 20:14:52 -04:00
|
|
|
try:
|
|
|
|
_pwd = u'\u2022'
|
|
|
|
except Exception:
|
|
|
|
_pwd = '\u2022'
|
|
|
|
|
2008-01-23 20:38:49 -05:00
|
|
|
|
|
|
|
class NullServer (ServerInterface):
|
|
|
|
paranoid_did_password = False
|
|
|
|
paranoid_did_public_key = False
|
2013-10-30 19:22:52 -04:00
|
|
|
paranoid_key = DSSKey.from_private_key_file(test_path('test_dss.key'))
|
|
|
|
|
2008-01-23 20:38:49 -05:00
|
|
|
def get_allowed_auths(self, username):
|
|
|
|
if username == 'slowdive':
|
|
|
|
return 'publickey,password'
|
|
|
|
if username == 'paranoid':
|
|
|
|
if not self.paranoid_did_password and not self.paranoid_did_public_key:
|
|
|
|
return 'publickey,password'
|
|
|
|
elif self.paranoid_did_password:
|
|
|
|
return 'publickey'
|
|
|
|
else:
|
|
|
|
return 'password'
|
|
|
|
if username == 'commie':
|
|
|
|
return 'keyboard-interactive'
|
2008-01-23 23:50:17 -05:00
|
|
|
if username == 'utf8':
|
|
|
|
return 'password'
|
|
|
|
if username == 'non-utf8':
|
|
|
|
return 'password'
|
2008-01-23 20:38:49 -05:00
|
|
|
return 'publickey'
|
|
|
|
|
|
|
|
def check_auth_password(self, username, password):
|
|
|
|
if (username == 'slowdive') and (password == 'pygmalion'):
|
|
|
|
return AUTH_SUCCESSFUL
|
|
|
|
if (username == 'paranoid') and (password == 'paranoid'):
|
|
|
|
# 2-part auth (even openssh doesn't support this)
|
|
|
|
self.paranoid_did_password = True
|
|
|
|
if self.paranoid_did_public_key:
|
|
|
|
return AUTH_SUCCESSFUL
|
|
|
|
return AUTH_PARTIALLY_SUCCESSFUL
|
2013-10-30 20:14:52 -04:00
|
|
|
if (username == 'utf8') and (password == _pwd):
|
2008-01-23 23:50:17 -05:00
|
|
|
return AUTH_SUCCESSFUL
|
|
|
|
if (username == 'non-utf8') and (password == '\xff'):
|
2008-01-23 20:38:49 -05:00
|
|
|
return AUTH_SUCCESSFUL
|
2008-03-22 22:57:51 -04:00
|
|
|
if username == 'bad-server':
|
|
|
|
raise Exception("Ack!")
|
2008-01-23 20:38:49 -05:00
|
|
|
return AUTH_FAILED
|
|
|
|
|
|
|
|
def check_auth_publickey(self, username, key):
|
|
|
|
if (username == 'paranoid') and (key == self.paranoid_key):
|
|
|
|
# 2-part auth
|
|
|
|
self.paranoid_did_public_key = True
|
|
|
|
if self.paranoid_did_password:
|
|
|
|
return AUTH_SUCCESSFUL
|
|
|
|
return AUTH_PARTIALLY_SUCCESSFUL
|
|
|
|
return AUTH_FAILED
|
|
|
|
|
|
|
|
def check_auth_interactive(self, username, submethods):
|
|
|
|
if username == 'commie':
|
|
|
|
self.username = username
|
|
|
|
return InteractiveQuery('password', 'Please enter a password.', ('Password', False))
|
|
|
|
return AUTH_FAILED
|
|
|
|
|
|
|
|
def check_auth_interactive_response(self, responses):
|
|
|
|
if self.username == 'commie':
|
|
|
|
if (len(responses) == 1) and (responses[0] == 'cat'):
|
|
|
|
return AUTH_SUCCESSFUL
|
|
|
|
return AUTH_FAILED
|
|
|
|
|
|
|
|
|
|
|
|
class AuthTest (unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.socks = LoopSocket()
|
|
|
|
self.sockc = LoopSocket()
|
|
|
|
self.sockc.link(self.socks)
|
|
|
|
self.tc = Transport(self.sockc)
|
|
|
|
self.ts = Transport(self.socks)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.tc.close()
|
|
|
|
self.ts.close()
|
|
|
|
self.socks.close()
|
|
|
|
self.sockc.close()
|
2008-01-23 23:50:17 -05:00
|
|
|
|
|
|
|
def start_server(self):
|
2013-10-30 19:22:52 -04:00
|
|
|
host_key = RSAKey.from_private_key_file(test_path('test_rsa.key'))
|
2013-10-30 20:09:34 -04:00
|
|
|
self.public_host_key = RSAKey(data=host_key.asbytes())
|
2008-01-23 23:50:17 -05:00
|
|
|
self.ts.add_server_key(host_key)
|
|
|
|
self.event = threading.Event()
|
|
|
|
self.server = NullServer()
|
|
|
|
self.assert_(not self.event.isSet())
|
|
|
|
self.ts.start_server(self.event, self.server)
|
|
|
|
|
|
|
|
def verify_finished(self):
|
|
|
|
self.event.wait(1.0)
|
|
|
|
self.assert_(self.event.isSet())
|
|
|
|
self.assert_(self.ts.is_active())
|
2008-01-23 20:38:49 -05:00
|
|
|
|
|
|
|
def test_1_bad_auth_type(self):
|
|
|
|
"""
|
|
|
|
verify that we get the right exception when an unsupported auth
|
|
|
|
type is requested.
|
|
|
|
"""
|
2008-01-23 23:50:17 -05:00
|
|
|
self.start_server()
|
2008-01-23 20:38:49 -05:00
|
|
|
try:
|
2008-01-23 23:50:17 -05:00
|
|
|
self.tc.connect(hostkey=self.public_host_key,
|
2008-01-23 20:38:49 -05:00
|
|
|
username='unknown', password='error')
|
|
|
|
self.assert_(False)
|
|
|
|
except:
|
|
|
|
etype, evalue, etb = sys.exc_info()
|
|
|
|
self.assertEquals(BadAuthenticationType, etype)
|
|
|
|
self.assertEquals(['publickey'], evalue.allowed_types)
|
|
|
|
|
|
|
|
def test_2_bad_password(self):
|
|
|
|
"""
|
|
|
|
verify that a bad password gets the right exception, and that a retry
|
|
|
|
with the right password works.
|
|
|
|
"""
|
2008-01-23 23:50:17 -05:00
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
2008-01-23 20:38:49 -05:00
|
|
|
try:
|
|
|
|
self.tc.auth_password(username='slowdive', password='error')
|
|
|
|
self.assert_(False)
|
|
|
|
except:
|
|
|
|
etype, evalue, etb = sys.exc_info()
|
2008-03-22 22:57:51 -04:00
|
|
|
self.assert_(issubclass(etype, AuthenticationException))
|
2008-01-23 20:38:49 -05:00
|
|
|
self.tc.auth_password(username='slowdive', password='pygmalion')
|
2008-01-23 23:50:17 -05:00
|
|
|
self.verify_finished()
|
2008-01-23 20:38:49 -05:00
|
|
|
|
|
|
|
def test_3_multipart_auth(self):
|
|
|
|
"""
|
|
|
|
verify that multipart auth works.
|
|
|
|
"""
|
2008-01-23 23:50:17 -05:00
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
2008-01-23 20:38:49 -05:00
|
|
|
remain = self.tc.auth_password(username='paranoid', password='paranoid')
|
|
|
|
self.assertEquals(['publickey'], remain)
|
2013-10-30 19:22:52 -04:00
|
|
|
key = DSSKey.from_private_key_file(test_path('test_dss.key'))
|
2008-01-23 20:38:49 -05:00
|
|
|
remain = self.tc.auth_publickey(username='paranoid', key=key)
|
|
|
|
self.assertEquals([], remain)
|
2008-01-23 23:50:17 -05:00
|
|
|
self.verify_finished()
|
2008-01-23 20:38:49 -05:00
|
|
|
|
|
|
|
def test_4_interactive_auth(self):
|
|
|
|
"""
|
|
|
|
verify keyboard-interactive auth works.
|
|
|
|
"""
|
2008-01-23 23:50:17 -05:00
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
2008-01-23 20:38:49 -05:00
|
|
|
|
|
|
|
def handler(title, instructions, prompts):
|
|
|
|
self.got_title = title
|
|
|
|
self.got_instructions = instructions
|
|
|
|
self.got_prompts = prompts
|
|
|
|
return ['cat']
|
|
|
|
remain = self.tc.auth_interactive('commie', handler)
|
|
|
|
self.assertEquals(self.got_title, 'password')
|
|
|
|
self.assertEquals(self.got_prompts, [('Password', False)])
|
|
|
|
self.assertEquals([], remain)
|
2008-01-23 23:50:17 -05:00
|
|
|
self.verify_finished()
|
2008-01-23 20:38:49 -05:00
|
|
|
|
|
|
|
def test_5_interactive_auth_fallback(self):
|
|
|
|
"""
|
|
|
|
verify that a password auth attempt will fallback to "interactive"
|
|
|
|
if password auth isn't supported but interactive is.
|
|
|
|
"""
|
2008-01-23 23:50:17 -05:00
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
2008-01-23 20:38:49 -05:00
|
|
|
remain = self.tc.auth_password('commie', 'cat')
|
|
|
|
self.assertEquals([], remain)
|
2008-01-23 23:50:17 -05:00
|
|
|
self.verify_finished()
|
|
|
|
|
|
|
|
def test_6_auth_utf8(self):
|
|
|
|
"""
|
|
|
|
verify that utf-8 encoding happens in authentication.
|
|
|
|
"""
|
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
2013-10-30 20:14:52 -04:00
|
|
|
remain = self.tc.auth_password('utf8', _pwd)
|
2008-01-23 23:50:17 -05:00
|
|
|
self.assertEquals([], remain)
|
|
|
|
self.verify_finished()
|
|
|
|
|
|
|
|
def test_7_auth_non_utf8(self):
|
|
|
|
"""
|
|
|
|
verify that non-utf-8 encoded passwords can be used for broken
|
|
|
|
servers.
|
|
|
|
"""
|
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
|
|
|
remain = self.tc.auth_password('non-utf8', '\xff')
|
|
|
|
self.assertEquals([], remain)
|
|
|
|
self.verify_finished()
|
2008-03-22 22:57:51 -04:00
|
|
|
|
|
|
|
def test_8_auth_gets_disconnected(self):
|
|
|
|
"""
|
|
|
|
verify that we catch a server disconnecting during auth, and report
|
|
|
|
it as an auth failure.
|
|
|
|
"""
|
|
|
|
self.start_server()
|
|
|
|
self.tc.connect(hostkey=self.public_host_key)
|
|
|
|
try:
|
|
|
|
remain = self.tc.auth_password('bad-server', 'hello')
|
|
|
|
except:
|
|
|
|
etype, evalue, etb = sys.exc_info()
|
|
|
|
self.assert_(issubclass(etype, AuthenticationException))
|