/Toolserver/PickleRPCClient.py

https://bitbucket.org/rfc1437/toolserver · Python · 93 lines · 71 code · 15 blank · 7 comment · 5 complexity · bb882e0dd5970dc09929352e6b2b6409 MD5 · raw file

  1. """
  2. Toolserver Framework for Python - client for PickleRPC
  3. Copyright (c) 2002, Georg Bauer <gb@rfc1437.de>, except where the file
  4. explicitly names other copyright holders and licenses.
  5. Permission is hereby granted, free of charge, to any person obtaining a copy of
  6. this software and associated documentation files (the "Software"), to deal in
  7. the Software without restriction, including without limitation the rights to
  8. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  9. the Software, and to permit persons to whom the Software is furnished to do so,
  10. subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in all
  12. copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  15. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  16. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  17. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. """
  20. try:
  21. from Crypto.Cipher import Blowfish
  22. hasCrypto = 1
  23. except ImportError: hasCrypto = 0
  24. from base64 import decodestring, encodestring
  25. from zlib import compress, decompress
  26. try: from cPickle import dumps, loads
  27. except: from pickle import dumps, loads
  28. from Toolserver.ClientRegistry import registerClient
  29. from Toolserver.ClientMachinery import AbstractClient, documentEncoding
  30. class Stuff:
  31. def __init__(self, srv, gen=1):
  32. if gen:
  33. srv._randpool.stir()
  34. self.secret = srv._randpool.get_bytes(16)
  35. srv._randpool.stir()
  36. class PickleRPCClient(AbstractClient):
  37. _prefix = 'PYRPC'
  38. _name = 'PickleRPC'
  39. _mimetype = 'text/plain'
  40. _already_compressed = 1
  41. def __init__(self, *args, **kw):
  42. AbstractClient.__init__(self, *args, **kw)
  43. self.privkey = getattr(self._srv, 'privkey', 1)
  44. self.pubkey = getattr(self._srv, 'pubkey', 1)
  45. def build_request(self, method, args, kw):
  46. obj = Stuff(self._srv)
  47. data = dumps((method, args, kw))
  48. data = compress(data)
  49. b = Blowfish.new(obj.secret, Blowfish.MODE_CBC)
  50. data = b.encrypt(data+' '*(8-len(data)%8))
  51. data = encodestring(data)
  52. return (data, obj)
  53. def output_header_hook(self, request, data, obj):
  54. key = self.pubkey.encrypt(obj.secret, '')
  55. key = encodestring(key[0]).strip().replace('\n','')
  56. request.putheader("X-PickleRPC-Secret", key)
  57. def parse_response(self, data, obj):
  58. data = decodestring(data)
  59. b = Blowfish.new(obj.secret, Blowfish.MODE_CBC)
  60. data = b.decrypt(data)
  61. data = decompress(data)
  62. data = loads(data)
  63. return data
  64. def input_header_hook(self, headers, data):
  65. res = Stuff(self._srv, 0)
  66. key = headers.getheader('X-PickleRPC-Secret')
  67. key = (decodestring(key),)
  68. key = self.privkey.decrypt(key)
  69. res.secret = key
  70. return res
  71. if hasCrypto:
  72. registerClient(PickleRPCClient, 'url', 'privkey', 'pubkey', 'localname')