Newer
Older
tsshbatch / tsshbatch.py
#!/usr/bin/env python
# Non-Interactive ssh Connection


#####
# Program Housekeeping
#####

PROGNAME = "tsshbatch.py"
BASENAME = PROGNAME.split(".py")[0]
PROGENV  = BASENAME.upper()
RCSID    = "Id: tsshbatch.py,v 1.111 2011/02/11 18:25:34 tundra Exp tundra $"
VERSION = RCSID.split()[2]


#####
# Suppress Deprecation Warnings until Paramiko catches up
# to latest Python modules
#####

import warnings
warnings.filterwarnings("ignore", "", DeprecationWarning)


#####
# Imports
#####

import getopt
import getpass
import os
import paramiko
import socket
import sys


#####
# Constants And Literals
#####

FAILURE     = "FAILURE"
INDENTWIDTH = 8
OPTIONSLIST = "kn:p:"
PADWIDTH    = 30
SEPARATOR   = " --->  "
SUCCESS     = "SUCCESS"
TRAILER     = ": "
USAGE       = "Usage:  tsshbatch.py -n username -p password serverlistfile command\n" +\
    "        tsshbatch.py [-k] serverlistfile command\n"                    +\
    "          where,\n"                                                   +\
    "\n"                                                                   +\
    "                 -k       Turns on key-exchange authentication\n"     +\
    "                 -n name  Specifies login name\n"                     +\
    "                 -p pw    Specifies login password\n"
#####
# Error Messages
#####

eBADARG       =  "Invalid command line: %s!"
eBADFILE      =  "Cannot open '%s'!"
eNOCONNECT    =  "Cannot Connect! (Name/Address Bad?  Destination Unreachable?)"
eNOLOGIN      =  "Cannot Login! (Login/Password Bad?)"


#####
# Prompts
#####

pPASS = "Password: "
pUSER = "Username: "


#####
# Print Message(s) To stdout
#####

def PrintStdout(msg, TERMINATOR="\n"):
    sys.stdout.write(msg + TERMINATOR)

# End of 'PrintStdout()'


#####
# Display An Error Message And Exit
#####

def ErrorExit(msg):

    PrintStdout(msg)
    sys.exit()

# End Of 'ErrorExit()'


#####
# Process A Command On A Host
#####

def HostCommand(host, user, pw, command):

    ssh = paramiko.SSHClient()

    # Connect and run the command, reporting results as we go
    
    try: 
        ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        ssh.connect(host, username=user, password=pw)
        stdin, stdout, stderr = ssh.exec_command(command)
        PrintReport([host, SUCCESS] + stdout.readlines() + stderr.readlines())
        
    # Catch authentication problems explicitly
        
    except paramiko.AuthenticationException:
        PrintReport([host, FAILURE, eNOLOGIN])
    
    # Everything else is some kind of connection problem

    except:
        PrintReport([host, FAILURE, eNOCONNECT])

    ssh.close()

# End of 'HostCommand()'

    
#####
# Print Report
#####

# Expects input as [host, success/failure message, result1, result2, ...]

def PrintReport(results):

    PrintStdout(SEPARATOR + results[0] +
                TRAILER +
                (PADWIDTH - len(results[0])) * " " +
                results[1])

    for r in results[2:]:                             # Command Results
        PrintStdout(INDENTWIDTH * " " + r.strip())

# End of 'PrintReport()'


#####
# Program Entry Point
#####

# Options that can be overriden by user

KEYEXCHANGE  = False
PWORD        = ""
UNAME        = ""

# Handle any options set in the environment

OPTIONS = sys.argv[1:]
envopt = os.getenv(PROGENV)
if envopt:
    OPTIONS = shlex.split(envopt) + OPTIONS

# Combine them with those given on the command line
# This allows the command line to override defaults
# set in the environment

try:
    opts, args = getopt.getopt(OPTIONS, OPTIONSLIST)
except getopt.GetoptError, (errmsg, badarg):
    ErrorExit(eBADARG % errmsg)

# Make sure we have sufficient command line args
# to do something useful

if len(args) < 2:
    ErrorExit(USAGE)

for opt, val in opts:

    if opt == "-k":
        KEYEXCHANGE = True

    if opt == "-n":
        UNAME = val

    if opt == "-p":
        PWORD = val
    
# Go do the requested work


# Get the list of hosts

try:
    f = open(args[0])
    hosts = f.readlines()
    f.close()

except:
    ErrorExit(eBADFILE % sys.argv[1])

# Create the command

cmd = " ".join(args[1:])

# If we're not doing key exchange-based authentication, get
# user name & password.

# Only do this if they've not been set in the environment
# variable/command line

if not KEYEXCHANGE:

    if not UNAME:
        UNAME = raw_input(pUSER)

    if not PWORD:
        PWORD  = getpass.getpass(pPASS)


# Iterate over the list of hosts, executing the command

for host in hosts:
    host = host.strip()
    if host:
     HostCommand(host, UNAME, PWORD, cmd)