ossh 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #!/usr/bin/env python2
  2. # vim: expandtab:tabstop=4:shiftwidth=4
  3. import argparse
  4. import traceback
  5. import sys
  6. import os
  7. import re
  8. import ConfigParser
  9. from openshift_ansible import awsutil
  10. CONFIG_MAIN_SECTION = 'main'
  11. class Ossh(object):
  12. def __init__(self):
  13. self.user = None
  14. self.host = None
  15. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  16. # Default the config path to /etc
  17. self.config_path = os.path.join(os.path.sep, 'etc', \
  18. 'openshift_ansible', \
  19. 'openshift_ansible.conf')
  20. self.parse_cli_args()
  21. self.parse_config_file()
  22. self.aws = awsutil.AwsUtil()
  23. if self.args.refresh_cache:
  24. self.get_hosts(True)
  25. else:
  26. self.get_hosts()
  27. # parse host and user
  28. self.process_host()
  29. if self.args.host == '' and not self.args.list:
  30. self.parser.print_help()
  31. return
  32. if self.args.debug:
  33. print self.args
  34. # perform the SSH
  35. if self.args.list:
  36. self.list_hosts()
  37. else:
  38. self.ssh()
  39. def parse_config_file(self):
  40. if os.path.isfile(self.config_path):
  41. config = ConfigParser.ConfigParser()
  42. config.read(self.config_path)
  43. def parse_cli_args(self):
  44. parser = argparse.ArgumentParser(description='OpenShift Online SSH Tool.')
  45. parser.add_argument('-d', '--debug', default=False,
  46. action="store_true", help="debug mode")
  47. parser.add_argument('-v', '--verbose', default=False,
  48. action="store_true", help="Verbose?")
  49. parser.add_argument('--refresh-cache', default=False,
  50. action="store_true", help="Force a refresh on the host cache.")
  51. parser.add_argument('--list', default=False,
  52. action="store_true", help="list out hosts")
  53. parser.add_argument('-c', '--command', action='store',
  54. help='Command to run on remote host')
  55. parser.add_argument('-l', '--login_name', action='store',
  56. help='User in which to ssh as')
  57. parser.add_argument('-o', '--ssh_opts', action='store',
  58. help='options to pass to SSH.\n \
  59. "-oForwardX11=yes,TCPKeepAlive=yes"')
  60. parser.add_argument('-A', default=False, action="store_true",
  61. help='Forward authentication agent')
  62. parser.add_argument('host', nargs='?', default='')
  63. self.args = parser.parse_args()
  64. self.parser = parser
  65. def process_host(self):
  66. '''Determine host name and user name for SSH.
  67. '''
  68. parts = self.args.host.split('@')
  69. # parse username if passed
  70. if len(parts) > 1:
  71. self.user = parts[0]
  72. self.host = parts[1]
  73. else:
  74. self.host = parts[0]
  75. if self.args.login_name:
  76. self.user = self.args.login_name
  77. def get_hosts(self, refresh_cache=False):
  78. '''Query our host inventory and return a dict where the format '''
  79. if refresh_cache:
  80. self.host_inventory = self.aws.get_inventory(['--refresh-cache'])['_meta']['hostvars']
  81. else:
  82. self.host_inventory = self.aws.get_inventory()['_meta']['hostvars']
  83. def select_host(self):
  84. '''select host attempts to match the host specified
  85. on the command line with a list of hosts.
  86. '''
  87. results = None
  88. if self.host_inventory.has_key(self.host):
  89. results = (self.host, self.host_inventory[self.host])
  90. else:
  91. print "Could not find specified host: %s." % self.host
  92. # default - no results found.
  93. return results
  94. def list_hosts(self, limit=None):
  95. '''Function to print out the host inventory.
  96. Takes a single parameter to limit the number of hosts printed.
  97. '''
  98. for host_id, server_info in self.host_inventory.items():
  99. print '{oo_name:<35} {oo_clusterid:<10} {oo_environment:<8} ' \
  100. '{oo_id:<15} {oo_public_ip:<18} {oo_private_ip:<18}'.format(**server_info)
  101. def ssh(self):
  102. '''SSH to a specified host
  103. '''
  104. try:
  105. # shell args start with the program name in position 1
  106. ssh_args = ['/usr/bin/ssh']
  107. if self.user:
  108. ssh_args.append('-l%s' % self.user)
  109. if self.args.A:
  110. ssh_args.append('-A')
  111. if self.args.verbose:
  112. ssh_args.append('-vvv')
  113. if self.args.ssh_opts:
  114. for arg in self.args.ssh_opts.split(","):
  115. ssh_args.append("-o%s" % arg)
  116. results = self.select_host()
  117. if not results:
  118. return # early exit, no results
  119. # Assume we have one and only one.
  120. server_info = results[1]
  121. ssh_args.append(server_info['oo_public_ip'])
  122. #last argument
  123. if self.args.command:
  124. ssh_args.append("%s" % self.args.command)
  125. print "Running: %s\n" % ' '.join(ssh_args)
  126. os.execve('/usr/bin/ssh', ssh_args, os.environ)
  127. except:
  128. print traceback.print_exc()
  129. print sys.exc_info()
  130. if __name__ == '__main__':
  131. ossh = Ossh()