source: fedd/federation/remote_service.py @ 89d33df

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

make sure XMLRPC faults have integer error codes

  • Property mode set to 100644
File size: 15.5 KB
Line 
1#!/usr/local/bin/python
2
3import copy
4
5from socket import error as socket_error
6
7import M2Crypto.httpslib
8from M2Crypto import SSL
9from M2Crypto.m2xmlrpclib import SSL_Transport
10from M2Crypto.SSL import SSLError
11from ZSI import ParseException, FaultException, SoapWriter
12
13from service_error import service_error
14from xmlrpclib import ServerProxy, dumps, loads, Fault, Error, Binary
15
16import fedd_services
17import fedd_internal_services
18from util import fedd_ssl_context
19from fedid import fedid
20import parse_detail
21
22# Turn off the matching of hostname to certificate ID
23SSL.Connection.clientPostConnectionCheck = None
24
25# Used by the remote_service_base class.
26def to_binary(o):
27    """
28    A function that converts an object into an xmlrpclib.Binary using
29    either its internal packing method, or the standard Binary constructor.
30    """
31    pack = getattr(o, 'pack_xmlrpc', None)
32    if callable(pack): return Binary(pack())
33    else: return Binary(o)
34
35# Classes that encapsulate the process of making and dealing with requests to
36# WSDL-generated and XMLRPC remote accesses. 
37
38class remote_service_base:
39    """
40    This invisible base class encapsulates the functions used to massage the
41    dictionaries used to pass parameters into and out of the RPC formats.  It's
42    mostly a container for the static methods to do that work, but defines some
43    maps sued by sub classes on apply_to_tags
44    """
45    # A map used to convert fedid fields to fedid objects (when the field is
46    # already a string)
47    fedid_to_object = ( ('fedid', lambda x: fedid(bits=x)),)
48    # A map used by apply_to_tags to convert fedids from xmlrpclib.Binary
49    # objects to fedid objects in one sweep.
50    decap_fedids = (('fedid', lambda x: fedid(bits=x.data)),)
51    # A map used to encapsulate fedids into xmlrpclib.Binary objects
52    encap_fedids = (('fedid', to_binary),)
53
54    @staticmethod
55    def pack_soap(container, name, contents):
56        """
57        Convert the dictionary in contents into a tree of ZSI classes.
58
59        The holder classes are constructed from factories in container and
60        assigned to either the element or attribute name.  This is used to
61        recursively create the SOAP message.
62        """
63        if getattr(contents, "__iter__", None) != None:
64            attr =getattr(container, "new_%s" % name, None)
65            if attr: obj = attr()
66            else:
67                raise TypeError("%s does not have a new_%s attribute" % \
68                        (container, name))
69            for e, v in contents.iteritems():
70                assign = getattr(obj, "set_element_%s" % e, None) or \
71                        getattr(obj, "set_attribute_%s" % e, None)
72                if isinstance(v, type(dict())):
73                    assign(remote_service_base.pack_soap(obj, e, v))
74                elif getattr(v, "__iter__", None) != None:
75                    assign([ remote_service_base.pack_soap(obj, e, val ) \
76                            for val in v])
77                elif getattr(v, "pack_soap", None) != None:
78                    assign(v.pack_soap())
79                else:
80                    assign(v)
81            return obj
82        else: return contents
83
84    @staticmethod
85    def unpack_soap(element):
86        """
87        Convert a tree of ZSI SOAP classes intro a hash.  The inverse of
88        pack_soap
89
90        Elements or elements that are empty are ignored.
91        """
92        methods = [ m for m in dir(element) \
93                if m.startswith("get_element") or m.startswith("get_attribute")]
94        if len(methods) > 0:
95            rv = { }
96            for m in methods:
97                if m.startswith("get_element_"):
98                    n = m.replace("get_element_","",1)
99                else:
100                    n = m.replace("get_attribute_", "", 1)
101                sub = getattr(element, m)()
102                if sub != None:
103                    if isinstance(sub, basestring):
104                        rv[n] = sub
105                    elif getattr(sub, "__iter__", None) != None:
106                        if len(sub) > 0: rv[n] = \
107                                [remote_service_base.unpack_soap(e) \
108                                    for e in sub]
109                    else:
110                        rv[n] = remote_service_base.unpack_soap(sub)
111            return rv
112        else: 
113            return element
114
115    @staticmethod
116    def apply_to_tags(e, map):
117        """
118        Map is an iterable of ordered pairs (tuples) that map a key to a
119        function.
120        This function walks the given message and replaces any object with a
121        key in the map with the result of applying that function to the object.
122        """
123        if isinstance(e, dict):
124            for k in e.keys():
125                for tag, fcn in map:
126                    if k == tag:
127                        if isinstance(e[k], list):
128                            e[k] = [ fcn(b) for b in e[k]]
129                        else:
130                            e[k] = fcn(e[k])
131                    elif isinstance(e[k], dict):
132                        remote_service_base.apply_to_tags(e[k], map)
133                    elif isinstance(e[k], list):
134                        for ee in e[k]:
135                            remote_service_base.apply_to_tags(ee, map)
136        # Other types end the recursion - they should be leaves
137        return e
138
139    @staticmethod
140    def strip_unicode(obj):
141        """Walk through a message and convert all strings to non-unicode
142        strings"""
143        if isinstance(obj, dict):
144            for k in obj.keys():
145                obj[k] = remote_service_base.strip_unicode(obj[k])
146            return obj
147        elif isinstance(obj, basestring) and not isinstance(obj, str):
148            return str(obj)
149        elif getattr(obj, "__iter__", None):
150            return [ remote_service_base.strip_unicode(x) for x in obj]
151        else:
152            return obj
153
154    @staticmethod
155    def make_unicode(obj):
156        """Walk through a message and convert all strings to unicode"""
157        if isinstance(obj, dict):
158            for k in obj.keys():
159                obj[k] = remote_service_base.make_unicode(obj[k])
160            return obj
161        elif isinstance(obj, basestring) and not isinstance(obj, unicode):
162            return unicode(obj)
163        elif getattr(obj, "__iter__", None):
164            return [ remote_service_base.make_unicode(x) for x in obj]
165        else:
166            return obj
167
168
169
170class soap_handler(remote_service_base):
171    """
172    Encapsulate the handler code to unpack and pack SOAP requests and responses
173    and call the given method.
174
175    The code to decapsulate and encapsulate parameters encoded in SOAP is the
176    same modulo a few parameters.  This is a functor that calls a fedd service
177    trhough a soap interface.  The parameters are the typecode of the request
178    parameters, the method to call (usually a bound instance of a method on a
179    fedd service providing class), the constructor of a response packet and the
180    name of the body element of that packet.  The handler takes a ParsedSoap
181    object (the request) and returns an instance of the class created by
182    constructor containing the response.  Failures of the constructor or badly
183    created constructors will result in None being returned.
184    """
185    def __init__(self, service_name, method, typecode=None,
186            constructor=None, body_name=None):
187        self.method = method
188
189        response_class_name = "%sResponseMessage" % service_name
190        request_class_name = "%sRequestMessage" % service_name
191
192        if body_name: self.body_name = body_name
193        else: self.body_name = "%sResponseBody" % service_name
194
195        if constructor: self.constructor = constructor
196        else:
197            self.constructor = self.get_class(response_class_name)
198            if not self.constructor:
199                raise service_error(service_error.internal,
200                        "Cannot find class for %s" % response_class_name)
201
202        if typecode: self.typecode = typecode
203        else: 
204            req = self.get_class(request_class_name)
205            if req:
206                self.typecode = req.typecode
207            else:
208                raise service_error(service_error.internal,
209                        "Cannot find class for %s" % request_class_name)
210
211            if not self.typecode:
212                raise service_error(service_error.internal,
213                        "Cannot get typecode for %s" % class_name)
214
215    def get_class(self, class_name):
216        return getattr(fedd_services, class_name, None) or \
217                getattr(fedd_internal_services, class_name, None)
218
219    def __call__(self, ps, fid):
220        req = ps.Parse(self.typecode)
221        # Convert the message to a dict with the fedid strings converted to
222        # fedid objects
223        req = self.apply_to_tags(self.unpack_soap(req), self.fedid_to_object)
224
225        msg = self.method(req, fid)
226
227        resp = self.constructor()
228        set_element = getattr(resp, "set_element_%s" % self.body_name, None)
229        if set_element and callable(set_element):
230            try:
231                set_element(self.pack_soap(resp, self.body_name, msg))
232                return resp
233            except (NameError, TypeError):
234                return None
235        else:
236            return None
237
238class xmlrpc_handler(remote_service_base):
239    """
240    Generate the handler code to unpack and pack XMLRPC requests and responses
241    and call the given method.
242
243    The code to marshall and unmarshall XMLRPC parameters to and from a fedd
244    service is largely the same.  This helper creates such a handler.  The
245    parameters are the method name, and the name of the body struct that
246    contains the response.  A handler is created that takes the params response
247    from an xmlrpclib.loads on the incoming rpc and a fedid and responds with
248    a hash representing the struct ro be returned to the other side.  On error
249    None is returned.  Fedid fields are decapsulated from binary and converted
250    to fedid objects on input and encapsulated as Binaries on output.
251    """
252    def __init__(self, service_name, method):
253        self.method = method
254        self.body_name = "%sResponseBody" % service_name
255
256    def __call__(self, params, fid):
257        msg = None
258
259        p = self.apply_to_tags(params[0], self.decap_fedids)
260        try:
261            msg = self.method(p, fid)
262        except service_error, e:
263            raise Fault(e.code, "%s: %s" % (e.code_string(), e.desc))
264        if msg != None:
265            return self.make_unicode(self.apply_to_tags(\
266                    { self.body_name: msg }, self.encap_fedids))
267        else:
268            return None
269
270class service_caller(remote_service_base):
271    def __init__(self, service_name, request_message=None, 
272            request_body_name=None, tracefile=None):
273        self.service_name = service_name
274
275        if getattr(fedd_services.feddBindingSOAP, service_name, None):
276            self.locator = fedd_services.feddServiceLocator
277            self.port_name = 'getfeddPortType'
278        elif getattr(fedd_internal_services.feddInternalBindingSOAP, 
279                service_name, None):
280            self.locator = fedd_internal_services.feddInternalServiceLocator
281            self.port_name = 'getfeddInternalPortType'
282
283        if request_message: self.request_message = request_message
284        else:
285            request_message_name = "%sRequestMessage" % service_name
286            self.request_message = \
287                    getattr(fedd_services, request_message_name, None) or \
288                    getattr(fedd_internal_services, request_message_name, None)
289            if not self.request_message:
290                raise service_error(service_error.internal,
291                        "Cannot find class for %s" % request_message_name)
292
293        if request_body_name: self.request_body_name = request_body_name
294        else: self.request_body_name = "%sRequestBody" % service_name
295
296        self.tracefile = tracefile
297        self.__call__ = self.call_service
298
299    def serialize_soap(self, req):
300        """
301        Return a string containing the message that would be sent to call this
302        service with the given request.
303        """
304        msg = self.request_message()
305        set_element = getattr(msg, "set_element_%s" % self.request_body_name,
306                None)
307        if not set_element:
308            raise service_error(service_error.internal,
309                    "Cannot get element setting method for %s" % \
310                            self.request_body_name)
311        set_element(self.pack_soap(msg, self.request_body_name, req))
312        sw = SoapWriter()
313        sw.serialize(msg)
314        return unicode(sw)
315
316    def call_xmlrpc_service(self, url, req, cert_file=None, cert_pwd=None, 
317            trusted_certs=None, context=None, tracefile=None):
318        """Send an XMLRPC request.  """
319
320
321        # If a context is given, use it.  Otherwise construct one from
322        # components.  The construction shouldn't call out for passwords.
323        if context:
324            ctx = context
325        else:
326            try:
327                ctx = fedd_ssl_context(cert_file, trusted_certs, 
328                        password=cert_pwd)
329            except SSL.SSLError:
330                raise service_error(service_error.server_config,
331                        "Certificates misconfigured")
332
333        # Of all the dumbass things.  The XMLRPC library in use here won't
334        # properly encode unicode strings, so we make a copy of req with
335        # the unicode objects converted.  We also convert the url to a
336        # basic string if it isn't one already.
337        r = self.strip_unicode(copy.deepcopy(req))
338        url = str(url)
339       
340        transport = SSL_Transport(ctx)
341        port = ServerProxy(url, transport=transport)
342        # Make the call, and convert faults back to service_errors
343        try:
344            remote_method = getattr(port, self.service_name, None)
345            resp = remote_method(self.apply_to_tags(\
346                    { self.request_body_name: r}, self.encap_fedids))
347        except socket_error, e:
348            raise service_error(service_error.connect, 
349                    "Cannot connect to %s: %s" % (url, e[1]))
350        except SSLError, e:
351            raise service_error(service_error.connect,
352                    "SSL error contacting %s: %s" % (url, e.message))
353        except Fault, f:
354            raise service_error(f.faultCode, f.faultString)
355        except Error, e:
356            raise service_error(service_error.protocol, 
357                    "Remote XMLRPC Fault: %s" % e)
358
359        return self.apply_to_tags(resp, self.decap_fedids) 
360
361    def call_soap_service(self, url, req, cert_file=None, cert_pwd=None,
362            trusted_certs=None, context=None, tracefile=None):
363        """
364        Send req on to the real destination in dt and return the response
365
366        Req is just the requestType object.  This function re-wraps it.  It
367        also rethrows any faults.
368        """
369
370        tf = tracefile or self.tracefile or None
371
372        # If a context is given, use it.  Otherwise construct one from
373        # components.  The construction shouldn't call out for passwords.
374        if context:
375            ctx = context
376        else:
377            try:
378                ctx = fedd_ssl_context(cert_file, trusted_certs, 
379                        password=cert_pwd)
380            except SSL.SSLError:
381                raise service_error(service_error.server_config,
382                        "Certificates misconfigured")
383        loc = self.locator()
384        get_port = getattr(loc, self.port_name, None)
385        if not get_port:
386            raise service_error(service_error.internal, 
387                    "Cannot get port %s from locator" % self.port_name)
388        port = get_port(url,
389                transport=M2Crypto.httpslib.HTTPSConnection, 
390                transdict={ 'ssl_context' : ctx },
391                tracefile=tf)
392        remote_method = getattr(port, self.service_name, None)
393        if not remote_method:
394            raise service_error(service_error.internal,
395                    "Cannot get service from SOAP port")
396
397        # Reconstruct the full request message
398        msg = self.request_message()
399        set_element = getattr(msg, "set_element_%s" % self.request_body_name,
400                None)
401        if not set_element:
402            raise service_error(service_error.internal,
403                    "Cannot get element setting method for %s" % \
404                            self.request_body_name)
405        set_element(self.pack_soap(msg, self.request_body_name, req))
406        try:
407            resp = remote_method(msg)
408        except socket_error, e:
409            raise service_error(service_error.connect, 
410                    "Cannot connect to %s: %s" % (url, e[1]))
411        except SSLError, e:
412            raise service_error(service_error.connect,
413                    "SSL error contacting %s: %s" % (url, e.message))
414        except ParseException, e:
415            raise service_error(service_error.protocol,
416                    "Bad format message (XMLRPC??): %s" % e)
417        except FaultException, e:
418            ee = self.unpack_soap(e.fault.detail[0]).get('FeddFaultBody', { })
419            if ee:
420                raise service_error(ee['code'], ee['desc'])
421            else:
422                raise service_error(service_error.internal,
423                        "Unexpected fault body")
424        # Unpack and convert fedids to objects
425        r = self.apply_to_tags(self.unpack_soap(resp), self.fedid_to_object)
426        #  Make sure all strings are unicode
427        r = self.make_unicode(r)
428        return r
429
430    def call_service(self, url, req, cert_file=None, cert_pwd=None, 
431        trusted_certs=None, context=None, tracefile=None):
432        p_fault = None  # Any SOAP failure (sent unless XMLRPC works)
433        resp = None
434        try:
435            # Try the SOAP request
436            resp = self.call_soap_service(url, req, 
437                    cert_file, cert_pwd, trusted_certs, context, tracefile)
438            return resp
439        except service_error, e:
440            if e.code == service_error.protocol: p_fault = None
441            else: raise
442        except FaultException, f:
443            p_fault = f.fault.detail[0]
444               
445
446        # If we could not get a valid SOAP response to the request above,
447        # try the same address using XMLRPC and let any faults flow back
448        # out.
449        if p_fault == None:
450            resp = self.call_xmlrpc_service(url, req, cert_file,
451                    cert_pwd, trusted_certs, context, tracefile)
452            return resp
453        else:
454            # Build the fault
455            ee = unpack_soap(p_fault).get('FeddFaultBody', { })
456            if ee:
457                raise service_error(ee['code'], ee['desc'])
458            else:
459                raise service_error(service_error.internal,
460                        "Unexpected fault body")
Note: See TracBrowser for help on using the repository browser.