persistent
[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  mempool transactions do not need to be added to the database; it slows it down
25 """
26
27
28 import time, json, socket, operator, thread, ast, sys,re
29 import psycopg2, binascii
30
31 from Abe.abe import hash_to_address, decode_check_address
32 from Abe.DataStore import DataStore as Datastore_class
33 from Abe import DataStore, readconf, BCDataStream,  deserialize, util, base58
34
35 import ConfigParser
36 from json import dumps, loads
37 import urllib
38
39 # we need to import electrum
40 sys.path.append('../client/')
41 from wallet import Wallet
42 from interface import Interface
43
44
45 config = ConfigParser.ConfigParser()
46 # set some defaults, which will be overwritten by the config file
47 config.add_section('server')
48 config.set('server','banner', 'Welcome to Electrum!')
49 config.set('server', 'host', 'localhost')
50 config.set('server', 'port', 50000)
51 config.set('server', 'password', '')
52 config.set('server', 'irc', 'yes')
53 config.set('server', 'ircname', 'Electrum server')
54 config.add_section('database')
55 config.set('database', 'type', 'psycopg2')
56 config.set('database', 'database', 'abe')
57
58 try:
59     f = open('/etc/electrum.conf','r')
60     config.readfp(f)
61     f.close()
62 except:
63     print "Could not read electrum.conf. I will use the default values."
64
65 try:
66     f = open('/etc/electrum.banner','r')
67     config.set('server','banner', f.read())
68     f.close()
69 except:
70     pass
71
72 password = config.get('server','password')
73 bitcoind_url = 'http://%s:%s@%s:%s/' % ( config.get('bitcoind','user'), config.get('bitcoind','password'), config.get('bitcoind','host'), config.get('bitcoind','port'))
74
75 stopping = False
76 block_number = -1
77 old_block_number = -1
78 sessions = {}
79 sessions_sub_numblocks = {} # sessions that have subscribed to the service
80
81 dblock = thread.allocate_lock()
82 peer_list = {}
83
84 wallets = {} # for ultra-light clients such as bccapi
85
86 from Queue import Queue
87 input_queue = Queue()
88 output_queue = Queue()
89 address_queue = Queue()
90
91 class MyStore(Datastore_class):
92
93     def import_block(self, b, chain_ids=frozenset()):
94         block_id = super(MyStore, self).import_block(b, chain_ids)
95         #print "block", block_id
96         for pos in xrange(len(b['transactions'])):
97             tx = b['transactions'][pos]
98             if 'hash' not in tx:
99                 tx['hash'] = util.double_sha256(tx['tx'])
100             tx_id = store.tx_find_id_and_value(tx)
101             if tx_id:
102                 self.update_tx_cache(tx_id)
103             else:
104                 print "error: import_block: no tx_id"
105         return block_id
106
107
108     def update_tx_cache(self, txid):
109         inrows = self.get_tx_inputs(txid, False)
110         for row in inrows:
111             _hash = store.binout(row[6])
112             address = hash_to_address(chr(0), _hash)
113             if self.tx_cache.has_key(address):
114                 print "cache: invalidating", address
115                 self.tx_cache.pop(address)
116             address_queue.put(address)
117
118         outrows = self.get_tx_outputs(txid, False)
119         for row in outrows:
120             _hash = store.binout(row[6])
121             address = hash_to_address(chr(0), _hash)
122             if self.tx_cache.has_key(address):
123                 print "cache: invalidating", address
124                 self.tx_cache.pop(address)
125             address_queue.put(address)
126
127     def safe_sql(self,sql, params=(), lock=True):
128         try:
129             if lock: dblock.acquire()
130             ret = self.selectall(sql,params)
131             if lock: dblock.release()
132             return ret
133         except:
134             print "sql error", sql
135             return []
136
137     def get_tx_outputs(self, tx_id, lock=True):
138         return self.safe_sql("""SELECT
139                 txout.txout_pos,
140                 txout.txout_scriptPubKey,
141                 txout.txout_value,
142                 nexttx.tx_hash,
143                 nexttx.tx_id,
144                 txin.txin_pos,
145                 pubkey.pubkey_hash
146               FROM txout
147               LEFT JOIN txin ON (txin.txout_id = txout.txout_id)
148               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
149               LEFT JOIN tx nexttx ON (txin.tx_id = nexttx.tx_id)
150              WHERE txout.tx_id = %d 
151              ORDER BY txout.txout_pos
152         """%(tx_id), (), lock)
153
154     def get_tx_inputs(self, tx_id, lock=True):
155         return self.safe_sql(""" SELECT
156                 txin.txin_pos,
157                 txin.txin_scriptSig,
158                 txout.txout_value,
159                 COALESCE(prevtx.tx_hash, u.txout_tx_hash),
160                 prevtx.tx_id,
161                 COALESCE(txout.txout_pos, u.txout_pos),
162                 pubkey.pubkey_hash
163               FROM txin
164               LEFT JOIN txout ON (txout.txout_id = txin.txout_id)
165               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
166               LEFT JOIN tx prevtx ON (txout.tx_id = prevtx.tx_id)
167               LEFT JOIN unlinked_txin u ON (u.txin_id = txin.txin_id)
168              WHERE txin.tx_id = %d
169              ORDER BY txin.txin_pos
170              """%(tx_id,), (), lock)
171
172     def get_address_out_rows(self, dbhash):
173         return self.safe_sql(""" SELECT
174                 b.block_nTime,
175                 cc.chain_id,
176                 b.block_height,
177                 1,
178                 b.block_hash,
179                 tx.tx_hash,
180                 tx.tx_id,
181                 txin.txin_pos,
182                 -prevout.txout_value
183               FROM chain_candidate cc
184               JOIN block b ON (b.block_id = cc.block_id)
185               JOIN block_tx ON (block_tx.block_id = b.block_id)
186               JOIN tx ON (tx.tx_id = block_tx.tx_id)
187               JOIN txin ON (txin.tx_id = tx.tx_id)
188               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
189               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
190              WHERE pubkey.pubkey_hash = ?
191                AND cc.in_longest = 1""", (dbhash,))
192
193     def get_address_out_rows_memorypool(self, dbhash):
194         return self.safe_sql(""" SELECT
195                 1,
196                 tx.tx_hash,
197                 tx.tx_id,
198                 txin.txin_pos,
199                 -prevout.txout_value
200               FROM tx 
201               JOIN txin ON (txin.tx_id = tx.tx_id)
202               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
203               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
204              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
205
206     def get_address_in_rows(self, dbhash):
207         return self.safe_sql(""" SELECT
208                 b.block_nTime,
209                 cc.chain_id,
210                 b.block_height,
211                 0,
212                 b.block_hash,
213                 tx.tx_hash,
214                 tx.tx_id,
215                 txout.txout_pos,
216                 txout.txout_value
217               FROM chain_candidate cc
218               JOIN block b ON (b.block_id = cc.block_id)
219               JOIN block_tx ON (block_tx.block_id = b.block_id)
220               JOIN tx ON (tx.tx_id = block_tx.tx_id)
221               JOIN txout ON (txout.tx_id = tx.tx_id)
222               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
223              WHERE pubkey.pubkey_hash = ?
224                AND cc.in_longest = 1""", (dbhash,))
225
226     def get_address_in_rows_memorypool(self, dbhash):
227         return self.safe_sql( """ SELECT
228                 0,
229                 tx.tx_hash,
230                 tx.tx_id,
231                 txout.txout_pos,
232                 txout.txout_value
233               FROM tx
234               JOIN txout ON (txout.tx_id = tx.tx_id)
235               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
236              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
237
238     def get_history(self, addr):
239         
240         cached_version = self.tx_cache.get( addr )
241         if cached_version is not None:
242             return cached_version
243
244         version, binaddr = decode_check_address(addr)
245         if binaddr is None:
246             return None
247
248         dbhash = self.binin(binaddr)
249         rows = []
250         rows += self.get_address_out_rows( dbhash )
251         rows += self.get_address_in_rows( dbhash )
252
253         txpoints = []
254         known_tx = []
255
256         for row in rows:
257             try:
258                 nTime, chain_id, height, is_in, blk_hash, tx_hash, tx_id, pos, value = row
259             except:
260                 print "cannot unpack row", row
261                 break
262             tx_hash = self.hashout_hex(tx_hash)
263             txpoint = {
264                     "nTime":    int(nTime),
265                     "height":   int(height),
266                     "is_in":    int(is_in),
267                     "blk_hash": self.hashout_hex(blk_hash),
268                     "tx_hash":  tx_hash,
269                     "tx_id":    int(tx_id),
270                     "pos":      int(pos),
271                     "value":    int(value),
272                     }
273
274             txpoints.append(txpoint)
275             known_tx.append(self.hashout_hex(tx_hash))
276
277
278         # todo: sort them really...
279         txpoints = sorted(txpoints, key=operator.itemgetter("nTime"))
280
281         # read memory pool
282         rows = []
283         rows += self.get_address_in_rows_memorypool( dbhash )
284         rows += self.get_address_out_rows_memorypool( dbhash )
285         address_has_mempool = False
286
287         for row in rows:
288             is_in, tx_hash, tx_id, pos, value = row
289             tx_hash = self.hashout_hex(tx_hash)
290             if tx_hash in known_tx:
291                 continue
292
293             # this means that pending transactions were added to the db, even if they are not returned by getmemorypool
294             address_has_mempool = True
295
296             # this means pending transactions are returned by getmemorypool
297             if tx_hash not in self.mempool_keys:
298                 continue
299
300             #print "mempool", tx_hash
301             txpoint = {
302                     "nTime":    0,
303                     "height":   0,
304                     "is_in":    int(is_in),
305                     "blk_hash": 'mempool', 
306                     "tx_hash":  tx_hash,
307                     "tx_id":    int(tx_id),
308                     "pos":      int(pos),
309                     "value":    int(value),
310                     }
311             txpoints.append(txpoint)
312
313
314         for txpoint in txpoints:
315             tx_id = txpoint['tx_id']
316             
317             txinputs = []
318             inrows = self.get_tx_inputs(tx_id)
319             for row in inrows:
320                 _hash = self.binout(row[6])
321                 address = hash_to_address(chr(0), _hash)
322                 txinputs.append(address)
323             txpoint['inputs'] = txinputs
324             txoutputs = []
325             outrows = self.get_tx_outputs(tx_id)
326             for row in outrows:
327                 _hash = self.binout(row[6])
328                 address = hash_to_address(chr(0), _hash)
329                 txoutputs.append(address)
330             txpoint['outputs'] = txoutputs
331
332             # for all unspent inputs, I want their scriptpubkey. (actually I could deduce it from the address)
333             if not txpoint['is_in']:
334                 # detect if already redeemed...
335                 for row in outrows:
336                     if row[6] == dbhash: break
337                 else:
338                     raise
339                 #row = self.get_tx_output(tx_id,dbhash)
340                 # pos, script, value, o_hash, o_id, o_pos, binaddr = row
341                 # if not redeemed, we add the script
342                 if row:
343                     if not row[4]: txpoint['raw_scriptPubKey'] = row[1]
344
345         # cache result
346         if not address_has_mempool:
347             self.tx_cache[addr] = txpoints
348         
349         return txpoints
350
351
352
353 class Direct_Interface(Interface):
354     def __init__(self):
355         pass
356
357     def handler(self, method, params = ''):
358         cmds = {'session.new':new_session,
359                 'session.poll':poll_session,
360                 'session.update':update_session,
361                 'blockchain.transaction.broadcast':send_tx,
362                 'blockchain.address.get_history':store.get_history
363                 }
364         func = cmds[method]
365         return func( params )
366
367
368
369 def send_tx(tx):
370     postdata = dumps({"method": 'importtransaction', 'params': [tx], 'id':'jsonrpc'})
371     respdata = urllib.urlopen(bitcoind_url, postdata).read()
372     r = loads(respdata)
373     if r['error'] != None:
374         out = "error: transaction rejected by memorypool\n"+tx
375     else:
376         out = r['result']
377     return out
378
379
380
381 def random_string(N):
382     import random, string
383     return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N))
384
385     
386
387 def cmd_stop(data):
388     global stopping
389     if password == data:
390         stopping = True
391         return 'ok'
392     else:
393         return 'wrong password'
394
395 def cmd_load(pw):
396     if password == pw:
397         return repr( len(sessions) )
398     else:
399         return 'wrong password'
400
401
402 def clear_cache(pw):
403     if password == pw:
404         store.tx_cache = {}
405         return 'ok'
406     else:
407         return 'wrong password'
408
409 def get_cache(pw,addr):
410     if password == pw:
411         return store.tx_cache.get(addr)
412     else:
413         return 'wrong password'
414
415
416 def poll_session(session_id):
417     session = sessions.get(session_id)
418     if session is None:
419         print time.asctime(), "session not found", session_id
420         out = repr( (-1, {}))
421     else:
422         t1 = time.time()
423         addresses = session['addresses']
424         session['last_time'] = time.time()
425         ret = {}
426         k = 0
427         for addr in addresses:
428             if store.tx_cache.get( addr ) is not None: k += 1
429             status = get_address_status( addr )
430             last_status = addresses.get( addr )
431             if last_status != status:
432                 addresses[addr] = status
433                 ret[addr] = status
434         if ret:
435             sessions[session_id]['addresses'] = addresses
436         out = repr( (block_number, ret ) )
437         t2 = time.time() - t1 
438         if t2 > 10:
439             print "high load:", session_id, "%d/%d"%(k,len(addresses)), t2
440
441         return out
442
443
444 def do_update_address(addr):
445     # an address was involved in a transaction; we check if it was subscribed to in a session
446     # the address can be subscribed in several sessions; the cache should ensure that we don't do redundant requests
447     for session_id in sessions.keys():
448         session = sessions[session_id]
449         if session.get('type') != 'persistent': continue
450         addresses = session['addresses'].keys()
451
452         if addr in addresses:
453             status = get_address_status( addr )
454             message_id, last_status = session['addresses'][addr]
455             if last_status != status:
456                 #print "sending new status for %s:"%addr, status
457                 send_status(session_id,message_id,addr,status)
458                 sessions[session_id]['addresses'][addr] = (message_id,status)
459
460
461 def get_address_status(addr):
462     # get address status, i.e. the last block for that address.
463     tx_points = store.get_history(addr)
464     if not tx_points:
465         status = None
466     else:
467         lastpoint = tx_points[-1]
468         status = lastpoint['blk_hash']
469         # this is a temporary hack; move it up once old clients have disappeared
470         if status == 'mempool': # and session['version'] != "old":
471             status = status + ':%d'% len(tx_points)
472     return status
473
474
475 def send_numblocks(session_id):
476     message_id = sessions_sub_numblocks[session_id]
477     out = json.dumps( {'id':message_id, 'result':block_number} )
478     output_queue.put((session_id, out))
479
480 def send_status(session_id, message_id, address, status):
481     out = json.dumps( { 'id':message_id, 'result':status } )
482     output_queue.put((session_id, out))
483
484 def subscribe_to_numblocks(session_id, message_id):
485     sessions_sub_numblocks[session_id] = message_id
486     send_numblocks(session_id)
487
488 def subscribe_to_address(session_id, message_id, address):
489     status = get_address_status(address)
490     sessions[session_id]['addresses'][address] = (message_id, status)
491     sessions[session_id]['last_time'] = time.time()
492     send_status(session_id, message_id, address, status)
493
494 def new_session(version, addresses):
495     session_id = random_string(10)
496     sessions[session_id] = { 'addresses':{}, 'version':version }
497     for a in addresses:
498         sessions[session_id]['addresses'][a] = ''
499     out = repr( (session_id, config.get('server','banner').replace('\\n','\n') ) )
500     sessions[session_id]['last_time'] = time.time()
501     return out
502
503 def update_session(session_id,addresses):
504     sessions[session_id]['addresses'] = {}
505     for a in addresses:
506         sessions[session_id]['addresses'][a] = ''
507     sessions[session_id]['last_time'] = time.time()
508     return 'ok'
509
510 def native_server_thread():
511     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
512     s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
513     s.bind((config.get('server','host'), config.getint('server','port')))
514     s.listen(1)
515     while not stopping:
516         conn, addr = s.accept()
517         try:
518             thread.start_new_thread(native_client_thread, (addr, conn,))
519         except:
520             # can't start new thread if there is no memory..
521             traceback.print_exc(file=sys.stdout)
522
523
524 def native_client_thread(ipaddr,conn):
525     #print "client thread", ipaddr
526     try:
527         ipaddr = ipaddr[0]
528         msg = ''
529         while 1:
530             d = conn.recv(1024)
531             msg += d
532             if not d: 
533                 break
534             if '#' in msg:
535                 msg = msg.split('#', 1)[0]
536                 break
537         try:
538             cmd, data = ast.literal_eval(msg)
539         except:
540             print "syntax error", repr(msg), ipaddr
541             conn.close()
542             return
543
544         out = do_command(cmd, data, ipaddr)
545         if out:
546             #print ipaddr, cmd, len(out)
547             try:
548                 conn.send(out)
549             except:
550                 print "error, could not send"
551
552     finally:
553         conn.close()
554
555
556 def timestr():
557     return time.strftime("[%d/%m/%Y-%H:%M:%S]")
558
559 # used by the native handler
560 def do_command(cmd, data, ipaddr):
561
562     if cmd=='b':
563         out = "%d"%block_number
564
565     elif cmd in ['session','new_session']:
566         try:
567             if cmd == 'session':
568                 addresses = ast.literal_eval(data)
569                 version = "old"
570             else:
571                 version, addresses = ast.literal_eval(data)
572                 if version[0]=="0": version = "v" + version
573         except:
574             print "error", data
575             return None
576         print timestr(), "new session", ipaddr, addresses[0] if addresses else addresses, len(addresses), version
577         out = new_session(version, addresses)
578
579     elif cmd=='update_session':
580         try:
581             session_id, addresses = ast.literal_eval(data)
582         except:
583             print "error"
584             return None
585         print timestr(), "update session", ipaddr, addresses[0] if addresses else addresses, len(addresses)
586         out = update_session(session_id,addresses)
587
588     elif cmd == 'bccapi_login':
589         import electrum
590         print "data",data
591         v, k = ast.literal_eval(data)
592         master_public_key = k.decode('hex') # todo: sanitize. no need to decode twice...
593         print master_public_key
594         wallet_id = random_string(10)
595         w = Wallet( Direct_Interface() )
596         w.master_public_key = master_public_key.decode('hex')
597         w.synchronize()
598         wallets[wallet_id] = w
599         out = wallet_id
600         print "wallets", wallets
601
602     elif cmd == 'bccapi_getAccountInfo':
603         from wallet import int_to_hex
604         v, wallet_id = ast.literal_eval(data)
605         w = wallets.get(wallet_id)
606         if w is not None:
607             num = len(w.addresses)
608             c, u = w.get_balance()
609             out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 )
610             out = out.decode('hex')
611         else:
612             print "error",data
613             out = "error"
614
615     elif cmd == 'bccapi_getAccountStatement':
616         from wallet import int_to_hex
617         v, wallet_id = ast.literal_eval(data)
618         w = wallets.get(wallet_id)
619         if w is not None:
620             num = len(w.addresses)
621             c, u = w.get_balance()
622             total_records = num_records = 0
623             out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 ) + int_to_hex( total_records ) + int_to_hex( num_records )
624             out = out.decode('hex')
625         else:
626             print "error",data
627             out = "error"
628
629     elif cmd == 'bccapi_getSendCoinForm':
630         out = ''
631
632     elif cmd == 'bccapi_submitTransaction':
633         out = ''
634             
635     elif cmd=='poll': 
636         out = poll_session(data)
637
638     elif cmd == 'h': 
639         # history
640         address = data
641         out = repr( store.get_history( address ) )
642
643     elif cmd == 'load': 
644         out = cmd_load(data)
645
646     elif cmd =='tx':
647         out = send_tx(data)
648         print timestr(), "sent tx:", ipaddr, out
649
650     elif cmd == 'stop':
651         out = cmd_stop(data)
652
653     elif cmd == 'peers':
654         out = repr(peer_list.values())
655
656     else:
657         out = None
658
659     return out
660
661
662
663 ####################################################################
664
665 def tcp_server_thread():
666     thread.start_new_thread(process_input_queue, ())
667     thread.start_new_thread(process_output_queue, ())
668
669     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
670     s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
671     s.bind((config.get('server','host'), 50001))
672     s.listen(1)
673     while not stopping:
674         conn, addr = s.accept()
675         try:
676             thread.start_new_thread(tcp_client_thread, (addr, conn,))
677         except:
678             # can't start new thread if there is no memory..
679             traceback.print_exc(file=sys.stdout)
680
681
682 def close_session(session_id):
683     print "lost connection", session_id
684     sessions.pop(session_id)
685     if session_id in sessions_sub_numblocks:
686         sessions_sub_numblocks.pop(session_id)
687
688
689 # one thread per client. put requests in a queue.
690 def tcp_client_thread(ipaddr,conn):
691     """ use a persistent connection. put commands in a queue."""
692
693     print timestr(), "TCP session", ipaddr
694     global sessions
695
696     session_id = random_string(10)
697     sessions[session_id] = { 'conn':conn, 'addresses':{}, 'version':'unknown', 'type':'persistent' }
698
699     ipaddr = ipaddr[0]
700     msg = ''
701
702     while not stopping:
703         try:
704             d = conn.recv(1024)
705         except socket.error:
706             d = ''
707         if not d:
708             close_session(session_id)
709             break
710
711         msg += d
712         while True:
713             s = msg.find('\n')
714             if s ==-1:
715                 break
716             else:
717                 c = msg[0:s].strip()
718                 msg = msg[s+1:]
719                 if c == 'quit': 
720                     conn.close()
721                     close_session(session_id)
722                     return
723                 try:
724                     c = json.loads(c)
725                 except:
726                     print "json error", repr(c)
727                     continue
728                 try:
729                     message_id = c.get('id')
730                     method = c.get('method')
731                     params = c.get('params')
732                 except:
733                     print "syntax error", repr(c), ipaddr
734                     continue
735
736                 # add to queue
737                 input_queue.put((session_id, message_id, method, params))
738
739
740
741 # read commands from the input queue. perform requests, etc. this should be called from the main thread.
742 def process_input_queue():
743     while not stopping:
744         session_id, message_id, method, data = input_queue.get()
745         if session_id not in sessions.keys():
746             continue
747         out = None
748         if method == 'address.subscribe':
749             address = data[0]
750             subscribe_to_address(session_id,message_id,address)
751         elif method == 'numblocks.subscribe':
752             subscribe_to_numblocks(session_id,message_id)
753         elif method == 'client.version':
754             sessions[session_id]['version'] = data[0]
755         elif method == 'server.banner':
756             out = { 'result':config.get('server','banner').replace('\\n','\n') } 
757         elif method == 'server.peers':
758             out = { 'result':peer_list.values() } 
759         elif method == 'address.get_history':
760             address = data[0]
761             out = { 'result':store.get_history( address ) } 
762         elif method == 'transaction.broadcast':
763             postdata = dumps({"method": 'importtransaction', 'params': [data], 'id':'jsonrpc'})
764             txo = urllib.urlopen(bitcoind_url, postdata).read()
765             print "sent tx:", txo
766             out = json.loads(txo)
767         else:
768             print "unknown command", method
769         if out:
770             out['id'] = message_id
771             out = json.dumps( out )
772             output_queue.put((session_id, out))
773
774 # this is a separate thread
775 def process_output_queue():
776     while not stopping:
777         session_id, out = output_queue.get()
778         session = sessions.get(session_id)
779         if session: 
780             try:
781                 conn = session.get('conn')
782                 conn.send(out+'\n')
783             except:
784                 close_session(session_id)
785                 
786
787
788
789 ####################################################################
790
791
792 def memorypool_update(store):
793
794     ds = BCDataStream.BCDataStream()
795     previous_transactions = store.mempool_keys
796     store.mempool_keys = []
797
798     postdata = dumps({"method": 'getmemorypool', 'params': [], 'id':'jsonrpc'})
799     respdata = urllib.urlopen(bitcoind_url, postdata).read()
800     r = loads(respdata)
801     if r['error'] != None:
802         return
803
804     v = r['result'].get('transactions')
805     for hextx in v:
806         ds.clear()
807         ds.write(hextx.decode('hex'))
808         tx = deserialize.parse_Transaction(ds)
809         tx['hash'] = util.double_sha256(tx['tx'])
810         tx_hash = store.hashin(tx['hash'])
811
812         store.mempool_keys.append(tx_hash)
813         if store.tx_find_id_and_value(tx):
814             pass
815         else:
816             tx_id = store.import_tx(tx, False)
817             store.update_tx_cache(tx_id)
818
819     store.commit()
820
821
822 def clean_session_thread():
823     while not stopping:
824         time.sleep(30)
825         t = time.time()
826         for k,s in sessions.items():
827             if s.get('type') == 'persistent': continue
828             t0 = s['last_time']
829             if t - t0 > 5*60:
830                 sessions.pop(k)
831                 print "lost session", k
832             
833
834 def irc_thread():
835     global peer_list
836     NICK = 'E_'+random_string(10)
837     while not stopping:
838         try:
839             s = socket.socket()
840             s.connect(('irc.freenode.net', 6667))
841             s.send('USER electrum 0 * :'+config.get('server','host')+' '+config.get('server','ircname')+'\n')
842             s.send('NICK '+NICK+'\n')
843             s.send('JOIN #electrum\n')
844             sf = s.makefile('r', 0)
845             t = 0
846             while not stopping:
847                 line = sf.readline()
848                 line = line.rstrip('\r\n')
849                 line = line.split()
850                 if line[0]=='PING': 
851                     s.send('PONG '+line[1]+'\n')
852                 elif '353' in line: # answer to /names
853                     k = line.index('353')
854                     for item in line[k+1:]:
855                         if item[0:2] == 'E_':
856                             s.send('WHO %s\n'%item)
857                 elif '352' in line: # answer to /who
858                     # warning: this is a horrible hack which apparently works
859                     k = line.index('352')
860                     ip = line[k+4]
861                     ip = socket.gethostbyname(ip)
862                     name = line[k+6]
863                     host = line[k+9]
864                     peer_list[name] = (ip,host)
865                 if time.time() - t > 5*60:
866                     s.send('NAMES #electrum\n')
867                     t = time.time()
868                     peer_list = {}
869         except:
870             traceback.print_exc(file=sys.stdout)
871         finally:
872             sf.close()
873             s.close()
874
875
876
877 def http_server_thread(store):
878     # see http://code.google.com/p/jsonrpclib/
879     from SocketServer import ThreadingMixIn
880     from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCServer
881     class SimpleThreadedJSONRPCServer(ThreadingMixIn, SimpleJSONRPCServer): pass
882     server = SimpleThreadedJSONRPCServer(( config.get('server','host'), 8081))
883     server.register_function(lambda : peer_list.values(), 'peers')
884     server.register_function(cmd_stop, 'stop')
885     server.register_function(cmd_load, 'load')
886     server.register_function(lambda : block_number, 'blocks')
887     server.register_function(clear_cache, 'clear_cache')
888     server.register_function(get_cache, 'get_cache')
889     server.register_function(send_tx, 'blockchain.transaction.broadcast')
890     server.register_function(store.get_history, 'blockchain.address.get_history')
891     server.register_function(new_session, 'session.new')
892     server.register_function(update_session, 'session.update')
893     server.register_function(poll_session, 'session.poll')
894     server.serve_forever()
895
896
897 import traceback
898
899
900 if __name__ == '__main__':
901
902     if len(sys.argv)>1:
903         import jsonrpclib
904         server = jsonrpclib.Server('http://%s:8081'%config.get('server','host'))
905         cmd = sys.argv[1]
906         if cmd == 'load':
907             out = server.load(password)
908         elif cmd == 'peers':
909             out = server.peers()
910         elif cmd == 'stop':
911             out = server.stop(password)
912         elif cmd == 'clear_cache':
913             out = server.clear_cache(password)
914         elif cmd == 'get_cache':
915             out = server.get_cache(password,sys.argv[2])
916         elif cmd == 'h':
917             out = server.blockchain.address.get_history(sys.argv[2])
918         elif cmd == 'tx':
919             out = server.blockchain.transaction.broadcast(sys.argv[2])
920         elif cmd == 'b':
921             out = server.blocks()
922         else:
923             out = "Unknown command: '%s'" % cmd
924         print out
925         sys.exit(0)
926
927
928     print "starting Electrum server"
929
930     conf = DataStore.CONFIG_DEFAULTS
931     args, argv = readconf.parse_argv( [], conf)
932     args.dbtype= config.get('database','type')
933     if args.dbtype == 'sqlite3':
934         args.connect_args = { 'database' : config.get('database','database') }
935     elif args.dbtype == 'MySQLdb':
936         args.connect_args = { 'db' : config.get('database','database'), 'user' : config.get('database','username'), 'passwd' : config.get('database','password') }
937     elif args.dbtype == 'psycopg2':
938         args.connect_args = { 'database' : config.get('database','database') }
939     store = MyStore(args)
940     store.tx_cache = {}
941     store.mempool_keys = {}
942
943     # supported protocols
944     thread.start_new_thread(native_server_thread, ())
945     thread.start_new_thread(tcp_server_thread, ())
946     thread.start_new_thread(http_server_thread, (store,))
947
948     thread.start_new_thread(clean_session_thread, ())
949
950     if (config.get('server','irc') == 'yes' ):
951         thread.start_new_thread(irc_thread, ())
952
953     while not stopping:
954         try:
955             dblock.acquire()
956             store.catch_up()
957             memorypool_update(store)
958
959             block_number = store.get_block_number(1)
960             if block_number != old_block_number:
961                 old_block_number = block_number
962                 for session_id in sessions_sub_numblocks.keys():
963                     send_numblocks(session_id)
964
965         except IOError:
966             print "IOError: cannot reach bitcoind"
967             block_number = 0
968         except:
969             traceback.print_exc(file=sys.stdout)
970             block_number = 0
971         finally:
972             dblock.release()
973
974         # do addresses
975         while True:
976             try:
977                 addr = address_queue.get(False)
978             except:
979                 break
980             do_update_address(addr)
981
982         time.sleep(10)
983
984     print "server stopped"
985