[2e46f35] | 1 | #!/usr/bin/env python |
---|
[6ff0b91] | 2 | |
---|
[2729e48] | 3 | import os,sys |
---|
[6ff0b91] | 4 | |
---|
| 5 | from optparse import OptionParser |
---|
| 6 | |
---|
[5d3f239] | 7 | from federation import config_parser |
---|
| 8 | from federation.server import server, xmlrpc_handler, soap_handler |
---|
[62f3dd9] | 9 | from federation.util import fedd_ssl_context, file_expanding_opts |
---|
[5d3f239] | 10 | from federation.deter_impl import new_feddservice |
---|
[6ff0b91] | 11 | |
---|
[e087a7a] | 12 | from socket import error as socket_error |
---|
[6a0c9f4] | 13 | from threading import Lock, Thread |
---|
[11a08b0] | 14 | from signal import signal, pause, SIGINT, SIGTERM |
---|
[d199ced] | 15 | from select import select, error |
---|
[0ea11af] | 16 | from time import sleep |
---|
[50ef6e4] | 17 | |
---|
[11a08b0] | 18 | import logging |
---|
[50ef6e4] | 19 | import M2Crypto |
---|
[62f3dd9] | 20 | import os.path |
---|
[19cc408] | 21 | |
---|
[62f3dd9] | 22 | class fedd_opts(file_expanding_opts): |
---|
[6ff0b91] | 23 | """Encapsulate option processing in this class, rather than in main""" |
---|
[62f3dd9] | 24 | |
---|
[6ff0b91] | 25 | def __init__(self): |
---|
[62f3dd9] | 26 | file_expanding_opts.__init__(self, |
---|
| 27 | usage="%prog [opts] (--help for details)", |
---|
[6ff0b91] | 28 | version="0.1") |
---|
| 29 | |
---|
[a2da110] | 30 | self.set_defaults(logfile=None, debug=0) |
---|
[6ff0b91] | 31 | |
---|
| 32 | self.add_option("-d", "--debug", action="count", dest="debug", |
---|
| 33 | help="Set debug. Repeat for more information") |
---|
[62f3dd9] | 34 | self.add_option("-f", "--configfile", action="callback", |
---|
| 35 | callback=self.expand_file, type='str', |
---|
[a2da110] | 36 | default="/usr/local/etc/fedd.conf", |
---|
[62f3dd9] | 37 | dest="configfile", help="Configuration file") |
---|
[11a08b0] | 38 | self.add_option("-l", "--logfile", action="store", dest="logfile", |
---|
| 39 | help="File to send log messages to") |
---|
[6ff0b91] | 40 | self.add_option("--trace", action="store_const", dest="tracefile", |
---|
| 41 | const=sys.stderr, help="Print SOAP exchange to stderr") |
---|
| 42 | |
---|
[0ea11af] | 43 | servers_active = True # Sub-servers run while this is True |
---|
[ec4fb42] | 44 | servers = [ ] # server instances instantiated from services |
---|
[0ea11af] | 45 | servers_lock = Lock() # Lock to manipulate servers from sub-server threads |
---|
[11a08b0] | 46 | |
---|
| 47 | def shutdown(sig, frame): |
---|
[0ea11af] | 48 | """ |
---|
| 49 | On a signal, stop running sub-servers. |
---|
| 50 | |
---|
| 51 | This is connected to signals below |
---|
| 52 | """ |
---|
[11a08b0] | 53 | global servers_active, flog |
---|
[d199ced] | 54 | |
---|
[11a08b0] | 55 | servers_active = False |
---|
| 56 | flog.info("Received signal %d, shutting down" % sig); |
---|
| 57 | |
---|
[a97394b] | 58 | def run_server(s): |
---|
[0ea11af] | 59 | """ |
---|
| 60 | Operate a subserver, shutting down when servers_active is false. |
---|
| 61 | |
---|
| 62 | Each server (that is host/port/transport triple) has a thread running this |
---|
| 63 | function, so each can handle requests independently. They all call in to |
---|
| 64 | the same implementation, which must manage its own synchronization. |
---|
| 65 | """ |
---|
[11a08b0] | 66 | global servers_active # Not strictly needed: servers_active is only read |
---|
[0ea11af] | 67 | global servers # List of active servers |
---|
| 68 | global servers_lock # Lock to manipulate servers |
---|
[11a08b0] | 69 | |
---|
[0ea11af] | 70 | while servers_active: |
---|
[d199ced] | 71 | try: |
---|
| 72 | i, o, e = select((s,), (), (), 1.0) |
---|
| 73 | if s in i: s.handle_request() |
---|
| 74 | except error: |
---|
| 75 | # The select call seems to get interrupted by signals as well as |
---|
| 76 | # the main thread. This essentially ignores signals in this |
---|
| 77 | # thread. |
---|
| 78 | pass |
---|
[a97394b] | 79 | |
---|
[0ea11af] | 80 | # Done. Remove us from the list |
---|
| 81 | servers_lock.acquire() |
---|
| 82 | servers.remove(s) |
---|
| 83 | servers_lock.release() |
---|
[50ef6e4] | 84 | M2Crypto.threading.init() |
---|
[6ff0b91] | 85 | opts, args = fedd_opts().parse_args() |
---|
| 86 | |
---|
[0ea11af] | 87 | # Logging setup |
---|
[11a08b0] | 88 | flog = logging.getLogger("fedd") |
---|
[0ea11af] | 89 | ffmt = logging.Formatter("%(asctime)s %(name)s %(message)s", |
---|
| 90 | '%d %b %y %H:%M:%S') |
---|
[11a08b0] | 91 | |
---|
| 92 | if opts.logfile: fh = logging.FileHandler(opts.logfile) |
---|
| 93 | else: fh = logging.StreamHandler(sys.stdout) |
---|
| 94 | |
---|
| 95 | # The handler will print anything, setting the logger level will affect what |
---|
| 96 | # gets recorded. |
---|
| 97 | fh.setLevel(logging.DEBUG) |
---|
| 98 | |
---|
| 99 | if opts.debug: flog.setLevel(logging.DEBUG) |
---|
| 100 | else: flog.setLevel(logging.INFO) |
---|
| 101 | |
---|
| 102 | fh.setFormatter(ffmt) |
---|
| 103 | flog.addHandler(fh) |
---|
| 104 | |
---|
[72ed6e4] | 105 | |
---|
[f92db31] | 106 | if not os.access(opts.configfile, os.R_OK): |
---|
| 107 | sys.exit("Can't read config file %s" % opts.configfile) |
---|
[72ed6e4] | 108 | |
---|
[0ea11af] | 109 | # Initialize the implementation |
---|
[f92db31] | 110 | try: |
---|
| 111 | config= config_parser() |
---|
| 112 | config.read(opts.configfile) |
---|
| 113 | except Exception, e: |
---|
| 114 | sys.exit("Cannot parse config file %s: %s" % (opts.configfile, e)) |
---|
[6ff0b91] | 115 | |
---|
[72ed6e4] | 116 | try: |
---|
| 117 | impl = new_feddservice(config) |
---|
| 118 | except RuntimeError, e: |
---|
| 119 | str = getattr(e, 'desc', None) or getattr(e,'message', None) or \ |
---|
| 120 | "No message" |
---|
| 121 | sys.exit("Error configuring fedd: %s" % str) |
---|
| 122 | |
---|
[2729e48] | 123 | if impl.cert_file: |
---|
| 124 | if not os.access(impl.cert_file, os.R_OK): |
---|
| 125 | sys.exit("Cannot read certificate file: %s" % impl.cert_file) |
---|
| 126 | else: |
---|
[6ff0b91] | 127 | sys.exit("Must supply certificate file (probably in config)") |
---|
| 128 | |
---|
[2729e48] | 129 | if impl.trusted_certs: |
---|
| 130 | if not os.access(impl.trusted_certs, os.R_OK): |
---|
| 131 | sys.exit("Cannot read trusted certificate file: %s" % \ |
---|
| 132 | impl.trusted_certs) |
---|
| 133 | |
---|
[0ea11af] | 134 | # Create the SSL credentials |
---|
[2106ed1] | 135 | ctx = None |
---|
| 136 | while ctx == None: |
---|
[6ff0b91] | 137 | try: |
---|
| 138 | ctx = fedd_ssl_context(impl.cert_file, impl.trusted_certs, |
---|
| 139 | password=impl.cert_pwd) |
---|
[2729e48] | 140 | except Exception, e: |
---|
[2106ed1] | 141 | if str(e) != "bad decrypt" or impl.cert_pwd != None: |
---|
[6ff0b91] | 142 | raise |
---|
| 143 | |
---|
[a2da110] | 144 | services = config.get("globals", "services", "23235") |
---|
[a97394b] | 145 | |
---|
[a2da110] | 146 | for s in services.split(","): |
---|
| 147 | s = s.strip() |
---|
| 148 | colons = s.count(":") |
---|
| 149 | try: |
---|
| 150 | if colons == 0: |
---|
| 151 | p = int(s) |
---|
| 152 | h = '' |
---|
| 153 | t = 'soap' |
---|
| 154 | elif colons == 1: |
---|
| 155 | p, t = s.split(":") |
---|
| 156 | p = int(p) |
---|
| 157 | h = '' |
---|
| 158 | elif colons == 2: |
---|
| 159 | h, p, t = s.split(":") |
---|
| 160 | p = int(p) |
---|
| 161 | else: |
---|
| 162 | flog.error("Invalid service specification %s ignored." % s) |
---|
| 163 | continue |
---|
| 164 | except ValueError: |
---|
| 165 | flog.error("Error converting port to integer in %s: spec ignored" % s) |
---|
| 166 | continue |
---|
[a97394b] | 167 | |
---|
[a2da110] | 168 | t = t.lower() |
---|
[46a0f7a] | 169 | sdebug = (opts.debug > 0) |
---|
[a2da110] | 170 | try: |
---|
| 171 | if t == 'soap': |
---|
[46a0f7a] | 172 | servers.append(server((h, p), soap_handler, ctx, impl, sdebug)) |
---|
[a2da110] | 173 | elif t == 'xmlrpc': |
---|
[46a0f7a] | 174 | servers.append(server((h, p), xmlrpc_handler, ctx, impl, sdebug)) |
---|
[a2da110] | 175 | else: |
---|
| 176 | flog.error("Invalid transport specification (%s) in service %s" % \ |
---|
| 177 | (t, s)) |
---|
| 178 | continue |
---|
| 179 | except socket_error, e: |
---|
| 180 | flog.error("Cannot create server for %s: %s" % (s, e[1])) |
---|
| 181 | continue |
---|
[11a08b0] | 182 | |
---|
[0ea11af] | 183 | # Make sure that there are no malformed servers in the list |
---|
[a2da110] | 184 | servers = [ s for s in servers if s ] |
---|
[0ea11af] | 185 | |
---|
| 186 | # Catch signals |
---|
[11a08b0] | 187 | signal(SIGINT, shutdown) |
---|
| 188 | signal(SIGTERM, shutdown) |
---|
[a97394b] | 189 | |
---|
[0ea11af] | 190 | # Start the servers |
---|
[a97394b] | 191 | for s in servers: |
---|
[0ea11af] | 192 | Thread(target=run_server, args=(s,)).start() |
---|
| 193 | |
---|
| 194 | # Main thread waits for signals |
---|
| 195 | while servers_active: |
---|
[d199ced] | 196 | sleep(1.0) |
---|
[0ea11af] | 197 | |
---|
| 198 | #Once shutdown starts wait for all the servers to terminate. |
---|
| 199 | while True: |
---|
| 200 | servers_lock.acquire() |
---|
| 201 | if len(servers) == 0: |
---|
| 202 | servers_lock.release() |
---|
| 203 | flog.info("All servers exited. Terminating") |
---|
| 204 | sys.exit(0) |
---|
| 205 | servers_lock.release() |
---|
| 206 | sleep(1) |
---|
[11a08b0] | 207 | |
---|