2018-08-10 07:03:49 +00:00
|
|
|
'''
|
2018-08-27 03:44:32 +00:00
|
|
|
Onionr - P2P Anonymous Storage Network
|
2018-08-10 07:03:49 +00:00
|
|
|
|
|
|
|
This file handles maintenence of a blacklist database, for blocks and peers
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
'''
|
2018-08-15 04:20:08 +00:00
|
|
|
import sqlite3, os, logger
|
2018-08-10 07:03:49 +00:00
|
|
|
class OnionrBlackList:
|
|
|
|
def __init__(self, coreInst):
|
2018-09-26 04:58:11 +00:00
|
|
|
self.blacklistDB = coreInst.dataDir + 'blacklist.db'
|
2018-08-10 07:03:49 +00:00
|
|
|
self._core = coreInst
|
2018-11-10 06:29:32 +00:00
|
|
|
|
2018-08-10 07:03:49 +00:00
|
|
|
if not os.path.exists(self.blacklistDB):
|
|
|
|
self.generateDB()
|
|
|
|
return
|
2018-11-10 06:29:32 +00:00
|
|
|
|
2018-08-10 07:03:49 +00:00
|
|
|
def inBlacklist(self, data):
|
2018-08-10 22:13:58 +00:00
|
|
|
hashed = self._core._utils.bytesToStr(self._core._crypto.sha3Hash(data))
|
|
|
|
retData = False
|
2018-11-17 07:23:10 +00:00
|
|
|
|
2018-08-10 22:13:58 +00:00
|
|
|
if not hashed.isalnum():
|
|
|
|
raise Exception("Hashed data is not alpha numeric")
|
2018-11-04 23:01:58 +00:00
|
|
|
if len(hashed) > 64:
|
|
|
|
raise Exception("Hashed data is too large")
|
2018-11-17 07:23:10 +00:00
|
|
|
|
2018-11-10 06:29:32 +00:00
|
|
|
for i in self._dbExecute("SELECT * FROM blacklist WHERE hash = ?", (hashed,)):
|
2018-08-10 22:13:58 +00:00
|
|
|
retData = True # this only executes if an entry is present by that hash
|
|
|
|
break
|
2019-01-18 01:14:26 +00:00
|
|
|
|
2018-08-10 22:13:58 +00:00
|
|
|
return retData
|
2018-08-10 07:03:49 +00:00
|
|
|
|
2018-11-10 06:29:32 +00:00
|
|
|
def _dbExecute(self, toExec, params = ()):
|
2018-08-10 07:03:49 +00:00
|
|
|
conn = sqlite3.connect(self.blacklistDB)
|
|
|
|
c = conn.cursor()
|
2018-11-10 06:29:32 +00:00
|
|
|
retData = c.execute(toExec, params)
|
2018-08-10 07:03:49 +00:00
|
|
|
conn.commit()
|
2018-08-10 22:13:58 +00:00
|
|
|
return retData
|
2018-11-10 06:29:32 +00:00
|
|
|
|
2018-08-10 07:03:49 +00:00
|
|
|
def deleteBeforeDate(self, date):
|
|
|
|
# TODO, delete blacklist entries before date
|
|
|
|
return
|
2018-11-10 06:29:32 +00:00
|
|
|
|
2018-08-15 04:20:08 +00:00
|
|
|
def deleteExpired(self, dataType=0):
|
|
|
|
'''Delete expired entries'''
|
|
|
|
deleteList = []
|
|
|
|
curTime = self._core._utils.getEpoch()
|
|
|
|
|
|
|
|
try:
|
|
|
|
int(dataType)
|
|
|
|
except AttributeError:
|
|
|
|
raise TypeError("dataType must be int")
|
|
|
|
|
2018-11-10 06:29:32 +00:00
|
|
|
for i in self._dbExecute('SELECT * FROM blacklist WHERE dataType = ?', (dataType,)):
|
2018-08-15 04:20:08 +00:00
|
|
|
if i[1] == dataType:
|
|
|
|
if (curTime - i[2]) >= i[3]:
|
|
|
|
deleteList.append(i[0])
|
2018-11-10 06:29:32 +00:00
|
|
|
|
2018-08-15 04:20:08 +00:00
|
|
|
for thing in deleteList:
|
2018-11-10 06:29:32 +00:00
|
|
|
self._dbExecute("DELETE FROM blacklist WHERE hash = ?", (thing,))
|
2018-08-10 07:03:49 +00:00
|
|
|
|
|
|
|
def generateDB(self):
|
2018-08-10 22:13:58 +00:00
|
|
|
self._dbExecute('''CREATE TABLE blacklist(
|
2018-08-10 07:03:49 +00:00
|
|
|
hash text primary key not null,
|
2018-08-15 04:20:08 +00:00
|
|
|
dataType int,
|
2018-08-14 05:02:34 +00:00
|
|
|
blacklistDate int,
|
|
|
|
expire int
|
2018-08-10 07:03:49 +00:00
|
|
|
);
|
|
|
|
''')
|
|
|
|
return
|
2018-11-10 06:29:32 +00:00
|
|
|
|
2018-08-10 07:03:49 +00:00
|
|
|
def clearDB(self):
|
2019-01-18 01:14:26 +00:00
|
|
|
self._dbExecute('''DELETE FROM blacklist;''')
|
2018-08-10 07:03:49 +00:00
|
|
|
|
2018-08-10 22:13:58 +00:00
|
|
|
def getList(self):
|
2018-11-10 06:29:32 +00:00
|
|
|
data = self._dbExecute('SELECT * FROM blacklist')
|
2018-08-10 22:13:58 +00:00
|
|
|
myList = []
|
|
|
|
for i in data:
|
|
|
|
myList.append(i[0])
|
|
|
|
return myList
|
|
|
|
|
2018-08-14 05:02:34 +00:00
|
|
|
def addToDB(self, data, dataType=0, expire=0):
|
2018-08-15 04:20:08 +00:00
|
|
|
'''Add to the blacklist. Intended to be block hash, block data, peers, or transport addresses
|
|
|
|
0=block
|
|
|
|
1=peer
|
|
|
|
2=pubkey
|
|
|
|
'''
|
2018-08-10 22:13:58 +00:00
|
|
|
# we hash the data so we can remove data entirely from our node's disk
|
|
|
|
hashed = self._core._utils.bytesToStr(self._core._crypto.sha3Hash(data))
|
2018-11-04 23:01:58 +00:00
|
|
|
if len(hashed) > 64:
|
|
|
|
raise Exception("Hashed data is too large")
|
2018-08-17 03:30:36 +00:00
|
|
|
|
2018-08-10 07:03:49 +00:00
|
|
|
if not hashed.isalnum():
|
|
|
|
raise Exception("Hashed data is not alpha numeric")
|
2018-08-14 05:02:34 +00:00
|
|
|
try:
|
|
|
|
int(dataType)
|
|
|
|
except ValueError:
|
|
|
|
raise Exception("dataType is not int")
|
|
|
|
try:
|
|
|
|
int(expire)
|
|
|
|
except ValueError:
|
|
|
|
raise Exception("expire is not int")
|
2018-11-04 23:01:58 +00:00
|
|
|
if self.inBlacklist(hashed):
|
|
|
|
return
|
2018-08-10 07:03:49 +00:00
|
|
|
insert = (hashed,)
|
2018-08-15 04:20:08 +00:00
|
|
|
blacklistDate = self._core._utils.getEpoch()
|
2019-02-12 05:30:56 +00:00
|
|
|
try:
|
|
|
|
self._dbExecute("INSERT INTO blacklist (hash, dataType, blacklistDate, expire) VALUES(?, ?, ?, ?);", (str(hashed), dataType, blacklistDate, expire))
|
|
|
|
except sqlite3.IntegrityError:
|
|
|
|
pass
|