summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-remote
blob: c33fcfbfe2c495bae2cf8396c63a76a11d6e2779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
__revision__ = '$Revision$'

from Bcfg2.tlslite.api import parsePEMKey, X509, X509CertChain
from xmlrpclib import ServerProxy
from Bcfg2.tlslite.integration.XMLRPCTransport import XMLRPCTransport
import Bcfg2.Options, Bcfg2.Logging, logging, socket, sys

if __name__ == '__main__':
    opts = {
        'agent-port': Bcfg2.Options.AGENT_PORT,
        'host': Bcfg2.Options.AGENT_HOST,
        'setup': Bcfg2.Options.CFILE,
        'key': Bcfg2.Options.SERVER_KEY,
        'debug': Bcfg2.Options.DEBUG,
        }
    setup = Bcfg2.Options.OptionParser(opts)
    setup.parse(sys.argv[1:])
    Bcfg2.Logging.setup_logging('bcfg2-remote',
                                to_syslog=False,
                                level=int(setup['debug']))
    logger = logging.getLogger('bcfg2-remote')
    if not setup['host']:
        logger.error("-H option is required")
        logger.error(setup.buildHelpMessage())
        raise SystemExit(1)
    s = open(setup['key']).read()
    x509 = X509()
    x509.parse(s)
    certChain = X509CertChain([x509])
    #s = open("/etc/bcfg2.key").read()
    privateKey = parsePEMKey(s, private=True)

    transport = XMLRPCTransport(certChain=certChain,
                                privateKey=privateKey)
    port = setup['agent-port']
    status = 0
    if setup['host'] == '-':
        urls = ["https://%s:%s" % (host, port) for host in \
                [line.strip() for line in sys.stdin.readlines()]]
    else:
        host = setup['host']
        urls = ["https://%s:%s" % (host, port)]

    for url in urls:
        server = ServerProxy(url,  transport)
        
        try:
            result = server.run()
        except socket.error, serr:
            if serr.args[0] == 111:
                logger.error("Failed to connect to %s" % url)
            elif serr.args[0] == 32:
                logger.error("Connection to %s dropped; authentication failure?" % url)
            elif serr.args[0] == -5:
                logger.error("Lookup failure for %s" % url)
            else:
                logger.error("Got unexpected socket error %s for %s" % \
                             (serr.args[0], url), exc_info=1)
            status = 1
    raise SystemExit(status)