ossh 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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('-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. self.env = None
  69. self.user = None
  70. re_env = re.compile("\.(" + "|".join(self.host_inventory.keys()) + ")")
  71. search = re_env.search(self.args.host)
  72. if self.args.env:
  73. self.env = self.args.env
  74. elif search:
  75. # take the first?
  76. self.env = search.groups()[0]
  77. # remove env from hostname command line arg if found
  78. if search:
  79. self.args.host = re_env.split(self.args.host)[0]
  80. # parse username if passed
  81. if '@' in self.args.host:
  82. self.user, self.host = self.args.host.split('@')
  83. else:
  84. self.host = self.args.host
  85. if self.args.login_name:
  86. self.user = self.args.login_name
  87. def get_hosts(self, refresh_cache=False):
  88. '''Query our host inventory and return a dict where the format
  89. equals:
  90. dict['servername'] = dns_name
  91. '''
  92. if refresh_cache:
  93. self.host_inventory = self.aws.build_host_dict_by_env(['--refresh-cache'])
  94. else:
  95. self.host_inventory = self.aws.build_host_dict_by_env()
  96. def select_host(self):
  97. '''select host attempts to match the host specified
  98. on the command line with a list of hosts.
  99. '''
  100. results = []
  101. for env in self.host_inventory.keys():
  102. for hostname, server_info in self.host_inventory[env].items():
  103. if hostname.split(':')[0] == self.host:
  104. results.append((hostname, server_info))
  105. # attempt to select the correct environment if specified
  106. if self.env:
  107. results = filter(lambda result: result[1]['oo_environment'] == self.env, results)
  108. if results:
  109. return results
  110. else:
  111. print "Could not find specified host: %s." % self.host
  112. # default - no results found.
  113. return None
  114. def list_hosts(self, limit=None):
  115. '''Function to print out the host inventory.
  116. Takes a single parameter to limit the number of hosts printed.
  117. '''
  118. if self.env:
  119. results = self.select_host()
  120. if len(results) == 1:
  121. hostname, server_info = results[0]
  122. sorted_keys = server_info.keys()
  123. sorted_keys.sort()
  124. for key in sorted_keys:
  125. print '{0:<35} {1}'.format(key, server_info[key])
  126. else:
  127. for host_id, server_info in results[:limit]:
  128. print '{oo_name:<35} {oo_clusterid:<10} {oo_environment:<8} ' \
  129. '{oo_id:<15} {oo_public_ip:<18} {oo_private_ip:<18}'.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. print '{oo_name:<35} {oo_clusterid:<10} {oo_environment:<8} ' \
  138. '{oo_id:<15} {oo_public_ip:<18} {oo_private_ip:<18}'.format(**server_info)
  139. def ssh(self):
  140. '''SSH to a specified host
  141. '''
  142. try:
  143. # shell args start with the program name in position 1
  144. ssh_args = ['/usr/bin/ssh']
  145. if self.user:
  146. ssh_args.append('-l%s' % self.user)
  147. if self.args.A:
  148. ssh_args.append('-A')
  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 "{oo_name:<35} {oo_clusterid:<5} {oo_environment:<5} {oo_id:<10}".format(**result[1])
  161. return # early exit, too many results
  162. # Assume we have one and only one.
  163. _, server_info = results[0]
  164. dns = server_info['oo_public_ip']
  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()