1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
#include <arpa/inet.h>
#include <vector>
#include <string>
#include <map>
#include <sys/time.h>
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <stddef.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <libgen.h>
#include "error.h"
#include "random_source.h"
#include "utils.h"
#include "log.h"
#include "encrypt_stream.h"
#include "hasher.h"
#include "math.h"
#include "protocol.h"
#include "statistics.h"
#include "statistics_global.h"
#include "statistics_user.h"
#include "users.h"
#include "auth.h"
#include "kernel_prng_io.h"
#define DEFAULT_COMM_TO 15
const char *pid_file = PID_DIR "/client_file.pid";
const char *client_type = NULL;
bool do_exit = false;
void sig_handler(int sig)
{
fprintf(stderr, "Exit due to signal %d\n", sig);
do_exit = true;
}
void help(bool is_eb_client_file)
{
printf("-I host entropy_broker host to connect to\n");
printf(" e.g. host\n");
printf(" host:port\n");
printf(" [ipv6 literal]:port\n");
printf(" you can have multiple entries of this\n");
if (is_eb_client_file)
printf("-c count number of BYTES, 0=no limit\n");
if (is_eb_client_file)
printf("-f file write bytes to \"file\"\n");
printf("-l file log to file 'file'\n");
printf("-L x log level, 0=nothing, 255=all\n");
printf("-s log to syslog\n");
printf("-n do not fork\n");
printf("-P file write pid to file\n");
printf("-X file read username+password from file\n");
if (!is_eb_client_file)
{
printf("-S time how long to sleep between each iteration\n");
printf("-b x how many BYTES to process each iteration\n");
}
}
int main(int argc, char *argv[])
{
int c;
bool do_not_fork = false, log_console = false, log_syslog = false;
char *log_logfile = NULL;
int count = 0;
const char *file = NULL;
int block_size = 4096;
int sleep_time = 0;
char *prog = basename(strdup(argv[0]));
std::string username, password;
bool is_eb_client_file = strstr(prog, "eb_client_file") != NULL;
std::vector<std::string> hosts;
int log_level = LOG_INFO;
if (!is_eb_client_file)
file = "/dev/random";
if (is_eb_client_file)
client_type = "eb_client_file v" VERSION;
else
client_type = "eb_client_kernel_generic v" VERSION;
printf("%s, (C) 2009-2015 by folkert@vanheusden.com\n", client_type);
while((c = getopt(argc, argv, "b:S:hc:f:X:P:I:L:l:sn")) != -1)
{
switch(c)
{
case 'b':
block_size = atoi(optarg);
if (block_size < 1)
error_exit("invalid block size");
break;
case 'S':
sleep_time = atoi(optarg);
if (sleep_time < 1)
error_exit("invalid sleep time");
break;
case 'c':
count = atoi(optarg);
if (count <= 0)
count = -1;
break;
case 'f':
file = optarg;
break;
case 'X':
get_auth_from_file(optarg, username, password);
break;
case 'P':
pid_file = optarg;
break;
case 'I':
hosts.push_back(optarg);
break;
case 's':
log_syslog = true;
break;
case 'L':
log_level = atoi(optarg);
break;
case 'l':
log_logfile = optarg;
break;
case 'n':
do_not_fork = true;
log_console = true;
break;
case 'h':
help(is_eb_client_file);
return 0;
default:
help(is_eb_client_file);
return 1;
}
}
if (username.length() == 0 || password.length() == 0)
error_exit("password + username cannot be empty");
if (hosts.empty())
error_exit("No host to connect to selected");
if (!file)
error_exit("No file to write to selected");
if (count < 1)
error_exit("Count must be >= 1");
(void)umask(0177);
set_logging_parameters(log_console, log_logfile, log_syslog, log_level);
protocol *p = new protocol(&hosts, username, password, false, client_type, DEFAULT_COMM_TO);
FILE *fh = fopen(file, "wb");
if (!fh)
error_exit("Failed to create file %s", file);
no_core();
if (!do_not_fork)
{
if (daemon(0, 0) == -1)
error_exit("fork failed");
}
write_pid(pid_file);
signal(SIGPIPE, SIG_IGN);
signal(SIGCHLD, SIG_IGN);
signal(SIGTERM, sig_handler);
signal(SIGINT , sig_handler);
signal(SIGQUIT, sig_handler);
unsigned char buffer[4096];
lock_mem(buffer, sizeof buffer);
while((count > 0 || count == -1) && do_exit == false)
{
int n_bytes_to_get = std::min(block_size, std::min(count <= 0 ? 4096 : count, 4096));
int n_bits_to_get = n_bytes_to_get * 8;
dolog(LOG_INFO, "will get %d bits", n_bits_to_get);
int n_bytes = p -> request_bytes(buffer, n_bits_to_get, false, &do_exit);
if (do_exit)
break;
if (count == -1) { }
else if (n_bytes >= count)
count = 0;
else
count -= n_bytes;
if (fwrite(buffer, 1, n_bytes, fh) != (size_t)n_bytes)
error_exit("Failed to write %d bytes to file", n_bytes);
if (sleep_time > 0)
sleep(sleep_time);
}
memset(buffer, 0x00, sizeof buffer);
unlock_mem(buffer, sizeof buffer);
fclose(fh);
unlink(pid_file);
delete p;
dolog(LOG_INFO, "Finished");
return 0;
}
|