miner.h 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643
  1. /*
  2. * Copyright 2012-2014 Luke Dashjr
  3. * Copyright 2014 Nate Woolls
  4. * Copyright 2011-2013 Con Kolivas
  5. * Copyright 2012-2013 Andrew Smith
  6. * Copyright 2011 Glenn Francis Murray
  7. * Copyright 2010-2011 Jeff Garzik
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the Free
  11. * Software Foundation; either version 3 of the License, or (at your option)
  12. * any later version. See COPYING for more details.
  13. */
  14. #ifndef BFG_MINER_H
  15. #define BFG_MINER_H
  16. #include "config.h"
  17. #ifdef WIN32
  18. #include <winsock2.h>
  19. #endif
  20. #include <stdbool.h>
  21. #include <stdint.h>
  22. #include <sys/time.h>
  23. #include <pthread.h>
  24. #include <jansson.h>
  25. #include <curl/curl.h>
  26. #include <sched.h>
  27. #ifdef HAVE_INTTYPES_H
  28. #include <inttypes.h>
  29. #endif
  30. #include <blkmaker.h>
  31. #include <blktemplate.h>
  32. #if defined(WORDS_BIGENDIAN) && !defined(__BIG_ENDIAN__)
  33. /* uthash.h depends on __BIG_ENDIAN__ on BE platforms */
  34. #define __BIG_ENDIAN__ 1
  35. #endif
  36. #include <uthash.h>
  37. #include <utlist.h>
  38. #include "logging.h"
  39. #include "util.h"
  40. #ifdef STDC_HEADERS
  41. # include <stdlib.h>
  42. # include <stddef.h>
  43. #else
  44. # ifdef HAVE_STDLIB_H
  45. # include <stdlib.h>
  46. # endif
  47. #endif
  48. #ifdef HAVE_ALLOCA_H
  49. # include <alloca.h>
  50. #elif !defined alloca
  51. # ifdef __GNUC__
  52. # define alloca __builtin_alloca
  53. # elif defined _AIX
  54. # define alloca __alloca
  55. # elif defined _MSC_VER
  56. # include <malloc.h>
  57. # define alloca _alloca
  58. # elif !defined HAVE_ALLOCA
  59. # ifdef __cplusplus
  60. extern "C"
  61. # endif
  62. void *alloca (size_t);
  63. # endif
  64. #endif
  65. #ifdef __MINGW32__
  66. #include <windows.h>
  67. #include <io.h>
  68. static inline int fsync (int fd)
  69. {
  70. return (FlushFileBuffers ((HANDLE) _get_osfhandle (fd))) ? 0 : -1;
  71. }
  72. #ifndef EWOULDBLOCK
  73. # define EWOULDBLOCK EAGAIN
  74. #endif
  75. #ifndef MSG_DONTWAIT
  76. # define MSG_DONTWAIT 0x1000000
  77. #endif
  78. #endif /* __MINGW32__ */
  79. #if defined (__linux)
  80. #ifndef LINUX
  81. #define LINUX
  82. #endif
  83. #endif
  84. #ifdef HAVE_ADL
  85. #include "ADL/adl_sdk.h"
  86. #endif
  87. #ifdef HAVE_LIBUSB
  88. #include <libusb.h>
  89. #endif
  90. #ifdef USE_ZTEX
  91. #include "libztex.h"
  92. #endif
  93. #ifdef USE_BITFURY
  94. #include "libbitfury.h"
  95. #endif
  96. #ifdef HAVE_BYTESWAP_H
  97. #include <byteswap.h>
  98. #endif
  99. #ifdef HAVE_ENDIAN_H
  100. #include <endian.h>
  101. #endif
  102. #ifdef HAVE_SYS_ENDIAN_H
  103. #include <sys/endian.h>
  104. #endif
  105. #ifdef HAVE_LIBKERN_OSBYTEORDER_H
  106. #include <libkern/OSByteOrder.h>
  107. #endif
  108. #ifndef bswap_16
  109. #define bswap_16(value) \
  110. ((((value) & 0xff) << 8) | ((value) >> 8))
  111. #define bswap_32(value) \
  112. (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
  113. (uint32_t)bswap_16((uint16_t)((value) >> 16)))
  114. #define bswap_64(value) \
  115. (((uint64_t)bswap_32((uint32_t)((value) & 0xffffffff)) \
  116. << 32) | \
  117. (uint64_t)bswap_32((uint32_t)((value) >> 32)))
  118. #endif
  119. /* This assumes htobe32 is a macro and that if it doesn't exist, then the
  120. * also won't exist */
  121. #ifndef htobe32
  122. # ifndef WORDS_BIGENDIAN
  123. # define htole16(x) (x)
  124. # define htole32(x) (x)
  125. # define htole64(x) (x)
  126. # define htobe16(x) bswap_16(x)
  127. # define htobe32(x) bswap_32(x)
  128. # define htobe64(x) bswap_64(x)
  129. # else
  130. # define htole16(x) bswap_16(x)
  131. # define htole32(x) bswap_32(x)
  132. # define htole64(x) bswap_64(x)
  133. # define htobe16(x) (x)
  134. # define htobe32(x) (x)
  135. # define htobe64(x) (x)
  136. # endif
  137. #endif
  138. #ifndef be32toh
  139. # define le16toh(x) htole16(x)
  140. # define le32toh(x) htole32(x)
  141. # define le64toh(x) htole64(x)
  142. # define be16toh(x) htobe16(x)
  143. # define be32toh(x) htobe32(x)
  144. # define be64toh(x) htobe64(x)
  145. #endif
  146. #ifndef max
  147. # define max(a, b) ((a) > (b) ? (a) : (b))
  148. #endif
  149. #undef unlikely
  150. #undef likely
  151. #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
  152. #define unlikely(expr) (__builtin_expect(!!(expr), 0))
  153. #define likely(expr) (__builtin_expect(!!(expr), 1))
  154. #else
  155. #define unlikely(expr) (expr)
  156. #define likely(expr) (expr)
  157. #endif
  158. #ifndef __maybe_unused
  159. #define __maybe_unused __attribute__((unused))
  160. #endif
  161. #define uninitialised_var(x) x = x
  162. #if defined(__i386__)
  163. #define WANT_CRYPTOPP_ASM32
  164. #endif
  165. #ifndef ARRAY_SIZE
  166. #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
  167. #endif
  168. #ifdef HAVE_CURSES
  169. extern int my_cancellable_getch(void);
  170. # ifdef getch
  171. // getch() is a macro
  172. static int __maybe_unused __real_getch(void) {
  173. return getch();
  174. }
  175. # undef getch
  176. # define getch() my_cancellable_getch()
  177. # else
  178. // getch() is a real function
  179. # define __real_getch getch
  180. # define getch() my_cancellable_getch()
  181. # endif
  182. #endif
  183. enum alive {
  184. LIFE_WELL,
  185. LIFE_SICK,
  186. LIFE_DEAD,
  187. LIFE_NOSTART,
  188. LIFE_INIT,
  189. LIFE_WAIT,
  190. LIFE_INIT2, // Still initializing, but safe to call functions
  191. LIFE_DEAD2, // Totally dead, NOT safe to call functions
  192. LIFE_MIXED, // Only valid in display variables, NOT on devices
  193. };
  194. enum pool_strategy {
  195. POOL_FAILOVER,
  196. POOL_ROUNDROBIN,
  197. POOL_ROTATE,
  198. POOL_LOADBALANCE,
  199. POOL_BALANCE,
  200. };
  201. #define TOP_STRATEGY (POOL_BALANCE)
  202. struct strategies {
  203. const char *s;
  204. };
  205. struct cgpu_info;
  206. #ifdef HAVE_ADL
  207. struct gpu_adl {
  208. ADLTemperature lpTemperature;
  209. int iAdapterIndex;
  210. int lpAdapterID;
  211. int iBusNumber;
  212. char strAdapterName[256];
  213. ADLPMActivity lpActivity;
  214. ADLODParameters lpOdParameters;
  215. ADLODPerformanceLevels *DefPerfLev;
  216. ADLFanSpeedInfo lpFanSpeedInfo;
  217. ADLFanSpeedValue lpFanSpeedValue;
  218. ADLFanSpeedValue DefFanSpeedValue;
  219. int iEngineClock;
  220. int iMemoryClock;
  221. int iVddc;
  222. int iPercentage;
  223. bool autofan;
  224. bool autoengine;
  225. bool managed; /* Were the values ever changed on this card */
  226. int lastengine;
  227. int lasttemp;
  228. int targetfan;
  229. int overtemp;
  230. int minspeed;
  231. int maxspeed;
  232. int gpu;
  233. bool has_fanspeed;
  234. struct gpu_adl *twin;
  235. };
  236. #endif
  237. enum pow_algorithm {
  238. POW_SHA256D = 1,
  239. POW_SCRYPT = 2,
  240. };
  241. typedef uint8_t supported_algos_t;
  242. struct api_data;
  243. struct thr_info;
  244. struct work;
  245. struct lowlevel_device_info;
  246. enum bfg_probe_result_flags_values {
  247. BPR_CONTINUE_PROBES = 1<< 0,
  248. BPR_DONT_RESCAN = 1<< 1,
  249. BPR_WRONG_DEVTYPE = BPR_CONTINUE_PROBES | BPR_DONT_RESCAN,
  250. };
  251. extern unsigned *_bfg_probe_result_flags();
  252. #define bfg_probe_result_flags (*_bfg_probe_result_flags())
  253. struct device_drv {
  254. const char *dname;
  255. const char *name;
  256. int8_t probe_priority;
  257. bool lowl_probe_by_name_only;
  258. supported_algos_t supported_algos;
  259. // DRV-global functions
  260. void (*drv_init)();
  261. void (*drv_detect)();
  262. bool (*lowl_match)(const struct lowlevel_device_info *);
  263. bool (*lowl_probe)(const struct lowlevel_device_info *);
  264. // Processor-specific functions
  265. void (*watchdog)(struct cgpu_info *, const struct timeval *tv_now);
  266. void (*reinit_device)(struct cgpu_info *);
  267. bool (*override_statline_temp2)(char *buf, size_t bufsz, struct cgpu_info *, bool per_processor);
  268. struct api_data* (*get_api_extra_device_detail)(struct cgpu_info *);
  269. struct api_data* (*get_api_extra_device_status)(struct cgpu_info *);
  270. struct api_data *(*get_api_stats)(struct cgpu_info *);
  271. bool (*get_stats)(struct cgpu_info *);
  272. bool (*identify_device)(struct cgpu_info *); // e.g. to flash a led
  273. char *(*set_device)(struct cgpu_info *, char *option, char *setting, char *replybuf);
  274. void (*proc_wlogprint_status)(struct cgpu_info *);
  275. void (*proc_tui_wlogprint_choices)(struct cgpu_info *);
  276. const char *(*proc_tui_handle_choice)(struct cgpu_info *, int input);
  277. void (*zero_stats)(struct cgpu_info *);
  278. // Thread-specific functions
  279. bool (*thread_prepare)(struct thr_info *);
  280. void (*minerloop)(struct thr_info *);
  281. uint64_t (*can_limit_work)(struct thr_info *);
  282. bool (*thread_init)(struct thr_info *);
  283. bool (*prepare_work)(struct thr_info *, struct work *);
  284. int64_t (*scanhash)(struct thr_info *, struct work *, int64_t);
  285. int64_t (*scanwork)(struct thr_info *);
  286. /* Used to extract work from the hash table of queued work and tell
  287. * the main loop that it should not add any further work to the table.
  288. */
  289. bool (*queue_full)(struct cgpu_info *);
  290. void (*flush_work)(struct cgpu_info *);
  291. void (*hw_error)(struct thr_info *);
  292. void (*thread_shutdown)(struct thr_info *);
  293. void (*thread_disable)(struct thr_info *);
  294. void (*thread_enable)(struct thr_info *);
  295. // Can be used per-thread or per-processor (only with minerloop async or queue!)
  296. void (*poll)(struct thr_info *);
  297. // === Implemented by minerloop_async ===
  298. bool (*job_prepare)(struct thr_info*, struct work*, uint64_t);
  299. void (*job_start)(struct thr_info*);
  300. void (*job_get_results)(struct thr_info*, struct work*);
  301. int64_t (*job_process_results)(struct thr_info*, struct work*, bool stopping);
  302. // === Implemented by minerloop_queue ===
  303. bool (*queue_append)(struct thr_info *, struct work *);
  304. void (*queue_flush)(struct thr_info *);
  305. };
  306. enum dev_enable {
  307. DEV_ENABLED,
  308. DEV_DISABLED, // Disabled by user
  309. DEV_RECOVER, // Disabled by temperature cutoff in watchdog
  310. DEV_RECOVER_ERR, // Disabled by communications error
  311. DEV_RECOVER_DRV, // Disabled by driver
  312. };
  313. enum cl_kernels {
  314. KL_NONE,
  315. KL_POCLBM,
  316. KL_PHATK,
  317. KL_DIAKGCN,
  318. KL_DIABLO,
  319. KL_SCRYPT,
  320. };
  321. enum dev_reason {
  322. REASON_THREAD_FAIL_INIT,
  323. REASON_THREAD_ZERO_HASH,
  324. REASON_THREAD_FAIL_QUEUE,
  325. REASON_DEV_SICK_IDLE_60,
  326. REASON_DEV_DEAD_IDLE_600,
  327. REASON_DEV_NOSTART,
  328. REASON_DEV_OVER_HEAT,
  329. REASON_DEV_THERMAL_CUTOFF,
  330. REASON_DEV_COMMS_ERROR,
  331. REASON_DEV_THROTTLE,
  332. };
  333. #define REASON_NONE "None"
  334. #define REASON_THREAD_FAIL_INIT_STR "Thread failed to init"
  335. #define REASON_THREAD_ZERO_HASH_STR "Thread got zero hashes"
  336. #define REASON_THREAD_FAIL_QUEUE_STR "Thread failed to queue work"
  337. #define REASON_DEV_SICK_IDLE_60_STR "Device idle for 60s"
  338. #define REASON_DEV_DEAD_IDLE_600_STR "Device dead - idle for 600s"
  339. #define REASON_DEV_NOSTART_STR "Device failed to start"
  340. #define REASON_DEV_OVER_HEAT_STR "Device over heated"
  341. #define REASON_DEV_THERMAL_CUTOFF_STR "Device reached thermal cutoff"
  342. #define REASON_DEV_COMMS_ERROR_STR "Device comms error"
  343. #define REASON_DEV_THROTTLE_STR "Device throttle"
  344. #define REASON_UNKNOWN_STR "Unknown reason - code bug"
  345. #define MIN_SEC_UNSET 99999999
  346. enum {
  347. MSG_NOPOOL = 8,
  348. MSG_MISPID = 25,
  349. MSG_INVPID = 26,
  350. MSG_DUPPID = 74,
  351. MSG_POOLPRIO = 73,
  352. };
  353. struct cgminer_stats {
  354. struct timeval start_tv;
  355. uint32_t getwork_calls;
  356. struct timeval getwork_wait;
  357. struct timeval getwork_wait_max;
  358. struct timeval getwork_wait_min;
  359. struct timeval _get_start;
  360. };
  361. // Just the actual network getworks to the pool
  362. struct cgminer_pool_stats {
  363. uint32_t getwork_calls;
  364. uint32_t getwork_attempts;
  365. struct timeval getwork_wait;
  366. struct timeval getwork_wait_max;
  367. struct timeval getwork_wait_min;
  368. double getwork_wait_rolling;
  369. bool hadrolltime;
  370. bool canroll;
  371. bool hadexpire;
  372. uint32_t rolltime;
  373. double min_diff;
  374. double max_diff;
  375. double last_diff;
  376. uint32_t min_diff_count;
  377. uint32_t max_diff_count;
  378. uint64_t times_sent;
  379. uint64_t bytes_sent;
  380. uint64_t net_bytes_sent;
  381. uint64_t times_received;
  382. uint64_t bytes_received;
  383. uint64_t net_bytes_received;
  384. };
  385. #define PRIprepr "-6s"
  386. #define PRIpreprv "s"
  387. #define ALLOC_H2B_NOUNIT 6
  388. #define ALLOC_H2B_SHORT 7
  389. #define ALLOC_H2B_SPACED 8
  390. #define ALLOC_H2B_SHORTV 7
  391. struct cgpu_info {
  392. int cgminer_id;
  393. int device_line_id;
  394. struct device_drv *drv;
  395. const struct bfg_set_device_definition *set_device_funcs;
  396. int device_id;
  397. char *dev_repr;
  398. char *dev_repr_ns;
  399. const char *name;
  400. int procs;
  401. int proc_id;
  402. char proc_repr[9];
  403. char proc_repr_ns[9];
  404. struct cgpu_info *device;
  405. struct cgpu_info *next_proc;
  406. int extra_work_queue;
  407. const char *device_path;
  408. void *device_data;
  409. const char *dev_manufacturer;
  410. const char *dev_product;
  411. const char *dev_serial;
  412. union {
  413. #ifdef USE_ZTEX
  414. struct libztex_device *device_ztex;
  415. #endif
  416. int device_fd;
  417. #ifdef USE_X6500
  418. struct ft232r_device_handle *device_ft232r;
  419. #endif
  420. };
  421. #ifdef USE_AVALON
  422. struct work **works;
  423. int work_array;
  424. int queued;
  425. int results;
  426. #endif
  427. #ifdef USE_BITFORCE
  428. struct timeval work_start_tv;
  429. unsigned int wait_ms;
  430. unsigned int sleep_ms;
  431. double avg_wait_f;
  432. unsigned int avg_wait_d;
  433. uint32_t nonces;
  434. bool polling;
  435. #endif
  436. #if defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_TWINFURY)
  437. bool flash_led;
  438. #endif
  439. pthread_mutex_t device_mutex;
  440. pthread_cond_t device_cond;
  441. enum dev_enable deven;
  442. bool already_set_defaults;
  443. int accepted;
  444. int rejected;
  445. int stale;
  446. double bad_diff1;
  447. int hw_errors;
  448. double rolling;
  449. double total_mhashes;
  450. double utility;
  451. double utility_diff1;
  452. enum alive status;
  453. char init[40];
  454. struct timeval last_message_tv;
  455. int threads;
  456. struct thr_info **thr;
  457. int64_t max_hashes;
  458. const char *kname;
  459. float temp;
  460. int cutofftemp;
  461. int targettemp;
  462. bool targettemp_user;
  463. double diff1;
  464. double diff_accepted;
  465. double diff_rejected;
  466. double diff_stale;
  467. int last_share_pool;
  468. time_t last_share_pool_time;
  469. double last_share_diff;
  470. time_t last_device_valid_work;
  471. time_t device_last_well;
  472. time_t device_last_not_well;
  473. struct timeval tv_device_last_not_well;
  474. enum dev_reason device_not_well_reason;
  475. float reinit_backoff;
  476. int thread_fail_init_count;
  477. int thread_zero_hash_count;
  478. int thread_fail_queue_count;
  479. int dev_sick_idle_60_count;
  480. int dev_dead_idle_600_count;
  481. int dev_nostart_count;
  482. int dev_over_heat_count; // It's a warning but worth knowing
  483. int dev_thermal_cutoff_count;
  484. int dev_comms_error_count;
  485. int dev_throttle_count;
  486. struct cgminer_stats cgminer_stats;
  487. pthread_rwlock_t qlock;
  488. struct work *queued_work;
  489. struct work *unqueued_work;
  490. unsigned int queued_count;
  491. bool disable_watchdog;
  492. bool shutdown;
  493. // Lowest difficulty supported for finding nonces
  494. float min_nonce_diff;
  495. };
  496. extern void renumber_cgpu(struct cgpu_info *);
  497. extern bool add_cgpu(struct cgpu_info*);
  498. struct tq_ent;
  499. struct thread_q {
  500. struct tq_ent *q;
  501. bool frozen;
  502. pthread_mutex_t mutex;
  503. pthread_cond_t cond;
  504. };
  505. enum thr_busy_state {
  506. TBS_IDLE,
  507. TBS_GETTING_RESULTS,
  508. TBS_STARTING_JOB,
  509. };
  510. struct thr_info {
  511. int id;
  512. int device_thread;
  513. bool primary_thread;
  514. bool has_pth;
  515. pthread_t pth;
  516. struct thread_q *q;
  517. struct cgpu_info *cgpu;
  518. void *cgpu_data;
  519. struct timeval last;
  520. struct timeval sick;
  521. bool scanhash_working;
  522. uint64_t hashes_done;
  523. struct timeval tv_hashes_done;
  524. struct timeval tv_lastupdate;
  525. struct timeval _tv_last_hashes_done_call;
  526. bool pause;
  527. time_t getwork;
  528. double rolling;
  529. // Used by minerloop_async
  530. struct work *prev_work;
  531. struct work *work;
  532. struct work *next_work;
  533. enum thr_busy_state busy_state;
  534. bool _mt_disable_called;
  535. struct timeval tv_morework;
  536. struct work *results_work;
  537. bool _job_transition_in_progress;
  538. bool _proceed_with_new_job;
  539. struct timeval tv_results_jobstart;
  540. struct timeval tv_jobstart;
  541. struct timeval tv_poll;
  542. struct timeval tv_watchdog;
  543. notifier_t notifier;
  544. bool starting_next_work;
  545. uint32_t _max_nonce;
  546. notifier_t mutex_request;
  547. // Used by minerloop_queue
  548. struct work *work_list;
  549. bool queue_full;
  550. bool work_restart;
  551. notifier_t work_restart_notifier;
  552. };
  553. struct string_elist {
  554. char *string;
  555. bool free_me;
  556. struct string_elist *prev;
  557. struct string_elist *next;
  558. };
  559. static inline void string_elist_add(const char *s, struct string_elist **head)
  560. {
  561. struct string_elist *n;
  562. n = calloc(1, sizeof(*n));
  563. n->string = strdup(s);
  564. n->free_me = true;
  565. DL_APPEND(*head, n);
  566. }
  567. static inline void string_elist_del(struct string_elist **head, struct string_elist *item)
  568. {
  569. if (item->free_me)
  570. free(item->string);
  571. DL_DELETE(*head, item);
  572. free(item);
  573. }
  574. struct bfg_loaded_configfile {
  575. char *filename;
  576. int fileconf_load;
  577. struct bfg_loaded_configfile *next;
  578. };
  579. extern struct bfg_loaded_configfile *bfg_loaded_configfiles;
  580. static inline uint32_t swab32(uint32_t v)
  581. {
  582. return bswap_32(v);
  583. }
  584. static inline void swap256(void *dest_p, const void *src_p)
  585. {
  586. uint32_t *dest = dest_p;
  587. const uint32_t *src = src_p;
  588. dest[0] = src[7];
  589. dest[1] = src[6];
  590. dest[2] = src[5];
  591. dest[3] = src[4];
  592. dest[4] = src[3];
  593. dest[5] = src[2];
  594. dest[6] = src[1];
  595. dest[7] = src[0];
  596. }
  597. static inline void swap32yes(void*out, const void*in, size_t sz) {
  598. size_t swapcounter = 0;
  599. for (swapcounter = 0; swapcounter < sz; ++swapcounter)
  600. (((uint32_t*)out)[swapcounter]) = swab32(((uint32_t*)in)[swapcounter]);
  601. }
  602. #define LOCAL_swap32(type, var, sz) \
  603. type __swapped_ ## var[sz * 4 / sizeof(type)]; \
  604. swap32yes(__swapped_ ## var, var, sz); \
  605. var = __swapped_ ## var; \
  606. // end
  607. #ifdef WORDS_BIGENDIAN
  608. # define swap32tobe(out, in, sz) ((out == in) ? (void)0 : (void)memmove(out, in, (sz)*4))
  609. # define LOCAL_swap32be(type, var, sz) ;
  610. # define swap32tole(out, in, sz) swap32yes(out, in, sz)
  611. # define LOCAL_swap32le(type, var, sz) LOCAL_swap32(type, var, sz)
  612. #else
  613. # define swap32tobe(out, in, sz) swap32yes(out, in, sz)
  614. # define LOCAL_swap32be(type, var, sz) LOCAL_swap32(type, var, sz)
  615. # define swap32tole(out, in, sz) ((out == in) ? (void)0 : (void)memmove(out, in, (sz)*4))
  616. # define LOCAL_swap32le(type, var, sz) ;
  617. #endif
  618. static inline void swab256(void *dest_p, const void *src_p)
  619. {
  620. uint32_t *dest = dest_p;
  621. const uint32_t *src = src_p;
  622. dest[0] = swab32(src[7]);
  623. dest[1] = swab32(src[6]);
  624. dest[2] = swab32(src[5]);
  625. dest[3] = swab32(src[4]);
  626. dest[4] = swab32(src[3]);
  627. dest[5] = swab32(src[2]);
  628. dest[6] = swab32(src[1]);
  629. dest[7] = swab32(src[0]);
  630. }
  631. static inline
  632. void bswap_96p(void * const dest_p, const void * const src_p)
  633. {
  634. uint32_t * const dest = dest_p;
  635. const uint32_t * const src = src_p;
  636. dest[0] = bswap_32(src[2]);
  637. dest[1] = bswap_32(src[1]);
  638. dest[2] = bswap_32(src[0]);
  639. }
  640. static inline
  641. void bswap_32mult(void * const dest_p, const void * const src_p, const size_t sz)
  642. {
  643. const uint32_t *s = src_p;
  644. const uint32_t *s_end = &s[sz];
  645. uint32_t *d = dest_p;
  646. d = &d[sz - 1];
  647. for ( ; s < s_end; ++s, --d)
  648. *d = bswap_32(*s);
  649. }
  650. #define flip12(dest_p, src_p) swap32yes(dest_p, src_p, 12 / 4)
  651. #define flip32(dest_p, src_p) swap32yes(dest_p, src_p, 32 / 4)
  652. #define WATCHDOG_INTERVAL 2
  653. extern void bfg_watchdog(struct cgpu_info *, struct timeval *tvp_now);
  654. extern void _quit(int status);
  655. static inline void mutex_lock(pthread_mutex_t *lock)
  656. {
  657. if (unlikely(pthread_mutex_lock(lock)))
  658. quit(1, "WTF MUTEX ERROR ON LOCK!");
  659. }
  660. static inline void mutex_unlock_noyield(pthread_mutex_t *lock)
  661. {
  662. if (unlikely(pthread_mutex_unlock(lock)))
  663. quit(1, "WTF MUTEX ERROR ON UNLOCK!");
  664. }
  665. static inline void mutex_unlock(pthread_mutex_t *lock)
  666. {
  667. mutex_unlock_noyield(lock);
  668. sched_yield();
  669. }
  670. static inline int mutex_trylock(pthread_mutex_t *lock)
  671. {
  672. return pthread_mutex_trylock(lock);
  673. }
  674. static inline void wr_lock(pthread_rwlock_t *lock)
  675. {
  676. if (unlikely(pthread_rwlock_wrlock(lock)))
  677. quit(1, "WTF WRLOCK ERROR ON LOCK!");
  678. }
  679. static inline void rd_lock(pthread_rwlock_t *lock)
  680. {
  681. if (unlikely(pthread_rwlock_rdlock(lock)))
  682. quit(1, "WTF RDLOCK ERROR ON LOCK!");
  683. }
  684. static inline void rw_unlock(pthread_rwlock_t *lock)
  685. {
  686. if (unlikely(pthread_rwlock_unlock(lock)))
  687. quit(1, "WTF RWLOCK ERROR ON UNLOCK!");
  688. }
  689. static inline void rd_unlock_noyield(pthread_rwlock_t *lock)
  690. {
  691. rw_unlock(lock);
  692. }
  693. static inline void wr_unlock_noyield(pthread_rwlock_t *lock)
  694. {
  695. rw_unlock(lock);
  696. }
  697. static inline void rd_unlock(pthread_rwlock_t *lock)
  698. {
  699. rw_unlock(lock);
  700. sched_yield();
  701. }
  702. static inline void wr_unlock(pthread_rwlock_t *lock)
  703. {
  704. rw_unlock(lock);
  705. sched_yield();
  706. }
  707. static inline void mutex_init(pthread_mutex_t *lock)
  708. {
  709. if (unlikely(pthread_mutex_init(lock, NULL)))
  710. quit(1, "Failed to pthread_mutex_init");
  711. }
  712. static inline void mutex_destroy(pthread_mutex_t *lock)
  713. {
  714. /* Ignore return code. This only invalidates the mutex on linux but
  715. * releases resources on windows. */
  716. pthread_mutex_destroy(lock);
  717. }
  718. static inline void rwlock_init(pthread_rwlock_t *lock)
  719. {
  720. if (unlikely(pthread_rwlock_init(lock, NULL)))
  721. quit(1, "Failed to pthread_rwlock_init");
  722. }
  723. /* cgminer locks, a write biased variant of rwlocks */
  724. struct cglock {
  725. pthread_mutex_t mutex;
  726. pthread_rwlock_t rwlock;
  727. };
  728. typedef struct cglock cglock_t;
  729. static inline void rwlock_destroy(pthread_rwlock_t *lock)
  730. {
  731. pthread_rwlock_destroy(lock);
  732. }
  733. static inline void cglock_init(cglock_t *lock)
  734. {
  735. mutex_init(&lock->mutex);
  736. rwlock_init(&lock->rwlock);
  737. }
  738. static inline void cglock_destroy(cglock_t *lock)
  739. {
  740. rwlock_destroy(&lock->rwlock);
  741. mutex_destroy(&lock->mutex);
  742. }
  743. /* Read lock variant of cglock. Cannot be promoted. */
  744. static inline void cg_rlock(cglock_t *lock)
  745. {
  746. mutex_lock(&lock->mutex);
  747. rd_lock(&lock->rwlock);
  748. mutex_unlock_noyield(&lock->mutex);
  749. }
  750. /* Intermediate variant of cglock - behaves as a read lock but can be promoted
  751. * to a write lock or demoted to read lock. */
  752. static inline void cg_ilock(cglock_t *lock)
  753. {
  754. mutex_lock(&lock->mutex);
  755. }
  756. /* Upgrade intermediate variant to a write lock */
  757. static inline void cg_ulock(cglock_t *lock)
  758. {
  759. wr_lock(&lock->rwlock);
  760. }
  761. /* Write lock variant of cglock */
  762. static inline void cg_wlock(cglock_t *lock)
  763. {
  764. mutex_lock(&lock->mutex);
  765. wr_lock(&lock->rwlock);
  766. }
  767. /* Downgrade write variant to a read lock */
  768. static inline void cg_dwlock(cglock_t *lock)
  769. {
  770. wr_unlock_noyield(&lock->rwlock);
  771. rd_lock(&lock->rwlock);
  772. mutex_unlock_noyield(&lock->mutex);
  773. }
  774. /* Demote a write variant to an intermediate variant */
  775. static inline void cg_dwilock(cglock_t *lock)
  776. {
  777. wr_unlock(&lock->rwlock);
  778. }
  779. /* Downgrade intermediate variant to a read lock */
  780. static inline void cg_dlock(cglock_t *lock)
  781. {
  782. rd_lock(&lock->rwlock);
  783. mutex_unlock(&lock->mutex);
  784. }
  785. static inline void cg_runlock(cglock_t *lock)
  786. {
  787. rd_unlock(&lock->rwlock);
  788. }
  789. static inline void cg_wunlock(cglock_t *lock)
  790. {
  791. wr_unlock_noyield(&lock->rwlock);
  792. mutex_unlock(&lock->mutex);
  793. }
  794. struct pool;
  795. #define API_MCAST_CODE "FTW"
  796. #define API_MCAST_ADDR "224.0.0.75"
  797. extern bool opt_protocol;
  798. extern bool opt_dev_protocol;
  799. extern char *opt_coinbase_sig;
  800. extern char *request_target_str;
  801. extern bool have_longpoll;
  802. extern int opt_skip_checks;
  803. extern char *opt_kernel_path;
  804. extern char *opt_socks_proxy;
  805. extern char *cmd_idle, *cmd_sick, *cmd_dead;
  806. extern char *cgminer_path;
  807. extern bool opt_fail_only;
  808. extern bool opt_autofan;
  809. extern bool opt_autoengine;
  810. extern bool use_curses;
  811. extern int last_logstatusline_len;
  812. #ifdef HAVE_LIBUSB
  813. extern bool have_libusb;
  814. #endif
  815. extern int httpsrv_port;
  816. extern int stratumsrv_port;
  817. extern char *opt_api_allow;
  818. extern bool opt_api_mcast;
  819. extern char *opt_api_mcast_addr;
  820. extern char *opt_api_mcast_code;
  821. extern char *opt_api_mcast_des;
  822. extern int opt_api_mcast_port;
  823. extern char *opt_api_groups;
  824. extern char *opt_api_description;
  825. extern int opt_api_port;
  826. extern bool opt_api_listen;
  827. extern bool opt_api_network;
  828. extern bool opt_delaynet;
  829. extern time_t last_getwork;
  830. extern bool opt_disable_client_reconnect;
  831. extern bool opt_restart;
  832. extern char *opt_icarus_options;
  833. extern char *opt_icarus_timing;
  834. extern bool opt_worktime;
  835. #ifdef USE_AVALON
  836. extern char *opt_avalon_options;
  837. #endif
  838. #ifdef USE_KLONDIKE
  839. extern char *opt_klondike_options;
  840. #endif
  841. #ifdef USE_BITFORCE
  842. extern bool opt_bfl_noncerange;
  843. #endif
  844. extern int swork_id;
  845. extern pthread_rwlock_t netacc_lock;
  846. extern const uint32_t sha256_init_state[];
  847. extern json_t *json_rpc_call(CURL *curl, const char *url, const char *userpass,
  848. const char *rpc_req, bool, bool, int *,
  849. struct pool *pool, bool);
  850. extern bool our_curl_supports_proxy_uris();
  851. extern void bin2hex(char *out, const void *in, size_t len);
  852. extern bool hex2bin(unsigned char *p, const char *hexstr, size_t len);
  853. typedef bool (*sha256_func)(struct thr_info*, const unsigned char *pmidstate,
  854. unsigned char *pdata,
  855. unsigned char *phash1, unsigned char *phash,
  856. const unsigned char *ptarget,
  857. uint32_t max_nonce,
  858. uint32_t *last_nonce,
  859. uint32_t nonce);
  860. extern bool fulltest(const unsigned char *hash, const unsigned char *target);
  861. extern int opt_queue;
  862. extern int opt_scantime;
  863. extern int opt_expiry;
  864. extern cglock_t control_lock;
  865. extern pthread_mutex_t stats_lock;
  866. extern pthread_mutex_t hash_lock;
  867. extern pthread_mutex_t console_lock;
  868. extern cglock_t ch_lock;
  869. extern pthread_rwlock_t mining_thr_lock;
  870. extern pthread_rwlock_t devices_lock;
  871. extern bool _bfg_console_cancel_disabled;
  872. extern int _bfg_console_prev_cancelstate;
  873. static inline
  874. void bfg_console_lock(void)
  875. {
  876. int prev_cancelstate;
  877. bool cancel_disabled = !pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &prev_cancelstate);
  878. mutex_lock(&console_lock);
  879. _bfg_console_cancel_disabled = cancel_disabled;
  880. if (cancel_disabled)
  881. _bfg_console_prev_cancelstate = prev_cancelstate;
  882. }
  883. static inline
  884. void bfg_console_unlock(void)
  885. {
  886. int prev_cancelstate;
  887. bool cancel_disabled = _bfg_console_cancel_disabled;
  888. if (cancel_disabled)
  889. {
  890. prev_cancelstate = _bfg_console_prev_cancelstate;
  891. mutex_unlock(&console_lock);
  892. pthread_setcancelstate(prev_cancelstate, &prev_cancelstate);
  893. }
  894. else
  895. mutex_unlock(&console_lock);
  896. }
  897. extern void thread_reportin(struct thr_info *thr);
  898. extern void thread_reportout(struct thr_info *);
  899. extern void clear_stratum_shares(struct pool *pool);
  900. extern void hashmeter2(struct thr_info *);
  901. extern bool stale_work(struct work *, bool share);
  902. extern bool stale_work_future(struct work *, bool share, unsigned long ustime);
  903. extern void set_target_to_pdiff(void *dest_target, double pdiff);
  904. #define bdiff_to_pdiff(n) (n * 1.0000152587)
  905. extern void set_target_to_bdiff(void *dest_target, double bdiff);
  906. #define pdiff_to_bdiff(n) (n * 0.9999847412109375)
  907. extern double target_diff(const unsigned char *target);
  908. extern void kill_work(void);
  909. extern void app_restart(void);
  910. extern void __thr_being_msg(int prio, struct thr_info *, const char *);
  911. extern void mt_enable(struct thr_info *thr);
  912. extern void proc_enable(struct cgpu_info *);
  913. extern void reinit_device(struct cgpu_info *cgpu);
  914. extern void cgpu_set_defaults(struct cgpu_info *);
  915. extern void drv_set_defaults(const struct device_drv *, const void *, void *userp, const char *devpath, const char *serial, int mode);
  916. #ifdef HAVE_ADL
  917. extern bool gpu_stats(int gpu, float *temp, int *engineclock, int *memclock, float *vddc, int *activity, int *fanspeed, int *fanpercent, int *powertune);
  918. extern int set_fanspeed(int gpu, int iFanSpeed);
  919. extern int set_vddc(int gpu, float fVddc);
  920. extern int set_engineclock(int gpu, int iEngineClock);
  921. extern int set_memoryclock(int gpu, int iMemoryClock);
  922. #endif
  923. extern void api(int thr_id);
  924. extern struct pool *current_pool(void);
  925. extern int enabled_pools;
  926. extern bool get_intrange(const char *arg, int *val1, int *val2);
  927. extern bool detect_stratum(struct pool *pool, char *url);
  928. extern void print_summary(void);
  929. extern void adjust_quota_gcd(void);
  930. extern struct pool *add_pool(void);
  931. extern bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass);
  932. #define MAX_GPUDEVICES 16
  933. #define MAX_DEVICES 4096
  934. #define MIN_SHA_INTENSITY -10
  935. #define MIN_SHA_INTENSITY_STR "-10"
  936. #define MAX_SHA_INTENSITY 14
  937. #define MAX_SHA_INTENSITY_STR "14"
  938. #define MIN_SCRYPT_INTENSITY 8
  939. #define MIN_SCRYPT_INTENSITY_STR "8"
  940. #define MAX_SCRYPT_INTENSITY 31
  941. #define MAX_SCRYPT_INTENSITY_STR "31"
  942. #ifdef USE_SCRYPT
  943. #define MIN_INTENSITY (opt_scrypt ? MIN_SCRYPT_INTENSITY : MIN_SHA_INTENSITY)
  944. #define MIN_INTENSITY_STR (opt_scrypt ? MIN_SCRYPT_INTENSITY_STR : MIN_SHA_INTENSITY_STR)
  945. #define MAX_INTENSITY (opt_scrypt ? MAX_SCRYPT_INTENSITY : MAX_SHA_INTENSITY)
  946. #define MAX_INTENSITY_STR (opt_scrypt ? MAX_SCRYPT_INTENSITY_STR : MAX_SHA_INTENSITY_STR)
  947. #define MAX_GPU_INTENSITY MAX_SCRYPT_INTENSITY
  948. #else
  949. #define MIN_INTENSITY MIN_SHA_INTENSITY
  950. #define MIN_INTENSITY_STR MIN_SHA_INTENSITY_STR
  951. #define MAX_INTENSITY MAX_SHA_INTENSITY
  952. #define MAX_INTENSITY_STR MAX_SHA_INTENSITY_STR
  953. #define MAX_GPU_INTENSITY MAX_SHA_INTENSITY
  954. #endif
  955. extern struct string_elist *scan_devices;
  956. extern bool opt_force_dev_init;
  957. extern int nDevs;
  958. extern int opt_n_threads;
  959. extern int num_processors;
  960. extern int hw_errors;
  961. extern bool use_syslog;
  962. extern bool opt_quiet;
  963. extern struct thr_info *control_thr;
  964. extern struct thr_info **mining_thr;
  965. extern struct cgpu_info gpus[MAX_GPUDEVICES];
  966. #ifdef USE_SCRYPT
  967. extern bool opt_scrypt;
  968. #else
  969. #define opt_scrypt (0)
  970. #endif
  971. extern double total_secs;
  972. extern int mining_threads;
  973. extern struct cgpu_info *cpus;
  974. extern int total_devices;
  975. extern struct cgpu_info **devices;
  976. extern int total_devices_new;
  977. extern struct cgpu_info **devices_new;
  978. extern int total_pools;
  979. extern struct pool **pools;
  980. extern const char *algo_names[];
  981. extern enum sha256_algos opt_algo;
  982. extern struct strategies strategies[];
  983. extern enum pool_strategy pool_strategy;
  984. extern int opt_rotate_period;
  985. extern double total_rolling;
  986. extern double total_mhashes_done;
  987. extern unsigned int new_blocks;
  988. extern unsigned int found_blocks;
  989. extern int total_accepted, total_rejected;
  990. extern int total_getworks, total_stale, total_discarded;
  991. extern uint64_t total_bytes_rcvd, total_bytes_sent;
  992. #define total_bytes_xfer (total_bytes_rcvd + total_bytes_sent)
  993. extern double total_diff1, total_bad_diff1;
  994. extern double total_diff_accepted, total_diff_rejected, total_diff_stale;
  995. extern unsigned int local_work;
  996. extern unsigned int total_go, total_ro;
  997. extern const int opt_cutofftemp;
  998. extern int opt_hysteresis;
  999. extern int opt_fail_pause;
  1000. extern int opt_log_interval;
  1001. extern unsigned long long global_hashrate;
  1002. extern unsigned unittest_failures;
  1003. extern char *current_fullhash;
  1004. extern double current_diff;
  1005. extern double best_diff;
  1006. extern time_t block_time;
  1007. struct curl_ent {
  1008. CURL *curl;
  1009. struct curl_ent *next;
  1010. struct timeval tv;
  1011. };
  1012. /* Disabled needs to be the lowest enum as a freshly calloced value will then
  1013. * equal disabled */
  1014. enum pool_enable {
  1015. POOL_DISABLED,
  1016. POOL_ENABLED,
  1017. POOL_REJECTING,
  1018. POOL_MISBEHAVING,
  1019. };
  1020. enum pool_protocol {
  1021. PLP_NONE,
  1022. PLP_GETWORK,
  1023. PLP_GETBLOCKTEMPLATE,
  1024. };
  1025. struct bfg_tmpl_ref {
  1026. blktemplate_t *tmpl;
  1027. int refcount;
  1028. pthread_mutex_t mutex;
  1029. };
  1030. struct ntime_roll_limits {
  1031. uint32_t min;
  1032. uint32_t max;
  1033. struct timeval tv_ref;
  1034. int16_t minoff;
  1035. int16_t maxoff;
  1036. };
  1037. struct stratum_work {
  1038. // Used only as a session id for resuming
  1039. char *nonce1;
  1040. struct bfg_tmpl_ref *tr;
  1041. char *job_id;
  1042. bool clean;
  1043. bytes_t coinbase;
  1044. size_t nonce2_offset;
  1045. int n2size;
  1046. int merkles;
  1047. bytes_t merkle_bin;
  1048. uint8_t header1[36];
  1049. uint8_t diffbits[4];
  1050. uint32_t ntime;
  1051. struct timeval tv_received;
  1052. struct ntime_roll_limits ntime_roll_limits;
  1053. struct timeval tv_expire;
  1054. uint8_t target[32];
  1055. bool transparency_probed;
  1056. struct timeval tv_transparency;
  1057. bool opaque;
  1058. cglock_t *data_lock_p;
  1059. struct pool *pool;
  1060. unsigned char work_restart_id;
  1061. };
  1062. #define RBUFSIZE 8192
  1063. #define RECVSIZE (RBUFSIZE - 4)
  1064. /*
  1065. * Build an hash table in case there are lots
  1066. * of addresses to check against
  1067. */
  1068. struct bytes_hashtbl {
  1069. bytes_t b;
  1070. UT_hash_handle hh;
  1071. };
  1072. struct coinbase_param {
  1073. bool testnet;
  1074. struct bytes_hashtbl *scripts;
  1075. int64_t total;
  1076. float perc;
  1077. };
  1078. struct pool {
  1079. int pool_no;
  1080. int prio;
  1081. int accepted, rejected;
  1082. int seq_rejects;
  1083. int seq_getfails;
  1084. int solved;
  1085. double diff1;
  1086. char diff[ALLOC_H2B_SHORTV];
  1087. int quota;
  1088. int quota_gcd;
  1089. int quota_used;
  1090. int works;
  1091. double diff_accepted;
  1092. double diff_rejected;
  1093. double diff_stale;
  1094. bool submit_fail;
  1095. bool idle;
  1096. bool lagging;
  1097. bool probed;
  1098. int force_rollntime;
  1099. enum pool_enable enabled;
  1100. bool failover_only; // NOTE: Ignored by failover and loadbalance strategies (use priority and quota respectively)
  1101. bool submit_old;
  1102. bool removed;
  1103. bool lp_started;
  1104. unsigned char work_restart_id;
  1105. time_t work_restart_time;
  1106. char work_restart_timestamp[11];
  1107. uint32_t block_id;
  1108. enum pool_protocol proto;
  1109. char *hdr_path;
  1110. char *lp_url;
  1111. char *lp_id;
  1112. enum pool_protocol lp_proto;
  1113. curl_socket_t lp_socket;
  1114. bool lp_active;
  1115. unsigned int getwork_requested;
  1116. unsigned int stale_shares;
  1117. unsigned int discarded_work;
  1118. unsigned int getfail_occasions;
  1119. unsigned int remotefail_occasions;
  1120. struct timeval tv_idle;
  1121. double utility;
  1122. int last_shares, shares;
  1123. char *rpc_url;
  1124. char *rpc_userpass;
  1125. char *rpc_user, *rpc_pass;
  1126. char *rpc_proxy;
  1127. pthread_mutex_t pool_lock;
  1128. pthread_mutex_t pool_test_lock;
  1129. cglock_t data_lock;
  1130. struct thread_q *submit_q;
  1131. struct thread_q *getwork_q;
  1132. pthread_t longpoll_thread;
  1133. pthread_t test_thread;
  1134. bool testing;
  1135. int curls;
  1136. pthread_cond_t cr_cond;
  1137. struct curl_ent *curllist;
  1138. struct submit_work_state *sws_waiting_on_curl;
  1139. time_t last_work_time;
  1140. struct timeval tv_last_work_time;
  1141. time_t last_share_time;
  1142. double last_share_diff;
  1143. double best_diff;
  1144. struct cgminer_stats cgminer_stats;
  1145. struct cgminer_pool_stats cgminer_pool_stats;
  1146. /* Stratum variables */
  1147. char *stratum_url;
  1148. char *stratum_port;
  1149. CURL *stratum_curl;
  1150. char curl_err_str[CURL_ERROR_SIZE];
  1151. SOCKETTYPE sock;
  1152. char *sockbuf;
  1153. size_t sockbuf_size;
  1154. char *sockaddr_url; /* stripped url used for sockaddr */
  1155. size_t n1_len;
  1156. uint64_t nonce2;
  1157. int nonce2sz;
  1158. #ifdef WORDS_BIGENDIAN
  1159. int nonce2off;
  1160. #endif
  1161. char *sessionid;
  1162. bool has_stratum;
  1163. bool stratum_active;
  1164. bool stratum_init;
  1165. bool stratum_notify;
  1166. struct stratum_work swork;
  1167. uint8_t next_target[0x20];
  1168. char *next_nonce1;
  1169. int next_n2size;
  1170. pthread_t stratum_thread;
  1171. pthread_mutex_t stratum_lock;
  1172. char *admin_msg;
  1173. /* param for coinbase check */
  1174. struct coinbase_param cb_param;
  1175. pthread_mutex_t last_work_lock;
  1176. struct work *last_work_copy;
  1177. };
  1178. #define GETWORK_MODE_TESTPOOL 'T'
  1179. #define GETWORK_MODE_POOL 'P'
  1180. #define GETWORK_MODE_LP 'L'
  1181. #define GETWORK_MODE_BENCHMARK 'B'
  1182. #define GETWORK_MODE_STRATUM 'S'
  1183. #define GETWORK_MODE_GBT 'G'
  1184. typedef unsigned work_device_id_t;
  1185. #define PRIwdi "04x"
  1186. struct work {
  1187. unsigned char data[128];
  1188. unsigned char midstate[32];
  1189. unsigned char target[32];
  1190. unsigned char hash[32];
  1191. double share_diff;
  1192. int rolls;
  1193. struct ntime_roll_limits ntime_roll_limits;
  1194. struct {
  1195. uint32_t nonce;
  1196. } blk;
  1197. struct thr_info *thr;
  1198. int thr_id;
  1199. struct pool *pool;
  1200. struct timeval tv_staged;
  1201. bool mined;
  1202. bool clone;
  1203. bool cloned;
  1204. int rolltime;
  1205. bool longpoll;
  1206. bool stale;
  1207. bool mandatory;
  1208. bool block;
  1209. bool stratum;
  1210. char *job_id;
  1211. bytes_t nonce2;
  1212. char *nonce1;
  1213. unsigned char work_restart_id;
  1214. int id;
  1215. work_device_id_t device_id;
  1216. UT_hash_handle hh;
  1217. // Please don't use this if it's at all possible, I'd like to get rid of it eventually.
  1218. void *device_data;
  1219. void *(*device_data_dup_func)(struct work *);
  1220. void (*device_data_free_func)(struct work *);
  1221. double work_difficulty;
  1222. float nonce_diff;
  1223. // Allow devices to identify work if multiple sub-devices
  1224. // DEPRECATED: New code should be using multiple processors instead
  1225. int subid;
  1226. // Allow devices to timestamp work for their own purposes
  1227. struct timeval tv_stamp;
  1228. struct bfg_tmpl_ref *tr;
  1229. unsigned int dataid;
  1230. bool do_foreign_submit;
  1231. struct timeval tv_getwork;
  1232. time_t ts_getwork;
  1233. struct timeval tv_getwork_reply;
  1234. struct timeval tv_cloned;
  1235. struct timeval tv_work_start;
  1236. struct timeval tv_work_found;
  1237. char getwork_mode;
  1238. /* Used to queue shares in submit_waiting */
  1239. struct work *prev;
  1240. struct work *next;
  1241. };
  1242. extern void get_datestamp(char *, size_t, time_t);
  1243. #define get_now_datestamp(buf, bufsz) get_datestamp(buf, bufsz, INVALID_TIMESTAMP)
  1244. extern void get_benchmark_work(struct work *, bool use_swork);
  1245. extern void stratum_work_cpy(struct stratum_work *dst, const struct stratum_work *src);
  1246. extern void stratum_work_clean(struct stratum_work *);
  1247. extern bool pool_has_usable_swork(const struct pool *);
  1248. extern void gen_stratum_work2(struct work *, struct stratum_work *);
  1249. extern void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff);
  1250. static inline
  1251. void inc_hw_errors2(struct thr_info * const thr, const struct work * const work, const uint32_t *bad_nonce_p)
  1252. {
  1253. inc_hw_errors3(thr, work, bad_nonce_p, work ? work->nonce_diff : 1.);
  1254. }
  1255. #define UNKNOWN_NONCE ((uint32_t*)inc_hw_errors2)
  1256. static inline
  1257. void inc_hw_errors(struct thr_info * const thr, const struct work * const work, const uint32_t bad_nonce)
  1258. {
  1259. inc_hw_errors2(thr, work, work ? &bad_nonce : NULL);
  1260. }
  1261. #define inc_hw_errors_only(thr) inc_hw_errors(thr, NULL, 0)
  1262. enum test_nonce2_result {
  1263. TNR_GOOD = 1,
  1264. TNR_HIGH = 0,
  1265. TNR_BAD = -1,
  1266. };
  1267. extern enum test_nonce2_result _test_nonce2(struct work *, uint32_t nonce, bool checktarget);
  1268. #define test_nonce(work, nonce, checktarget) (_test_nonce2(work, nonce, checktarget) == TNR_GOOD)
  1269. #define test_nonce2(work, nonce) (_test_nonce2(work, nonce, true))
  1270. extern bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce);
  1271. extern bool submit_noffset_nonce(struct thr_info *thr, struct work *work, uint32_t nonce,
  1272. int noffset);
  1273. extern void __add_queued(struct cgpu_info *cgpu, struct work *work);
  1274. extern struct work *get_queued(struct cgpu_info *cgpu);
  1275. extern void add_queued(struct cgpu_info *cgpu, struct work *work);
  1276. extern struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id);
  1277. extern struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1278. extern struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1279. extern struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1280. extern void __work_completed(struct cgpu_info *cgpu, struct work *work);
  1281. extern int age_queued_work(struct cgpu_info *cgpu, double secs);
  1282. extern void work_completed(struct cgpu_info *cgpu, struct work *work);
  1283. extern struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1284. extern void flush_queue(struct cgpu_info *cgpu);
  1285. extern bool abandon_work(struct work *, struct timeval *work_runtime, uint64_t hashes);
  1286. extern void hash_queued_work(struct thr_info *mythr);
  1287. extern void get_statline3(char *buf, size_t bufsz, struct cgpu_info *, bool for_curses, bool opt_show_procs);
  1288. extern void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 3, 4);
  1289. extern void _wlog(const char *str);
  1290. extern void _wlogprint(const char *str);
  1291. extern int curses_int(const char *query);
  1292. extern char *curses_input(const char *query);
  1293. extern bool drv_ready(struct cgpu_info *);
  1294. extern double stats_elapsed(struct cgminer_stats *);
  1295. #define cgpu_runtime(cgpu) stats_elapsed(&((cgpu)->cgminer_stats))
  1296. extern double cgpu_utility(struct cgpu_info *);
  1297. extern void kill_work(void);
  1298. extern int prioritize_pools(char *param, int *pid);
  1299. extern void validate_pool_priorities(void);
  1300. extern void enable_pool(struct pool *);
  1301. extern void disable_pool(struct pool *, enum pool_enable);
  1302. extern void switch_pools(struct pool *selected);
  1303. extern void remove_pool(struct pool *pool);
  1304. extern void write_config(FILE *fcfg);
  1305. extern void zero_bestshare(void);
  1306. extern void zero_stats(void);
  1307. extern void default_save_file(char *filename);
  1308. extern bool _log_curses_only(int prio, const char *datetime, const char *str);
  1309. extern void clear_logwin(void);
  1310. extern void logwin_update(void);
  1311. extern bool pool_tclear(struct pool *pool, bool *var);
  1312. extern bool pool_may_redirect_to(struct pool *, const char *uri);
  1313. extern void pool_check_coinbase(struct pool *, const uint8_t *cbtxn, size_t cbtxnsz);
  1314. extern struct thread_q *tq_new(void);
  1315. extern void tq_free(struct thread_q *tq);
  1316. extern bool tq_push(struct thread_q *tq, void *data);
  1317. extern void *tq_pop(struct thread_q *);
  1318. extern void tq_freeze(struct thread_q *tq);
  1319. extern void tq_thaw(struct thread_q *tq);
  1320. extern bool successful_connect;
  1321. extern void adl(void);
  1322. extern void tmpl_decref(struct bfg_tmpl_ref *);
  1323. extern void clean_work(struct work *work);
  1324. extern void free_work(struct work *work);
  1325. extern void __copy_work(struct work *work, const struct work *base_work);
  1326. extern struct work *copy_work_noffset(const struct work *base_work, int noffset);
  1327. #define copy_work(work_in) copy_work_noffset(work_in, 0)
  1328. extern double share_diff(const struct work *);
  1329. extern const char *bfg_workpadding_bin;
  1330. extern void set_simple_ntime_roll_limit(struct ntime_roll_limits *, uint32_t ntime_base, int ntime_roll, const struct timeval *tvp_ref);
  1331. extern void work_set_simple_ntime_roll_limit(struct work *, int ntime_roll, const struct timeval *tvp_ref);
  1332. extern int work_ntime_range(struct work *, const struct timeval *tvp_earliest, const struct timeval *tvp_latest, int desired_roll);
  1333. extern void work_hash(struct work *);
  1334. #define NTIME_DATA_OFFSET 0x44
  1335. static inline
  1336. uint32_t work_get_ntime(const struct work * const work)
  1337. {
  1338. return upk_u32be(work->data, 0x44);
  1339. }
  1340. static inline
  1341. void work_set_ntime(struct work * const work, const uint32_t ntime)
  1342. {
  1343. pk_u32be(work->data, 0x44, ntime);
  1344. }
  1345. extern char *devpath_to_devid(const char *);
  1346. extern struct thr_info *get_thread(int thr_id);
  1347. extern struct cgpu_info *get_devices(int id);
  1348. extern int create_new_cgpus(void (*addfunc)(void*), void *arg);
  1349. extern int scan_serial(const char *);
  1350. extern bool check_coinbase(const uint8_t *, size_t, const struct coinbase_param *cb_param);
  1351. enum api_data_type {
  1352. API_ESCAPE,
  1353. API_STRING,
  1354. API_CONST,
  1355. API_UINT8,
  1356. API_INT16,
  1357. API_UINT16,
  1358. API_INT,
  1359. API_UINT,
  1360. API_UINT32,
  1361. API_UINT64,
  1362. API_DOUBLE,
  1363. API_ELAPSED,
  1364. API_BOOL,
  1365. API_TIMEVAL,
  1366. API_TIME,
  1367. API_MHS,
  1368. API_MHTOTAL,
  1369. API_TEMP,
  1370. API_UTILITY,
  1371. API_FREQ,
  1372. API_VOLTS,
  1373. API_HS,
  1374. API_DIFF,
  1375. API_JSON,
  1376. API_PERCENT
  1377. };
  1378. struct api_data {
  1379. enum api_data_type type;
  1380. char *name;
  1381. void *data;
  1382. bool data_was_malloc;
  1383. struct api_data *prev;
  1384. struct api_data *next;
  1385. };
  1386. extern struct api_data *api_add_escape(struct api_data *root, char *name, char *data, bool copy_data);
  1387. extern struct api_data *api_add_string(struct api_data *root, char *name, const char *data, bool copy_data);
  1388. extern struct api_data *api_add_const(struct api_data *root, char *name, const char *data, bool copy_data);
  1389. extern struct api_data *api_add_uint8(struct api_data *root, char *name, uint8_t *data, bool copy_data);
  1390. extern struct api_data *api_add_int16(struct api_data *root, char *name, uint16_t *data, bool copy_data);
  1391. extern struct api_data *api_add_uint16(struct api_data *root, char *name, uint16_t *data, bool copy_data);
  1392. extern struct api_data *api_add_int(struct api_data *root, char *name, int *data, bool copy_data);
  1393. extern struct api_data *api_add_uint(struct api_data *root, char *name, unsigned int *data, bool copy_data);
  1394. extern struct api_data *api_add_uint32(struct api_data *root, char *name, uint32_t *data, bool copy_data);
  1395. extern struct api_data *api_add_uint64(struct api_data *root, char *name, uint64_t *data, bool copy_data);
  1396. extern struct api_data *api_add_double(struct api_data *root, char *name, double *data, bool copy_data);
  1397. extern struct api_data *api_add_elapsed(struct api_data *root, char *name, double *data, bool copy_data);
  1398. extern struct api_data *api_add_bool(struct api_data *root, char *name, bool *data, bool copy_data);
  1399. extern struct api_data *api_add_timeval(struct api_data *root, char *name, struct timeval *data, bool copy_data);
  1400. extern struct api_data *api_add_time(struct api_data *root, char *name, time_t *data, bool copy_data);
  1401. extern struct api_data *api_add_mhs(struct api_data *root, char *name, double *data, bool copy_data);
  1402. extern struct api_data *api_add_mhstotal(struct api_data *root, char *name, double *data, bool copy_data);
  1403. extern struct api_data *api_add_temp(struct api_data *root, char *name, float *data, bool copy_data);
  1404. extern struct api_data *api_add_utility(struct api_data *root, char *name, double *data, bool copy_data);
  1405. extern struct api_data *api_add_freq(struct api_data *root, char *name, double *data, bool copy_data);
  1406. extern struct api_data *api_add_volts(struct api_data *root, char *name, float *data, bool copy_data);
  1407. extern struct api_data *api_add_hs(struct api_data *root, char *name, double *data, bool copy_data);
  1408. extern struct api_data *api_add_diff(struct api_data *root, char *name, double *data, bool copy_data);
  1409. extern struct api_data *api_add_json(struct api_data *root, char *name, json_t *data, bool copy_data);
  1410. #endif /* __MINER_H__ */