oscp 8.1 KB

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