-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.py
421 lines (305 loc) · 12.6 KB
/
client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import select
import socket
import pickle
import threading
import time
from transaction import Transaction
from blockchain_network import Blockchain
from generate_wallet import Wallet
# global blockchain object
global_chain_object = Blockchain()
thread = None
TIMEOUT = 30 # seconds
CHAINREQUEST = -3
PEERREQUEST = -2
NEWPEER = -1
BLOCK = 1
TRSANSACTION = 2
INTITIAL_BALANCE = 50
MYPORT = -1
COMMISSION_RATE = 5/100 # percentage
COMMISSION = Blockchain.COMMISSION
TRANSACTION_PER_BLOCK = 2
pub_key = None
def sendData(port, message, type):
global global_chain_object
try:
clientSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
clientSocket.connect(("localhost", port))
dic = {'type': type, 'message': message}
clientSocket.send(pickle.dumps(dic))
clientSocket.close()
except Exception as e:
global_chain_object.removePeer(port)
print(e)
def recvall(sock):
BUFF_SIZE = 4096 # 4 KiB
data = b''
while True:
part = sock.recv(BUFF_SIZE)
data += part
if len(part) < BUFF_SIZE:
# either 0 or end of data
break
return data
def extractMessage(data):
dic = pickle.loads(data)
return dic['type'], dic['message']
def broadcast(message, type):
global global_chain_object
for port in global_chain_object.peers:
if port != MYPORT:
sendData(port, message, type)
def askPeers(firstPeer):
global global_chain_object
clientSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
clientSocket.connect(("localhost", firstPeer))
dic = {'type': PEERREQUEST, "message": MYPORT}
clientSocket.send(pickle.dumps(dic))
data = recvall(clientSocket)
clientSocket.close()
_, message = extractMessage(data)
global_chain_object.addPeers(message)
except Exception as e:
clientSocket.close()
print(e)
def askChain(peer):
global global_chain_object
clientSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
clientSocket.connect(("localhost", peer))
dic = {'type': CHAINREQUEST, "message": MYPORT}
clientSocket.send(pickle.dumps(dic))
data = recvall(clientSocket)
clientSocket.close()
_, message = extractMessage(data)
global_chain_object.replaceChain(message)
except Exception as e:
clientSocket.close()
print(e)
def generateMinerWallet():
global pub_key
wallet = Wallet(str(MYPORT))
wallet.get_keys()
pub_key = wallet.public_key
def publish(answer):
print("\nSolved Problem\n")
T = threading.Thread(target=broadcast, args=(
{'block': answer, 'port': MYPORT}, BLOCK,))
T.setDaemon(True)
T.start()
def counterDoubleSpend(dic, transaction):
global global_chain_object
if transaction['sender_public_key'] in dic:
dic[transaction['sender_public_key']] = dic[transaction['sender_public_key']
] - (1+COMMISSION_RATE)*transaction['amount']
else:
dic[transaction['sender_public_key']] = - (1+COMMISSION_RATE)*transaction['amount'] + \
global_chain_object.get_balance(
transaction['sender_public_key']) + INTITIAL_BALANCE
return dic[transaction['sender_public_key']] >= 0
def compare(item):
return item['timestamp']
def worker():
global global_chain_object
global thread
global pub_key
global_chain_object.transactions.sort(key=compare)
while len(global_chain_object.transactions) >= 2 and (not global_chain_object.isStopped):
toDrop = None
with threading.Lock():
timestamp = time.time()
transactions = []
dic = {}
if(global_chain_object.transactions[0]['timestamp'] > global_chain_object.transactions[1]['timestamp']):
temp = global_chain_object.transactions[0]
global_chain_object.transactions[0] = global_chain_object.transactions[1]
global_chain_object.transactions[1] = temp
for i in range(TRANSACTION_PER_BLOCK):
problem = global_chain_object.transactions[i]
new_transaction = Transaction(
problem['amount'] * COMMISSION_RATE, problem['sender_public_key'], pub_key, timestamp)
new_transaction.signature = COMMISSION
if not new_transaction.verifyIt(global_chain_object):
print("\nError in Commission\n")
Transaction.printIt(new_transaction)
toDrop = problem
break
if not counterDoubleSpend(dic, problem):
print("\nInsuficient balance\n")
Transaction.printIt(problem)
toDrop = problem
break
if(problem['timestamp'] < global_chain_object.maxTransactionTimeStamp):
print("timestamp is less then " +
str(global_chain_object.maxTransactionTimeStamp))
Transaction.printIt(problem)
toDrop = problem
break
transactions.append(problem)
transactions.append(new_transaction.get_transaction_bill())
if toDrop != None:
global_chain_object.transactions.remove(toDrop)
else:
for k in transactions:
if k in global_chain_object.transactions:
global_chain_object.transactions.remove(k)
if toDrop != None:
continue
new_block = global_chain_object.mine(transactions, MYPORT, timestamp)
# block verifyication and insertion shuld not be done parallely
with threading.Lock():
if global_chain_object.isStopped:
return
else:
# Appending new block to global blockchain
global_chain_object.add_block(new_block)
# publishing new block
publish(new_block)
def startThread():
global thread
global global_chain_object
global_chain_object.isStopped = True
if thread != None:
thread.join()
thread = None
# Atleast having two transactions in pool
if len(global_chain_object.transactions) >= 2:
global_chain_object.isStopped = False
thread = threading.Thread(target=worker)
thread.setDaemon(True)
thread.start()
def stopThread():
global global_chain_object
global thread
global_chain_object.isStopped = True
def handle_new_transaction(new_transaction):
global global_chain_object
global thread
# self verifying
if(new_transaction.verifyIt(global_chain_object)):
with threading.Lock():
global_chain_object.transactions.append(
new_transaction.get_transaction_bill())
startThread()
return True
return False
def handle_new_block(new_block, port):
global global_chain_object
# block checking or insertion shuld otbe done parallely
with threading.Lock():
prev_block = global_chain_object.last_block_chain()
prev_hash = global_chain_object.calculate_hash_of_block(
prev_block)
if(prev_block.index + 1 == new_block.index and prev_hash == new_block.previous_hash):
stopThread()
global_chain_object.add_block(new_block)
print('\n Valid Block is Mined By another miner \n')
new_block.printIt()
elif prev_block.index + 2 == new_block.index:
askChain(port)
startThread() # this start thread function should not be kept under the lock
MYPORT = (int)(input("enter the alloted port number\n"))
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_address = ('localhost', MYPORT)
print("binding up on port")
server.bind(server_address)
server.listen(10)
firstPeer = (int)(
input("enter the port number of first peer or -1 if iam the first\n"))
if firstPeer != -1:
global_chain_object.addPeers(firstPeer)
askPeers(firstPeer)
askChain(firstPeer)
generateMinerWallet()
print('\nPrint 1 for transaction , 2 for last block, 3 for available transactions, 4 to get balance')
RUN = True
while RUN:
try:
r, _, _ = select.select([server, 0], [], [], TIMEOUT)
for fd in r:
if fd == -1:
print("Something Goes Wrong")
RUN = False
break
if fd == 0:
try:
x = int(input())
# Transaction
if(x == 1):
timestamp = time.time()
sender_name = input(
'Enter your name (Make sure your key pairs exists)\n')
# Instantiating Wallet and Fetching Credentials
wallet = Wallet(sender_name)
wallet.import_key()
sender_public_key = wallet.public_key
sender_private_key = wallet.private_key
print('\nKeys successfully imported\n')
amount = int(input('\nEnter amount\n'))
recipient_name = input(
'\nEnter recipient name (Make sure key pair exists)\n')
recipient_public_key = wallet.generate_recipient_key(
recipient_name)
print('\n Recipient Address Successfully fetched \n')
new_transaction = Transaction(
amount, sender_public_key, recipient_public_key, timestamp)
new_transaction.sign_transaction(sender_private_key)
if handle_new_transaction(new_transaction):
# broadcasting to all nodes
broadcast(new_transaction, TRSANSACTION)
print('\nTransaction Successfully Added and Broadcasted\n')
else:
print('\nWrong Transaction\n')
# Get Last Block of Chain
if(x == 2):
print('\nLast Block of Chain is \n')
global_chain_object.last_block_chain().printIt()
# Available Transactions
if(x == 3):
if(len(global_chain_object.transactions) == 0):
print('\nNo due transactions are left\n')
else:
for t in global_chain_object.transactions:
Transaction.printIt(t)
if x == 4:
wallet = Wallet()
name = input('\nEnter your name\n')
public_key = wallet.generate_recipient_key(name)
print(
"\nBalance "+str(global_chain_object.get_balance(public_key) + INTITIAL_BALANCE)+'\n')
except Exception as e:
print(e)
else:
try:
connection, client_address = server.accept()
data = recvall(connection)
type, message = extractMessage(data)
if type == PEERREQUEST:
dic = {"type": "none",
"message": global_chain_object.peers}
connection.send(pickle.dumps(dic))
if global_chain_object.addPeers(message):
broadcast(message, NEWPEER)
elif type == CHAINREQUEST:
dic = {"type": "none",
"message": global_chain_object.chain}
connection.send(pickle.dumps(dic))
elif type == NEWPEER:
global_chain_object.addPeers(message)
elif type == TRSANSACTION:
if handle_new_transaction(message):
print(
'\nRecieved new transaction... added to the pool\n')
elif type == BLOCK:
connection.close() # its important
handle_new_block(message['block'], message['port'])
connection.close()
except Exception as e:
connection.close()
print(e)
except Exception as e:
server.close()
print(e)
RUN = False