OpenCL GPU miner
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

315 lines
6.3 KiB

13 years ago
/*
* Copyright 2011 Kano
* Copyright 2011 Con Kolivas
*
* 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.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/time.h>
#include <time.h>
#include <math.h>
#include <stdarg.h>
#include <assert.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "compat.h"
#include "miner.h"
#if defined(unix)
#include <errno.h>
// #include <fcntl.h>
// #include <sys/wait.h>
#endif
13 years ago
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
13 years ago
// Big enough for largest API request
// though a PC with 100s of CPUs may exceed the size ...
// Current code assumes it can socket send this size also
#define MYBUFSIZ 16384
13 years ago
// Socket is on 127.0.0.1
#define QUEUE 10
13 years ago
static char *buffer = NULL;
static const char *UNAVAILABLE = " - API will not be available";
static const char *BLANK = "";
13 years ago
static const char *APIVERSION = "0.1";
13 years ago
static const char *DEAD = "DEAD";
static const char *SICK = "SICK";
static const char *DISABLED = "DISABLED";
13 years ago
static const char *ALIVE = "ALIVE";
static const char *YES = "Y";
static const char *NO = "N";
13 years ago
static int bye = 0;
char *apiversion(char *params)
{
13 years ago
return (char *)APIVERSION;
13 years ago
}
void gpustatus(int thr_id)
{
char buf[BUFSIZ];
char status_buf[BUFSIZ];
char *status;
float gt;
int gf, gp;
if (thr_id >= 0 && thr_id < gpu_threads) {
13 years ago
int gpu = thr_info[thr_id].cgpu->cpu_gpu;
13 years ago
struct cgpu_info *cgpu = &gpus[gpu];
cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
#ifdef HAVE_ADL
if (cgpu->has_adl) {
gt = gpu_temp(gpu);
gf = gpu_fanspeed(gpu);
gp = gpu_fanpercent(gpu);
}
else
#endif
gt = gf = gp = 0;
if (cgpu->status == LIFE_DEAD)
13 years ago
status = (char *)DEAD;
13 years ago
else if (cgpu->status == LIFE_SICK)
13 years ago
status = (char *)SICK;
13 years ago
else if (!gpu_devices[gpu])
13 years ago
status = (char *)DISABLED;
13 years ago
else {
sprintf(status_buf, "%.1f", cgpu->rolling);
status = status_buf;
}
13 years ago
sprintf(buf, "GPU=%d,GT=%.2f,FR=%d,FP=%d,STA=%s,MHS=%.2f,A=%d,R=%d,HW=%d,U=%.2f,I=%d|",
13 years ago
gpu, gt, gf, gp, status,
cgpu->total_mhashes / total_secs,
cgpu->accepted, cgpu->rejected, cgpu->hw_errors,
13 years ago
cgpu->utility, gpus->intensity);
13 years ago
strcat(buffer, buf);
}
}
void cpustatus(int thr_id)
{
char buf[BUFSIZ];
if (thr_id >= gpu_threads) {
13 years ago
int cpu = thr_info[thr_id].cgpu->cpu_gpu;
13 years ago
struct cgpu_info *cgpu = &cpus[cpu];
cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
13 years ago
sprintf(buf, "CPU=%d,STA=%.2f,MHS=%.2f,A=%d,R=%d,U=%.2f|",
13 years ago
cpu, cgpu->rolling,
cgpu->total_mhashes / total_secs,
13 years ago
cgpu->accepted, cgpu->rejected,
cgpu->utility);
13 years ago
strcat(buffer, buf);
}
}
char *devstatus(char *params)
{
int i;
*buffer = '\0';
for (i = 0; i < gpu_threads; i++)
gpustatus(i);
for (i = gpu_threads; i < mining_threads; i++)
cpustatus(i);
return buffer;
}
char *poolstatus(char *params)
{
char buf[BUFSIZ];
13 years ago
char *status, *lp;
13 years ago
int i;
*buffer = '\0';
for (i = 0; i < total_pools; i++) {
struct pool *pool = pools[i];
if (!pool->enabled)
13 years ago
status = (char *)DISABLED;
13 years ago
else
13 years ago
{
if (pool->idle)
status = (char *)DEAD;
else
status = (char *)ALIVE;
}
13 years ago
13 years ago
if (pool->hdr_path)
lp = (char *)YES;
else
lp = (char *)NO;
sprintf(buf, "POOL=%d,URL=%s,STA=%s,PRI=%d,LP=%s,Q=%d,A=%d,R=%d,DW=%d,ST=%d,GF=%d,RF=%d|",
i, pool->rpc_url, status, pool->prio, lp,
13 years ago
pool->getwork_requested,
pool->accepted, pool->rejected,
pool->discarded_work,
pool->stale_shares,
pool->getfail_occasions,
pool->remotefail_occasions);
strcat(buffer, buf);
}
return buffer;
}
struct CMDS {
13 years ago
char *name;
char *(*func)(char *);
13 years ago
} cmds[] = {
{ "apiversion", apiversion },
{ "dev", devstatus },
13 years ago
{ "pool", poolstatus },
13 years ago
};
13 years ago
#define CMDMAX 3
13 years ago
void send_result(int c, char *result)
{
int n;
if (result == NULL)
13 years ago
result = (char *)BLANK;
13 years ago
// ignore failure - it's closed immediately anyway
n = write(c, result, strlen(result)+1);
}
13 years ago
void api()
13 years ago
{
13 years ago
char buf[BUFSIZ];
13 years ago
const char *addr;
int c, sock, n, bound;
13 years ago
char tmpaddr[32];
13 years ago
char *binderror;
time_t bindstart;
short int port = 4028;
struct sockaddr_in serv;
struct sockaddr_in cli;
socklen_t clisiz;
long long counter;
char *result;
char *params;
13 years ago
int i;
13 years ago
addr = "127.0.0.1";
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0) {
applog(LOG_ERR, "API1 initialisation failed (%s)%s", strerror(errno), UNAVAILABLE);
13 years ago
return;
13 years ago
}
memset(&serv, 0, sizeof(serv));
serv.sin_family = AF_INET;
if (inet_pton(AF_INET, addr, &(serv.sin_addr)) == 0) {
applog(LOG_ERR, "API2 initialisation failed (%s)%s", strerror(errno), UNAVAILABLE);
13 years ago
return;
13 years ago
}
serv.sin_port = htons(port);
// try for 1 minute ... in case the old one hasn't completely gone yet
bound = 0;
bindstart = time(NULL);
while (bound == 0) {
if (bind(sock, (struct sockaddr *)(&serv), sizeof(serv)) < 0) {
binderror = strerror(errno);
if ((time(NULL) - bindstart) > 61)
break;
else {
13 years ago
applog(LOG_ERR, "API bind to port %d failed - trying again in 15sec", port);
sleep(15);
13 years ago
}
}
else
bound = 1;
}
if (bound == 0) {
applog(LOG_ERR, "API bind to port %d failed (%s)%s", port, binderror, UNAVAILABLE);
13 years ago
return;
13 years ago
}
if (listen(sock, QUEUE) < 0) {
applog(LOG_ERR, "API3 initialisation failed (%s)%s", strerror(errno), UNAVAILABLE);
close(sock);
13 years ago
return;
13 years ago
}
buffer = malloc(MYBUFSIZ+1);
counter = 0;
while (bye == 0) {
counter++;
clisiz = sizeof(cli);
if ((c = accept(sock, (struct sockaddr *)(&cli), &clisiz)) < 0) {
applog(LOG_ERR, "API failed (%s)%s", strerror(errno), UNAVAILABLE);
close(sock);
free(buffer);
13 years ago
return;
13 years ago
}
inet_ntop(AF_INET, &(cli.sin_addr), &(tmpaddr[0]), sizeof(tmpaddr)-1);
if (strcmp(tmpaddr, addr) == 0) {
13 years ago
n = read(c, &buf[0], BUFSIZ-1);
if (n >= 0) {
13 years ago
buf[n] = '\0';
13 years ago
params = strchr(buf, '|');
if (params != NULL)
*(params++) = '\0';
for (i = 0; i < CMDMAX; i++) {
if (strcmp(buf, cmds[i].name) == 0) {
13 years ago
result = (cmds[i].func)(params);
13 years ago
send_result(c, result);
close(c);
break;
}
}
}
}
close(c);
13 years ago
}
close(sock);
free(buffer);
}