]> Git Repo - VerusCoin.git/blob - src/komodo_bitcoind.h
Test
[VerusCoin.git] / src / komodo_bitcoind.h
1 /******************************************************************************
2  * Copyright © 2014-2017 The SuperNET Developers.                             *
3  *                                                                            *
4  * See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at                  *
5  * the top-level directory of this distribution for the individual copyright  *
6  * holder information and the developer policies on copyright and licensing.  *
7  *                                                                            *
8  * Unless otherwise agreed in a custom licensing agreement, no part of the    *
9  * SuperNET software, including this file may be copied, modified, propagated *
10  * or distributed except according to the terms contained in the LICENSE file *
11  *                                                                            *
12  * Removal or modification of this copyright notice is prohibited.            *
13  *                                                                            *
14  ******************************************************************************/
15
16 // komodo functions that interact with bitcoind C++
17
18 #ifdef _WIN32
19 #include <curl.h>
20 #include <easy.h>
21 #else
22 #include <curl/curl.h>
23 #include <curl/easy.h>
24 #endif
25
26 #define issue_curl(cmdstr) bitcoind_RPC(0,(char *)"curl",(char *)"http://127.0.0.1:7776",0,0,(char *)(cmdstr))
27
28 struct MemoryStruct { char *memory; size_t size; };
29 struct return_string { char *ptr; size_t len; };
30
31 // return data from the server
32 #define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32)
33 #define CURL_GLOBAL_SSL (1<<0)
34 #define CURL_GLOBAL_WIN32 (1<<1)
35
36
37 /************************************************************************
38  *
39  * Initialize the string handler so that it is thread safe
40  *
41  ************************************************************************/
42
43 void init_string(struct return_string *s)
44 {
45     s->len = 0;
46     s->ptr = (char *)calloc(1,s->len+1);
47     if ( s->ptr == NULL )
48     {
49         fprintf(stderr,"init_string malloc() failed\n");
50         exit(-1);
51     }
52     s->ptr[0] = '\0';
53 }
54
55 /************************************************************************
56  *
57  * Use the "writer" to accumulate text until done
58  *
59  ************************************************************************/
60
61 size_t accumulatebytes(void *ptr,size_t size,size_t nmemb,struct return_string *s)
62 {
63     size_t new_len = s->len + size*nmemb;
64     s->ptr = (char *)realloc(s->ptr,new_len+1);
65     if ( s->ptr == NULL )
66     {
67         fprintf(stderr, "accumulate realloc() failed\n");
68         exit(-1);
69     }
70     memcpy(s->ptr+s->len,ptr,size*nmemb);
71     s->ptr[new_len] = '\0';
72     s->len = new_len;
73     return(size * nmemb);
74 }
75
76 /************************************************************************
77  *
78  * return the current system time in milliseconds
79  *
80  ************************************************************************/
81
82 #define EXTRACT_BITCOIND_RESULT  // if defined, ensures error is null and returns the "result" field
83 #ifdef EXTRACT_BITCOIND_RESULT
84
85 /************************************************************************
86  *
87  * perform post processing of the results
88  *
89  ************************************************************************/
90
91 char *post_process_bitcoind_RPC(char *debugstr,char *command,char *rpcstr,char *params)
92 {
93     long i,j,len; char *retstr = 0; cJSON *json,*result,*error;
94     //printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC.%s.[%s]\n",debugstr,command,rpcstr);
95     if ( command == 0 || rpcstr == 0 || rpcstr[0] == 0 )
96     {
97         if ( strcmp(command,"signrawtransaction") != 0 )
98             printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC.%s.[%s]\n",debugstr,command,rpcstr);
99         return(rpcstr);
100     }
101     json = cJSON_Parse(rpcstr);
102     if ( json == 0 )
103     {
104         printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC.%s can't parse.(%s) params.(%s)\n",debugstr,command,rpcstr,params);
105         free(rpcstr);
106         return(0);
107     }
108     result = cJSON_GetObjectItem(json,"result");
109     error = cJSON_GetObjectItem(json,"error");
110     if ( error != 0 && result != 0 )
111     {
112         if ( (error->type&0xff) == cJSON_NULL && (result->type&0xff) != cJSON_NULL )
113         {
114             retstr = cJSON_Print(result);
115             len = strlen(retstr);
116             if ( retstr[0] == '"' && retstr[len-1] == '"' )
117             {
118                 for (i=1,j=0; i<len-1; i++,j++)
119                     retstr[j] = retstr[i];
120                 retstr[j] = 0;
121             }
122         }
123         else if ( (error->type&0xff) != cJSON_NULL || (result->type&0xff) != cJSON_NULL )
124         {
125             if ( strcmp(command,"signrawtransaction") != 0 )
126                 printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC (%s) error.%s\n",debugstr,command,rpcstr);
127         }
128         free(rpcstr);
129     } else retstr = rpcstr;
130     free_json(json);
131     //fprintf(stderr,"<<<<<<<<<<< bitcoind_RPC: postprocess returns.(%s)\n",retstr);
132     return(retstr);
133 }
134 #endif
135
136 /************************************************************************
137  *
138  * perform the query
139  *
140  ************************************************************************/
141
142 char *bitcoind_RPC(char **retstrp,char *debugstr,char *url,char *userpass,char *command,char *params)
143 {
144     static int didinit,count,count2; static double elapsedsum,elapsedsum2;
145     struct curl_slist *headers = NULL; struct return_string s; CURLcode res; CURL *curl_handle;
146     char *bracket0,*bracket1,*databuf = 0; long len; int32_t specialcase,numretries; double starttime;
147     if ( didinit == 0 )
148     {
149         didinit = 1;
150         curl_global_init(CURL_GLOBAL_ALL); //init the curl session
151     }
152     numretries = 0;
153     if ( debugstr != 0 && strcmp(debugstr,"BTCD") == 0 && command != 0 && strcmp(command,"SuperNET") ==  0 )
154         specialcase = 1;
155     else specialcase = 0;
156     if ( url[0] == 0 )
157         strcpy(url,"http://127.0.0.1:7876/nxt");
158     if ( specialcase != 0 && 0 )
159         printf("<<<<<<<<<<< bitcoind_RPC: debug.(%s) url.(%s) command.(%s) params.(%s)\n",debugstr,url,command,params);
160 try_again:
161     if ( retstrp != 0 )
162         *retstrp = 0;
163     starttime = OS_milliseconds();
164     curl_handle = curl_easy_init();
165     init_string(&s);
166     headers = curl_slist_append(0,"Expect:");
167     
168         curl_easy_setopt(curl_handle,CURLOPT_USERAGENT,"mozilla/4.0");//"Mozilla/4.0 (compatible; )");
169     curl_easy_setopt(curl_handle,CURLOPT_HTTPHEADER,    headers);
170     curl_easy_setopt(curl_handle,CURLOPT_URL,           url);
171     curl_easy_setopt(curl_handle,CURLOPT_WRITEFUNCTION, (void *)accumulatebytes);               // send all data to this function
172     curl_easy_setopt(curl_handle,CURLOPT_WRITEDATA,             &s);                    // we pass our 's' struct to the callback
173     curl_easy_setopt(curl_handle,CURLOPT_NOSIGNAL,              1L);                    // supposed to fix "Alarm clock" and long jump crash
174         curl_easy_setopt(curl_handle,CURLOPT_NOPROGRESS,        1L);                    // no progress callback
175     if ( strncmp(url,"https",5) == 0 )
176     {
177         curl_easy_setopt(curl_handle,CURLOPT_SSL_VERIFYPEER,0);
178         curl_easy_setopt(curl_handle,CURLOPT_SSL_VERIFYHOST,0);
179     }
180     if ( userpass != 0 )
181         curl_easy_setopt(curl_handle,CURLOPT_USERPWD,   userpass);
182     databuf = 0;
183     if ( params != 0 )
184     {
185         if ( command != 0 && specialcase == 0 )
186         {
187             len = strlen(params);
188             if ( len > 0 && params[0] == '[' && params[len-1] == ']' ) {
189                 bracket0 = bracket1 = (char *)"";
190             }
191             else
192             {
193                 bracket0 = (char *)"[";
194                 bracket1 = (char *)"]";
195             }
196             
197             databuf = (char *)malloc(256 + strlen(command) + strlen(params));
198             sprintf(databuf,"{\"id\":\"jl777\",\"method\":\"%s\",\"params\":%s%s%s}",command,bracket0,params,bracket1);
199             //printf("url.(%s) userpass.(%s) databuf.(%s)\n",url,userpass,databuf);
200             //
201         } //else if ( specialcase != 0 ) fprintf(stderr,"databuf.(%s)\n",params);
202         curl_easy_setopt(curl_handle,CURLOPT_POST,1L);
203         if ( databuf != 0 )
204             curl_easy_setopt(curl_handle,CURLOPT_POSTFIELDS,databuf);
205         else curl_easy_setopt(curl_handle,CURLOPT_POSTFIELDS,params);
206     }
207     //laststart = milliseconds();
208     res = curl_easy_perform(curl_handle);
209     curl_slist_free_all(headers);
210     curl_easy_cleanup(curl_handle);
211     if ( databuf != 0 ) // clean up temporary buffer
212     {
213         free(databuf);
214         databuf = 0;
215     }
216     if ( res != CURLE_OK )
217     {
218         numretries++;
219         if ( specialcase != 0 )
220         {
221             printf("<<<<<<<<<<< bitcoind_RPC.(%s): BTCD.%s timeout params.(%s) s.ptr.(%s) err.%d\n",url,command,params,s.ptr,res);
222             free(s.ptr);
223             return(0);
224         }
225         else if ( numretries >= 1 )
226         {
227             //printf("Maximum number of retries exceeded!\n");
228             free(s.ptr);
229             return(0);
230         }
231         if ( (rand() % 1000) == 0 )
232             printf( "curl_easy_perform() failed: %s %s.(%s %s), retries: %d\n",curl_easy_strerror(res),debugstr,url,command,numretries);
233         free(s.ptr);
234         sleep((1<<numretries));
235         goto try_again;
236         
237     }
238     else
239     {
240         if ( command != 0 && specialcase == 0 )
241         {
242             count++;
243             elapsedsum += (OS_milliseconds() - starttime);
244             if ( (count % 1000000) == 0)
245                 printf("%d: ave %9.6f | elapsed %.3f millis | bitcoind_RPC.(%s) url.(%s)\n",count,elapsedsum/count,(OS_milliseconds() - starttime),command,url);
246             if ( retstrp != 0 )
247             {
248                 *retstrp = s.ptr;
249                 return(s.ptr);
250             }
251             return(post_process_bitcoind_RPC(debugstr,command,s.ptr,params));
252         }
253         else
254         {
255             if ( 0 && specialcase != 0 )
256                 fprintf(stderr,"<<<<<<<<<<< bitcoind_RPC: BTCD.(%s) -> (%s)\n",params,s.ptr);
257             count2++;
258             elapsedsum2 += (OS_milliseconds() - starttime);
259             if ( (count2 % 10000) == 0)
260                 printf("%d: ave %9.6f | elapsed %.3f millis | NXT calls.(%s) cmd.(%s)\n",count2,elapsedsum2/count2,(double)(OS_milliseconds() - starttime),url,command);
261             return(s.ptr);
262         }
263     }
264     printf("bitcoind_RPC: impossible case\n");
265     free(s.ptr);
266     return(0);
267 }
268
269 static size_t WriteMemoryCallback(void *ptr,size_t size,size_t nmemb,void *data)
270 {
271     size_t realsize = (size * nmemb);
272     struct MemoryStruct *mem = (struct MemoryStruct *)data;
273     mem->memory = (char *)((ptr != 0) ? realloc(mem->memory,mem->size + realsize + 1) : malloc(mem->size + realsize + 1));
274     if ( mem->memory != 0 )
275     {
276         if ( ptr != 0 )
277             memcpy(&(mem->memory[mem->size]),ptr,realsize);
278         mem->size += realsize;
279         mem->memory[mem->size] = 0;
280     }
281     //printf("got %d bytes\n",(int32_t)(size*nmemb));
282     return(realsize);
283 }
284
285 char *curl_post(CURL **cHandlep,char *url,char *userpass,char *postfields,char *hdr0,char *hdr1,char *hdr2,char *hdr3)
286 {
287     struct MemoryStruct chunk; CURL *cHandle; long code; struct curl_slist *headers = 0;
288     if ( (cHandle= *cHandlep) == NULL )
289                 *cHandlep = cHandle = curl_easy_init();
290     else curl_easy_reset(cHandle);
291     //#ifdef DEBUG
292         //curl_easy_setopt(cHandle,CURLOPT_VERBOSE, 1);
293     //#endif
294         curl_easy_setopt(cHandle,CURLOPT_USERAGENT,"mozilla/4.0");//"Mozilla/4.0 (compatible; )");
295         curl_easy_setopt(cHandle,CURLOPT_SSL_VERIFYPEER,0);
296         //curl_easy_setopt(cHandle,CURLOPT_SSLVERSION,1);
297         curl_easy_setopt(cHandle,CURLOPT_URL,url);
298         curl_easy_setopt(cHandle,CURLOPT_CONNECTTIMEOUT,10);
299     if ( userpass != 0 && userpass[0] != 0 )
300         curl_easy_setopt(cHandle,CURLOPT_USERPWD,userpass);
301         if ( postfields != 0 && postfields[0] != 0 )
302     {
303         curl_easy_setopt(cHandle,CURLOPT_POST,1);
304                 curl_easy_setopt(cHandle,CURLOPT_POSTFIELDS,postfields);
305     }
306     if ( hdr0 != NULL && hdr0[0] != 0 )
307     {
308         //printf("HDR0.(%s) HDR1.(%s) HDR2.(%s) HDR3.(%s)\n",hdr0!=0?hdr0:"",hdr1!=0?hdr1:"",hdr2!=0?hdr2:"",hdr3!=0?hdr3:"");
309         headers = curl_slist_append(headers,hdr0);
310         if ( hdr1 != 0 && hdr1[0] != 0 )
311             headers = curl_slist_append(headers,hdr1);
312         if ( hdr2 != 0 && hdr2[0] != 0 )
313             headers = curl_slist_append(headers,hdr2);
314         if ( hdr3 != 0 && hdr3[0] != 0 )
315             headers = curl_slist_append(headers,hdr3);
316     } //headers = curl_slist_append(0,"Expect:");
317     if ( headers != 0 )
318         curl_easy_setopt(cHandle,CURLOPT_HTTPHEADER,headers);
319     //res = curl_easy_perform(cHandle);
320     memset(&chunk,0,sizeof(chunk));
321     curl_easy_setopt(cHandle,CURLOPT_WRITEFUNCTION,WriteMemoryCallback);
322     curl_easy_setopt(cHandle,CURLOPT_WRITEDATA,(void *)&chunk);
323     curl_easy_perform(cHandle);
324     curl_easy_getinfo(cHandle,CURLINFO_RESPONSE_CODE,&code);
325     if ( headers != 0 )
326         curl_slist_free_all(headers);
327     if ( code != 200 )
328         printf("(%s) server responded with code %ld (%s)\n",url,code,chunk.memory);
329     return(chunk.memory);
330 }
331
332 char *komodo_issuemethod(char *userpass,char *method,char *params,uint16_t port)
333 {
334     //static void *cHandle;
335     char url[512],*retstr=0,*retstr2=0,postdata[8192];
336     if ( params == 0 || params[0] == 0 )
337         params = (char *)"[]";
338     if ( strlen(params) < sizeof(postdata)-128 )
339     {
340         sprintf(url,(char *)"http://127.0.0.1:%u",port);
341         sprintf(postdata,"{\"method\":\"%s\",\"params\":%s}",method,params);
342         //printf("postdata.(%s) USERPASS.(%s)\n",postdata,KMDUSERPASS);
343         retstr2 = bitcoind_RPC(&retstr,(char *)"debug",url,userpass,method,params);
344         //retstr = curl_post(&cHandle,url,USERPASS,postdata,0,0,0,0);
345     }
346     return(retstr2);
347 }
348
349 int32_t notarizedtxid_height(char *dest,char *txidstr,int32_t *kmdnotarized_heightp)
350 {
351     char *jsonstr,params[256],*userpass; uint16_t port; cJSON *json,*item; int32_t height = 0,txid_height = 0,txid_confirmations = 0;
352     params[0] = 0;
353     *kmdnotarized_heightp = 0;
354     if ( strcmp(dest,"KMD") == 0 )
355     {
356         port = 7771;
357         userpass = KMDUSERPASS;
358     }
359     else if ( strcmp(dest,"BTC") == 0 )
360     {
361         port = 8332;
362         userpass = BTCUSERPASS;
363     }
364     else return(0);
365     if ( userpass[0] != 0 )
366     {
367         if ( (jsonstr= komodo_issuemethod(userpass,(char *)"getinfo",params,port)) != 0 )
368         {
369             //printf("(%s)\n",jsonstr);
370             if ( (json= cJSON_Parse(jsonstr)) != 0 )
371             {
372                 if ( (item= jobj(json,(char *)"result")) != 0 )
373                 {
374                     height = jint(item,(char *)"blocks");
375                     *kmdnotarized_heightp = strcmp(dest,"KMD") == 0 ? jint(item,(char *)"notarized") : height;
376                 }
377                 free_json(json);
378             }
379             free(jsonstr);
380         }
381         sprintf(params,"[\"%s\", 1]",txidstr);
382         if ( (jsonstr= komodo_issuemethod(userpass,(char *)"getrawtransaction",params,port)) != 0 )
383         {
384             //printf("(%s)\n",jsonstr);
385             if ( (json= cJSON_Parse(jsonstr)) != 0 )
386             {
387                 if ( (item= jobj(json,(char *)"result")) != 0 )
388                 {
389                     txid_confirmations = jint(item,(char *)"confirmations");
390                     if ( txid_confirmations > 0 && height > txid_confirmations )
391                         txid_height = height - txid_confirmations;
392                     else txid_height = height;
393                     //printf("height.%d tconfs.%d txid_height.%d\n",height,txid_confirmations,txid_height);
394                 }
395                 free_json(json);
396             }
397             free(jsonstr);
398         }
399     }
400     return(txid_height);
401 }
402
403 int32_t komodo_verifynotarizedscript(int32_t height,uint8_t *script,int32_t len,uint256 NOTARIZED_HASH)
404 {
405     int32_t i; uint256 hash; char params[256];
406     for (i=0; i<32; i++)
407         ((uint8_t *)&hash)[i] = script[2+i];
408     if ( hash == NOTARIZED_HASH )
409         return(0);
410     for (i=0; i<32; i++)
411         printf("%02x",((uint8_t *)&NOTARIZED_HASH)[i]);
412     printf(" notarized, ");
413     for (i=0; i<32; i++)
414         printf("%02x",((uint8_t *)&hash)[i]);
415     printf(" opreturn from [%s] ht.%d\n",ASSETCHAINS_SYMBOL,height);
416     return(-1);
417 }
418
419 int32_t komodo_verifynotarization(char *symbol,char *dest,int32_t height,int32_t NOTARIZED_HEIGHT,uint256 NOTARIZED_HASH,uint256 NOTARIZED_DESTTXID)
420 {
421     char params[256],*jsonstr,*hexstr; uint8_t script[8192]; int32_t n,len,retval = -1; cJSON *json,*txjson,*vouts,*vout,*skey;
422     /*params[0] = '[';
423     params[1] = '"';
424     for (i=0; i<32; i++)
425         sprintf(&params[i*2 + 2],"%02x",((uint8_t *)&NOTARIZED_DESTTXID)[31-i]);
426     strcat(params,"\", 1]");*/
427     sprintf(params,"[\"%s\", 1]",NOTARIZED_DESTTXID.ToString().c_str());
428     if ( strcmp(symbol,ASSETCHAINS_SYMBOL[0]==0?(char *)"KMD":ASSETCHAINS_SYMBOL) != 0 )
429         return(0);
430     //printf("[%s] src.%s dest.%s params.[%s] ht.%d notarized.%d\n",ASSETCHAINS_SYMBOL,symbol,dest,params,height,NOTARIZED_HEIGHT);
431     if ( strcmp(dest,"KMD") == 0 )
432     {
433         if ( KMDUSERPASS[0] != 0 )
434             jsonstr = komodo_issuemethod(KMDUSERPASS,(char *)"getrawtransaction",params,7771);
435         //else jsonstr = _dex_getrawtransaction();
436         else return(0); // need universal way to issue DEX* API, since notaries mine most blocks, this ok
437     }
438     else if ( strcmp(dest,"BTC") == 0 )
439     {
440         if ( BTCUSERPASS[0] != 0 )
441         {
442             //printf("BTCUSERPASS.(%s)\n",BTCUSERPASS);
443             jsonstr = komodo_issuemethod(BTCUSERPASS,(char *)"getrawtransaction",params,8332);
444         }
445         //else jsonstr = _dex_getrawtransaction();
446         else return(0);
447     }
448     else
449     {
450         printf("[%s] verifynotarization error unexpected dest.(%s)\n",ASSETCHAINS_SYMBOL,dest);
451         return(-1);
452     }
453     if ( jsonstr != 0 )
454     {
455         if ( (json= cJSON_Parse(jsonstr)) != 0 )
456         {
457             if ( (txjson= jobj(json,(char *)"result")) != 0 && (vouts= jarray(&n,txjson,(char *)"vout")) > 0 )
458             {
459                 vout = jitem(vouts,n-1);
460                 //printf("vout.(%s)\n",jprint(vout,0));
461                 if ( (skey= jobj(vout,(char *)"scriptPubKey")) != 0 )
462                 {
463                     if ( (hexstr= jstr(skey,(char *)"hex")) != 0 )
464                     {
465                         //printf("HEX.(%s)\n",hexstr);
466                         len = strlen(hexstr) >> 1;
467                         decode_hex(script,len,hexstr);
468                         retval = komodo_verifynotarizedscript(height,script,len,NOTARIZED_HASH);
469                     }
470                 }
471             }
472             free_json(txjson);
473         }
474         free(jsonstr);
475     }
476     return(retval);
477 }
478
479 uint256 komodo_getblockhash(int32_t height)
480 {
481     uint256 hash; char params[128],*hexstr,*jsonstr; cJSON *result; int32_t i; uint8_t revbuf[32];
482     memset(&hash,0,sizeof(hash));
483     sprintf(params,"[%d]",height);
484     if ( (jsonstr= komodo_issuemethod(KMDUSERPASS,(char *)"getblockhash",params,7771)) != 0 )
485     {
486         if ( (result= cJSON_Parse(jsonstr)) != 0 )
487         {
488             if ( (hexstr= jstr(result,(char *)"result")) != 0 )
489             {
490                 if ( is_hexstr(hexstr,0) == 64 )
491                 {
492                     decode_hex(revbuf,32,hexstr);
493                     for (i=0; i<32; i++)
494                         ((uint8_t *)&hash)[i] = revbuf[31-i];
495                 }
496             }
497             free_json(result);
498         }
499         printf("KMD hash.%d (%s) %x\n",height,jsonstr,*(uint32_t *)&hash);
500         free(jsonstr);
501     }
502     return(hash);
503 }
504
505 uint256 _komodo_getblockhash(int32_t height);
506
507 uint64_t komodo_seed(int32_t height)
508 {
509     uint64_t seed = 0;
510     if ( 0 ) // problem during init time, seeds are needed for loading blockindex, so null seeds...
511     {
512         uint256 hash,zero; CBlockIndex *pindex;
513         memset(&hash,0,sizeof(hash));
514         memset(&zero,0,sizeof(zero));
515         if ( height > 10 )
516             height -= 10;
517         if ( ASSETCHAINS_SYMBOL[0] == 0 )
518             hash = _komodo_getblockhash(height);
519         if ( memcmp(&hash,&zero,sizeof(hash)) == 0 )
520             hash = komodo_getblockhash(height);
521         int32_t i;
522         for (i=0; i<32; i++)
523             printf("%02x",((uint8_t *)&hash)[i]);
524         printf(" seed.%d\n",height);
525         seed = arith_uint256(hash.GetHex()).GetLow64();
526     }
527     else
528     {
529         seed = (height << 13) ^ (height << 2);
530         seed <<= 21;
531         seed |= (height & 0xffffffff);
532         seed ^= (seed << 17) ^ (seed << 1);
533     }
534     return(seed);
535 }
536
537 uint32_t komodo_txtime(uint256 hash)
538 {
539     CTransaction tx;
540     uint256 hashBlock;
541     if (!GetTransaction(hash, tx,
542 #ifndef KOMODO_ZCASH
543                         Params().GetConsensus(),
544 #endif
545                         hashBlock, true))
546     {
547         //printf("null GetTransaction\n");
548         return(tx.nLockTime);
549     }
550     return(0);
551 }
552
553 void komodo_disconnect(CBlockIndex *pindex,CBlock& block)
554 {
555     char symbol[16],dest[16]; struct komodo_state *sp;
556     //fprintf(stderr,"disconnect ht.%d\n",pindex->nHeight);
557     komodo_init(pindex->nHeight);
558     if ( (sp= komodo_stateptr(symbol,dest)) != 0 )
559     {
560         //sp->rewinding = pindex->nHeight;
561         //fprintf(stderr,"-%d ",pindex->nHeight);
562     } else printf("komodo_disconnect: ht.%d cant get komodo_state.(%s)\n",pindex->nHeight,ASSETCHAINS_SYMBOL);
563 }
564
565
566 int32_t komodo_is_notarytx(const CTransaction& tx)
567 {
568     uint8_t *ptr,crypto777[33];
569     if ( tx.vout.size() > 0 )
570     {
571 #ifdef KOMODO_ZCASH
572         ptr = (uint8_t *)tx.vout[0].scriptPubKey.data();
573 #else
574         ptr = (uint8_t *)&tx.vout[0].scriptPubKey[0];
575 #endif
576         if ( ptr != 0 )
577         {
578             decode_hex(crypto777,33,(char *)CRYPTO777_PUBSECPSTR);
579             if ( memcmp(ptr+1,crypto777,33) == 0 )
580             {
581                 //printf("found notarytx\n");
582                 return(1);
583             }
584         }
585     }
586     return(0);
587 }
588
589 int32_t komodo_block2height(CBlock *block)
590 {
591     int32_t i,n,height = 0; uint8_t *ptr;
592     if ( block->vtx[0].vin.size() > 0 )
593     {
594 #ifdef KOMODO_ZCASH
595         ptr = (uint8_t *)block->vtx[0].vin[0].scriptSig.data();
596 #else
597         ptr = (uint8_t *)&block->vtx[0].vin[0].scriptSig[0];
598 #endif
599         if ( ptr != 0 && block->vtx[0].vin[0].scriptSig.size() > 5 )
600         {
601             //for (i=0; i<6; i++)
602             //    printf("%02x",ptr[i]);
603             n = ptr[0];
604             for (i=0; i<n; i++)
605             {
606                 //03bb81000101(bb 187) (81 48001) (00 12288256)  <- coinbase.6 ht.12288256
607                 height += ((uint32_t)ptr[i+1] << (i*8));
608                 //printf("(%02x %x %d) ",ptr[i+1],((uint32_t)ptr[i+1] << (i*8)),height);
609             }
610             //printf(" <- coinbase.%d ht.%d\n",(int32_t)block->vtx[0].vin[0].scriptSig.size(),height);
611         }
612         //komodo_init(height);
613     }
614     return(height);
615 }
616
617 void komodo_block2pubkey33(uint8_t *pubkey33,CBlock& block)
618 {
619     int32_t n;
620     memset(pubkey33,0,33);
621     if ( block.vtx[0].vout.size() > 0 )
622     {
623 #ifdef KOMODO_ZCASH
624         uint8_t *ptr = (uint8_t *)block.vtx[0].vout[0].scriptPubKey.data();
625 #else
626         uint8_t *ptr = (uint8_t *)&block.vtx[0].vout[0].scriptPubKey[0];
627 #endif
628         //komodo_init(0);
629         n = block.vtx[0].vout[0].scriptPubKey.size();
630         if ( n == 35 )
631             memcpy(pubkey33,ptr+1,33);
632     }
633 }
634
635 int32_t komodo_blockload(CBlock& block,CBlockIndex *pindex)
636 {
637     block.SetNull();
638     // Open history file to read
639     CAutoFile filein(OpenBlockFile(pindex->GetBlockPos(),true),SER_DISK,CLIENT_VERSION);
640     if (filein.IsNull())
641         return(-1);
642     // Read block
643     try { filein >> block; }
644     catch (const std::exception& e)
645     {
646         fprintf(stderr,"readblockfromdisk err B\n");
647         return(-1);
648     }
649     return(0);
650 }
651
652 CBlockIndex *komodo_chainactive(int32_t height)
653 {
654     if ( chainActive.Tip() != 0 )
655     {
656         if ( height <= chainActive.Tip()->nHeight )
657             return(chainActive[height]);
658         // else fprintf(stderr,"komodo_chainactive height %d > active.%d\n",height,chainActive.Tip()->nHeight);
659     }
660     //fprintf(stderr,"komodo_chainactive null chainActive.Tip() height %d\n",height);
661     return(0);
662 }
663
664 uint32_t komodo_heightstamp(int32_t height)
665 {
666     CBlockIndex *ptr;
667     if ( height > 0 && (ptr= komodo_chainactive(height)) != 0 )
668         return(ptr->nTime);
669     else fprintf(stderr,"komodo_heightstamp null ptr for block.%d\n",height);
670     return(0);
671 }
672
673 void komodo_index2pubkey33(uint8_t *pubkey33,CBlockIndex *pindex,int32_t height)
674 {
675     CBlock block;
676     //komodo_init(height);
677     memset(pubkey33,0,33);
678     if ( pindex != 0 )
679     {
680         if ( komodo_blockload(block,pindex) == 0 )
681             komodo_block2pubkey33(pubkey33,block);
682     }
683     else
684     {
685         // height -> pubkey33
686         //printf("extending chaintip komodo_index2pubkey33 height.%d need to get pubkey33\n",height);
687     }
688 }
689
690 void komodo_connectpindex(CBlockIndex *pindex)
691 {
692     CBlock block;
693     if ( komodo_blockload(block,pindex) == 0 )
694         komodo_connectblock(pindex,block);
695 }
696
697 int32_t komodo_notaries(uint8_t pubkeys[64][33],int32_t height);
698 int32_t komodo_electednotary(uint8_t *pubkey33,int32_t height);
699
700 int8_t komodo_minerid(int32_t height,uint8_t *pubkey33)
701 {
702     int32_t num,i; CBlockIndex *pindex; uint8_t _pubkey33[33],pubkeys[64][33];
703     if ( pubkey33 == 0 && (pindex= chainActive[height]) != 0 )
704     {
705         if ( pubkey33 == 0 )
706         {
707             pubkey33 = _pubkey33;
708             komodo_index2pubkey33(pubkey33,pindex,height);
709         }
710         if ( (num= komodo_notaries(pubkeys,height)) > 0 )
711         {
712             for (i=0; i<num; i++)
713                 if ( memcmp(pubkeys[i],pubkey33,33) == 0 )
714                     return(i);
715         }
716     }
717     return(komodo_electednotary(pubkey33,height));
718 }
719
720 int32_t komodo_eligiblenotary(uint8_t pubkeys[66][33],int32_t *mids,int32_t *nonzpkeysp,int32_t height)
721 {
722     int32_t i,j,duplicate; CBlockIndex *pindex; uint8_t pubkey33[33];
723     memset(mids,-1,sizeof(*mids)*66);
724     for (i=duplicate=0; i<66; i++)
725     {
726         if ( (pindex= komodo_chainactive(height-i)) != 0 )
727         {
728             komodo_index2pubkey33(pubkey33,pindex,height-i);
729             for (j=0; j<33; j++)
730                 pubkeys[i][j] = pubkey33[j];
731             if ( (mids[i]= komodo_minerid(height-i,pubkey33)) >= 0 )
732             {
733                 //mids[i] = *(int32_t *)pubkey33;
734                 (*nonzpkeysp)++;
735             }
736             if ( mids[0] >= 0 && i > 0 && mids[i] == mids[0] )
737                 duplicate++;
738         }
739     }
740     if ( i == 66 && duplicate == 0 && (height > 186233 || *nonzpkeysp > 0) )
741         return(1);
742     else return(0);
743 }
744
745 int32_t komodo_minerids(uint8_t *minerids,int32_t height,int32_t width)
746 {
747     int32_t i,n=0;
748     for (i=0; i<width; i++,n++)
749     {
750         if ( height-i <= 0 )
751             break;
752         minerids[i] = komodo_minerid(height - i,0);
753     }
754     return(n);
755 }
756
757 int32_t komodo_is_special(int32_t height,uint8_t pubkey33[33])
758 {
759     int32_t i,notaryid=0,minerid,limit,nid; uint8_t _pubkey33[33];
760     if ( height >= 225000 )
761         komodo_chosennotary(&notaryid,height,_pubkey33);
762     if ( height >= 34000 && notaryid >= 0 )
763     {
764         if ( height < 79693 )
765             limit = 64;
766         else if ( height < 82000 )
767             limit = 8;
768         else limit = 66;
769         for (i=1; i<limit; i++)
770         {
771             komodo_chosennotary(&nid,height-i,_pubkey33);
772             if ( nid == notaryid ) //komodo_minerid(height-i,_pubkey33)
773             {
774                 if ( (0) && notaryid > 0 )
775                     fprintf(stderr,"ht.%d notaryid.%d already mined -i.%d nid.%d\n",height,notaryid,i,nid);
776                 if ( height > 225000 )
777                     return(-1);
778             }
779         }
780         //fprintf(stderr,"special notaryid.%d ht.%d limit.%d\n",notaryid,height,limit);
781         return(1);
782     }
783     return(0);
784 }
785
786 int32_t komodo_checkpoint(int32_t *notarized_heightp,int32_t nHeight,uint256 hash)
787 {
788     int32_t notarized_height; uint256 notarized_hash,notarized_desttxid; CBlockIndex *notary; CBlockIndex *pindex;
789     if ( (pindex= chainActive.Tip()) == 0 )
790         return(-1);
791     notarized_height = komodo_notarizeddata(pindex->nHeight,&notarized_hash,&notarized_desttxid);
792     *notarized_heightp = notarized_height;
793     if ( notarized_height >= 0 && notarized_height <= pindex->nHeight && (notary= mapBlockIndex[notarized_hash]) != 0 )
794     {
795         //printf("nHeight.%d -> (%d %s)\n",pindex->Tip()->nHeight,notarized_height,notarized_hash.ToString().c_str());
796         if ( notary->nHeight == notarized_height ) // if notarized_hash not in chain, reorg
797         {
798             if ( nHeight < notarized_height )
799             {
800                 fprintf(stderr,"nHeight.%d < NOTARIZED_HEIGHT.%d\n",nHeight,notarized_height);
801                 return(-1);
802             }
803             else if ( nHeight == notarized_height && memcmp(&hash,&notarized_hash,sizeof(hash)) != 0 )
804             {
805                 fprintf(stderr,"nHeight.%d == NOTARIZED_HEIGHT.%d, diff hash\n",nHeight,notarized_height);
806                 return(-1);
807             }
808         } else fprintf(stderr,"unexpected error notary_hash %s ht.%d at ht.%d\n",notarized_hash.ToString().c_str(),notarized_height,notary->nHeight);
809     } else if ( notarized_height > 0 && notarized_height != 73880 && notarized_height >= 170000 )
810         fprintf(stderr,"[%s] couldnt find notarized.(%s %d) ht.%d\n",ASSETCHAINS_SYMBOL,notarized_hash.ToString().c_str(),notarized_height,pindex->nHeight);
811     return(0);
812 }
813
814 uint32_t komodo_interest_args(uint32_t *txheighttimep,int32_t *txheightp,uint32_t *tiptimep,uint64_t *valuep,uint256 hash,int32_t n)
815 {
816     LOCK(cs_main);
817     CTransaction tx; uint256 hashBlock; CBlockIndex *pindex,*tipindex;
818     *txheighttimep = *txheightp = *tiptimep = 0;
819     *valuep = 0;
820     if ( !GetTransaction(hash,tx,hashBlock,true) )
821         return(0);
822     uint32_t locktime = 0;
823     if ( n < tx.vout.size() )
824     {
825         if ( (pindex= mapBlockIndex[hashBlock]) != 0 && (tipindex= chainActive.Tip()) != 0 )
826         {
827             *valuep = tx.vout[n].nValue;
828             *txheightp = pindex->nHeight;
829             *txheighttimep = pindex->nTime;
830             *tiptimep = tipindex->nTime;
831             locktime = tx.nLockTime;
832             //fprintf(stderr,"tx locktime.%u %.8f height.%d | tiptime.%u\n",locktime,(double)*valuep/COIN,*txheightp,*tiptimep);
833         }
834     }
835     return(locktime);
836 }
837
838 uint64_t komodo_interest(int32_t txheight,uint64_t nValue,uint32_t nLockTime,uint32_t tiptime);
839 uint64_t komodo_accrued_interest(int32_t *txheightp,uint32_t *locktimep,uint256 hash,int32_t n,int32_t checkheight,uint64_t checkvalue)
840 {
841     uint64_t value; uint32_t tiptime,txheighttimep;
842     if ( (*locktimep= komodo_interest_args(&txheighttimep,txheightp,&tiptime,&value,hash,n)) != 0 )
843     {
844         if ( (checkvalue == 0 || value == checkvalue) && (checkheight == 0 || *txheightp == checkheight) )
845             return(komodo_interest(*txheightp,value,*locktimep,tiptime));
846         //fprintf(stderr,"nValue %llu lock.%u:%u nTime.%u -> %llu\n",(long long)coins.vout[n].nValue,coins.nLockTime,timestamp,pindex->nTime,(long long)interest);
847         else fprintf(stderr,"komodo_accrued_interest value mismatch %llu vs %llu or height mismatch %d vs %d\n",(long long)value,(long long)checkvalue,*txheightp,checkheight);
848     }
849     return(0);
850 }
851
852 int32_t komodo_isrealtime(int32_t *kmdheightp)
853 {
854     struct komodo_state *sp; CBlockIndex *pindex;
855     if ( (sp= komodo_stateptrget((char *)"KMD")) != 0 )
856         *kmdheightp = sp->CURRENT_HEIGHT;
857     else *kmdheightp = 0;
858     if ( (pindex= chainActive.Tip()) != 0 && pindex->nHeight >= (int32_t)komodo_longestchain() )
859         return(1);
860     else return(0);
861 }
862
863 int32_t komodo_validate_interest(const CTransaction &tx,int32_t txheight,uint32_t nTime,int32_t dispflag)
864 {
865     uint32_t cmptime = nTime;
866     if ( KOMODO_REWIND == 0 && ASSETCHAINS_SYMBOL[0] == 0 && (int64_t)tx.nLockTime >= LOCKTIME_THRESHOLD ) //1473793441 )
867     {
868         if ( txheight > 246748 )
869         {
870             if ( txheight < 247205 )
871                 cmptime -= 16000;
872             if ( (int64_t)tx.nLockTime < cmptime-3600 )
873             {
874                 if ( tx.nLockTime != 1477258935 || dispflag != 0 )
875                 {
876                     //fprintf(stderr,"komodo_validate_interest.%d reject.%d [%d] locktime %u cmp2.%u\n",dispflag,txheight,(int32_t)(tx.nLockTime - (cmptime-3600)),(uint32_t)tx.nLockTime,cmptime);
877                 }
878                 return(-1);
879             }
880             if ( 0 && dispflag != 0 )
881                 fprintf(stderr,"validateinterest.%d accept.%d [%d] locktime %u cmp2.%u\n",dispflag,(int32_t)txheight,(int32_t)(tx.nLockTime - (cmptime-3600)),(int32_t)tx.nLockTime,cmptime);
882         }
883     }
884     return(0);
885 }
886
This page took 0.075294 seconds and 4 git commands to generate.