2018-11-27 12:47:18 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <string.h>
|
2018-11-27 15:19:40 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2018-12-03 09:09:52 +01:00
|
|
|
#include <sys/time.h>
|
2018-12-03 12:00:34 +01:00
|
|
|
|
2019-01-17 17:02:53 +01:00
|
|
|
#include "others/uuid/uuid.h"
|
2018-11-27 12:47:18 +01:00
|
|
|
#include "d4.h"
|
2018-11-27 22:37:44 +01:00
|
|
|
//
|
2018-12-03 12:00:34 +01:00
|
|
|
|
2018-12-05 10:39:51 +01:00
|
|
|
|
|
|
|
void usage(void)
|
|
|
|
{
|
|
|
|
printf("d4 - d4 client\n");
|
|
|
|
printf("Read data from the configured <source> and send it to <destination>\n");
|
|
|
|
printf("\n");
|
|
|
|
printf("Usage: d4 -c config_directory\n");
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
printf("Configuration\n\n");
|
|
|
|
printf("The configuration settings are stored in files in the configuration directory\n");
|
|
|
|
printf("specified with the -c command line switch.\n\n");
|
|
|
|
printf("Files in the configuration directory\n");
|
|
|
|
printf("\n");
|
|
|
|
printf("key - is the private HMAC-SHA-256-128 key.\n");
|
|
|
|
printf(" The HMAC is computed on the header with a HMAC value set to 0\n");
|
|
|
|
printf(" which is updated later.\n");
|
|
|
|
printf("snaplen - the length of bytes that is read from the <source>\n");
|
|
|
|
printf("version - the version of the d4 client\n");
|
|
|
|
printf("type - the type of data that is send. pcap, netflow, ...\n");
|
|
|
|
printf("source - the source where the data is read from\n");
|
|
|
|
printf("destination - the destination where the data is written to\n");
|
|
|
|
}
|
|
|
|
|
2018-12-03 12:00:34 +01:00
|
|
|
/*
|
2018-12-03 15:35:08 +01:00
|
|
|
* Generate a uuid if no one was set.
|
|
|
|
* If no errors occured textual representation of uuid is stored in the
|
|
|
|
* configuration array
|
2018-12-03 12:00:34 +01:00
|
|
|
*/
|
|
|
|
void d4_update_uuid(d4_t* d4)
|
|
|
|
{
|
|
|
|
uuid_t uuid;
|
|
|
|
int fd,ret;
|
|
|
|
char* filename;
|
|
|
|
char* uuid_text;
|
|
|
|
|
|
|
|
if (d4->conf[UUID][0] == 0){
|
|
|
|
uuid_generate(uuid);
|
|
|
|
filename = calloc(1,2*FILENAME_MAX);
|
|
|
|
uuid_text = calloc(1, SZUUID_TEXT);
|
|
|
|
if ((filename != NULL) && (uuid != NULL)) {
|
|
|
|
snprintf(filename, 2*FILENAME_MAX, "%s/%s",d4->confdir, d4params[UUID]);
|
|
|
|
fd = open(filename, O_CREAT | O_WRONLY, S_IRUSR |S_IWUSR);
|
|
|
|
if (fd > 0) {
|
|
|
|
uuid_unparse(uuid, uuid_text);
|
|
|
|
ret = write(fd, uuid_text, SZUUID_TEXT-1);
|
2018-12-03 15:35:08 +01:00
|
|
|
if (ret > 0) {
|
|
|
|
memcpy(d4->conf[UUID], uuid_text, SZUUID_TEXT);
|
|
|
|
} else {
|
2018-12-03 12:00:34 +01:00
|
|
|
d4->errno_copy = errno;
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
} else {
|
|
|
|
// Cannot open file
|
|
|
|
d4->errno_copy = errno;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If there is an error the uuid is not stored and a new one is
|
|
|
|
* generated for the next boot
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 22:37:44 +01:00
|
|
|
int d4_check_config(d4_t* d4)
|
|
|
|
{
|
|
|
|
// TODO implement other sources, file, fifo, unix_socket ...
|
2019-01-17 15:22:27 +01:00
|
|
|
if (strlen(d4->conf[SOURCE]) >= strlen(STDIN)) {
|
2018-11-27 22:37:44 +01:00
|
|
|
if (!strncmp(d4->conf[SOURCE],STDIN, strlen(STDIN))) {
|
|
|
|
d4->source.fd = STDIN_FILENO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO implement other destinations file, fifo unix_socket ...
|
2019-01-17 15:22:27 +01:00
|
|
|
if (strlen(d4->conf[DESTINATION]) >= strlen(STDOUT)) {
|
2018-11-27 22:37:44 +01:00
|
|
|
if (!strncmp(d4->conf[DESTINATION],STDOUT, strlen(STDOUT))) {
|
|
|
|
d4->destination.fd = STDOUT_FILENO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
d4->snaplen = atoi(d4->conf[SNAPLEN]);
|
2018-12-03 12:00:34 +01:00
|
|
|
|
|
|
|
d4_update_uuid(d4);
|
|
|
|
|
2018-11-27 22:37:44 +01:00
|
|
|
if ((d4->snaplen < 0) || (d4->snaplen > MAXSNAPLEN)) {
|
|
|
|
d4->snaplen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME Check other parameters
|
2018-11-28 18:20:16 +01:00
|
|
|
if ((atoi(d4->conf[VERSION])>0) && ( d4->destination.fd > 0 ) && ( d4->snaplen >0 )) {
|
2018-11-27 22:37:44 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-11-27 12:47:18 +01:00
|
|
|
//Returns -1 on error, 0 otherwise
|
|
|
|
int d4_load_config(d4_t* d4)
|
|
|
|
{
|
2018-11-27 14:42:35 +01:00
|
|
|
int i;
|
2018-11-27 15:19:40 +01:00
|
|
|
int fd;
|
2019-01-18 16:32:18 +01:00
|
|
|
int n;
|
|
|
|
int j;
|
2018-11-27 14:42:35 +01:00
|
|
|
char *buf;
|
|
|
|
buf=calloc(1,2*FILENAME_MAX);
|
|
|
|
if (buf) {
|
|
|
|
for (i=0; i < ND4PARAMS; i++) {
|
|
|
|
snprintf(buf,2*FILENAME_MAX, "%s/%s",d4->confdir, d4params[i]);
|
2018-11-27 15:19:40 +01:00
|
|
|
fd = open(buf,O_RDONLY);
|
2018-11-27 16:39:48 +01:00
|
|
|
if (fd > 0) {
|
2018-11-27 15:19:40 +01:00
|
|
|
//FIXME error handling
|
2019-01-18 16:32:18 +01:00
|
|
|
n = read(fd, d4->conf[i], SZCONFVALUE);
|
|
|
|
if (n > 0) {
|
|
|
|
//Remove the last new line
|
|
|
|
for (j=n; j>=0; --j) {
|
|
|
|
if (d4->conf[i][j]== '\n') {
|
|
|
|
d4->conf[i][j] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-15 13:25:33 +01:00
|
|
|
close(fd);
|
2018-11-27 15:19:40 +01:00
|
|
|
} else {
|
|
|
|
d4->errno_copy = errno;
|
2018-11-27 17:27:52 +01:00
|
|
|
INSERT_ERROR("Failed to load %s", d4params[i]);
|
2018-11-27 15:19:40 +01:00
|
|
|
}
|
2018-11-27 14:42:35 +01:00
|
|
|
}
|
|
|
|
}
|
2018-11-27 22:37:44 +01:00
|
|
|
return d4_check_config(d4);
|
2018-11-27 12:47:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
d4_t* d4_init(char* confdir)
|
|
|
|
{
|
|
|
|
d4_t* out;
|
2018-11-27 15:00:43 +01:00
|
|
|
int i;
|
2018-11-27 12:47:18 +01:00
|
|
|
out = calloc(1,sizeof(d4_t));
|
|
|
|
if (out) {
|
|
|
|
strncpy(out->confdir, confdir, FILENAME_MAX);
|
|
|
|
}
|
2018-11-27 15:00:43 +01:00
|
|
|
|
|
|
|
for (i=0; i< ND4PARAMS; i++) {
|
|
|
|
bzero(out->conf[i],SZCONFVALUE);
|
|
|
|
}
|
2018-11-27 12:47:18 +01:00
|
|
|
// Do other inititalization stuff here
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2018-11-27 23:14:23 +01:00
|
|
|
|
2018-11-28 17:52:54 +01:00
|
|
|
|
|
|
|
void d4_prepare_header(d4_t* d4)
|
|
|
|
{
|
2018-12-03 15:10:37 +01:00
|
|
|
char uuid_text[24];
|
|
|
|
uuid_t uuid;
|
|
|
|
|
2018-11-28 17:52:54 +01:00
|
|
|
bzero(&d4->header,sizeof(d4->header));
|
2018-12-03 15:10:37 +01:00
|
|
|
bzero(&uuid_text, 24);
|
2018-11-27 23:14:23 +01:00
|
|
|
d4->header.version = atoi(d4->conf[VERSION]);
|
2018-12-03 15:10:37 +01:00
|
|
|
if (!uuid_parse(d4->conf[UUID],uuid)) {
|
|
|
|
memcpy(d4->header.uuid, uuid, SZUUID);
|
|
|
|
}
|
|
|
|
// If UUID cannot be parsed it is set to 0
|
2018-12-03 09:39:44 +01:00
|
|
|
d4->header.type = atoi(d4->conf[TYPE]);
|
2018-12-04 14:24:52 +01:00
|
|
|
|
|
|
|
d4->ctx = calloc(sizeof(hmac_sha256_ctx),1);
|
|
|
|
if (d4->ctx) {
|
|
|
|
//FIXME check cast of the key
|
|
|
|
hmac_sha256_init(d4->ctx, (uint8_t*)d4->conf[KEY], strlen(d4->conf[KEY]));
|
|
|
|
}
|
2018-11-28 17:52:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void d4_update_header(d4_t* d4, ssize_t nread) {
|
2018-12-03 09:09:52 +01:00
|
|
|
struct timeval tv;
|
|
|
|
bzero(&tv,sizeof(struct timeval));
|
|
|
|
gettimeofday(&tv,NULL);
|
|
|
|
d4->header.timestamp = tv.tv_sec;
|
2018-11-27 23:14:23 +01:00
|
|
|
d4->header.size=nread;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Core routine. Transfers data from the source to the destinations
|
|
|
|
void d4_transfert(d4_t* d4)
|
|
|
|
{
|
|
|
|
ssize_t nread;
|
2018-12-20 10:56:13 +01:00
|
|
|
ssize_t n;
|
2018-11-27 23:14:23 +01:00
|
|
|
char* buf;
|
2018-12-04 16:22:09 +01:00
|
|
|
unsigned char* hmac;
|
2019-01-03 11:37:43 +01:00
|
|
|
unsigned char* hmaczero;
|
2018-11-27 23:14:23 +01:00
|
|
|
|
|
|
|
buf = calloc(1, d4->snaplen);
|
2018-12-04 16:22:09 +01:00
|
|
|
hmac = calloc(1,SZHMAC);
|
2019-01-03 11:37:43 +01:00
|
|
|
hmaczero = calloc(1,SZHMAC);
|
2018-11-27 23:14:23 +01:00
|
|
|
//TODO error handling -> insert error message
|
2019-01-17 14:54:27 +01:00
|
|
|
if ((buf == NULL) && (hmac == NULL) && (hmaczero == NULL))
|
2018-11-27 23:14:23 +01:00
|
|
|
return;
|
|
|
|
|
2018-11-28 17:52:54 +01:00
|
|
|
d4_prepare_header(d4);
|
2018-11-27 23:14:23 +01:00
|
|
|
while ( 1 ) {
|
|
|
|
//In case of errors see block of 0 bytes
|
|
|
|
bzero(buf, d4->snaplen);
|
|
|
|
nread = read(d4->source.fd, buf, d4->snaplen);
|
|
|
|
if ( nread > 0 ) {
|
|
|
|
d4_update_header(d4, nread);
|
2018-12-04 16:22:09 +01:00
|
|
|
//Do HMAC on header and payload. HMAC field is 0 during computation
|
2018-12-20 14:41:56 +01:00
|
|
|
if (d4->ctx) {
|
2019-01-03 11:37:43 +01:00
|
|
|
hmac_sha256_reinit(d4->ctx);
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*)&d4->header.version, sizeof(uint8_t));
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*)&d4->header.type, sizeof(uint8_t));
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*)&d4->header.uuid, SZUUID);
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*)&d4->header.timestamp, sizeof(uint64_t));
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*) hmaczero, SZHMAC);
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*)&d4->header.size, sizeof(uint32_t));
|
|
|
|
hmac_sha256_update(d4->ctx, (const unsigned char*)buf, nread);
|
|
|
|
hmac_sha256_final(d4->ctx, hmac, SZHMAC);
|
2018-12-20 14:41:56 +01:00
|
|
|
//Add it to the header
|
|
|
|
memcpy(d4->header.hmac, hmac, SZHMAC);
|
|
|
|
}
|
2018-12-20 10:56:13 +01:00
|
|
|
n = 0;
|
|
|
|
n+=write(d4->destination.fd, &d4->header.version, sizeof(uint8_t));
|
|
|
|
n+=write(d4->destination.fd, &d4->header.type, sizeof(uint8_t));
|
|
|
|
n+=write(d4->destination.fd, &d4->header.uuid, SZUUID);
|
|
|
|
n+=write(d4->destination.fd, &d4->header.timestamp, sizeof(uint64_t));
|
|
|
|
n+=write(d4->destination.fd, &d4->header.hmac, SZHMAC);
|
|
|
|
n+=write(d4->destination.fd, &d4->header.size, sizeof(uint32_t));
|
|
|
|
n+=write(d4->destination.fd,buf,nread);
|
|
|
|
if (n != SZD4HDR + nread) {
|
|
|
|
fprintf(stderr,"Incomplete header written. abort to let consumer known that the packet is corrupted\n");
|
|
|
|
abort();
|
|
|
|
}
|
2018-11-27 23:14:23 +01:00
|
|
|
} else{
|
|
|
|
//FIXME no data available, sleep, abort, retry
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 12:47:18 +01:00
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int opt;
|
|
|
|
char* confdir;
|
|
|
|
d4_t* d4;
|
|
|
|
|
|
|
|
confdir=calloc(1,FILENAME_MAX);
|
|
|
|
if (!confdir)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
while ((opt = getopt(argc, argv, "c:h")) != -1) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
case 'c':
|
|
|
|
strncpy(confdir, optarg, FILENAME_MAX);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr,"An invalid command line argument was specified\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!confdir[0]){
|
|
|
|
fprintf(stderr,"A config directory must be specified\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-27 14:48:09 +01:00
|
|
|
d4 = d4_init(confdir);
|
2018-11-27 12:47:18 +01:00
|
|
|
free(confdir);
|
2018-11-27 23:14:23 +01:00
|
|
|
if (d4_load_config(d4)) {
|
|
|
|
d4_transfert(d4);
|
|
|
|
}
|
2018-11-27 17:35:31 +01:00
|
|
|
|
2018-11-27 12:47:18 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|