summaryrefslogtreecommitdiffstats
path: root/scripts/certmaster-ca
blob: 14f7c2fa43951d6c2dce39d9da02457025640c11 (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
62
63
64
65
66
67
68
69
70
#!/usr/bin/python -tt
# sign/list keys
# --sign hostname hostname hostname
# --list # lists all csrs needing to be signed
# --list-all ?
# --clean? not sure what it will do

import sys

import func
import func.certs
import func.certmaster



from optparse import OptionParser
defaults = { 'listen_addr': 'localhost',
             'listen_port': '51235',
             'cadir': '/etc/pki/func/ca',
             'certroot': '/var/lib/func/certmaster/certs',
             'csrroot': '/var/lib/func/certmaster/csrs',
             'autosign': 'false'
            }

def errorprint(stuff):
    print >> sys.stderr, stuff


def parseargs(args):
    usage = 'certmaster-ca [options]'
    parser = OptionParser(usage=usage)
    
    parser.add_option('-l', '--list', default=False, action="store_true",
          help='list signing requests remaining')
    parser.add_option('-s', '--sign', default=False, action="store_true",
          help='sign requests of hosts specified')
    
    (opts, args) = parser.parse_args()
    # XXX FIXME check for obviously impossible things and exit, etc
    
    return (opts, args)

def main(args):
    cm = func.certmaster.CertMaster('/etc/func/certmaster.conf', defaults)
    
    (opts, args) = parseargs(args)
    if opts.list:
        hns = cm.get_csrs_waiting()
        if hns:
            for hn in cm.get_csrs_waiting():
                print hn
        else:
           print 'No certificates to sign'

        return 0
    
    if opts.sign:
        if not args:
            errorprint('Need hostnames to sign')
            return 1
            
        for hn in args:
            csrfile = '%s/%s.csr' % (cm.cfg.csrroot, hn)
            certfile = cm.sign_this_csr(csrfile)
            print '%s signed - cert located at %s' % (hn, certfile)
        return 0
        

if __name__ == "__main__":
    sys.exit(main(sys.argv[1:]))