source: fedd/fedd.py @ e087a7a

axis_examplecompt_changesinfo-opsversion-1.30version-2.00version-3.01version-3.02
Last change on this file since e087a7a was e087a7a, checked in by Ted Faber <faber@…>, 15 years ago

Whoops. Lurking error.

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