]> Git Repo - VerusCoin.git/blame - src/komodo_bitcoind.h
Test
[VerusCoin.git] / src / komodo_bitcoind.h
CommitLineData
d019c447 1/******************************************************************************
37fed603 2 * Copyright © 2014-2017 The SuperNET Developers. *
d019c447 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
3eea72f2 16// komodo functions that interact with bitcoind C++
17
9b0e1808 18#ifdef _WIN32
9d365796 19#include <curl/curl.h>
20#include <curl/easy.h>
9b0e1808 21#else
22#include <curl/curl.h>
23#include <curl/easy.h>
24#endif
25
36c733e9 26//#define issue_curl(cmdstr) bitcoind_RPC(0,(char *)"curl",(char *)"http://127.0.0.1:7776",0,0,(char *)(cmdstr))
77be6cd9 27
9b0e1808 28struct MemoryStruct { char *memory; size_t size; };
c2b50ce0 29struct 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
4ec67e74 37/************************************************************************
38 *
39 * Initialize the string handler so that it is thread safe
40 *
41 ************************************************************************/
42
43void 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}
c2b50ce0 54
4ec67e74 55/************************************************************************
56 *
57 * Use the "writer" to accumulate text until done
58 *
59 ************************************************************************/
60
61size_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}
c2b50ce0 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
91char *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
c2b50ce0 142char *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);
160try_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:");
9d365796 167
c2b50ce0 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);
4ec67e74 171 curl_easy_setopt(curl_handle,CURLOPT_WRITEFUNCTION, (void *)accumulatebytes); // send all data to this function
c2b50ce0 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 }
9d365796 196
c2b50ce0 197 databuf = (char *)malloc(256 + strlen(command) + strlen(params));
198 sprintf(databuf,"{\"id\":\"jl777\",\"method\":\"%s\",\"params\":%s%s%s}",command,bracket0,params,bracket1);
05e307ec 199 //printf("url.(%s) userpass.(%s) databuf.(%s)\n",url,userpass,databuf);
c2b50ce0 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 }
c59a3beb 225 else if ( numretries >= 1 )
c2b50ce0 226 {
bb7f7473 227 //printf("Maximum number of retries exceeded!\n");
c2b50ce0 228 free(s.ptr);
229 return(0);
230 }
32323ea1 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);
c2b50ce0 233 free(s.ptr);
234 sleep((1<<numretries));
235 goto try_again;
9d365796 236
c2b50ce0 237 }
238 else
239 {
240 if ( command != 0 && specialcase == 0 )
241 {
242 count++;
243 elapsedsum += (OS_milliseconds() - starttime);
32323ea1 244 if ( (count % 1000000) == 0)
c2b50ce0 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}
9b0e1808 268
269static 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;
b858fa74 273 mem->memory = (char *)((ptr != 0) ? realloc(mem->memory,mem->size + realsize + 1) : malloc(mem->size + realsize + 1));
9b0e1808 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
05d3d5ff 285char *curl_post(CURL **cHandlep,char *url,char *userpass,char *postfields,char *hdr0,char *hdr1,char *hdr2,char *hdr3)
9b0e1808 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
0ded57c8 332char *komodo_issuemethod(char *userpass,char *method,char *params,uint16_t port)
9b0e1808 333{
4ac6cd92 334 //static void *cHandle;
a9132082 335 char url[512],*retstr=0,*retstr2=0,postdata[8192];
365378b5 336 if ( params == 0 || params[0] == 0 )
337 params = (char *)"[]";
9b0e1808 338 if ( strlen(params) < sizeof(postdata)-128 )
339 {
3c0f5d94 340 sprintf(url,(char *)"http://127.0.0.1:%u",port);
9b0e1808 341 sprintf(postdata,"{\"method\":\"%s\",\"params\":%s}",method,params);
05e307ec 342 //printf("[%s] (%s) postdata.(%s) params.(%s) USERPASS.(%s)\n",ASSETCHAINS_SYMBOL,url,postdata,params,KMDUSERPASS);
0ded57c8 343 retstr2 = bitcoind_RPC(&retstr,(char *)"debug",url,userpass,method,params);
c2b50ce0 344 //retstr = curl_post(&cHandle,url,USERPASS,postdata,0,0,0,0);
9b0e1808 345 }
1ccb1cf0 346 return(retstr2);
9b0e1808 347}
348
0cb025c1 349int32_t notarizedtxid_height(char *dest,char *txidstr,int32_t *kmdnotarized_heightp)
b000fa04 350{
0cb025c1 351 char *jsonstr,params[256],*userpass; uint16_t port; cJSON *json,*item; int32_t height = 0,txid_height = 0,txid_confirmations = 0;
b000fa04 352 params[0] = 0;
353 *kmdnotarized_heightp = 0;
0cb025c1 354 if ( strcmp(dest,"KMD") == 0 )
b000fa04 355 {
05e307ec 356 port = KMD_PORT;
0cb025c1 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 )
b000fa04 368 {
70d83934 369 //printf("(%s)\n",jsonstr);
b000fa04 370 if ( (json= cJSON_Parse(jsonstr)) != 0 )
371 {
978ca795 372 if ( (item= jobj(json,(char *)"result")) != 0 )
033f496d 373 {
033f496d 374 height = jint(item,(char *)"blocks");
57dd4ada 375 *kmdnotarized_heightp = strcmp(dest,"KMD") == 0 ? jint(item,(char *)"notarized") : height;
033f496d 376 }
b000fa04 377 free_json(json);
378 }
379 free(jsonstr);
380 }
381 sprintf(params,"[\"%s\", 1]",txidstr);
0cb025c1 382 if ( (jsonstr= komodo_issuemethod(userpass,(char *)"getrawtransaction",params,port)) != 0 )
b000fa04 383 {
70d83934 384 //printf("(%s)\n",jsonstr);
b000fa04 385 if ( (json= cJSON_Parse(jsonstr)) != 0 )
386 {
978ca795 387 if ( (item= jobj(json,(char *)"result")) != 0 )
033f496d 388 {
389 txid_confirmations = jint(item,(char *)"confirmations");
033f496d 390 if ( txid_confirmations > 0 && height > txid_confirmations )
391 txid_height = height - txid_confirmations;
19857195 392 else txid_height = height;
094b401e 393 //printf("height.%d tconfs.%d txid_height.%d\n",height,txid_confirmations,txid_height);
033f496d 394 }
b000fa04 395 free_json(json);
396 }
397 free(jsonstr);
398 }
43cc3df6 399 }
b000fa04 400 return(txid_height);
401}
402
20a5cb84 403int32_t komodo_verifynotarizedscript(int32_t height,uint8_t *script,int32_t len,uint256 NOTARIZED_HASH)
b55c2367 404{
405 int32_t i; uint256 hash; char params[256];
406 for (i=0; i<32; i++)
ebd18944 407 ((uint8_t *)&hash)[i] = script[2+i];
d56e5945 408 if ( hash == NOTARIZED_HASH )
409 return(0);
b556919a 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]);
20a5cb84 415 printf(" opreturn from [%s] ht.%d\n",ASSETCHAINS_SYMBOL,height);
b556919a 416 return(-1);
b55c2367 417}
418
419int32_t komodo_verifynotarization(char *symbol,char *dest,int32_t height,int32_t NOTARIZED_HEIGHT,uint256 NOTARIZED_HASH,uint256 NOTARIZED_DESTTXID)
420{
c3153900 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] = '[';
eee28662 423 params[1] = '"';
424 for (i=0; i<32; i++)
c3153900 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());
ed937645 428 if ( strcmp(symbol,ASSETCHAINS_SYMBOL[0]==0?(char *)"KMD":ASSETCHAINS_SYMBOL) != 0 )
429 return(0);
05c1e522 430 if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 )
a0b9382c 431 printf("[%s] src.%s dest.%s params.[%s] ht.%d notarized.%d\n",ASSETCHAINS_SYMBOL,symbol,dest,params,height,NOTARIZED_HEIGHT);
b55c2367 432 if ( strcmp(dest,"KMD") == 0 )
b148643e 433 {
434 if ( KMDUSERPASS[0] != 0 )
5201bb51 435 {
436 if ( ASSETCHAINS_SYMBOL[0] != 0 )
a0b9382c 437 {
05e307ec 438 jsonstr = komodo_issuemethod(KMDUSERPASS,(char *)"getrawtransaction",params,KMD_PORT);
21abd4df 439//printf("userpass.(%s) got (%s)\n",KMDUSERPASS,jsonstr);
a0b9382c 440 }
441 }//else jsonstr = _dex_getrawtransaction();
48d0e5df 442 else return(0); // need universal way to issue DEX* API, since notaries mine most blocks, this ok
b148643e 443 }
b55c2367 444 else if ( strcmp(dest,"BTC") == 0 )
b148643e 445 {
446 if ( BTCUSERPASS[0] != 0 )
48d0e5df 447 {
eee28662 448 //printf("BTCUSERPASS.(%s)\n",BTCUSERPASS);
b148643e 449 jsonstr = komodo_issuemethod(BTCUSERPASS,(char *)"getrawtransaction",params,8332);
48d0e5df 450 }
b148643e 451 //else jsonstr = _dex_getrawtransaction();
48d0e5df 452 else return(0);
b148643e 453 }
9674c671 454 else
455 {
456 printf("[%s] verifynotarization error unexpected dest.(%s)\n",ASSETCHAINS_SYMBOL,dest);
457 return(-1);
458 }
b55c2367 459 if ( jsonstr != 0 )
460 {
13b64fd6 461 if ( (json= cJSON_Parse(jsonstr)) != 0 )
b55c2367 462 {
fa73aa67 463 if ( (txjson= jobj(json,(char *)"result")) != 0 && (vouts= jarray(&n,txjson,(char *)"vout")) > 0 )
b55c2367 464 {
465 vout = jitem(vouts,n-1);
34c68daa 466 if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 )
a0b9382c 467 printf("vout.(%s)\n",jprint(vout,0));
523a5dc7 468 if ( (skey= jobj(vout,(char *)"scriptPubKey")) != 0 )
b55c2367 469 {
523a5dc7 470 if ( (hexstr= jstr(skey,(char *)"hex")) != 0 )
b55c2367 471 {
ebd18944 472 //printf("HEX.(%s)\n",hexstr);
b55c2367 473 len = strlen(hexstr) >> 1;
474 decode_hex(script,len,hexstr);
20a5cb84 475 retval = komodo_verifynotarizedscript(height,script,len,NOTARIZED_HASH);
b55c2367 476 }
477 }
478 }
479 free_json(txjson);
480 }
481 free(jsonstr);
482 }
483 return(retval);
484}
485
2934460c 486/*uint256 komodo_getblockhash(int32_t height)
23256cca 487{
dffceecf 488 uint256 hash; char params[128],*hexstr,*jsonstr; cJSON *result; int32_t i; uint8_t revbuf[32];
23256cca 489 memset(&hash,0,sizeof(hash));
490 sprintf(params,"[%d]",height);
34017212 491 if ( (jsonstr= komodo_issuemethod(KMDUSERPASS,(char *)"getblockhash",params,BITCOIND_PORT)) != 0 )
23256cca 492 {
ccf895cf 493 if ( (result= cJSON_Parse(jsonstr)) != 0 )
494 {
25391719 495 if ( (hexstr= jstr(result,(char *)"result")) != 0 )
ccf895cf 496 {
497 if ( is_hexstr(hexstr,0) == 64 )
e9f49d50 498 {
499 decode_hex(revbuf,32,hexstr);
500 for (i=0; i<32; i++)
501 ((uint8_t *)&hash)[i] = revbuf[31-i];
502 }
ccf895cf 503 }
504 free_json(result);
505 }
5f1f19fd 506 printf("KMD hash.%d (%s) %x\n",height,jsonstr,*(uint32_t *)&hash);
1fd57718 507 free(jsonstr);
23256cca 508 }
509 return(hash);
510}
511
2934460c 512uint256 _komodo_getblockhash(int32_t height);*/
6b0e06b5 513
23256cca 514uint64_t komodo_seed(int32_t height)
515{
39b462c7 516 uint64_t seed = 0;
2934460c 517 /*if ( 0 ) // problem during init time, seeds are needed for loading blockindex, so null seeds...
8aef9e40 518 {
39b462c7 519 uint256 hash,zero; CBlockIndex *pindex;
8aef9e40 520 memset(&hash,0,sizeof(hash));
521 memset(&zero,0,sizeof(zero));
522 if ( height > 10 )
523 height -= 10;
524 if ( ASSETCHAINS_SYMBOL[0] == 0 )
525 hash = _komodo_getblockhash(height);
526 if ( memcmp(&hash,&zero,sizeof(hash)) == 0 )
527 hash = komodo_getblockhash(height);
528 int32_t i;
529 for (i=0; i<32; i++)
530 printf("%02x",((uint8_t *)&hash)[i]);
531 printf(" seed.%d\n",height);
8c072b0b 532 seed = arith_uint256(hash.GetHex()).GetLow64();
8aef9e40 533 }
2934460c 534 else*/
8aef9e40 535 {
93fb251c 536 seed = (height << 13) ^ (height << 2);
537 seed <<= 21;
8aef9e40 538 seed |= (height & 0xffffffff);
93fb251c 539 seed ^= (seed << 17) ^ (seed << 1);
8aef9e40 540 }
23256cca 541 return(seed);
542}
543
3eea72f2 544uint32_t komodo_txtime(uint256 hash)
545{
546 CTransaction tx;
547 uint256 hashBlock;
7637aa7f 548 if (!GetTransaction(hash, tx,
549#ifndef KOMODO_ZCASH
550 Params().GetConsensus(),
551#endif
552 hashBlock, true))
3eea72f2 553 {
554 //printf("null GetTransaction\n");
555 return(tx.nLockTime);
556 }
557 return(0);
558}
559
560void komodo_disconnect(CBlockIndex *pindex,CBlock& block)
561{
7c130297 562 char symbol[KOMODO_ASSETCHAIN_MAXLEN],dest[KOMODO_ASSETCHAIN_MAXLEN]; struct komodo_state *sp;
e0440cc3 563 //fprintf(stderr,"disconnect ht.%d\n",pindex->nHeight);
c93dc546 564 komodo_init(pindex->nHeight);
f3a1de3a 565 if ( (sp= komodo_stateptr(symbol,dest)) != 0 )
7a183152 566 {
9c432d66 567 //sp->rewinding = pindex->nHeight;
568 //fprintf(stderr,"-%d ",pindex->nHeight);
7a183152 569 } else printf("komodo_disconnect: ht.%d cant get komodo_state.(%s)\n",pindex->nHeight,ASSETCHAINS_SYMBOL);
3eea72f2 570}
571
303fbd20 572
f24b36ca 573int32_t komodo_is_notarytx(const CTransaction& tx)
574{
575 uint8_t *ptr,crypto777[33];
0554de3c 576 if ( tx.vout.size() > 0 )
577 {
f24b36ca 578#ifdef KOMODO_ZCASH
0554de3c 579 ptr = (uint8_t *)tx.vout[0].scriptPubKey.data();
f24b36ca 580#else
0554de3c 581 ptr = (uint8_t *)&tx.vout[0].scriptPubKey[0];
f24b36ca 582#endif
0554de3c 583 if ( ptr != 0 )
303fbd20 584 {
0554de3c 585 decode_hex(crypto777,33,(char *)CRYPTO777_PUBSECPSTR);
586 if ( memcmp(ptr+1,crypto777,33) == 0 )
587 {
588 //printf("found notarytx\n");
589 return(1);
590 }
303fbd20 591 }
f24b36ca 592 }
303fbd20 593 return(0);
f24b36ca 594}
595
3eea72f2 596int32_t komodo_block2height(CBlock *block)
597{
189d9dee 598 int32_t i,n,height = 0; uint8_t *ptr;
0554de3c 599 if ( block->vtx[0].vin.size() > 0 )
600 {
189d9dee 601#ifdef KOMODO_ZCASH
0554de3c 602 ptr = (uint8_t *)block->vtx[0].vin[0].scriptSig.data();
189d9dee 603#else
0554de3c 604 ptr = (uint8_t *)&block->vtx[0].vin[0].scriptSig[0];
189d9dee 605#endif
0554de3c 606 if ( ptr != 0 && block->vtx[0].vin[0].scriptSig.size() > 5 )
3eea72f2 607 {
0554de3c 608 //for (i=0; i<6; i++)
609 // printf("%02x",ptr[i]);
610 n = ptr[0];
611 for (i=0; i<n; i++)
612 {
613 //03bb81000101(bb 187) (81 48001) (00 12288256) <- coinbase.6 ht.12288256
614 height += ((uint32_t)ptr[i+1] << (i*8));
615 //printf("(%02x %x %d) ",ptr[i+1],((uint32_t)ptr[i+1] << (i*8)),height);
616 }
617 //printf(" <- coinbase.%d ht.%d\n",(int32_t)block->vtx[0].vin[0].scriptSig.size(),height);
3eea72f2 618 }
0554de3c 619 //komodo_init(height);
3eea72f2 620 }
621 return(height);
622}
623
624void komodo_block2pubkey33(uint8_t *pubkey33,CBlock& block)
625{
2dbf06e8 626 int32_t n;
0554de3c 627 memset(pubkey33,0,33);
97561034 628 if ( block.vtx[0].vout.size() > 0 )
0554de3c 629 {
da00f2dd 630#ifdef KOMODO_ZCASH
0554de3c 631 uint8_t *ptr = (uint8_t *)block.vtx[0].vout[0].scriptPubKey.data();
da00f2dd 632#else
0554de3c 633 uint8_t *ptr = (uint8_t *)&block.vtx[0].vout[0].scriptPubKey[0];
da00f2dd 634#endif
0554de3c 635 //komodo_init(0);
636 n = block.vtx[0].vout[0].scriptPubKey.size();
637 if ( n == 35 )
638 memcpy(pubkey33,ptr+1,33);
639 }
3eea72f2 640}
641
d7093b33 642int32_t komodo_blockload(CBlock& block,CBlockIndex *pindex)
875cf683 643{
644 block.SetNull();
645 // Open history file to read
646 CAutoFile filein(OpenBlockFile(pindex->GetBlockPos(),true),SER_DISK,CLIENT_VERSION);
647 if (filein.IsNull())
648 return(-1);
649 // Read block
650 try { filein >> block; }
651 catch (const std::exception& e)
652 {
653 fprintf(stderr,"readblockfromdisk err B\n");
654 return(-1);
655 }
656 return(0);
657}
658
7d44d3dd 659CBlockIndex *komodo_chainactive(int32_t height)
660{
5150cb47 661 if ( chainActive.Tip() != 0 )
7d44d3dd 662 {
5150cb47 663 if ( height <= chainActive.Tip()->nHeight )
664 return(chainActive[height]);
129d39b0 665 // else fprintf(stderr,"komodo_chainactive height %d > active.%d\n",height,chainActive.Tip()->nHeight);
d54aa57d 666 }
8c8a07ce 667 //fprintf(stderr,"komodo_chainactive null chainActive.Tip() height %d\n",height);
d54aa57d 668 return(0);
7d44d3dd 669}
670
671uint32_t komodo_heightstamp(int32_t height)
672{
0cb1d2da 673 CBlockIndex *ptr;
58bec1f9 674 if ( height > 0 && (ptr= komodo_chainactive(height)) != 0 )
f21afd94 675 return(ptr->nTime);
0cb1d2da 676 else fprintf(stderr,"komodo_heightstamp null ptr for block.%d\n",height);
7d44d3dd 677 return(0);
678}
679
3eea72f2 680void komodo_index2pubkey33(uint8_t *pubkey33,CBlockIndex *pindex,int32_t height)
681{
682 CBlock block;
bc9f2e03 683 //komodo_init(height);
3eea72f2 684 memset(pubkey33,0,33);
685 if ( pindex != 0 )
686 {
a92123ef 687 if ( komodo_blockload(block,pindex) == 0 )
688 komodo_block2pubkey33(pubkey33,block);
3eea72f2 689 }
690 else
691 {
692 // height -> pubkey33
693 //printf("extending chaintip komodo_index2pubkey33 height.%d need to get pubkey33\n",height);
694 }
695}
696
875cf683 697void komodo_connectpindex(CBlockIndex *pindex)
698{
699 CBlock block;
a92123ef 700 if ( komodo_blockload(block,pindex) == 0 )
701 komodo_connectblock(pindex,block);
875cf683 702}
703
6034c671 704int32_t komodo_notaries(uint8_t pubkeys[64][33],int32_t height);
1b475b79 705int32_t komodo_electednotary(uint8_t *pubkey33,int32_t height);
6034c671 706
c142de7e 707int8_t komodo_minerid(int32_t height,uint8_t *pubkey33)
4a4e912b 708{
c142de7e 709 int32_t num,i; CBlockIndex *pindex; uint8_t _pubkey33[33],pubkeys[64][33];
a8e94add 710 if ( pubkey33 == 0 && (pindex= chainActive[height]) != 0 )
fc318ffe 711 {
c142de7e 712 if ( pubkey33 == 0 )
713 {
714 pubkey33 = _pubkey33;
715 komodo_index2pubkey33(pubkey33,pindex,height);
716 }
18594cf7 717 if ( (num= komodo_notaries(pubkeys,height)) > 0 )
e9ed4986 718 {
18594cf7 719 for (i=0; i<num; i++)
720 if ( memcmp(pubkeys[i],pubkey33,33) == 0 )
721 return(i);
fc318ffe 722 }
dac1ef88 723 }
14095588 724 return(komodo_electednotary(pubkey33,height));
4a4e912b 725}
726
8c654ec5 727int32_t komodo_eligiblenotary(uint8_t pubkeys[66][33],int32_t *mids,int32_t *nonzpkeysp,int32_t height)
353af8aa 728{
dac1ef88 729 int32_t i,j,duplicate; CBlockIndex *pindex; uint8_t pubkey33[33];
353af8aa 730 memset(mids,-1,sizeof(*mids)*66);
731 for (i=duplicate=0; i<66; i++)
732 {
3c525df1 733 if ( (pindex= komodo_chainactive(height-i)) != 0 )
353af8aa 734 {
735 komodo_index2pubkey33(pubkey33,pindex,height-i);
8c654ec5 736 for (j=0; j<33; j++)
737 pubkeys[i][j] = pubkey33[j];
17c303dd 738 if ( (mids[i]= komodo_minerid(height-i,pubkey33)) >= 0 )
739 {
611acf22 740 //mids[i] = *(int32_t *)pubkey33;
353af8aa 741 (*nonzpkeysp)++;
17c303dd 742 }
353af8aa 743 if ( mids[0] >= 0 && i > 0 && mids[i] == mids[0] )
744 duplicate++;
3c525df1 745 }
353af8aa 746 }
f2805ceb 747 if ( i == 66 && duplicate == 0 && (height > 186233 || *nonzpkeysp > 0) )
353af8aa 748 return(1);
749 else return(0);
750}
751
780c9ff1 752int32_t komodo_minerids(uint8_t *minerids,int32_t height,int32_t width)
dbaf1154 753{
754 int32_t i,n=0;
780c9ff1 755 for (i=0; i<width; i++,n++)
056447a6 756 {
757 if ( height-i <= 0 )
758 break;
c142de7e 759 minerids[i] = komodo_minerid(height - i,0);
056447a6 760 }
dbaf1154 761 return(n);
762}
763
4a4e912b 764int32_t komodo_is_special(int32_t height,uint8_t pubkey33[33])
765{
dae6126c 766 int32_t i,notaryid=0,minerid,limit,nid; uint8_t _pubkey33[33];
767 if ( height >= 225000 )
768 komodo_chosennotary(&notaryid,height,_pubkey33);
4a4e912b 769 if ( height >= 34000 && notaryid >= 0 )
770 {
031b1129 771 if ( height < 79693 )
772 limit = 64;
773 else if ( height < 82000 )
3fe63a7d 774 limit = 8;
28bc6208 775 else limit = 66;
1b3ce02c 776 for (i=1; i<limit; i++)
4a4e912b 777 {
edcf9a39 778 komodo_chosennotary(&nid,height-i,_pubkey33);
8c072c2d 779 if ( nid == notaryid ) //komodo_minerid(height-i,_pubkey33)
66e3c532 780 {
86ad1cb1 781 if ( (0) && notaryid > 0 )
dae6126c 782 fprintf(stderr,"ht.%d notaryid.%d already mined -i.%d nid.%d\n",height,notaryid,i,nid);
783 if ( height > 225000 )
784 return(-1);
66e3c532 785 }
4a4e912b 786 }
6a645f7b 787 //fprintf(stderr,"special notaryid.%d ht.%d limit.%d\n",notaryid,height,limit);
4a4e912b 788 return(1);
789 }
790 return(0);
791}
792
b62d7030 793int32_t komodo_checkpoint(int32_t *notarized_heightp,int32_t nHeight,uint256 hash)
794{
d82623d2 795 int32_t notarized_height; uint256 notarized_hash,notarized_desttxid; CBlockIndex *notary; CBlockIndex *pindex;
796 if ( (pindex= chainActive.Tip()) == 0 )
797 return(-1);
798 notarized_height = komodo_notarizeddata(pindex->nHeight,&notarized_hash,&notarized_desttxid);
b62d7030 799 *notarized_heightp = notarized_height;
aba9ea3c 800 if ( notarized_height >= 0 && notarized_height <= pindex->nHeight && (notary= mapBlockIndex[notarized_hash]) != 0 )
b62d7030 801 {
d82623d2 802 //printf("nHeight.%d -> (%d %s)\n",pindex->Tip()->nHeight,notarized_height,notarized_hash.ToString().c_str());
b62d7030 803 if ( notary->nHeight == notarized_height ) // if notarized_hash not in chain, reorg
804 {
805 if ( nHeight < notarized_height )
806 {
807 fprintf(stderr,"nHeight.%d < NOTARIZED_HEIGHT.%d\n",nHeight,notarized_height);
808 return(-1);
809 }
810 else if ( nHeight == notarized_height && memcmp(&hash,&notarized_hash,sizeof(hash)) != 0 )
811 {
812 fprintf(stderr,"nHeight.%d == NOTARIZED_HEIGHT.%d, diff hash\n",nHeight,notarized_height);
813 return(-1);
814 }
815 } else fprintf(stderr,"unexpected error notary_hash %s ht.%d at ht.%d\n",notarized_hash.ToString().c_str(),notarized_height,notary->nHeight);
e0086592 816 } else if ( notarized_height > 0 && notarized_height != 73880 && notarized_height >= 170000 )
d82623d2 817 fprintf(stderr,"[%s] couldnt find notarized.(%s %d) ht.%d\n",ASSETCHAINS_SYMBOL,notarized_hash.ToString().c_str(),notarized_height,pindex->nHeight);
b62d7030 818 return(0);
819}
485e48ca 820
83da1e16 821uint32_t komodo_interest_args(uint32_t *txheighttimep,int32_t *txheightp,uint32_t *tiptimep,uint64_t *valuep,uint256 hash,int32_t n)
c1c95e36 822{
823 LOCK(cs_main);
824 CTransaction tx; uint256 hashBlock; CBlockIndex *pindex,*tipindex;
63c93b0c 825 *txheighttimep = *txheightp = *tiptimep = 0;
826 *valuep = 0;
c1c95e36 827 if ( !GetTransaction(hash,tx,hashBlock,true) )
828 return(0);
829 uint32_t locktime = 0;
830 if ( n < tx.vout.size() )
831 {
832 if ( (pindex= mapBlockIndex[hashBlock]) != 0 && (tipindex= chainActive.Tip()) != 0 )
833 {
834 *valuep = tx.vout[n].nValue;
835 *txheightp = pindex->nHeight;
83da1e16 836 *txheighttimep = pindex->nTime;
c1c95e36 837 *tiptimep = tipindex->nTime;
838 locktime = tx.nLockTime;
1f52f946 839 //fprintf(stderr,"tx locktime.%u %.8f height.%d | tiptime.%u\n",locktime,(double)*valuep/COIN,*txheightp,*tiptimep);
c1c95e36 840 }
841 }
842 return(locktime);
843}
844
845uint64_t komodo_interest(int32_t txheight,uint64_t nValue,uint32_t nLockTime,uint32_t tiptime);
798f28c7 846uint64_t komodo_accrued_interest(int32_t *txheightp,uint32_t *locktimep,uint256 hash,int32_t n,int32_t checkheight,uint64_t checkvalue)
c1c95e36 847{
83da1e16 848 uint64_t value; uint32_t tiptime,txheighttimep;
849 if ( (*locktimep= komodo_interest_args(&txheighttimep,txheightp,&tiptime,&value,hash,n)) != 0 )
c1c95e36 850 {
798f28c7 851 if ( (checkvalue == 0 || value == checkvalue) && (checkheight == 0 || *txheightp == checkheight) )
852 return(komodo_interest(*txheightp,value,*locktimep,tiptime));
c1c95e36 853 //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);
1c2f0c49 854 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);
855 }
c1c95e36 856 return(0);
857}
8a7f7063 858
859int32_t komodo_isrealtime(int32_t *kmdheightp)
860{
d82623d2 861 struct komodo_state *sp; CBlockIndex *pindex;
8a7c9241 862 if ( (sp= komodo_stateptrget((char *)"KMD")) != 0 )
ffbc2f00 863 *kmdheightp = sp->CURRENT_HEIGHT;
864 else *kmdheightp = 0;
1b5b89ba 865 if ( (pindex= chainActive.Tip()) != 0 && pindex->nHeight >= (int32_t)komodo_longestchain() )
8a7f7063 866 return(1);
867 else return(0);
868}
14aa6cc0 869
3bc88f14 870int32_t komodo_validate_interest(const CTransaction &tx,int32_t txheight,uint32_t nTime,int32_t dispflag)
14aa6cc0 871{
872 uint32_t cmptime = nTime;
873 if ( KOMODO_REWIND == 0 && ASSETCHAINS_SYMBOL[0] == 0 && (int64_t)tx.nLockTime >= LOCKTIME_THRESHOLD ) //1473793441 )
874 {
3d02f57b 875 if ( txheight > 246748 )
14aa6cc0 876 {
877 if ( txheight < 247205 )
39d28b06 878 cmptime -= 16000;
14aa6cc0 879 if ( (int64_t)tx.nLockTime < cmptime-3600 )
880 {
bbaa0f9d 881 if ( tx.nLockTime != 1477258935 || dispflag != 0 )
14aa6cc0 882 {
66294e69 883 //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);
14aa6cc0 884 }
885 return(-1);
886 }
948ad8f3 887 if ( 0 && dispflag != 0 )
3bc88f14 888 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);
14aa6cc0 889 }
14aa6cc0 890 }
891 return(0);
892}
This page took 0.33469 seconds and 4 git commands to generate.