ossh 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. CONFIG_INVENTORY_OPTION = 'inventory'
  12. class Ossh(object):
  13. def __init__(self):
  14. self.inventory = 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(self.inventory)
  23. # get a dict of host inventory
  24. if self.args.list:
  25. self.get_hosts()
  26. else:
  27. self.get_hosts(True)
  28. # parse host and user
  29. self.process_host()
  30. if self.args.host == '' and not self.args.list:
  31. self.parser.print_help()
  32. return
  33. if self.args.debug:
  34. print self.args
  35. # perform the SSH
  36. if self.args.list:
  37. self.list_hosts()
  38. else:
  39. self.ssh()
  40. def parse_config_file(self):
  41. if os.path.isfile(self.config_path):
  42. config = ConfigParser.ConfigParser()
  43. config.read(self.config_path)
  44. if config.has_section(CONFIG_MAIN_SECTION) and \
  45. config.has_option(CONFIG_MAIN_SECTION, CONFIG_INVENTORY_OPTION):
  46. self.inventory = config.get(CONFIG_MAIN_SECTION, CONFIG_INVENTORY_OPTION)
  47. def parse_cli_args(self):
  48. parser = argparse.ArgumentParser(description='Openshift Online SSH Tool.')
  49. parser.add_argument('-e', '--env', action="store",
  50. help="Which environment to search for the host ")
  51. parser.add_argument('-d', '--debug', default=False,
  52. action="store_true", help="debug mode")
  53. parser.add_argument('-v', '--verbose', default=False,
  54. action="store_true", help="Verbose?")
  55. parser.add_argument('--list', default=False,
  56. action="store_true", help="list out hosts")
  57. parser.add_argument('-c', '--command', action='store',
  58. help='Command to run on remote host')
  59. parser.add_argument('-l', '--login_name', action='store',
  60. help='User in which to ssh as')
  61. parser.add_argument('-o', '--ssh_opts', action='store',
  62. help='options to pass to SSH.\n \
  63. "-oForwardX11=yes,TCPKeepAlive=yes"')
  64. parser.add_argument('host', nargs='?', default='')
  65. self.args = parser.parse_args()
  66. self.parser = parser
  67. def process_host(self):
  68. '''Determine host name and user name for SSH.
  69. '''
  70. self.env = None
  71. self.user = None
  72. re_env = re.compile("\.(" + "|".join(self.host_inventory.keys()) + ")")
  73. search = re_env.search(self.args.host)
  74. if self.args.env:
  75. self.env = self.args.env
  76. elif search:
  77. # take the first?
  78. self.env = search.groups()[0]
  79. # remove env from hostname command line arg if found
  80. if search:
  81. self.args.host = re_env.split(self.args.host)[0]
  82. # parse username if passed
  83. if '@' in self.args.host:
  84. self.user, self.host = self.args.host.split('@')
  85. else:
  86. self.host = self.args.host
  87. if self.args.login_name:
  88. self.user = self.args.login_name
  89. def get_hosts(self, cache_only=False):
  90. '''Query our host inventory and return a dict where the format
  91. equals:
  92. dict['servername'] = dns_name
  93. '''
  94. if cache_only:
  95. self.host_inventory = self.aws.build_host_dict_by_env(['--cache-only'])
  96. else:
  97. self.host_inventory = self.aws.build_host_dict_by_env()
  98. def select_host(self):
  99. '''select host attempts to match the host specified
  100. on the command line with a list of hosts.
  101. '''
  102. results = []
  103. for env in self.host_inventory.keys():
  104. for hostname, server_info in self.host_inventory[env].items():
  105. if hostname.split(':')[0] == self.host:
  106. results.append((hostname, server_info))
  107. # attempt to select the correct environment if specified
  108. if self.env:
  109. results = filter(lambda result: result[1]['ec2_tag_environment'] == self.env, results)
  110. if results:
  111. return results
  112. else:
  113. print "Could not find specified host: %s." % self.host
  114. # default - no results found.
  115. return None
  116. def list_hosts(self, limit=None):
  117. '''Function to print out the host inventory.
  118. Takes a single parameter to limit the number of hosts printed.
  119. '''
  120. if self.env:
  121. results = self.select_host()
  122. if len(results) == 1:
  123. hostname, server_info = results[0]
  124. sorted_keys = server_info.keys()
  125. sorted_keys.sort()
  126. for key in sorted_keys:
  127. print '{0:<35} {1}'.format(key, server_info[key])
  128. else:
  129. for host_id, server_info in results[:limit]:
  130. name = server_info['ec2_tag_Name']
  131. ec2_id = server_info['ec2_id']
  132. ip = server_info['ec2_ip_address']
  133. print '{ec2_tag_Name:<35} {ec2_tag_environment:<8} {ec2_id:<15} {ec2_ip_address}'.format(**server_info)
  134. if limit:
  135. print
  136. print 'Showing only the first %d results...' % limit
  137. print
  138. else:
  139. for env, host_ids in self.host_inventory.items():
  140. for host_id, server_info in host_ids.items():
  141. name = server_info['ec2_tag_Name']
  142. ec2_id = server_info['ec2_id']
  143. ip = server_info['ec2_ip_address']
  144. print '{ec2_tag_Name:<35} {ec2_tag_environment:<5} {ec2_id:<15} {ec2_ip_address}'.format(**server_info)
  145. def ssh(self):
  146. '''SSH to a specified host
  147. '''
  148. try:
  149. # shell args start with the program name in position 1
  150. ssh_args = ['/usr/bin/ssh']
  151. if self.user:
  152. ssh_args.append('-l%s' % self.user)
  153. if self.args.verbose:
  154. ssh_args.append('-vvv')
  155. if self.args.ssh_opts:
  156. for arg in self.args.ssh_opts.split(","):
  157. ssh_args.append("-o%s" % arg)
  158. results = self.select_host()
  159. if not results:
  160. return # early exit, no results
  161. if len(results) > 1:
  162. print "Multiple results found for %s." % self.host
  163. for result in results:
  164. print "{ec2_tag_Name:<35} {ec2_tag_environment:<5} {ec2_id:<10}".format(**result[1])
  165. return # early exit, too many results
  166. # Assume we have one and only one.
  167. hostname, server_info = results[0]
  168. dns = server_info['ec2_public_dns_name']
  169. ssh_args.append(dns)
  170. #last argument
  171. if self.args.command:
  172. ssh_args.append("%s" % self.args.command)
  173. print "Running: %s\n" % ' '.join(ssh_args)
  174. os.execve('/usr/bin/ssh', ssh_args, os.environ)
  175. except:
  176. print traceback.print_exc()
  177. print sys.exc_info()
  178. if __name__ == '__main__':
  179. ossh = Ossh()