enable memory cache
[electrum-server.git] / server.py
1 #!/usr/bin/env python
2 # Copyright(C) 2011 thomasv@gitorious
3
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as
6 # published by the Free Software Foundation, either version 3 of the
7 # License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public
15 # License along with this program.  If not, see
16 # <http://www.gnu.org/licenses/agpl.html>.
17
18 """
19 Todo:
20    * server should check and return bitcoind status..
21    * improve txpoint sorting
22    * command to check cache
23 """
24
25
26 import time, socket, operator, thread, ast, sys,re
27 import psycopg2, binascii
28 import bitcoinrpc
29
30 from Abe.abe import hash_to_address, decode_check_address
31 from Abe.DataStore import DataStore as Datastore_class
32 from Abe import DataStore, readconf, BCDataStream,  deserialize, util, base58
33
34 import ConfigParser
35
36 config = ConfigParser.ConfigParser()
37 # set some defaults, which will be overwritten by the config file
38 config.add_section('server')
39 config.set('server','banner', 'Welcome to Electrum!')
40 config.set('server', 'host', 'ecdsa.org')
41 config.set('server', 'port', 50000)
42 config.set('server', 'password', '')
43 config.set('server', 'irc', 'yes')
44 config.set('server', 'cache', 'yes') 
45 config.set('server', 'ircname', 'Electrum server')
46 config.add_section('database')
47 config.set('database', 'type', 'psycopg2')
48 config.set('database', 'database', 'abe')
49
50 try:
51     f = open('/etc/electrum.conf','r')
52     config.readfp(f)
53     f.close()
54 except:
55     print "Could not read electrum.conf. I will use the default values."
56
57 stopping = False
58 block_number = -1
59 sessions = {}
60 sessions_last_time = {}
61 dblock = thread.allocate_lock()
62
63 peer_list = {}
64
65
66
67 class MyStore(Datastore_class):
68
69     def import_tx(self, tx, is_coinbase):
70         tx_id = super(MyStore, self).import_tx(tx, is_coinbase)
71         if config.get('server', 'cache') == 'yes': self.update_tx_cache(tx_id)
72
73     def update_tx_cache(self, txid):
74         inrows = self.get_tx_inputs(txid, False)
75         for row in inrows:
76             _hash = store.binout(row[6])
77             address = hash_to_address(chr(0), _hash)
78             if self.tx_cache.has_key(address):
79                 #print "cache: popping", address, self.ismempool
80                 self.tx_cache.pop(address)
81         outrows = self.get_tx_outputs(txid, False)
82         for row in outrows:
83             _hash = store.binout(row[6])
84             address = hash_to_address(chr(0), _hash)
85             if self.tx_cache.has_key(address):
86                 #print "cache: popping", address, self.ismempool
87                 self.tx_cache.pop(address)
88
89     def safe_sql(self,sql, params=(), lock=True):
90         try:
91             if lock: dblock.acquire()
92             ret = self.selectall(sql,params)
93             if lock: dblock.release()
94             return ret
95         except:
96             print "sql error", sql
97             return []
98
99     def get_tx_outputs(self, tx_id, lock=True):
100         return self.safe_sql("""SELECT
101                 txout.txout_pos,
102                 txout.txout_scriptPubKey,
103                 txout.txout_value,
104                 nexttx.tx_hash,
105                 nexttx.tx_id,
106                 txin.txin_pos,
107                 pubkey.pubkey_hash
108               FROM txout
109               LEFT JOIN txin ON (txin.txout_id = txout.txout_id)
110               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
111               LEFT JOIN tx nexttx ON (txin.tx_id = nexttx.tx_id)
112              WHERE txout.tx_id = %d 
113              ORDER BY txout.txout_pos
114         """%(tx_id), (), lock)
115
116     def get_tx_inputs(self, tx_id, lock=True):
117         return self.safe_sql(""" SELECT
118                 txin.txin_pos,
119                 txin.txin_scriptSig,
120                 txout.txout_value,
121                 COALESCE(prevtx.tx_hash, u.txout_tx_hash),
122                 prevtx.tx_id,
123                 COALESCE(txout.txout_pos, u.txout_pos),
124                 pubkey.pubkey_hash
125               FROM txin
126               LEFT JOIN txout ON (txout.txout_id = txin.txout_id)
127               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
128               LEFT JOIN tx prevtx ON (txout.tx_id = prevtx.tx_id)
129               LEFT JOIN unlinked_txin u ON (u.txin_id = txin.txin_id)
130              WHERE txin.tx_id = %d
131              ORDER BY txin.txin_pos
132              """%(tx_id,), (), lock)
133
134     def get_address_out_rows(self, dbhash):
135         return self.safe_sql(""" SELECT
136                 b.block_nTime,
137                 cc.chain_id,
138                 b.block_height,
139                 1,
140                 b.block_hash,
141                 tx.tx_hash,
142                 tx.tx_id,
143                 txin.txin_pos,
144                 -prevout.txout_value
145               FROM chain_candidate cc
146               JOIN block b ON (b.block_id = cc.block_id)
147               JOIN block_tx ON (block_tx.block_id = b.block_id)
148               JOIN tx ON (tx.tx_id = block_tx.tx_id)
149               JOIN txin ON (txin.tx_id = tx.tx_id)
150               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
151               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
152              WHERE pubkey.pubkey_hash = ?
153                AND cc.in_longest = 1""", (dbhash,))
154
155     def get_address_out_rows_memorypool(self, dbhash):
156         return self.safe_sql(""" SELECT
157                 1,
158                 tx.tx_hash,
159                 tx.tx_id,
160                 txin.txin_pos,
161                 -prevout.txout_value
162               FROM tx 
163               JOIN txin ON (txin.tx_id = tx.tx_id)
164               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
165               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
166              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
167
168     def get_address_in_rows(self, dbhash):
169         return self.safe_sql(""" SELECT
170                 b.block_nTime,
171                 cc.chain_id,
172                 b.block_height,
173                 0,
174                 b.block_hash,
175                 tx.tx_hash,
176                 tx.tx_id,
177                 txout.txout_pos,
178                 txout.txout_value
179               FROM chain_candidate cc
180               JOIN block b ON (b.block_id = cc.block_id)
181               JOIN block_tx ON (block_tx.block_id = b.block_id)
182               JOIN tx ON (tx.tx_id = block_tx.tx_id)
183               JOIN txout ON (txout.tx_id = tx.tx_id)
184               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
185              WHERE pubkey.pubkey_hash = ?
186                AND cc.in_longest = 1""", (dbhash,))
187
188     def get_address_in_rows_memorypool(self, dbhash):
189         return self.safe_sql( """ SELECT
190                 0,
191                 tx.tx_hash,
192                 tx.tx_id,
193                 txout.txout_pos,
194                 txout.txout_value
195               FROM tx
196               JOIN txout ON (txout.tx_id = tx.tx_id)
197               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
198              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
199
200     def get_txpoints(self, addr):
201         
202         if config.get('server','cache') == 'yes':
203             cached_version = self.tx_cache.get( addr ) 
204             if cached_version is not None: 
205                 return cached_version
206
207         version, binaddr = decode_check_address(addr)
208         if binaddr is None:
209             return "err"
210         dbhash = self.binin(binaddr)
211         rows = []
212         rows += self.get_address_out_rows( dbhash )
213         rows += self.get_address_in_rows( dbhash )
214
215         txpoints = []
216         known_tx = []
217
218         for row in rows:
219             try:
220                 nTime, chain_id, height, is_in, blk_hash, tx_hash, tx_id, pos, value = row
221             except:
222                 print "cannot unpack row", row
223                 break
224             tx_hash = self.hashout_hex(tx_hash)
225             txpoint = {
226                     "nTime":    int(nTime),
227                     #"chain_id": int(chain_id),
228                     "height":   int(height),
229                     "is_in":    int(is_in),
230                     "blk_hash": self.hashout_hex(blk_hash),
231                     "tx_hash":  tx_hash,
232                     "tx_id":    int(tx_id),
233                     "pos":      int(pos),
234                     "value":    int(value),
235                     }
236
237             txpoints.append(txpoint)
238             known_tx.append(self.hashout_hex(tx_hash))
239
240
241         # todo: sort them really...
242         txpoints = sorted(txpoints, key=operator.itemgetter("nTime"))
243
244         # read memory pool
245         rows = []
246         rows += self.get_address_in_rows_memorypool( dbhash )
247         rows += self.get_address_out_rows_memorypool( dbhash )
248         for row in rows:
249             is_in, tx_hash, tx_id, pos, value = row
250             tx_hash = self.hashout_hex(tx_hash)
251             if tx_hash in known_tx:
252                 continue
253             #print "mempool", tx_hash
254             txpoint = {
255                     "nTime":    0,
256                     #"chain_id": 1,
257                     "height":   0,
258                     "is_in":    int(is_in),
259                     "blk_hash": 'mempool',
260                     "tx_hash":  tx_hash,
261                     "tx_id":    int(tx_id),
262                     "pos":      int(pos),
263                     "value":    int(value),
264                     }
265             txpoints.append(txpoint)
266
267
268         for txpoint in txpoints:
269             tx_id = txpoint['tx_id']
270             
271             txinputs = []
272             inrows = self.get_tx_inputs(tx_id)
273             for row in inrows:
274                 _hash = self.binout(row[6])
275                 address = hash_to_address(chr(0), _hash)
276                 txinputs.append(address)
277             txpoint['inputs'] = txinputs
278             txoutputs = []
279             outrows = self.get_tx_outputs(tx_id)
280             for row in outrows:
281                 _hash = self.binout(row[6])
282                 address = hash_to_address(chr(0), _hash)
283                 txoutputs.append(address)
284             txpoint['outputs'] = txoutputs
285
286             # for all unspent inputs, I want their scriptpubkey. (actually I could deduce it from the address)
287             if not txpoint['is_in']:
288                 # detect if already redeemed...
289                 for row in outrows:
290                     if row[6] == dbhash: break
291                 else:
292                     raise
293                 #row = self.get_tx_output(tx_id,dbhash)
294                 # pos, script, value, o_hash, o_id, o_pos, binaddr = row
295                 # if not redeemed, we add the script
296                 if row:
297                     if not row[4]: txpoint['raw_scriptPubKey'] = row[1]
298
299         # cache result
300         if config.get('server','cache') == 'yes':
301             self.tx_cache[addr] = txpoints
302         
303         return txpoints
304
305
306     def get_status(self, addr):
307         # last block for an address.
308         tx_points = self.get_txpoints(addr)
309         if not tx_points:
310             return None
311         else:
312             return tx_points[-1]['blk_hash']
313
314
315 def send_tx(tx):
316     import bitcoinrpc
317     conn = bitcoinrpc.connect_to_local()
318     try:
319         v = conn.importtransaction(tx)
320     except:
321         v = "error: transaction rejected by memorypool"
322     return v
323
324
325 def listen_thread(store):
326     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
327     s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
328     s.bind((config.get('server','host'), config.getint('server','port')))
329     s.listen(1)
330     while not stopping:
331         conn, addr = s.accept()
332         thread.start_new_thread(client_thread, (addr, conn,))
333
334 def random_string(N):
335     import random, string
336     return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N))
337
338 def client_thread(ipaddr,conn):
339     #print "client thread", ipaddr
340     try:
341         ipaddr = ipaddr[0]
342         msg = ''
343         while 1:
344             d = conn.recv(1024)
345             msg += d
346             if d[-1]=='#':
347                 break
348
349         #print msg
350
351         try:
352             cmd, data = ast.literal_eval(msg[:-1])
353         except:
354             print "syntax error", repr(msg)
355             conn.close()
356             return
357
358         if cmd=='b':
359             out = "%d"%block_number
360         elif cmd=='session':
361             session_id = random_string(10)
362             try:
363                 addresses = ast.literal_eval(data)
364             except:
365                 print "error"
366                 conn.close()
367                 return
368
369             print time.asctime(), "session", ipaddr, session_id, addresses[0], len(addresses)
370
371             sessions[session_id] = {}
372             for a in addresses:
373                 sessions[session_id][a] = ''
374             out = repr( (session_id, config.get('server','banner').replace('\\n','\n') ) )
375             sessions_last_time[session_id] = time.time()
376
377         elif cmd=='poll': 
378             session_id = data
379             addresses = sessions.get(session_id)
380             if not addresses:
381                 print "session not found", ipaddr
382                 out = repr( (-1, {}))
383             else:
384                 sessions_last_time[session_id] = time.time()
385                 ret = {}
386                 for addr in addresses:
387                     status = store.get_status( addr )
388                     last_status = sessions[session_id].get( addr )
389                     if last_status != status:
390                         sessions[session_id][addr] = status
391                         ret[addr] = status
392                 out = repr( (block_number, ret ) )
393
394         elif cmd == 'h': 
395             # history
396             address = data
397             out = repr( store.get_txpoints( address ) )
398
399         elif cmd == 'load': 
400             if config.get('server','password') == data:
401                 out = repr( len(sessions) )
402             else:
403                 out = 'wrong password'
404
405         elif cmd =='tx':        
406             out = send_tx(data)
407
408         elif cmd == 'stop':
409             global stopping
410             if config.get('server','password') == data:
411                 stopping = True
412                 out = 'ok'
413             else:
414                 out = 'wrong password'
415
416         elif cmd == 'peers':
417             out = repr(peer_list.values())
418
419         else:
420             out = None
421
422         if out:
423             #print ipaddr, cmd, len(out)
424             try:
425                 conn.send(out)
426             except:
427                 print "error, could not send"
428
429     finally:
430         conn.close()
431     
432
433 ds = BCDataStream.BCDataStream()
434
435
436
437
438 def memorypool_update(store):
439     conn = bitcoinrpc.connect_to_local()
440     try:
441         v = conn.getmemorypool()
442     except:
443         print "cannot contact bitcoin daemon"
444         return
445     v = v['transactions']
446     for hextx in v:
447         ds.clear()
448         ds.write(hextx.decode('hex'))
449         tx = deserialize.parse_Transaction(ds)
450         #print "new tx",tx
451
452         tx['hash'] = util.double_sha256(tx['tx'])
453             
454         if store.tx_find_id_and_value(tx):
455             pass
456         else:
457             store.import_tx(tx, False)
458
459     store.commit()
460
461
462
463
464 def clean_session_thread():
465     while not stopping:
466         time.sleep(30)
467         t = time.time()
468         for k,t0 in sessions_last_time.items():
469             if t - t0 > 60:
470                 print "lost session",k
471                 sessions.pop(k)
472                 sessions_last_time.pop(k)
473             
474
475 def irc_thread():
476     global peer_list
477     NICK = 'E_'+random_string(10)
478     while not stopping:
479         try:
480             s = socket.socket()
481             s.connect(('irc.freenode.net', 6667))
482             s.send('USER electrum 0 * :'+config.get('server','host')+' '+config.get('server','ircname')+'\n')
483             s.send('NICK '+NICK+'\n')
484             s.send('JOIN #electrum\n')
485             sf = s.makefile('r', 0)
486             t = 0
487             while not stopping:
488                 line = sf.readline()
489                 line = line.rstrip('\r\n')
490                 line = line.split()
491                 if line[0]=='PING': 
492                     s.send('PONG '+line[1]+'\n')
493                 elif '353' in line: # answer to /names
494                     k = line.index('353')
495                     for item in line[k+1:]:
496                         if item[0:2] == 'E_':
497                             s.send('WHO %s\n'%item)
498                 elif '352' in line: # answer to /who
499                     # warning: this is a horrible hack which apparently works
500                     k = line.index('352')
501                     ip = line[k+4]
502                     ip = socket.gethostbyname(ip)
503                     name = line[k+6]
504                     host = line[k+9]
505                     peer_list[name] = (ip,host)
506                 elif time.time() - t > 5*60:
507                     s.send('NAMES #electrum\n')
508                     t = time.time()
509                     peer_list = {}
510         except:
511             traceback.print_exc(file=sys.stdout)
512         finally:
513             sf.close()
514             s.close()
515
516
517 import traceback
518
519
520 if __name__ == '__main__':
521
522     if len(sys.argv)>1:
523         cmd = sys.argv[1]
524         if cmd == 'load':
525             request = "('load','%s')#"%config.get('server','password')
526         elif cmd == 'peers':
527             request = "('peers','')#"
528         elif cmd == 'stop':
529             request = "('stop','%s')#"%config.get('server','password')
530
531         s = socket.socket( socket.AF_INET, socket.SOCK_STREAM)
532         s.connect((config.get('server','host'), config.getint('server','port')))
533         s.send( request )
534         out = ''
535         while 1:
536             msg = s.recv(1024)
537             if msg: out += msg
538             else: break
539         s.close()
540         print out
541         sys.exit(0)
542
543
544     print "starting Electrum server"
545     conf = DataStore.CONFIG_DEFAULTS
546     args, argv = readconf.parse_argv( [], conf)
547     args.dbtype= config.get('database','type')
548     if args.dbtype == 'sqlite3':
549         args.connect_args = { 'database' : config.get('database','database') }
550     elif args.dbtype == 'MySQLdb':
551         args.connect_args = { 'db' : config.get('database','database'), 'user' : config.get('database','username'), 'passwd' : config.get('database','password') }
552     elif args.dbtype == 'psycopg2':
553         args.connect_args = { 'database' : config.get('database','database') }
554     store = MyStore(args)
555     store.tx_cache = {}
556     store.ismempool = False
557
558     thread.start_new_thread(listen_thread, (store,))
559     thread.start_new_thread(clean_session_thread, ())
560     if (config.get('server','irc') == 'yes' ):
561         thread.start_new_thread(irc_thread, ())
562
563     while not stopping:
564         try:
565             dblock.acquire()
566             store.catch_up()
567             store.ismempool = True
568             memorypool_update(store)
569             store.ismempool = False
570             block_number = store.get_block_number(1)
571             dblock.release()
572         except:
573             traceback.print_exc(file=sys.stdout)
574         time.sleep(10)
575
576     print "server stopped"
577