miner.h 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657
  1. #ifndef __MINER_H__
  2. #define __MINER_H__
  3. #include "config.h"
  4. #include <stdbool.h>
  5. #include <stdint.h>
  6. #include <sys/time.h>
  7. #include <pthread.h>
  8. #include <jansson.h>
  9. #ifdef HAVE_LIBCURL
  10. #include <curl/curl.h>
  11. #else
  12. typedef char CURL;
  13. extern char *curly;
  14. #define curl_easy_init(curl) (curly)
  15. #define curl_easy_cleanup(curl) {}
  16. #define curl_global_cleanup() {}
  17. #define CURL_GLOBAL_ALL 0
  18. #define curl_global_init(X) (0)
  19. #endif
  20. #include <sched.h>
  21. #include "elist.h"
  22. #include "uthash.h"
  23. #include "logging.h"
  24. #include "util.h"
  25. #include <sys/types.h>
  26. #ifndef WIN32
  27. # include <sys/socket.h>
  28. # include <netdb.h>
  29. #endif
  30. #ifdef USE_USBUTILS
  31. #include <semaphore.h>
  32. #endif
  33. #ifdef STDC_HEADERS
  34. # include <stdlib.h>
  35. # include <stddef.h>
  36. #else
  37. # ifdef HAVE_STDLIB_H
  38. # include <stdlib.h>
  39. # endif
  40. #endif
  41. #ifdef HAVE_ALLOCA_H
  42. # include <alloca.h>
  43. #elif defined __GNUC__
  44. # ifndef WIN32
  45. # define alloca __builtin_alloca
  46. # else
  47. # include <malloc.h>
  48. # endif
  49. #elif defined _AIX
  50. # define alloca __alloca
  51. #elif defined _MSC_VER
  52. # include <malloc.h>
  53. # define alloca _alloca
  54. #else
  55. # ifndef HAVE_ALLOCA
  56. # ifdef __cplusplus
  57. extern "C"
  58. # endif
  59. void *alloca (size_t);
  60. # endif
  61. #endif
  62. #ifdef __MINGW32__
  63. #include <windows.h>
  64. #include <io.h>
  65. static inline int fsync (int fd)
  66. {
  67. return (FlushFileBuffers ((HANDLE) _get_osfhandle (fd))) ? 0 : -1;
  68. }
  69. #ifndef EWOULDBLOCK
  70. # define EWOULDBLOCK EAGAIN
  71. #endif
  72. #ifndef MSG_DONTWAIT
  73. # define MSG_DONTWAIT 0x1000000
  74. #endif
  75. #endif /* __MINGW32__ */
  76. #if defined (__linux)
  77. #ifndef LINUX
  78. #define LINUX
  79. #endif
  80. #endif
  81. #ifdef WIN32
  82. #ifndef timersub
  83. #define timersub(a, b, result) \
  84. do { \
  85. (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
  86. (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
  87. if ((result)->tv_usec < 0) { \
  88. --(result)->tv_sec; \
  89. (result)->tv_usec += 1000000; \
  90. } \
  91. } while (0)
  92. #endif
  93. #ifndef timeradd
  94. # define timeradd(a, b, result) \
  95. do { \
  96. (result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
  97. (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
  98. if ((result)->tv_usec >= 1000000) \
  99. { \
  100. ++(result)->tv_sec; \
  101. (result)->tv_usec -= 1000000; \
  102. } \
  103. } while (0)
  104. #endif
  105. #endif
  106. #ifdef USE_USBUTILS
  107. #include <libusb.h>
  108. #endif
  109. #ifdef USE_USBUTILS
  110. #include "usbutils.h"
  111. #endif
  112. #if (!defined(WIN32) && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) \
  113. || (defined(WIN32) && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)))
  114. #ifndef bswap_16
  115. #define bswap_16(value) \
  116. ((((value) & 0xff) << 8) | ((value) >> 8))
  117. #define bswap_32 __builtin_bswap32
  118. #define bswap_64 __builtin_bswap64
  119. #endif
  120. #else
  121. #if HAVE_BYTESWAP_H
  122. #include <byteswap.h>
  123. #elif defined(USE_SYS_ENDIAN_H)
  124. #include <sys/endian.h>
  125. #elif defined(__APPLE__)
  126. #include <libkern/OSByteOrder.h>
  127. #define bswap_16 OSSwapInt16
  128. #define bswap_32 OSSwapInt32
  129. #define bswap_64 OSSwapInt64
  130. #else
  131. #define bswap_16(value) \
  132. ((((value) & 0xff) << 8) | ((value) >> 8))
  133. #define bswap_32(value) \
  134. (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
  135. (uint32_t)bswap_16((uint16_t)((value) >> 16)))
  136. #define bswap_64(value) \
  137. (((uint64_t)bswap_32((uint32_t)((value) & 0xffffffff)) \
  138. << 32) | \
  139. (uint64_t)bswap_32((uint32_t)((value) >> 32)))
  140. #endif
  141. #endif /* !defined(__GLXBYTEORDER_H__) */
  142. #ifndef bswap_8
  143. extern unsigned char bit_swap_table[256];
  144. #define bswap_8(x) (bit_swap_table[x])
  145. #endif
  146. /* This assumes htobe32 is a macro in endian.h, and if it doesn't exist, then
  147. * htobe64 also won't exist */
  148. #ifndef htobe32
  149. # if __BYTE_ORDER == __LITTLE_ENDIAN
  150. # define htole8(x) (x)
  151. # define htole16(x) (x)
  152. # define le16toh(x) (x)
  153. # define htole32(x) (x)
  154. # define htole64(x) (x)
  155. # define le32toh(x) (x)
  156. # define le64toh(x) (x)
  157. # define be32toh(x) bswap_32(x)
  158. # define be64toh(x) bswap_64(x)
  159. # define htobe16(x) bswap_16(x)
  160. # define htobe32(x) bswap_32(x)
  161. # define htobe64(x) bswap_64(x)
  162. # elif __BYTE_ORDER == __BIG_ENDIAN
  163. # define htole8(x) bswap_8(x)
  164. # define htole16(x) bswap_16(x)
  165. # define le16toh(x) bswap_16(x)
  166. # define htole32(x) bswap_32(x)
  167. # define le32toh(x) bswap_32(x)
  168. # define le64toh(x) bswap_64(x)
  169. # define htole64(x) bswap_64(x)
  170. # define be32toh(x) (x)
  171. # define be64toh(x) (x)
  172. # define htobe16(x) (x)
  173. # define htobe32(x) (x)
  174. # define htobe64(x) (x)
  175. #else
  176. #error UNKNOWN BYTE ORDER
  177. #endif
  178. #else
  179. # if __BYTE_ORDER == __LITTLE_ENDIAN
  180. # define htole8(x) (x)
  181. # elif __BYTE_ORDER == __BIG_ENDIAN
  182. # define htole8(x) bswap_8(x)
  183. #else
  184. #error UNKNOWN BYTE ORDER
  185. #endif
  186. #endif
  187. #undef unlikely
  188. #undef likely
  189. #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
  190. #define unlikely(expr) (__builtin_expect(!!(expr), 0))
  191. #define likely(expr) (__builtin_expect(!!(expr), 1))
  192. #else
  193. #define unlikely(expr) (expr)
  194. #define likely(expr) (expr)
  195. #endif
  196. #define __maybe_unused __attribute__((unused))
  197. #define uninitialised_var(x) x = x
  198. #if defined(__i386__)
  199. #define WANT_CRYPTOPP_ASM32
  200. #endif
  201. #ifndef ARRAY_SIZE
  202. #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
  203. #endif
  204. /* No semtimedop on apple so ignore timeout till we implement one */
  205. #ifdef __APPLE__
  206. #define semtimedop(SEM, SOPS, VAL, TIMEOUT) semop(SEM, SOPS, VAL)
  207. #endif
  208. #ifndef MIN
  209. #define MIN(x, y) ((x) > (y) ? (y) : (x))
  210. #endif
  211. #ifndef MAX
  212. #define MAX(x, y) ((x) > (y) ? (x) : (y))
  213. #endif
  214. /* Put avalon last to make it the last device it tries to detect to prevent it
  215. * trying to claim same chip but different devices. Adding a device here will
  216. * update all macros in the code that use the *_PARSE_COMMANDS macros for each
  217. * listed driver. */
  218. #define FPGA_PARSE_COMMANDS(DRIVER_ADD_COMMAND) \
  219. DRIVER_ADD_COMMAND(bitforce) \
  220. DRIVER_ADD_COMMAND(modminer)
  221. #define ASIC_PARSE_COMMANDS(DRIVER_ADD_COMMAND) \
  222. DRIVER_ADD_COMMAND(bitmain) \
  223. DRIVER_ADD_COMMAND(bmsc) \
  224. DRIVER_ADD_COMMAND(avalon) \
  225. DRIVER_ADD_COMMAND(avalon2) \
  226. DRIVER_ADD_COMMAND(avalon4) \
  227. DRIVER_ADD_COMMAND(bflsc) \
  228. DRIVER_ADD_COMMAND(bitfury) \
  229. DRIVER_ADD_COMMAND(blockerupter) \
  230. DRIVER_ADD_COMMAND(cointerra) \
  231. DRIVER_ADD_COMMAND(hashfast) \
  232. DRIVER_ADD_COMMAND(hashratio) \
  233. DRIVER_ADD_COMMAND(icarus) \
  234. DRIVER_ADD_COMMAND(klondike) \
  235. DRIVER_ADD_COMMAND(knc) \
  236. DRIVER_ADD_COMMAND(bitmineA1) \
  237. DRIVER_ADD_COMMAND(drillbit) \
  238. DRIVER_ADD_COMMAND(bab) \
  239. DRIVER_ADD_COMMAND(minion) \
  240. DRIVER_ADD_COMMAND(sp10) \
  241. DRIVER_ADD_COMMAND(sp30)
  242. #define DRIVER_PARSE_COMMANDS(DRIVER_ADD_COMMAND) \
  243. FPGA_PARSE_COMMANDS(DRIVER_ADD_COMMAND) \
  244. ASIC_PARSE_COMMANDS(DRIVER_ADD_COMMAND)
  245. #define DRIVER_ENUM(X) DRIVER_##X,
  246. #define DRIVER_PROTOTYPE(X) struct device_drv X##_drv;
  247. /* Create drv_driver enum from DRIVER_PARSE_COMMANDS macro */
  248. enum drv_driver {
  249. DRIVER_PARSE_COMMANDS(DRIVER_ENUM)
  250. DRIVER_MAX
  251. };
  252. /* Use DRIVER_PARSE_COMMANDS to generate extern device_drv prototypes */
  253. DRIVER_PARSE_COMMANDS(DRIVER_PROTOTYPE)
  254. enum alive {
  255. LIFE_WELL,
  256. LIFE_SICK,
  257. LIFE_DEAD,
  258. LIFE_NOSTART,
  259. LIFE_INIT,
  260. };
  261. enum pool_strategy {
  262. POOL_FAILOVER,
  263. POOL_ROUNDROBIN,
  264. POOL_ROTATE,
  265. POOL_LOADBALANCE,
  266. POOL_BALANCE,
  267. };
  268. #define TOP_STRATEGY (POOL_BALANCE)
  269. struct strategies {
  270. const char *s;
  271. };
  272. struct cgpu_info;
  273. extern void blank_get_statline_before(char *buf, size_t bufsiz, struct cgpu_info __maybe_unused *cgpu);
  274. struct api_data;
  275. struct thr_info;
  276. struct work;
  277. struct device_drv {
  278. enum drv_driver drv_id;
  279. char *dname;
  280. char *name;
  281. // DRV-global functions
  282. void (*drv_detect)(bool);
  283. // Device-specific functions
  284. void (*reinit_device)(struct cgpu_info *);
  285. void (*get_statline_before)(char *, size_t, struct cgpu_info *);
  286. void (*get_statline)(char *, size_t, struct cgpu_info *);
  287. struct api_data *(*get_api_stats)(struct cgpu_info *);
  288. bool (*get_stats)(struct cgpu_info *);
  289. void (*identify_device)(struct cgpu_info *); // e.g. to flash a led
  290. char *(*set_device)(struct cgpu_info *, char *option, char *setting, char *replybuf);
  291. // Thread-specific functions
  292. bool (*thread_prepare)(struct thr_info *);
  293. uint64_t (*can_limit_work)(struct thr_info *);
  294. bool (*thread_init)(struct thr_info *);
  295. bool (*prepare_work)(struct thr_info *, struct work *);
  296. /* Which hash work loop this driver uses. */
  297. void (*hash_work)(struct thr_info *);
  298. /* Two variants depending on whether the device divides work up into
  299. * small pieces or works with whole work items and may or may not have
  300. * a queue of its own. */
  301. int64_t (*scanhash)(struct thr_info *, struct work *, int64_t);
  302. int64_t (*scanwork)(struct thr_info *);
  303. /* Used to extract work from the hash table of queued work and tell
  304. * the main loop that it should not add any further work to the table.
  305. */
  306. bool (*queue_full)(struct cgpu_info *);
  307. /* Tell the driver of a block change */
  308. void (*flush_work)(struct cgpu_info *);
  309. /* Tell the driver of an updated work template for eg. stratum */
  310. void (*update_work)(struct cgpu_info *);
  311. void (*hw_error)(struct thr_info *);
  312. void (*thread_shutdown)(struct thr_info *);
  313. void (*thread_enable)(struct thr_info *);
  314. /* What should be zeroed in this device when global zero stats is sent */
  315. void (*zero_stats)(struct cgpu_info *);
  316. // Does it need to be free()d?
  317. bool copy;
  318. /* Highest target diff the device supports */
  319. double max_diff;
  320. /* Lowest diff the controller can safely run at */
  321. double min_diff;
  322. };
  323. extern struct device_drv *copy_drv(struct device_drv*);
  324. enum dev_enable {
  325. DEV_ENABLED,
  326. DEV_DISABLED,
  327. DEV_RECOVER,
  328. };
  329. enum dev_reason {
  330. REASON_THREAD_FAIL_INIT,
  331. REASON_THREAD_ZERO_HASH,
  332. REASON_THREAD_FAIL_QUEUE,
  333. REASON_DEV_SICK_IDLE_60,
  334. REASON_DEV_DEAD_IDLE_600,
  335. REASON_DEV_NOSTART,
  336. REASON_DEV_OVER_HEAT,
  337. REASON_DEV_THERMAL_CUTOFF,
  338. REASON_DEV_COMMS_ERROR,
  339. REASON_DEV_THROTTLE,
  340. };
  341. #define REASON_NONE "None"
  342. #define REASON_THREAD_FAIL_INIT_STR "Thread failed to init"
  343. #define REASON_THREAD_ZERO_HASH_STR "Thread got zero hashes"
  344. #define REASON_THREAD_FAIL_QUEUE_STR "Thread failed to queue work"
  345. #define REASON_DEV_SICK_IDLE_60_STR "Device idle for 60s"
  346. #define REASON_DEV_DEAD_IDLE_600_STR "Device dead - idle for 600s"
  347. #define REASON_DEV_NOSTART_STR "Device failed to start"
  348. #define REASON_DEV_OVER_HEAT_STR "Device over heated"
  349. #define REASON_DEV_THERMAL_CUTOFF_STR "Device reached thermal cutoff"
  350. #define REASON_DEV_COMMS_ERROR_STR "Device comms error"
  351. #define REASON_DEV_THROTTLE_STR "Device throttle"
  352. #define REASON_UNKNOWN_STR "Unknown reason - code bug"
  353. #define MIN_SEC_UNSET 99999999
  354. struct cgminer_stats {
  355. uint32_t getwork_calls;
  356. struct timeval getwork_wait;
  357. struct timeval getwork_wait_max;
  358. struct timeval getwork_wait_min;
  359. };
  360. // Just the actual network getworks to the pool
  361. struct cgminer_pool_stats {
  362. uint32_t getwork_calls;
  363. uint32_t getwork_attempts;
  364. struct timeval getwork_wait;
  365. struct timeval getwork_wait_max;
  366. struct timeval getwork_wait_min;
  367. double getwork_wait_rolling;
  368. bool hadrolltime;
  369. bool canroll;
  370. bool hadexpire;
  371. uint32_t rolltime;
  372. double min_diff;
  373. double max_diff;
  374. double last_diff;
  375. uint32_t min_diff_count;
  376. uint32_t max_diff_count;
  377. uint64_t times_sent;
  378. uint64_t bytes_sent;
  379. uint64_t net_bytes_sent;
  380. uint64_t times_received;
  381. uint64_t bytes_received;
  382. uint64_t net_bytes_received;
  383. };
  384. struct cgpu_info {
  385. int cgminer_id;
  386. struct device_drv *drv;
  387. int device_id;
  388. char *name;
  389. char *device_path;
  390. void *device_data;
  391. void *dup_data;
  392. char *unique_id;
  393. #ifdef USE_USBUTILS
  394. struct cg_usb_device *usbdev;
  395. struct cg_usb_info usbinfo;
  396. bool blacklisted;
  397. bool nozlp; // Device prefers no zero length packet
  398. #endif
  399. #if defined(USE_AVALON) || defined(USE_AVALON2)
  400. struct work **works;
  401. int work_array;
  402. int queued;
  403. int results;
  404. #endif
  405. #ifdef USE_BITMAIN
  406. int device_fd;
  407. struct work **works;
  408. int work_array;
  409. int queued;
  410. int results;
  411. #endif
  412. #ifdef USE_MODMINER
  413. char fpgaid;
  414. unsigned char clock;
  415. pthread_mutex_t *modminer_mutex;
  416. #endif
  417. #ifdef USE_BITFORCE
  418. struct timeval work_start_tv;
  419. unsigned int wait_ms;
  420. unsigned int sleep_ms;
  421. double avg_wait_f;
  422. unsigned int avg_wait_d;
  423. uint32_t nonces;
  424. bool nonce_range;
  425. bool polling;
  426. bool flash_led;
  427. #endif /* USE_BITFORCE */
  428. #if defined(USE_BITFORCE) || defined(USE_BFLSC)
  429. pthread_mutex_t device_mutex;
  430. #endif /* USE_BITFORCE || USE_BFLSC */
  431. enum dev_enable deven;
  432. int accepted;
  433. int rejected;
  434. int hw_errors;
  435. double rolling;
  436. double rolling1;
  437. double rolling5;
  438. double rolling15;
  439. double total_mhashes;
  440. double utility;
  441. enum alive status;
  442. char init[40];
  443. struct timeval last_message_tv;
  444. int threads;
  445. struct thr_info **thr;
  446. int64_t max_hashes;
  447. const char *kname;
  448. bool new_work;
  449. double temp;
  450. int cutofftemp;
  451. int64_t diff1;
  452. double diff_accepted;
  453. double diff_rejected;
  454. int last_share_pool;
  455. time_t last_share_pool_time;
  456. double last_share_diff;
  457. time_t last_device_valid_work;
  458. uint32_t last_nonce;
  459. time_t device_last_well;
  460. time_t device_last_not_well;
  461. enum dev_reason device_not_well_reason;
  462. int thread_fail_init_count;
  463. int thread_zero_hash_count;
  464. int thread_fail_queue_count;
  465. int dev_sick_idle_60_count;
  466. int dev_dead_idle_600_count;
  467. int dev_nostart_count;
  468. int dev_over_heat_count; // It's a warning but worth knowing
  469. int dev_thermal_cutoff_count;
  470. int dev_comms_error_count;
  471. int dev_throttle_count;
  472. struct cgminer_stats cgminer_stats;
  473. pthread_rwlock_t qlock;
  474. struct work *queued_work;
  475. struct work *unqueued_work;
  476. unsigned int queued_count;
  477. bool shutdown;
  478. struct timeval dev_start_tv;
  479. /* For benchmarking only */
  480. int hidiff;
  481. int lodiff;
  482. int direction;
  483. };
  484. extern bool add_cgpu(struct cgpu_info*);
  485. struct thread_q {
  486. struct list_head q;
  487. bool frozen;
  488. pthread_mutex_t mutex;
  489. pthread_cond_t cond;
  490. };
  491. struct thr_info {
  492. int id;
  493. int device_thread;
  494. bool primary_thread;
  495. pthread_t pth;
  496. cgsem_t sem;
  497. struct thread_q *q;
  498. struct cgpu_info *cgpu;
  499. void *cgpu_data;
  500. struct timeval last;
  501. struct timeval sick;
  502. bool pause;
  503. bool getwork;
  504. bool work_restart;
  505. bool work_update;
  506. };
  507. struct string_elist {
  508. char *string;
  509. bool free_me;
  510. struct list_head list;
  511. };
  512. static inline void string_elist_add(const char *s, struct list_head *head)
  513. {
  514. struct string_elist *n;
  515. n = calloc(1, sizeof(*n));
  516. n->string = strdup(s);
  517. n->free_me = true;
  518. list_add_tail(&n->list, head);
  519. }
  520. static inline void string_elist_del(struct string_elist *item)
  521. {
  522. if (item->free_me)
  523. free(item->string);
  524. list_del(&item->list);
  525. }
  526. static inline uint32_t swab32(uint32_t v)
  527. {
  528. return bswap_32(v);
  529. }
  530. static inline void swap256(void *dest_p, const void *src_p)
  531. {
  532. uint32_t *dest = dest_p;
  533. const uint32_t *src = src_p;
  534. dest[0] = src[7];
  535. dest[1] = src[6];
  536. dest[2] = src[5];
  537. dest[3] = src[4];
  538. dest[4] = src[3];
  539. dest[5] = src[2];
  540. dest[6] = src[1];
  541. dest[7] = src[0];
  542. }
  543. static inline void swab256(void *dest_p, const void *src_p)
  544. {
  545. uint32_t *dest = dest_p;
  546. const uint32_t *src = src_p;
  547. dest[0] = swab32(src[7]);
  548. dest[1] = swab32(src[6]);
  549. dest[2] = swab32(src[5]);
  550. dest[3] = swab32(src[4]);
  551. dest[4] = swab32(src[3]);
  552. dest[5] = swab32(src[2]);
  553. dest[6] = swab32(src[1]);
  554. dest[7] = swab32(src[0]);
  555. }
  556. static inline void flip12(void *dest_p, const void *src_p)
  557. {
  558. uint32_t *dest = dest_p;
  559. const uint32_t *src = src_p;
  560. int i;
  561. for (i = 0; i < 3; i++)
  562. dest[i] = swab32(src[i]);
  563. }
  564. static inline void flip32(void *dest_p, const void *src_p)
  565. {
  566. uint32_t *dest = dest_p;
  567. const uint32_t *src = src_p;
  568. int i;
  569. for (i = 0; i < 8; i++)
  570. dest[i] = swab32(src[i]);
  571. }
  572. static inline void flip64(void *dest_p, const void *src_p)
  573. {
  574. uint32_t *dest = dest_p;
  575. const uint32_t *src = src_p;
  576. int i;
  577. for (i = 0; i < 16; i++)
  578. dest[i] = swab32(src[i]);
  579. }
  580. static inline void flip80(void *dest_p, const void *src_p)
  581. {
  582. uint32_t *dest = dest_p;
  583. const uint32_t *src = src_p;
  584. int i;
  585. for (i = 0; i < 20; i++)
  586. dest[i] = swab32(src[i]);
  587. }
  588. static inline void flip128(void *dest_p, const void *src_p)
  589. {
  590. uint32_t *dest = dest_p;
  591. const uint32_t *src = src_p;
  592. int i;
  593. for (i = 0; i < 32; i++)
  594. dest[i] = swab32(src[i]);
  595. }
  596. /* For flipping to the correct endianness if necessary */
  597. #if defined(__BIG_ENDIAN__) || defined(MIPSEB)
  598. static inline void endian_flip32(void *dest_p, const void *src_p)
  599. {
  600. flip32(dest_p, src_p);
  601. }
  602. static inline void endian_flip128(void *dest_p, const void *src_p)
  603. {
  604. flip128(dest_p, src_p);
  605. }
  606. #else
  607. static inline void
  608. endian_flip32(void __maybe_unused *dest_p, const void __maybe_unused *src_p)
  609. {
  610. }
  611. static inline void
  612. endian_flip128(void __maybe_unused *dest_p, const void __maybe_unused *src_p)
  613. {
  614. }
  615. #endif
  616. extern double cgpu_runtime(struct cgpu_info *cgpu);
  617. extern double tsince_restart(void);
  618. extern double tsince_update(void);
  619. extern void __quit(int status, bool clean);
  620. extern void _quit(int status);
  621. /*
  622. * Set this to non-zero to enable lock tracking
  623. * Use the API lockstats command to see the locking status on stderr
  624. * i.e. in your log file if you 2> log.log - but not on the screen
  625. * API lockstats is privilidged but will always exist and will return
  626. * success if LOCK_TRACKING is enabled and warning if disabled
  627. * In production code, this should never be enabled since it will slow down all locking
  628. * So, e.g. use it to track down a deadlock - after a reproducable deadlock occurs
  629. * ... Of course if the API code itself deadlocks, it wont help :)
  630. */
  631. #define LOCK_TRACKING 0
  632. #if LOCK_TRACKING
  633. enum cglock_typ {
  634. CGLOCK_MUTEX,
  635. CGLOCK_RW,
  636. CGLOCK_UNKNOWN
  637. };
  638. extern uint64_t api_getlock(void *lock, const char *file, const char *func, const int line);
  639. extern void api_gotlock(uint64_t id, void *lock, const char *file, const char *func, const int line);
  640. extern uint64_t api_trylock(void *lock, const char *file, const char *func, const int line);
  641. extern void api_didlock(uint64_t id, int ret, void *lock, const char *file, const char *func, const int line);
  642. extern void api_gunlock(void *lock, const char *file, const char *func, const int line);
  643. extern void api_initlock(void *lock, enum cglock_typ typ, const char *file, const char *func, const int line);
  644. #define GETLOCK(_lock, _file, _func, _line) uint64_t _id1 = api_getlock((void *)(_lock), _file, _func, _line)
  645. #define GOTLOCK(_lock, _file, _func, _line) api_gotlock(_id1, (void *)(_lock), _file, _func, _line)
  646. #define TRYLOCK(_lock, _file, _func, _line) uint64_t _id2 = api_trylock((void *)(_lock), _file, _func, _line)
  647. #define DIDLOCK(_ret, _lock, _file, _func, _line) api_didlock(_id2, _ret, (void *)(_lock), _file, _func, _line)
  648. #define GUNLOCK(_lock, _file, _func, _line) api_gunlock((void *)(_lock), _file, _func, _line)
  649. #define INITLOCK(_lock, _typ, _file, _func, _line) api_initlock((void *)(_lock), _typ, _file, _func, _line)
  650. #else
  651. #define GETLOCK(_lock, _file, _func, _line)
  652. #define GOTLOCK(_lock, _file, _func, _line)
  653. #define TRYLOCK(_lock, _file, _func, _line)
  654. #define DIDLOCK(_ret, _lock, _file, _func, _line)
  655. #define GUNLOCK(_lock, _file, _func, _line)
  656. #define INITLOCK(_typ, _lock, _file, _func, _line)
  657. #endif
  658. #define mutex_lock(_lock) _mutex_lock(_lock, __FILE__, __func__, __LINE__)
  659. #define mutex_unlock_noyield(_lock) _mutex_unlock_noyield(_lock, __FILE__, __func__, __LINE__)
  660. #define mutex_unlock(_lock) _mutex_unlock(_lock, __FILE__, __func__, __LINE__)
  661. #define mutex_trylock(_lock) _mutex_trylock(_lock, __FILE__, __func__, __LINE__)
  662. #define wr_lock(_lock) _wr_lock(_lock, __FILE__, __func__, __LINE__)
  663. #define wr_trylock(_lock) _wr_trylock(_lock, __FILE__, __func__, __LINE__)
  664. #define rd_lock(_lock) _rd_lock(_lock, __FILE__, __func__, __LINE__)
  665. #define rw_unlock(_lock) _rw_unlock(_lock, __FILE__, __func__, __LINE__)
  666. #define rd_unlock_noyield(_lock) _rd_unlock_noyield(_lock, __FILE__, __func__, __LINE__)
  667. #define wr_unlock_noyield(_lock) _wr_unlock_noyield(_lock, __FILE__, __func__, __LINE__)
  668. #define rd_unlock(_lock) _rd_unlock(_lock, __FILE__, __func__, __LINE__)
  669. #define wr_unlock(_lock) _wr_unlock(_lock, __FILE__, __func__, __LINE__)
  670. #define mutex_init(_lock) _mutex_init(_lock, __FILE__, __func__, __LINE__)
  671. #define rwlock_init(_lock) _rwlock_init(_lock, __FILE__, __func__, __LINE__)
  672. #define cglock_init(_lock) _cglock_init(_lock, __FILE__, __func__, __LINE__)
  673. #define cg_rlock(_lock) _cg_rlock(_lock, __FILE__, __func__, __LINE__)
  674. #define cg_ilock(_lock) _cg_ilock(_lock, __FILE__, __func__, __LINE__)
  675. #define cg_uilock(_lock) _cg_uilock(_lock, __FILE__, __func__, __LINE__)
  676. #define cg_ulock(_lock) _cg_ulock(_lock, __FILE__, __func__, __LINE__)
  677. #define cg_wlock(_lock) _cg_wlock(_lock, __FILE__, __func__, __LINE__)
  678. #define cg_dwlock(_lock) _cg_dwlock(_lock, __FILE__, __func__, __LINE__)
  679. #define cg_dwilock(_lock) _cg_dwilock(_lock, __FILE__, __func__, __LINE__)
  680. #define cg_dlock(_lock) _cg_dlock(_lock, __FILE__, __func__, __LINE__)
  681. #define cg_runlock(_lock) _cg_runlock(_lock, __FILE__, __func__, __LINE__)
  682. #define cg_ruwlock(_lock) _cg_ruwlock(_lock, __FILE__, __func__, __LINE__)
  683. #define cg_wunlock(_lock) _cg_wunlock(_lock, __FILE__, __func__, __LINE__)
  684. static inline void _mutex_lock(pthread_mutex_t *lock, const char *file, const char *func, const int line)
  685. {
  686. GETLOCK(lock, file, func, line);
  687. if (unlikely(pthread_mutex_lock(lock)))
  688. quitfrom(1, file, func, line, "WTF MUTEX ERROR ON LOCK! errno=%d", errno);
  689. GOTLOCK(lock, file, func, line);
  690. }
  691. static inline void _mutex_unlock_noyield(pthread_mutex_t *lock, const char *file, const char *func, const int line)
  692. {
  693. if (unlikely(pthread_mutex_unlock(lock)))
  694. quitfrom(1, file, func, line, "WTF MUTEX ERROR ON UNLOCK! errno=%d", errno);
  695. GUNLOCK(lock, file, func, line);
  696. }
  697. static inline void _mutex_unlock(pthread_mutex_t *lock, const char *file, const char *func, const int line)
  698. {
  699. _mutex_unlock_noyield(lock, file, func, line);
  700. selective_yield();
  701. }
  702. static inline int _mutex_trylock(pthread_mutex_t *lock, __maybe_unused const char *file, __maybe_unused const char *func, __maybe_unused const int line)
  703. {
  704. TRYLOCK(lock, file, func, line);
  705. int ret = pthread_mutex_trylock(lock);
  706. DIDLOCK(ret, lock, file, func, line);
  707. return ret;
  708. }
  709. static inline void _wr_lock(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  710. {
  711. GETLOCK(lock, file, func, line);
  712. if (unlikely(pthread_rwlock_wrlock(lock)))
  713. quitfrom(1, file, func, line, "WTF WRLOCK ERROR ON LOCK! errno=%d", errno);
  714. GOTLOCK(lock, file, func, line);
  715. }
  716. static inline int _wr_trylock(pthread_rwlock_t *lock, __maybe_unused const char *file, __maybe_unused const char *func, __maybe_unused const int line)
  717. {
  718. TRYLOCK(lock, file, func, line);
  719. int ret = pthread_rwlock_trywrlock(lock);
  720. DIDLOCK(ret, lock, file, func, line);
  721. return ret;
  722. }
  723. static inline void _rd_lock(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  724. {
  725. GETLOCK(lock, file, func, line);
  726. if (unlikely(pthread_rwlock_rdlock(lock)))
  727. quitfrom(1, file, func, line, "WTF RDLOCK ERROR ON LOCK! errno=%d", errno);
  728. GOTLOCK(lock, file, func, line);
  729. }
  730. static inline void _rw_unlock(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  731. {
  732. if (unlikely(pthread_rwlock_unlock(lock)))
  733. quitfrom(1, file, func, line, "WTF RWLOCK ERROR ON UNLOCK! errno=%d", errno);
  734. GUNLOCK(lock, file, func, line);
  735. }
  736. static inline void _rd_unlock_noyield(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  737. {
  738. _rw_unlock(lock, file, func, line);
  739. }
  740. static inline void _wr_unlock_noyield(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  741. {
  742. _rw_unlock(lock, file, func, line);
  743. }
  744. static inline void _rd_unlock(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  745. {
  746. _rw_unlock(lock, file, func, line);
  747. selective_yield();
  748. }
  749. static inline void _wr_unlock(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  750. {
  751. _rw_unlock(lock, file, func, line);
  752. selective_yield();
  753. }
  754. static inline void _mutex_init(pthread_mutex_t *lock, const char *file, const char *func, const int line)
  755. {
  756. if (unlikely(pthread_mutex_init(lock, NULL)))
  757. quitfrom(1, file, func, line, "Failed to pthread_mutex_init errno=%d", errno);
  758. INITLOCK(lock, CGLOCK_MUTEX, file, func, line);
  759. }
  760. static inline void mutex_destroy(pthread_mutex_t *lock)
  761. {
  762. /* Ignore return code. This only invalidates the mutex on linux but
  763. * releases resources on windows. */
  764. pthread_mutex_destroy(lock);
  765. }
  766. static inline void _rwlock_init(pthread_rwlock_t *lock, const char *file, const char *func, const int line)
  767. {
  768. if (unlikely(pthread_rwlock_init(lock, NULL)))
  769. quitfrom(1, file, func, line, "Failed to pthread_rwlock_init errno=%d", errno);
  770. INITLOCK(lock, CGLOCK_RW, file, func, line);
  771. }
  772. static inline void rwlock_destroy(pthread_rwlock_t *lock)
  773. {
  774. pthread_rwlock_destroy(lock);
  775. }
  776. static inline void _cglock_init(cglock_t *lock, const char *file, const char *func, const int line)
  777. {
  778. _mutex_init(&lock->mutex, file, func, line);
  779. _rwlock_init(&lock->rwlock, file, func, line);
  780. }
  781. static inline void cglock_destroy(cglock_t *lock)
  782. {
  783. rwlock_destroy(&lock->rwlock);
  784. mutex_destroy(&lock->mutex);
  785. }
  786. /* Read lock variant of cglock. Cannot be promoted. */
  787. static inline void _cg_rlock(cglock_t *lock, const char *file, const char *func, const int line)
  788. {
  789. _mutex_lock(&lock->mutex, file, func, line);
  790. _rd_lock(&lock->rwlock, file, func, line);
  791. _mutex_unlock_noyield(&lock->mutex, file, func, line);
  792. }
  793. /* Intermediate variant of cglock - behaves as a read lock but can be promoted
  794. * to a write lock or demoted to read lock. */
  795. static inline void _cg_ilock(cglock_t *lock, const char *file, const char *func, const int line)
  796. {
  797. _mutex_lock(&lock->mutex, file, func, line);
  798. }
  799. /* Unlock intermediate variant without changing to read or write version */
  800. static inline void _cg_uilock(cglock_t *lock, const char *file, const char *func, const int line)
  801. {
  802. _mutex_unlock(&lock->mutex, file, func, line);
  803. }
  804. /* Upgrade intermediate variant to a write lock */
  805. static inline void _cg_ulock(cglock_t *lock, const char *file, const char *func, const int line)
  806. {
  807. _wr_lock(&lock->rwlock, file, func, line);
  808. }
  809. /* Write lock variant of cglock */
  810. static inline void _cg_wlock(cglock_t *lock, const char *file, const char *func, const int line)
  811. {
  812. _mutex_lock(&lock->mutex, file, func, line);
  813. _wr_lock(&lock->rwlock, file, func, line);
  814. }
  815. /* Downgrade write variant to a read lock */
  816. static inline void _cg_dwlock(cglock_t *lock, const char *file, const char *func, const int line)
  817. {
  818. _wr_unlock_noyield(&lock->rwlock, file, func, line);
  819. _rd_lock(&lock->rwlock, file, func, line);
  820. _mutex_unlock_noyield(&lock->mutex, file, func, line);
  821. }
  822. /* Demote a write variant to an intermediate variant */
  823. static inline void _cg_dwilock(cglock_t *lock, const char *file, const char *func, const int line)
  824. {
  825. _wr_unlock(&lock->rwlock, file, func, line);
  826. }
  827. /* Downgrade intermediate variant to a read lock */
  828. static inline void _cg_dlock(cglock_t *lock, const char *file, const char *func, const int line)
  829. {
  830. _rd_lock(&lock->rwlock, file, func, line);
  831. _mutex_unlock_noyield(&lock->mutex, file, func, line);
  832. }
  833. static inline void _cg_runlock(cglock_t *lock, const char *file, const char *func, const int line)
  834. {
  835. _rd_unlock(&lock->rwlock, file, func, line);
  836. }
  837. /* This drops the read lock and grabs a write lock. It does NOT protect data
  838. * between the two locks! */
  839. static inline void _cg_ruwlock(cglock_t *lock, const char *file, const char *func, const int line)
  840. {
  841. _rd_unlock_noyield(&lock->rwlock, file, func, line);
  842. _cg_wlock(lock, file, func, line);
  843. }
  844. static inline void _cg_wunlock(cglock_t *lock, const char *file, const char *func, const int line)
  845. {
  846. _wr_unlock_noyield(&lock->rwlock, file, func, line);
  847. _mutex_unlock(&lock->mutex, file, func, line);
  848. }
  849. struct pool;
  850. #define API_LISTEN_ADDR "0.0.0.0"
  851. #define API_MCAST_CODE "FTW"
  852. #define API_MCAST_ADDR "224.0.0.75"
  853. extern bool g_logfile_enable;
  854. extern char g_logfile_path[256];
  855. extern char g_logfile_openflag[32];
  856. extern FILE * g_logwork_file;
  857. extern FILE * g_logwork_files[65];
  858. extern FILE * g_logwork_diffs[65];
  859. extern int g_logwork_asicnum;
  860. extern bool opt_work_update;
  861. extern bool opt_protocol;
  862. extern bool have_longpoll;
  863. extern char *opt_kernel_path;
  864. extern char *opt_socks_proxy;
  865. extern int opt_suggest_diff;
  866. extern char *cgminer_path;
  867. extern bool opt_fail_only;
  868. extern bool opt_lowmem;
  869. extern bool opt_autofan;
  870. extern bool opt_autoengine;
  871. extern bool use_curses;
  872. extern char *opt_logwork_path;
  873. extern char *opt_logwork_asicnum;
  874. extern bool opt_logwork_diff;
  875. extern char *opt_api_allow;
  876. extern bool opt_api_mcast;
  877. extern char *opt_api_mcast_addr;
  878. extern char *opt_api_mcast_code;
  879. extern char *opt_api_mcast_des;
  880. extern int opt_api_mcast_port;
  881. extern char *opt_api_groups;
  882. extern char *opt_api_description;
  883. extern int opt_api_port;
  884. extern char *opt_api_host;
  885. extern bool opt_api_listen;
  886. extern bool opt_api_network;
  887. extern bool opt_delaynet;
  888. extern time_t last_getwork;
  889. extern bool opt_restart;
  890. #ifdef USE_ICARUS
  891. extern char *opt_icarus_options;
  892. extern char *opt_icarus_timing;
  893. extern float opt_anu_freq;
  894. extern float opt_au3_freq;
  895. extern int opt_au3_volt;
  896. extern float opt_rock_freq;
  897. #endif
  898. extern bool opt_worktime;
  899. #ifdef USE_AVALON
  900. extern char *opt_avalon_options;
  901. extern char *opt_bitburner_fury_options;
  902. #endif
  903. #ifdef USE_KLONDIKE
  904. extern char *opt_klondike_options;
  905. #endif
  906. #ifdef USE_DRILLBIT
  907. extern char *opt_drillbit_options;
  908. extern char *opt_drillbit_auto;
  909. #endif
  910. #ifdef USE_BAB
  911. extern char *opt_bab_options;
  912. #endif
  913. #ifdef USE_BITMINE_A1
  914. extern char *opt_bitmine_a1_options;
  915. #endif
  916. #ifdef USE_BITMAIN
  917. extern char *opt_bitmain_options;
  918. extern bool opt_bitmain_hwerror;
  919. extern bool opt_bitmain_checkall;
  920. extern char *opt_bitmain_freq;
  921. extern char *opt_bitmain_voltage;
  922. extern bool opt_bitmain_checkn2diff;
  923. extern bool opt_bitmain_nobeeper;
  924. extern bool opt_bitmain_notempoverctrl;
  925. extern bool opt_bitmain_homemode;
  926. #endif
  927. #ifdef USE_BMSC
  928. extern char *opt_bmsc_options;
  929. extern char *opt_bmsc_timing;
  930. extern bool opt_bmsc_gray;
  931. extern char *opt_bmsc_bandops;
  932. extern char *opt_bmsc_voltage;
  933. extern bool opt_bmsc_bootstart;
  934. extern char *opt_bmsc_freq;
  935. extern char *opt_bmsc_rdreg;
  936. extern bool opt_bmsc_rdworktest;
  937. #endif
  938. #ifdef USE_MINION
  939. extern int opt_minion_chipreport;
  940. extern char *opt_minion_cores;
  941. extern bool opt_minion_extra;
  942. extern char *opt_minion_freq;
  943. extern int opt_minion_freqchange;
  944. extern int opt_minion_freqpercent;
  945. extern bool opt_minion_idlecount;
  946. extern int opt_minion_ledcount;
  947. extern int opt_minion_ledlimit;
  948. extern bool opt_minion_noautofreq;
  949. extern bool opt_minion_overheat;
  950. extern int opt_minion_spidelay;
  951. extern char *opt_minion_spireset;
  952. extern int opt_minion_spisleep;
  953. extern int opt_minion_spiusec;
  954. extern char *opt_minion_temp;
  955. #endif
  956. #ifdef USE_USBUTILS
  957. extern char *opt_usb_select;
  958. extern int opt_usbdump;
  959. extern bool opt_usb_list_all;
  960. extern cgsem_t usb_resource_sem;
  961. #endif
  962. #ifdef USE_BITFORCE
  963. extern bool opt_bfl_noncerange;
  964. #endif
  965. extern int swork_id;
  966. #if LOCK_TRACKING
  967. extern pthread_mutex_t lockstat_lock;
  968. #endif
  969. extern pthread_rwlock_t netacc_lock;
  970. extern const uint32_t sha256_init_state[];
  971. #ifdef HAVE_LIBCURL
  972. extern json_t *json_web_config(const char *url);
  973. extern json_t *json_rpc_call(CURL *curl, const char *url, const char *userpass,
  974. const char *rpc_req, bool, bool, int *,
  975. struct pool *pool, bool);
  976. #endif
  977. extern const char *proxytype(proxytypes_t proxytype);
  978. extern char *get_proxy(char *url, struct pool *pool);
  979. extern void __bin2hex(char *s, const unsigned char *p, size_t len);
  980. extern char *bin2hex(const unsigned char *p, size_t len);
  981. extern bool hex2bin(unsigned char *p, const char *hexstr, size_t len);
  982. typedef bool (*sha256_func)(struct thr_info*, const unsigned char *pmidstate,
  983. unsigned char *pdata,
  984. unsigned char *phash1, unsigned char *phash,
  985. const unsigned char *ptarget,
  986. uint32_t max_nonce,
  987. uint32_t *last_nonce,
  988. uint32_t nonce);
  989. extern bool fulltest(const unsigned char *hash, const unsigned char *target);
  990. extern int opt_queue;
  991. extern int opt_scantime;
  992. extern int opt_expiry;
  993. extern cglock_t control_lock;
  994. extern pthread_mutex_t hash_lock;
  995. extern pthread_mutex_t console_lock;
  996. extern cglock_t ch_lock;
  997. extern pthread_rwlock_t mining_thr_lock;
  998. extern pthread_rwlock_t devices_lock;
  999. extern pthread_mutex_t restart_lock;
  1000. extern pthread_cond_t restart_cond;
  1001. extern void clear_stratum_shares(struct pool *pool);
  1002. extern void clear_pool_work(struct pool *pool);
  1003. extern void set_target(unsigned char *dest_target, double diff);
  1004. #if defined (USE_AVALON2) || defined (USE_AVALON4) || defined (USE_HASHRATIO)
  1005. bool submit_nonce2_nonce(struct thr_info *thr, struct pool *pool, struct pool *real_pool,
  1006. uint32_t nonce2, uint32_t nonce, uint32_t ntime);
  1007. #endif
  1008. extern int restart_wait(struct thr_info *thr, unsigned int mstime);
  1009. extern void kill_work(void);
  1010. extern void reinit_device(struct cgpu_info *cgpu);
  1011. extern void api(int thr_id);
  1012. extern struct pool *current_pool(void);
  1013. extern int enabled_pools;
  1014. extern void get_intrange(char *arg, int *val1, int *val2);
  1015. extern bool detect_stratum(struct pool *pool, char *url);
  1016. extern void print_summary(void);
  1017. extern void adjust_quota_gcd(void);
  1018. extern struct pool *add_pool(void);
  1019. extern bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass);
  1020. #define MAX_DEVICES 4096
  1021. extern char g_miner_version[256];
  1022. extern char g_miner_compiletime[256];
  1023. extern char g_miner_type[256];
  1024. extern bool hotplug_mode;
  1025. extern int hotplug_time;
  1026. extern struct list_head scan_devices;
  1027. extern int nDevs;
  1028. extern int num_processors;
  1029. extern int hw_errors;
  1030. extern bool use_syslog;
  1031. extern bool opt_quiet;
  1032. extern struct thr_info *control_thr;
  1033. extern struct thr_info **mining_thr;
  1034. extern double total_secs;
  1035. extern int mining_threads;
  1036. extern int total_devices;
  1037. extern int zombie_devs;
  1038. extern struct cgpu_info **devices;
  1039. extern int total_pools;
  1040. extern struct pool **pools;
  1041. extern struct strategies strategies[];
  1042. extern enum pool_strategy pool_strategy;
  1043. extern int opt_rotate_period;
  1044. extern double rolling1, rolling5, rolling15;
  1045. extern double total_rolling;
  1046. extern double total_mhashes_done;
  1047. extern double g_displayed_rolling;
  1048. extern unsigned int new_blocks;
  1049. extern unsigned int found_blocks;
  1050. extern int g_max_fan, g_max_temp;
  1051. extern int64_t total_accepted, total_rejected, total_diff1;
  1052. extern int64_t total_getworks, total_stale, total_discarded;
  1053. extern double total_diff_accepted, total_diff_rejected, total_diff_stale;
  1054. extern unsigned int local_work;
  1055. extern unsigned int total_go, total_ro;
  1056. extern const int opt_cutofftemp;
  1057. extern int opt_log_interval;
  1058. extern unsigned long long global_hashrate;
  1059. extern char current_hash[68];
  1060. extern double current_diff;
  1061. extern uint64_t best_diff;
  1062. extern struct timeval block_timeval;
  1063. extern char *workpadding;
  1064. struct curl_ent {
  1065. CURL *curl;
  1066. struct list_head node;
  1067. struct timeval tv;
  1068. };
  1069. /* Disabled needs to be the lowest enum as a freshly calloced value will then
  1070. * equal disabled */
  1071. enum pool_enable {
  1072. POOL_DISABLED,
  1073. POOL_ENABLED,
  1074. POOL_REJECTING,
  1075. };
  1076. struct stratum_work {
  1077. char *job_id;
  1078. unsigned char **merkle_bin;
  1079. bool clean;
  1080. double diff;
  1081. };
  1082. #define RBUFSIZE 8192
  1083. #define RECVSIZE (RBUFSIZE - 4)
  1084. struct pool {
  1085. int pool_no;
  1086. int prio;
  1087. int64_t accepted, rejected;
  1088. int seq_rejects;
  1089. int seq_getfails;
  1090. int solved;
  1091. int64_t diff1;
  1092. char diff[8];
  1093. int quota;
  1094. int quota_gcd;
  1095. int quota_used;
  1096. int works;
  1097. double diff_accepted;
  1098. double diff_rejected;
  1099. double diff_stale;
  1100. bool submit_fail;
  1101. bool idle;
  1102. bool lagging;
  1103. bool probed;
  1104. enum pool_enable enabled;
  1105. bool submit_old;
  1106. bool removed;
  1107. bool lp_started;
  1108. bool blocking;
  1109. char *hdr_path;
  1110. char *lp_url;
  1111. unsigned int getwork_requested;
  1112. unsigned int stale_shares;
  1113. unsigned int discarded_work;
  1114. unsigned int getfail_occasions;
  1115. unsigned int remotefail_occasions;
  1116. struct timeval tv_idle;
  1117. double utility;
  1118. int last_shares, shares;
  1119. char *rpc_req;
  1120. char *rpc_url;
  1121. char *rpc_userpass;
  1122. char *rpc_user, *rpc_pass;
  1123. proxytypes_t rpc_proxytype;
  1124. char *rpc_proxy;
  1125. pthread_mutex_t pool_lock;
  1126. cglock_t data_lock;
  1127. struct thread_q *submit_q;
  1128. struct thread_q *getwork_q;
  1129. pthread_t longpoll_thread;
  1130. pthread_t test_thread;
  1131. bool testing;
  1132. int curls;
  1133. pthread_cond_t cr_cond;
  1134. struct list_head curlring;
  1135. time_t last_share_time;
  1136. double last_share_diff;
  1137. uint64_t best_diff;
  1138. struct cgminer_stats cgminer_stats;
  1139. struct cgminer_pool_stats cgminer_pool_stats;
  1140. /* The last block this particular pool knows about */
  1141. char prev_block[32];
  1142. /* Stratum variables */
  1143. char *stratum_url;
  1144. bool extranonce_subscribe;
  1145. char *stratum_port;
  1146. SOCKETTYPE sock;
  1147. char *sockbuf;
  1148. size_t sockbuf_size;
  1149. char *sockaddr_url; /* stripped url used for sockaddr */
  1150. char *sockaddr_proxy_url;
  1151. char *sockaddr_proxy_port;
  1152. char *nonce1;
  1153. unsigned char *nonce1bin;
  1154. uint64_t nonce2;
  1155. int n2size;
  1156. char *sessionid;
  1157. bool has_stratum;
  1158. bool stratum_active;
  1159. bool stratum_init;
  1160. bool stratum_notify;
  1161. struct stratum_work swork;
  1162. pthread_t stratum_sthread;
  1163. pthread_t stratum_rthread;
  1164. pthread_mutex_t stratum_lock;
  1165. struct thread_q *stratum_q;
  1166. int sshares; /* stratum shares submitted waiting on response */
  1167. /* GBT variables */
  1168. bool has_gbt;
  1169. cglock_t gbt_lock;
  1170. unsigned char previousblockhash[32];
  1171. unsigned char gbt_target[32];
  1172. char *coinbasetxn;
  1173. char *longpollid;
  1174. char *gbt_workid;
  1175. int gbt_expires;
  1176. uint32_t gbt_version;
  1177. uint32_t curtime;
  1178. uint32_t gbt_bits;
  1179. unsigned char *txn_hashes;
  1180. int gbt_txns;
  1181. int height;
  1182. bool gbt_solo;
  1183. unsigned char merklebin[16 * 32];
  1184. int transactions;
  1185. char *txn_data;
  1186. unsigned char scriptsig_base[100];
  1187. unsigned char script_pubkey[25 + 3];
  1188. int nValue;
  1189. CURL *gbt_curl;
  1190. bool gbt_curl_inuse;
  1191. /* Shared by both stratum & GBT */
  1192. size_t n1_len;
  1193. unsigned char *coinbase;
  1194. int coinbase_len;
  1195. int nonce2_offset;
  1196. unsigned char header_bin[128];
  1197. int merkles;
  1198. char prev_hash[68];
  1199. char bbversion[12];
  1200. char nbit[12];
  1201. char ntime[12];
  1202. double sdiff;
  1203. struct timeval tv_lastwork;
  1204. };
  1205. #define GETWORK_MODE_TESTPOOL 'T'
  1206. #define GETWORK_MODE_POOL 'P'
  1207. #define GETWORK_MODE_LP 'L'
  1208. #define GETWORK_MODE_BENCHMARK 'B'
  1209. #define GETWORK_MODE_STRATUM 'S'
  1210. #define GETWORK_MODE_GBT 'G'
  1211. #define GETWORK_MODE_SOLO 'C'
  1212. struct work {
  1213. unsigned char data[128];
  1214. unsigned char midstate[32];
  1215. unsigned char target[32];
  1216. unsigned char hash[32];
  1217. /* This is the diff the device is currently aiming for and must be
  1218. * the minimum of work_difficulty & drv->max_diff */
  1219. double device_diff;
  1220. uint64_t share_diff;
  1221. int rolls;
  1222. int drv_rolllimit; /* How much the driver can roll ntime */
  1223. uint32_t nonce; /* For devices that hash sole work */
  1224. struct thr_info *thr;
  1225. int thr_id;
  1226. struct pool *pool;
  1227. struct timeval tv_staged;
  1228. bool mined;
  1229. bool clone;
  1230. bool cloned;
  1231. int rolltime;
  1232. bool longpoll;
  1233. bool stale;
  1234. bool mandatory;
  1235. bool block;
  1236. bool stratum;
  1237. char *job_id;
  1238. uint64_t nonce2;
  1239. size_t nonce2_len;
  1240. char *ntime;
  1241. double sdiff;
  1242. char *nonce1;
  1243. bool gbt;
  1244. char *coinbase;
  1245. int gbt_txns;
  1246. unsigned int work_block;
  1247. uint32_t id;
  1248. UT_hash_handle hh;
  1249. /* This is the diff work we're aiming to submit and should match the
  1250. * work->target binary */
  1251. double work_difficulty;
  1252. // Allow devices to identify work if multiple sub-devices
  1253. int subid;
  1254. // Allow devices to flag work for their own purposes
  1255. bool devflag;
  1256. // Allow devices to timestamp work for their own purposes
  1257. struct timeval tv_stamp;
  1258. struct timeval tv_getwork;
  1259. struct timeval tv_getwork_reply;
  1260. struct timeval tv_cloned;
  1261. struct timeval tv_work_start;
  1262. struct timeval tv_work_found;
  1263. char getwork_mode;
  1264. };
  1265. #ifdef USE_MODMINER
  1266. struct modminer_fpga_state {
  1267. bool work_running;
  1268. struct work running_work;
  1269. struct timeval tv_workstart;
  1270. uint32_t hashes;
  1271. char next_work_cmd[46];
  1272. char fpgaid;
  1273. bool overheated;
  1274. bool new_work;
  1275. uint32_t shares;
  1276. uint32_t shares_last_hw;
  1277. uint32_t hw_errors;
  1278. uint32_t shares_to_good;
  1279. uint32_t timeout_fail;
  1280. uint32_t success_more;
  1281. struct timeval last_changed;
  1282. struct timeval last_nonce;
  1283. struct timeval first_work;
  1284. bool death_stage_one;
  1285. bool tried_two_byte_temp;
  1286. bool one_byte_temp;
  1287. };
  1288. #endif
  1289. #define TAILBUFSIZ 64
  1290. #define tailsprintf(buf, bufsiz, fmt, ...) do { \
  1291. char tmp13[TAILBUFSIZ]; \
  1292. size_t len13, buflen = strlen(buf); \
  1293. snprintf(tmp13, sizeof(tmp13), fmt, ##__VA_ARGS__); \
  1294. len13 = strlen(tmp13); \
  1295. if ((buflen + len13) >= bufsiz) \
  1296. quit(1, "tailsprintf buffer overflow in %s %s line %d", __FILE__, __func__, __LINE__); \
  1297. strcat(buf, tmp13); \
  1298. } while (0)
  1299. extern uint64_t share_ndiff(const struct work *work);
  1300. extern void get_datestamp(char *, size_t, struct timeval *);
  1301. extern void inc_hw_errors(struct thr_info *thr);
  1302. extern void inc_dev_status(int max_fan, int max_temp);
  1303. extern void inc_work_stats(struct thr_info *thr, struct pool *pool, int diff1);
  1304. extern bool test_nonce(struct work *work, uint32_t nonce);
  1305. extern bool test_nonce_diff(struct work *work, uint32_t nonce, double diff);
  1306. extern bool submit_tested_work(struct thr_info *thr, struct work *work);
  1307. extern bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce);
  1308. extern bool submit_noffset_nonce(struct thr_info *thr, struct work *work, uint32_t nonce,
  1309. int noffset);
  1310. extern int share_work_tdiff(struct cgpu_info *cgpu);
  1311. extern bool submit_nonce_1(struct thr_info *thr, struct work *work, uint32_t nonce, int * nofull);
  1312. extern void submit_nonce_2(struct work *work);
  1313. extern bool submit_nonce_direct(struct thr_info *thr, struct work *work, uint32_t nonce);
  1314. extern bool submit_noffset_nonce(struct thr_info *thr, struct work *work, uint32_t nonce, int noffset);
  1315. extern struct work *get_work(struct thr_info *thr, const int thr_id);
  1316. extern void __add_queued(struct cgpu_info *cgpu, struct work *work);
  1317. extern struct work *get_queued(struct cgpu_info *cgpu);
  1318. extern struct work *__get_queued(struct cgpu_info *cgpu);
  1319. extern void add_queued(struct cgpu_info *cgpu, struct work *work);
  1320. extern struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id);
  1321. extern struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1322. extern struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1323. extern struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1324. extern struct work *__find_work_byid(struct work *que, uint32_t id);
  1325. extern struct work *find_queued_work_byid(struct cgpu_info *cgpu, uint32_t id);
  1326. extern struct work *clone_queued_work_byid(struct cgpu_info *cgpu, uint32_t id);
  1327. extern void __work_completed(struct cgpu_info *cgpu, struct work *work);
  1328. extern int age_queued_work(struct cgpu_info *cgpu, double secs);
  1329. extern void work_completed(struct cgpu_info *cgpu, struct work *work);
  1330. extern struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen);
  1331. extern void flush_queue(struct cgpu_info *cgpu);
  1332. extern void hash_driver_work(struct thr_info *mythr);
  1333. extern void hash_queued_work(struct thr_info *mythr);
  1334. extern void _wlog(const char *str);
  1335. extern void _wlogprint(const char *str);
  1336. extern int curses_int(const char *query);
  1337. extern char *curses_input(const char *query);
  1338. extern void kill_work(void);
  1339. extern void switch_pools(struct pool *selected);
  1340. extern void _discard_work(struct work *work);
  1341. #define discard_work(WORK) do { \
  1342. _discard_work(WORK); \
  1343. WORK = NULL; \
  1344. } while (0)
  1345. extern void remove_pool(struct pool *pool);
  1346. extern void write_config(FILE *fcfg);
  1347. extern void zero_bestshare(void);
  1348. extern void zero_stats(void);
  1349. extern void default_save_file(char *filename);
  1350. extern bool log_curses_only(int prio, const char *datetime, const char *str);
  1351. extern void clear_logwin(void);
  1352. extern void logwin_update(void);
  1353. extern bool pool_tclear(struct pool *pool, bool *var);
  1354. extern void stratum_resumed(struct pool *pool);
  1355. extern void pool_died(struct pool *pool);
  1356. extern struct thread_q *tq_new(void);
  1357. extern void tq_free(struct thread_q *tq);
  1358. extern bool tq_push(struct thread_q *tq, void *data);
  1359. extern void *tq_pop(struct thread_q *tq, const struct timespec *abstime);
  1360. extern void tq_freeze(struct thread_q *tq);
  1361. extern void tq_thaw(struct thread_q *tq);
  1362. extern bool successful_connect;
  1363. extern void adl(void);
  1364. extern void app_restart(void);
  1365. extern void roll_work(struct work *work);
  1366. extern struct work *make_clone(struct work *work);
  1367. extern void clean_work(struct work *work);
  1368. extern void _free_work(struct work *work);
  1369. #define free_work(WORK) do { \
  1370. _free_work(WORK); \
  1371. WORK = NULL; \
  1372. } while (0)
  1373. extern void set_work_ntime(struct work *work, int ntime);
  1374. extern struct work *copy_work_noffset(struct work *base_work, int noffset);
  1375. #define copy_work(work_in) copy_work_noffset(work_in, 0)
  1376. extern uint64_t share_diff(const struct work *work);
  1377. extern struct thr_info *get_thread(int thr_id);
  1378. extern struct cgpu_info *get_devices(int id);
  1379. enum api_data_type {
  1380. API_ESCAPE,
  1381. API_STRING,
  1382. API_CONST,
  1383. API_UINT8,
  1384. API_INT16,
  1385. API_UINT16,
  1386. API_INT,
  1387. API_UINT,
  1388. API_UINT32,
  1389. API_HEX32,
  1390. API_UINT64,
  1391. API_INT64,
  1392. API_DOUBLE,
  1393. API_ELAPSED,
  1394. API_BOOL,
  1395. API_TIMEVAL,
  1396. API_TIME,
  1397. API_MHS,
  1398. API_MHTOTAL,
  1399. API_TEMP,
  1400. API_UTILITY,
  1401. API_FREQ,
  1402. API_VOLTS,
  1403. API_HS,
  1404. API_DIFF,
  1405. API_PERCENT,
  1406. API_AVG
  1407. };
  1408. struct api_data {
  1409. enum api_data_type type;
  1410. char *name;
  1411. void *data;
  1412. bool data_was_malloc;
  1413. struct api_data *prev;
  1414. struct api_data *next;
  1415. };
  1416. extern struct api_data *api_add_escape(struct api_data *root, char *name, char *data, bool copy_data);
  1417. extern struct api_data *api_add_string(struct api_data *root, char *name, char *data, bool copy_data);
  1418. extern struct api_data *api_add_const(struct api_data *root, char *name, const char *data, bool copy_data);
  1419. extern struct api_data *api_add_uint8(struct api_data *root, char *name, uint8_t *data, bool copy_data);
  1420. extern struct api_data *api_add_int16(struct api_data *root, char *name, uint16_t *data, bool copy_data);
  1421. extern struct api_data *api_add_uint16(struct api_data *root, char *name, uint16_t *data, bool copy_data);
  1422. extern struct api_data *api_add_int(struct api_data *root, char *name, int *data, bool copy_data);
  1423. extern struct api_data *api_add_uint(struct api_data *root, char *name, unsigned int *data, bool copy_data);
  1424. extern struct api_data *api_add_uint32(struct api_data *root, char *name, uint32_t *data, bool copy_data);
  1425. extern struct api_data *api_add_hex32(struct api_data *root, char *name, uint32_t *data, bool copy_data);
  1426. extern struct api_data *api_add_uint64(struct api_data *root, char *name, uint64_t *data, bool copy_data);
  1427. extern struct api_data *api_add_double(struct api_data *root, char *name, double *data, bool copy_data);
  1428. extern struct api_data *api_add_elapsed(struct api_data *root, char *name, double *data, bool copy_data);
  1429. extern struct api_data *api_add_bool(struct api_data *root, char *name, bool *data, bool copy_data);
  1430. extern struct api_data *api_add_timeval(struct api_data *root, char *name, struct timeval *data, bool copy_data);
  1431. extern struct api_data *api_add_time(struct api_data *root, char *name, time_t *data, bool copy_data);
  1432. extern struct api_data *api_add_mhs(struct api_data *root, char *name, double *data, bool copy_data);
  1433. extern struct api_data *api_add_mhstotal(struct api_data *root, char *name, double *data, bool copy_data);
  1434. extern struct api_data *api_add_temp(struct api_data *root, char *name, float *data, bool copy_data);
  1435. extern struct api_data *api_add_utility(struct api_data *root, char *name, double *data, bool copy_data);
  1436. extern struct api_data *api_add_freq(struct api_data *root, char *name, double *data, bool copy_data);
  1437. extern struct api_data *api_add_volts(struct api_data *root, char *name, float *data, bool copy_data);
  1438. extern struct api_data *api_add_hs(struct api_data *root, char *name, double *data, bool copy_data);
  1439. extern struct api_data *api_add_diff(struct api_data *root, char *name, double *data, bool copy_data);
  1440. extern struct api_data *api_add_percent(struct api_data *root, char *name, double *data, bool copy_data);
  1441. extern struct api_data *api_add_avg(struct api_data *root, char *name, float *data, bool copy_data);
  1442. extern void dupalloc(struct cgpu_info *cgpu, int timelimit);
  1443. extern void dupcounters(struct cgpu_info *cgpu, uint64_t *checked, uint64_t *dups);
  1444. extern bool isdupnonce(struct cgpu_info *cgpu, struct work *work, uint32_t nonce);
  1445. #if defined(USE_BITMAIN) || defined(USE_BMSC)
  1446. extern void rev(unsigned char *s, size_t l);
  1447. extern int check_asicnum(int asic_num, unsigned char nonce);
  1448. #endif
  1449. #endif /* __MINER_H__ */