ossh 7.4 KB

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