2010-11-25 10:03:59 +01:00
|
|
|
|
2010-11-24 05:43:45 +01:00
|
|
|
/*
|
2010-11-25 01:50:46 +01:00
|
|
|
* Copyright 2010 Jeff Garzik
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
* any later version. See COPYING for more details.
|
2010-11-24 05:43:45 +01:00
|
|
|
*/
|
2010-11-24 05:33:20 +01:00
|
|
|
|
2010-11-25 01:31:12 +01:00
|
|
|
#include "cpuminer-config.h"
|
|
|
|
|
2010-11-24 05:33:20 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
2010-11-27 07:29:56 +01:00
|
|
|
#include <stdint.h>
|
2010-11-24 05:33:20 +01:00
|
|
|
#include <unistd.h>
|
2010-11-24 09:36:53 +01:00
|
|
|
#include <sys/time.h>
|
2010-11-26 22:28:12 +01:00
|
|
|
#ifndef WIN32
|
2010-11-24 09:36:53 +01:00
|
|
|
#include <sys/resource.h>
|
2010-11-26 22:28:12 +01:00
|
|
|
#endif
|
2010-11-24 09:36:53 +01:00
|
|
|
#include <pthread.h>
|
2010-11-26 21:46:11 +01:00
|
|
|
#include <getopt.h>
|
2010-11-24 05:33:20 +01:00
|
|
|
#include <jansson.h>
|
2011-02-10 06:41:44 +01:00
|
|
|
#include <curl/curl.h>
|
2010-11-26 21:50:36 +01:00
|
|
|
#include "compat.h"
|
2010-11-25 10:03:59 +01:00
|
|
|
#include "miner.h"
|
2010-11-24 05:33:20 +01:00
|
|
|
|
2010-11-25 07:02:53 +01:00
|
|
|
#define PROGRAM_NAME "minerd"
|
|
|
|
#define DEF_RPC_URL "http://127.0.0.1:8332/"
|
|
|
|
#define DEF_RPC_USERPASS "rpcuser:rpcpass"
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-11-27 01:04:48 +01:00
|
|
|
enum sha256_algos {
|
2010-11-27 06:46:59 +01:00
|
|
|
ALGO_C, /* plain C */
|
|
|
|
ALGO_4WAY, /* parallel SSE2 */
|
2010-11-27 07:29:56 +01:00
|
|
|
ALGO_VIA, /* VIA padlock */
|
2010-12-07 02:14:58 +01:00
|
|
|
ALGO_CRYPTOPP, /* Crypto++ (C) */
|
|
|
|
ALGO_CRYPTOPP_ASM32, /* Crypto++ 32-bit assembly */
|
2010-11-27 01:04:48 +01:00
|
|
|
};
|
|
|
|
|
2010-11-27 09:50:52 +01:00
|
|
|
static const char *algo_names[] = {
|
|
|
|
[ALGO_C] = "c",
|
|
|
|
#ifdef WANT_SSE2_4WAY
|
|
|
|
[ALGO_4WAY] = "4way",
|
|
|
|
#endif
|
|
|
|
#ifdef WANT_VIA_PADLOCK
|
|
|
|
[ALGO_VIA] = "via",
|
|
|
|
#endif
|
2010-11-29 02:16:22 +01:00
|
|
|
[ALGO_CRYPTOPP] = "cryptopp",
|
2010-12-07 02:14:58 +01:00
|
|
|
#ifdef WANT_CRYPTOPP_ASM32
|
|
|
|
[ALGO_CRYPTOPP_ASM32] = "cryptopp_asm32",
|
|
|
|
#endif
|
2010-11-27 09:50:52 +01:00
|
|
|
};
|
|
|
|
|
2010-11-27 07:29:56 +01:00
|
|
|
bool opt_debug = false;
|
2010-11-25 10:03:59 +01:00
|
|
|
bool opt_protocol = false;
|
2011-02-04 17:54:31 +01:00
|
|
|
static bool opt_quiet = false;
|
2010-12-19 04:22:06 +01:00
|
|
|
static int opt_retries = 10;
|
2011-02-03 06:54:03 +01:00
|
|
|
static int opt_fail_pause = 30;
|
2011-01-29 07:14:12 +01:00
|
|
|
static int opt_scantime = 5;
|
2010-11-24 08:11:59 +01:00
|
|
|
static const bool opt_time = true;
|
2010-11-27 01:04:48 +01:00
|
|
|
static enum sha256_algos opt_algo = ALGO_C;
|
2010-11-24 09:36:53 +01:00
|
|
|
static int opt_n_threads = 1;
|
2010-11-25 07:02:53 +01:00
|
|
|
static char *rpc_url = DEF_RPC_URL;
|
|
|
|
static char *userpass = DEF_RPC_USERPASS;
|
2010-11-25 06:49:39 +01:00
|
|
|
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-11-26 21:46:11 +01:00
|
|
|
struct option_help {
|
|
|
|
const char *name;
|
|
|
|
const char *helptext;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct option_help options_help[] = {
|
|
|
|
{ "help",
|
|
|
|
"(-h) Display this help text" },
|
2010-11-25 06:49:39 +01:00
|
|
|
|
2010-11-27 02:15:07 +01:00
|
|
|
{ "algo XXX",
|
2010-11-27 01:12:22 +01:00
|
|
|
"(-a XXX) Specify sha256 implementation:\n"
|
2010-11-27 02:15:07 +01:00
|
|
|
"\tc\t\tLinux kernel sha256, implemented in C (default)"
|
2010-11-27 06:46:59 +01:00
|
|
|
#ifdef WANT_SSE2_4WAY
|
2010-11-29 02:16:22 +01:00
|
|
|
"\n\t4way\t\ttcatm's 4-way SSE2 implementation"
|
2010-11-27 07:29:56 +01:00
|
|
|
#endif
|
|
|
|
#ifdef WANT_VIA_PADLOCK
|
2010-12-06 08:30:57 +01:00
|
|
|
"\n\tvia\t\tVIA padlock implementation"
|
2010-11-27 01:04:48 +01:00
|
|
|
#endif
|
2010-12-29 04:38:57 +01:00
|
|
|
"\n\tcryptopp\tCrypto++ C/C++ implementation"
|
2010-12-07 02:14:58 +01:00
|
|
|
#ifdef WANT_CRYPTOPP_ASM32
|
2010-12-29 04:38:57 +01:00
|
|
|
"\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
|
2010-12-07 02:14:58 +01:00
|
|
|
#endif
|
2010-11-27 01:04:48 +01:00
|
|
|
},
|
|
|
|
|
2010-12-27 08:13:15 +01:00
|
|
|
{ "quiet",
|
|
|
|
"(-q) Disable per-thread hashmeter output (default: off)" },
|
|
|
|
|
2010-11-26 21:46:11 +01:00
|
|
|
{ "debug",
|
2010-11-27 02:15:07 +01:00
|
|
|
"(-D) Enable debug output (default: off)" },
|
2010-11-25 06:49:39 +01:00
|
|
|
|
2010-11-26 21:46:11 +01:00
|
|
|
{ "protocol-dump",
|
2010-11-27 02:15:07 +01:00
|
|
|
"(-P) Verbose dump of protocol-level activities (default: off)" },
|
2010-11-25 06:49:39 +01:00
|
|
|
|
2010-12-19 04:22:06 +01:00
|
|
|
{ "retries N",
|
|
|
|
"(-r N) Number of times to retry, if JSON-RPC call fails\n"
|
|
|
|
"\t(default: 10; use -1 for \"never\")" },
|
|
|
|
|
2011-02-03 06:54:03 +01:00
|
|
|
{ "retry-pause N",
|
|
|
|
"(-R N) Number of seconds to pause, between retries\n"
|
|
|
|
"\t(default: 30)" },
|
|
|
|
|
2011-01-29 07:14:12 +01:00
|
|
|
{ "scantime N",
|
|
|
|
"(-s N) Upper bound on time spent scanning current work,\n"
|
|
|
|
"\tin seconds. (default: 5)" },
|
|
|
|
|
2010-11-27 02:15:07 +01:00
|
|
|
{ "threads N",
|
2010-11-26 21:46:11 +01:00
|
|
|
"(-t N) Number of miner threads (default: 1)" },
|
|
|
|
|
2010-11-27 02:15:07 +01:00
|
|
|
{ "url URL",
|
2010-11-25 06:49:39 +01:00
|
|
|
"URL for bitcoin JSON-RPC server "
|
2010-11-25 07:02:53 +01:00
|
|
|
"(default: " DEF_RPC_URL ")" },
|
2010-11-25 06:49:39 +01:00
|
|
|
|
2010-11-27 02:15:07 +01:00
|
|
|
{ "userpass USERNAME:PASSWORD",
|
2010-11-25 06:49:39 +01:00
|
|
|
"Username:Password pair for bitcoin JSON-RPC server "
|
2010-11-25 07:02:53 +01:00
|
|
|
"(default: " DEF_RPC_USERPASS ")" },
|
2010-11-24 09:36:53 +01:00
|
|
|
};
|
|
|
|
|
2010-11-26 21:46:11 +01:00
|
|
|
static struct option options[] = {
|
|
|
|
{ "help", 0, NULL, 'h' },
|
2010-11-27 01:04:48 +01:00
|
|
|
{ "algo", 1, NULL, 'a' },
|
2010-12-27 08:13:15 +01:00
|
|
|
{ "quiet", 0, NULL, 'q' },
|
2010-11-26 21:46:11 +01:00
|
|
|
{ "debug", 0, NULL, 'D' },
|
|
|
|
{ "protocol-dump", 0, NULL, 'P' },
|
|
|
|
{ "threads", 1, NULL, 't' },
|
2010-12-19 04:22:06 +01:00
|
|
|
{ "retries", 1, NULL, 'r' },
|
2011-02-03 06:54:03 +01:00
|
|
|
{ "retry-pause", 1, NULL, 'R' },
|
2011-01-29 07:14:12 +01:00
|
|
|
{ "scantime", 1, NULL, 's' },
|
2010-11-26 21:46:11 +01:00
|
|
|
{ "url", 1, NULL, 1001 },
|
|
|
|
{ "userpass", 1, NULL, 1002 },
|
|
|
|
{ }
|
|
|
|
};
|
2010-11-24 05:33:20 +01:00
|
|
|
|
|
|
|
struct work {
|
|
|
|
unsigned char data[128];
|
|
|
|
unsigned char hash1[64];
|
2010-11-25 07:16:34 +01:00
|
|
|
unsigned char midstate[32];
|
2010-11-25 07:02:53 +01:00
|
|
|
unsigned char target[32];
|
2010-11-25 07:16:34 +01:00
|
|
|
|
|
|
|
unsigned char hash[32];
|
2010-11-24 05:33:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool jobj_binary(const json_t *obj, const char *key,
|
|
|
|
void *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
const char *hexstr;
|
|
|
|
json_t *tmp;
|
|
|
|
|
|
|
|
tmp = json_object_get(obj, key);
|
|
|
|
if (!tmp) {
|
|
|
|
fprintf(stderr, "JSON key '%s' not found\n", key);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
hexstr = json_string_value(tmp);
|
|
|
|
if (!hexstr) {
|
|
|
|
fprintf(stderr, "JSON key '%s' is not a string\n", key);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!hex2bin(buf, hexstr, buflen))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-11-25 07:16:34 +01:00
|
|
|
static bool work_decode(const json_t *val, struct work *work)
|
2010-11-24 05:33:20 +01:00
|
|
|
{
|
|
|
|
if (!jobj_binary(val, "midstate",
|
|
|
|
work->midstate, sizeof(work->midstate))) {
|
|
|
|
fprintf(stderr, "JSON inval midstate\n");
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!jobj_binary(val, "data", work->data, sizeof(work->data))) {
|
|
|
|
fprintf(stderr, "JSON inval data\n");
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!jobj_binary(val, "hash1", work->hash1, sizeof(work->hash1))) {
|
|
|
|
fprintf(stderr, "JSON inval hash1\n");
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
2010-11-25 07:02:53 +01:00
|
|
|
if (!jobj_binary(val, "target", work->target, sizeof(work->target))) {
|
2010-11-24 05:33:20 +01:00
|
|
|
fprintf(stderr, "JSON inval target\n");
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
2010-11-25 07:16:34 +01:00
|
|
|
memset(work->hash, 0, sizeof(work->hash));
|
|
|
|
|
|
|
|
return true;
|
2010-11-24 05:33:20 +01:00
|
|
|
|
|
|
|
err_out:
|
2010-11-25 07:16:34 +01:00
|
|
|
return false;
|
2010-11-24 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
2011-02-10 06:41:44 +01:00
|
|
|
static void submit_work(CURL *curl, struct work *work)
|
2010-11-25 10:04:30 +01:00
|
|
|
{
|
2010-11-26 21:20:54 +01:00
|
|
|
char *hexstr = NULL;
|
2010-11-25 10:04:30 +01:00
|
|
|
json_t *val, *res;
|
2010-11-29 18:21:03 +01:00
|
|
|
char s[345];
|
2010-11-25 10:04:30 +01:00
|
|
|
|
|
|
|
/* build hex string */
|
|
|
|
hexstr = bin2hex(work->data, sizeof(work->data));
|
2011-01-30 05:55:11 +01:00
|
|
|
if (!hexstr) {
|
|
|
|
fprintf(stderr, "submit_work OOM\n");
|
2010-11-25 10:04:30 +01:00
|
|
|
goto out;
|
2011-01-30 05:55:11 +01:00
|
|
|
}
|
2010-11-25 10:04:30 +01:00
|
|
|
|
|
|
|
/* build JSON-RPC request */
|
2010-11-26 21:20:54 +01:00
|
|
|
sprintf(s,
|
|
|
|
"{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}\r\n",
|
|
|
|
hexstr);
|
2010-11-25 10:04:30 +01:00
|
|
|
|
|
|
|
if (opt_debug)
|
|
|
|
fprintf(stderr, "DBG: sending RPC call:\n%s", s);
|
|
|
|
|
|
|
|
/* issue JSON-RPC request */
|
2011-02-10 06:41:44 +01:00
|
|
|
val = json_rpc_call(curl, rpc_url, userpass, s);
|
2010-11-25 10:04:30 +01:00
|
|
|
if (!val) {
|
|
|
|
fprintf(stderr, "submit_work json_rpc_call failed\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = json_object_get(val, "result");
|
|
|
|
|
|
|
|
printf("PROOF OF WORK RESULT: %s\n",
|
|
|
|
json_is_true(res) ? "true (yay!!!)" : "false (booooo)");
|
|
|
|
|
|
|
|
json_decref(val);
|
|
|
|
|
|
|
|
out:
|
|
|
|
free(hexstr);
|
|
|
|
}
|
|
|
|
|
2011-01-29 06:47:48 +01:00
|
|
|
static void hashmeter(int thr_id, const struct timeval *diff,
|
2010-11-27 05:12:24 +01:00
|
|
|
unsigned long hashes_done)
|
2010-11-24 09:36:53 +01:00
|
|
|
{
|
2010-11-27 05:12:24 +01:00
|
|
|
double khashes, secs;
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-11-27 05:12:24 +01:00
|
|
|
khashes = hashes_done / 1000.0;
|
2011-01-29 06:47:48 +01:00
|
|
|
secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
|
2010-11-27 05:12:24 +01:00
|
|
|
|
2010-12-27 08:13:15 +01:00
|
|
|
if (!opt_quiet)
|
|
|
|
printf("HashMeter(%d): %lu hashes, %.2f khash/sec\n",
|
|
|
|
thr_id, hashes_done,
|
|
|
|
khashes / secs);
|
2010-11-24 09:36:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-27 05:12:24 +01:00
|
|
|
static void *miner_thread(void *thr_id_int)
|
2010-11-24 05:33:20 +01:00
|
|
|
{
|
2010-11-27 05:12:24 +01:00
|
|
|
int thr_id = (unsigned long) thr_id_int;
|
2010-12-19 04:22:06 +01:00
|
|
|
int failures = 0;
|
2010-11-24 05:33:20 +01:00
|
|
|
static const char *rpc_req =
|
|
|
|
"{\"method\": \"getwork\", \"params\": [], \"id\":0}\r\n";
|
2011-02-04 17:54:31 +01:00
|
|
|
uint32_t max_nonce = 0xffffff;
|
2011-02-10 06:41:44 +01:00
|
|
|
CURL *curl;
|
|
|
|
|
|
|
|
curl = curl_easy_init();
|
|
|
|
if (!curl) {
|
|
|
|
fprintf(stderr, "CURL initialization failed\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-11-24 05:33:20 +01:00
|
|
|
|
|
|
|
while (1) {
|
2010-11-25 07:16:34 +01:00
|
|
|
struct work work __attribute__((aligned(128)));
|
2010-11-27 05:12:24 +01:00
|
|
|
unsigned long hashes_done;
|
2011-01-29 06:47:48 +01:00
|
|
|
struct timeval tv_start, tv_end, diff;
|
2010-11-25 07:27:19 +01:00
|
|
|
json_t *val;
|
2010-11-25 07:16:34 +01:00
|
|
|
bool rc;
|
2010-11-24 05:33:20 +01:00
|
|
|
|
2010-11-24 05:54:37 +01:00
|
|
|
/* obtain new work from bitcoin */
|
2011-02-10 06:41:44 +01:00
|
|
|
val = json_rpc_call(curl, rpc_url, userpass, rpc_req);
|
2010-11-24 05:33:20 +01:00
|
|
|
if (!val) {
|
2010-12-19 04:22:06 +01:00
|
|
|
fprintf(stderr, "json_rpc_call failed, ");
|
|
|
|
|
|
|
|
if ((opt_retries >= 0) && (++failures > opt_retries)) {
|
|
|
|
fprintf(stderr, "terminating thread\n");
|
|
|
|
return NULL; /* exit thread */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pause, then restart work loop */
|
|
|
|
fprintf(stderr, "retry after %d seconds\n",
|
2011-02-03 06:54:03 +01:00
|
|
|
opt_fail_pause);
|
|
|
|
sleep(opt_fail_pause);
|
2010-12-19 04:22:06 +01:00
|
|
|
continue;
|
2010-11-24 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
2010-11-24 05:54:37 +01:00
|
|
|
/* decode result into work state struct */
|
2010-11-25 07:16:34 +01:00
|
|
|
rc = work_decode(json_object_get(val, "result"), &work);
|
|
|
|
if (!rc) {
|
2010-12-19 04:22:06 +01:00
|
|
|
fprintf(stderr, "JSON-decode of work failed, ");
|
|
|
|
|
|
|
|
if ((opt_retries >= 0) && (++failures > opt_retries)) {
|
|
|
|
fprintf(stderr, "terminating thread\n");
|
|
|
|
return NULL; /* exit thread */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pause, then restart work loop */
|
|
|
|
fprintf(stderr, "retry after %d seconds\n",
|
2011-02-03 06:54:03 +01:00
|
|
|
opt_fail_pause);
|
|
|
|
sleep(opt_fail_pause);
|
2010-12-19 04:22:06 +01:00
|
|
|
continue;
|
2010-11-24 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
json_decref(val);
|
|
|
|
|
2010-11-27 05:12:24 +01:00
|
|
|
hashes_done = 0;
|
|
|
|
gettimeofday(&tv_start, NULL);
|
|
|
|
|
2010-11-24 05:54:37 +01:00
|
|
|
/* scan nonces for a proof-of-work hash */
|
2010-11-27 06:46:59 +01:00
|
|
|
switch (opt_algo) {
|
|
|
|
case ALGO_C:
|
2010-11-27 10:31:32 +01:00
|
|
|
rc = scanhash_c(work.midstate, work.data + 64,
|
2011-02-03 06:46:55 +01:00
|
|
|
work.hash1, work.hash, work.target,
|
2011-01-29 07:14:12 +01:00
|
|
|
max_nonce, &hashes_done);
|
2010-11-27 06:46:59 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef WANT_SSE2_4WAY
|
|
|
|
case ALGO_4WAY: {
|
2010-11-27 01:04:48 +01:00
|
|
|
unsigned int rc4 =
|
|
|
|
ScanHash_4WaySSE2(work.midstate, work.data + 64,
|
|
|
|
work.hash1, work.hash,
|
2011-02-03 06:46:55 +01:00
|
|
|
work.target,
|
2011-01-29 07:14:12 +01:00
|
|
|
max_nonce, &hashes_done);
|
2010-11-27 01:04:48 +01:00
|
|
|
rc = (rc4 == -1) ? false : true;
|
2010-11-27 06:46:59 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-27 01:04:48 +01:00
|
|
|
#endif
|
2010-11-27 07:29:56 +01:00
|
|
|
|
|
|
|
#ifdef WANT_VIA_PADLOCK
|
|
|
|
case ALGO_VIA:
|
2011-02-03 06:46:55 +01:00
|
|
|
rc = scanhash_via(work.data, work.target,
|
|
|
|
max_nonce, &hashes_done);
|
2010-11-27 07:29:56 +01:00
|
|
|
break;
|
|
|
|
#endif
|
2010-11-29 02:16:22 +01:00
|
|
|
case ALGO_CRYPTOPP:
|
|
|
|
rc = scanhash_cryptopp(work.midstate, work.data + 64,
|
2011-02-03 06:46:55 +01:00
|
|
|
work.hash1, work.hash, work.target,
|
2011-01-29 07:14:12 +01:00
|
|
|
max_nonce, &hashes_done);
|
2010-11-29 02:16:22 +01:00
|
|
|
break;
|
|
|
|
|
2010-12-07 02:14:58 +01:00
|
|
|
#ifdef WANT_CRYPTOPP_ASM32
|
|
|
|
case ALGO_CRYPTOPP_ASM32:
|
|
|
|
rc = scanhash_asm32(work.midstate, work.data + 64,
|
2011-02-03 06:46:55 +01:00
|
|
|
work.hash1, work.hash, work.target,
|
2011-01-29 07:14:12 +01:00
|
|
|
max_nonce, &hashes_done);
|
2010-12-07 02:14:58 +01:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* should never happen */
|
|
|
|
return NULL;
|
2010-11-27 06:46:59 +01:00
|
|
|
}
|
2010-11-24 05:33:20 +01:00
|
|
|
|
2011-01-29 07:14:12 +01:00
|
|
|
/* record scanhash elapsed time */
|
2011-01-29 06:47:48 +01:00
|
|
|
gettimeofday(&tv_end, NULL);
|
|
|
|
timeval_subtract(&diff, &tv_end, &tv_start);
|
|
|
|
|
|
|
|
hashmeter(thr_id, &diff, hashes_done);
|
2010-11-27 05:12:24 +01:00
|
|
|
|
2011-01-29 07:14:12 +01:00
|
|
|
/* adjust max_nonce to meet target scan time */
|
|
|
|
if (diff.tv_sec > (opt_scantime * 2))
|
|
|
|
max_nonce /= 2; /* large decrease */
|
2011-02-04 17:54:31 +01:00
|
|
|
else if ((diff.tv_sec > opt_scantime) &&
|
|
|
|
(max_nonce > 1500000))
|
|
|
|
max_nonce -= 1000000; /* small decrease */
|
|
|
|
else if ((diff.tv_sec < opt_scantime) &&
|
|
|
|
(max_nonce < 0xffffec76))
|
|
|
|
max_nonce += 100000; /* small increase */
|
2011-01-29 07:14:12 +01:00
|
|
|
|
2010-11-24 05:54:37 +01:00
|
|
|
/* if nonce found, submit work */
|
2010-11-25 07:27:19 +01:00
|
|
|
if (rc)
|
2011-02-10 06:41:44 +01:00
|
|
|
submit_work(curl, &work);
|
2010-12-19 04:22:06 +01:00
|
|
|
|
|
|
|
failures = 0;
|
2010-11-24 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
2011-02-10 06:41:44 +01:00
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
2010-11-24 09:36:53 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-26 21:46:11 +01:00
|
|
|
static void show_usage(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2010-12-07 02:21:22 +01:00
|
|
|
printf("minerd version %s\n\n", VERSION);
|
2010-11-27 02:15:07 +01:00
|
|
|
printf("Usage:\tminerd [options]\n\nSupported options:\n");
|
2010-11-26 21:46:11 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(options_help); i++) {
|
|
|
|
struct option_help *h;
|
|
|
|
|
|
|
|
h = &options_help[i];
|
|
|
|
printf("--%s\n%s\n\n", h->name, h->helptext);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_arg (int key, char *arg)
|
2010-11-24 09:36:53 +01:00
|
|
|
{
|
2010-11-27 09:50:52 +01:00
|
|
|
int v, i;
|
2010-11-24 09:36:53 +01:00
|
|
|
|
|
|
|
switch(key) {
|
2010-11-27 01:04:48 +01:00
|
|
|
case 'a':
|
2010-11-27 09:50:52 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(algo_names); i++) {
|
2010-12-06 05:18:18 +01:00
|
|
|
if (algo_names[i] &&
|
|
|
|
!strcmp(arg, algo_names[i])) {
|
2010-11-27 09:50:52 +01:00
|
|
|
opt_algo = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == ARRAY_SIZE(algo_names))
|
2010-11-27 01:04:48 +01:00
|
|
|
show_usage();
|
|
|
|
break;
|
2010-12-27 08:13:15 +01:00
|
|
|
case 'q':
|
|
|
|
opt_quiet = true;
|
|
|
|
break;
|
2010-11-24 09:36:53 +01:00
|
|
|
case 'D':
|
|
|
|
opt_debug = true;
|
|
|
|
break;
|
2010-11-25 00:25:06 +01:00
|
|
|
case 'P':
|
|
|
|
opt_protocol = true;
|
|
|
|
break;
|
2010-12-19 04:22:06 +01:00
|
|
|
case 'r':
|
|
|
|
v = atoi(arg);
|
|
|
|
if (v < -1 || v > 9999) /* sanity check */
|
|
|
|
show_usage();
|
|
|
|
|
|
|
|
opt_retries = v;
|
|
|
|
break;
|
2011-02-03 06:54:03 +01:00
|
|
|
case 'R':
|
|
|
|
v = atoi(arg);
|
|
|
|
if (v < 1 || v > 9999) /* sanity check */
|
|
|
|
show_usage();
|
|
|
|
|
|
|
|
opt_fail_pause = v;
|
|
|
|
break;
|
2011-01-29 07:14:12 +01:00
|
|
|
case 's':
|
|
|
|
v = atoi(arg);
|
|
|
|
if (v < 1 || v > 9999) /* sanity check */
|
|
|
|
show_usage();
|
|
|
|
|
|
|
|
opt_scantime = v;
|
|
|
|
break;
|
2010-11-24 09:36:53 +01:00
|
|
|
case 't':
|
|
|
|
v = atoi(arg);
|
2010-11-25 06:49:39 +01:00
|
|
|
if (v < 1 || v > 9999) /* sanity check */
|
2010-11-26 21:46:11 +01:00
|
|
|
show_usage();
|
2010-11-24 09:36:53 +01:00
|
|
|
|
|
|
|
opt_n_threads = v;
|
|
|
|
break;
|
2010-11-25 06:49:39 +01:00
|
|
|
case 1001: /* --url */
|
|
|
|
if (strncmp(arg, "http://", 7) &&
|
|
|
|
strncmp(arg, "https://", 8))
|
2010-11-26 21:46:11 +01:00
|
|
|
show_usage();
|
2010-11-25 06:49:39 +01:00
|
|
|
|
|
|
|
rpc_url = arg;
|
|
|
|
break;
|
|
|
|
case 1002: /* --userpass */
|
|
|
|
if (!strchr(arg, ':'))
|
2010-11-26 21:46:11 +01:00
|
|
|
show_usage();
|
2010-11-25 06:49:39 +01:00
|
|
|
|
|
|
|
userpass = arg;
|
|
|
|
break;
|
2010-11-24 09:36:53 +01:00
|
|
|
default:
|
2010-11-26 21:46:11 +01:00
|
|
|
show_usage();
|
2010-11-24 09:36:53 +01:00
|
|
|
}
|
2010-11-26 21:46:11 +01:00
|
|
|
}
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-11-26 21:46:11 +01:00
|
|
|
static void parse_cmdline(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int key;
|
|
|
|
|
|
|
|
while (1) {
|
2011-01-29 07:14:12 +01:00
|
|
|
key = getopt_long(argc, argv, "a:qDPr:s:t:h?", options, NULL);
|
2010-11-26 21:46:11 +01:00
|
|
|
if (key < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
parse_arg(key, optarg);
|
|
|
|
}
|
2010-11-24 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
2010-11-24 09:36:53 +01:00
|
|
|
int i;
|
2010-12-29 03:10:41 +01:00
|
|
|
pthread_t *t_all;
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-11-25 06:36:40 +01:00
|
|
|
/* parse command line */
|
2010-11-26 21:46:11 +01:00
|
|
|
parse_cmdline(argc, argv);
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-11-25 06:36:40 +01:00
|
|
|
/* set our priority to the highest (aka "nicest, least intrusive") */
|
2010-11-24 09:36:53 +01:00
|
|
|
if (setpriority(PRIO_PROCESS, 0, 19))
|
|
|
|
perror("setpriority");
|
|
|
|
|
2010-12-29 03:10:41 +01:00
|
|
|
t_all = calloc(opt_n_threads, sizeof(pthread_t));
|
|
|
|
if (!t_all)
|
|
|
|
return 1;
|
|
|
|
|
2010-11-25 06:36:40 +01:00
|
|
|
/* start mining threads */
|
2010-11-24 09:36:53 +01:00
|
|
|
for (i = 0; i < opt_n_threads; i++) {
|
2010-12-29 03:10:41 +01:00
|
|
|
if (pthread_create(&t_all[i], NULL, miner_thread,
|
2010-11-27 05:12:24 +01:00
|
|
|
(void *)(unsigned long) i)) {
|
2010-11-24 09:36:53 +01:00
|
|
|
fprintf(stderr, "thread %d create failed\n", i);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-11-25 06:36:40 +01:00
|
|
|
sleep(1); /* don't pound RPC server all at once */
|
2010-11-24 09:36:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-27 09:50:52 +01:00
|
|
|
fprintf(stderr, "%d miner threads started, "
|
|
|
|
"using SHA256 '%s' algorithm.\n",
|
|
|
|
opt_n_threads,
|
|
|
|
algo_names[opt_algo]);
|
2010-11-24 09:36:53 +01:00
|
|
|
|
2010-12-29 03:10:41 +01:00
|
|
|
/* main loop - simply wait for all threads to exit */
|
|
|
|
for (i = 0; i < opt_n_threads; i++)
|
|
|
|
pthread_join(t_all[i], NULL);
|
|
|
|
|
|
|
|
fprintf(stderr, "all threads dead, fred. exiting.\n");
|
2010-11-24 09:36:53 +01:00
|
|
|
|
|
|
|
return 0;
|
2010-11-24 05:33:20 +01:00
|
|
|
}
|
|
|
|
|