gettor_blacklist.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/usr/bin/python2.5
  2. """
  3. This library implements all of the black listing features needed for gettor.
  4. """
  5. import hashlib
  6. import os
  7. stateDir = "/tmp/gettor/"
  8. blStateDir = stateDir + "bl/"
  9. def blackList(address, createEntry=False):
  10. """
  11. Check to see if an address is on our blacklist. If it is - we'll return true.
  12. If requested, we'll attempt to create a blacklist entry and return true if
  13. everything works out.
  14. """
  15. # XXX TODO: Eventually we may want to sort entries with netcom
  16. # style /tmp/gettor/2-digits-of-hash/2-more-digits/rest-of-hash files
  17. privateAddress = makeAddressPrivate(address)
  18. blackListed = lookupBlackListEntry(privateAddress)
  19. if blackListed:
  20. return True
  21. elif createEntry:
  22. return createBlackListEntry(privateAddress)
  23. return False
  24. def lookupBlackListEntry(privateAddress, stateDir="/tmp/gettor/bl/"):
  25. """ Check to see if we have a blacklist entry for the given address. """
  26. entry = stateDir + str(privateAddress)
  27. try:
  28. entry = os.stat(entry)
  29. except OSError:
  30. return False
  31. return True
  32. def createBlackListEntry(privateAddress, stateDir="/tmp/gettor/bl/"):
  33. """ Create a zero byte file that represents the address in our blacklist. """
  34. entry = stateDir + str(privateAddress)
  35. stat = None
  36. try:
  37. stat = os.stat(entry)
  38. except OSError:
  39. try:
  40. fd = open(entry, 'w')
  41. fd.close()
  42. return True
  43. except:
  44. print "Entry not found. We were unable to create an entry."
  45. return False
  46. print "It appears that we already had an entry."
  47. return False
  48. def removeBlackListEntry(privateAddress, stateDir="/tmp/gettor/bl/"):
  49. """ Remove the zero byte file that represents an entry in our blacklist."""
  50. entry = stateDir + str(privateAddress)
  51. stat = None
  52. try:
  53. entry = os.unlink(entry)
  54. except OSError:
  55. return False
  56. return True
  57. def makeAddressPrivate(address):
  58. """ Creates a unique identifier for the user. """
  59. hash = hashlib.sha1(address)
  60. privateAddress = hash.hexdigest()
  61. return privateAddress
  62. def prepBLStateDir(stateDir = "/tmp/gettor/bl/"):
  63. print "Preparing the state directory for gettor."
  64. stat = None
  65. try:
  66. stat = os.stat(stateDir)
  67. print "We found a state directory"
  68. return True
  69. except OSError:
  70. try:
  71. os.mkdir(stateDir)
  72. print "No state directory was found, we created one"
  73. return True
  74. except:
  75. print "Unable to make a state directory"
  76. return False
  77. def blackListtests(address):
  78. """ This is a basic evaluation of our blacklist functionality """
  79. prepBLStateDir()
  80. privateAddress = makeAddressPrivate(address)
  81. print "We have a private address of: " + privateAddress
  82. print "Testing creation of blacklist entry: "
  83. blackListEntry = createBlackListEntry(privateAddress)
  84. print blackListEntry
  85. print "We're testing a lookup of a known positive blacklist entry: "
  86. blackListEntry = lookupBlackListEntry(privateAddress)
  87. print blackListEntry
  88. print "We're testing removal of a known blacklist entry: "
  89. blackListEntry = removeBlackListEntry(privateAddress)
  90. print blackListEntry
  91. print "We're testing a lookup of a known false blacklist entry: "
  92. blackListEntry = lookupBlackListEntry(privateAddress)
  93. print blackListEntry
  94. print "Now we'll test the higher level blacklist functionality..."
  95. print "This should not find an entry in the blacklist: "
  96. print blackList(address)
  97. print "This should add an entry to the blacklist: "
  98. print blackList(address, True)
  99. print "This should find the previous addition to the blacklist: "
  100. print blackList(address)
  101. print "Please ensure the tests match what you would expect for your environment."
  102. if __name__ == "__main__" :
  103. blackListtests("requestingUser@example.com")