172 lines
4.7 KiB
C
172 lines
4.7 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include "tor_ctl.h"
|
|
#include "evt_core.h"
|
|
#include "net_tools.h"
|
|
#include "url.h"
|
|
#include "measure.h"
|
|
|
|
struct torecho_ctx {
|
|
uint8_t is_measlat;
|
|
struct measure_conf mc;
|
|
};
|
|
|
|
void te_create_onion_services(struct tor_os_str* tos, struct tor_ctl* tctl, uint16_t* ports, int ports_count, enum TOR_ONION_FLAGS tof) {
|
|
tor_os_create (tos, "onion_services.pub", "onion_services.txt", 1);
|
|
tor_os_read (tos);
|
|
|
|
int err = 0;
|
|
err = tor_ctl_connect (tctl, "127.0.0.1", "9051");
|
|
if (err < 0) {
|
|
fprintf(stderr, "Unable to open Tor Socket\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
err = tor_ctl_add_onion (tctl, tos, ports, ports_count, tof);
|
|
if (err != 0) {
|
|
fprintf(stderr, "Unable to create Onion Services (error: %d)\n", err);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
int te_on_tcp_co(struct evt_core_ctx* ctx, struct evt_core_fdinfo* fdinfo) {
|
|
int conn_sock1, conn_sock2;
|
|
struct sockaddr_in addr;
|
|
socklen_t in_len;
|
|
char url[1024], port[6];
|
|
struct evt_core_cat local_cat = {0};
|
|
struct evt_core_fdinfo to_fdinfo = {0};
|
|
to_fdinfo.cat = &local_cat;
|
|
to_fdinfo.url = url;
|
|
|
|
in_len = sizeof(addr);
|
|
conn_sock1 = accept(fdinfo->fd, (struct sockaddr*)&addr, &in_len);
|
|
|
|
if (conn_sock1 == -1 && errno == EAGAIN) return 1;
|
|
if (conn_sock1 == -1) goto co_error;
|
|
|
|
url_get_port(port, fdinfo->url);
|
|
|
|
to_fdinfo.fd = conn_sock1;
|
|
to_fdinfo.cat->name = "tcp-all";
|
|
sprintf(to_fdinfo.url, "tcp:all:127.0.0.1:%s", port);
|
|
evt_core_add_fd (ctx, &to_fdinfo);
|
|
|
|
return 0;
|
|
|
|
co_error:
|
|
perror("Failed to handle new connection");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
int te_on_tcp(struct evt_core_ctx* ctx, struct evt_core_fdinfo* fdinfo) {
|
|
ssize_t nread, nwritten;
|
|
struct sockaddr_in addr;
|
|
socklen_t addrlen = sizeof(addr);
|
|
struct torecho_ctx *tctx = fdinfo->cat->app_ctx;
|
|
|
|
nread = recv(fdinfo->fd, tctx->mc.payload, tctx->mc.payload_size, 0);
|
|
if (nread == -1 && errno == EAGAIN) return 1; // Read done
|
|
if (nread == 0) { fprintf(stderr, "WARN! Read 0 bytes.\n"); return 1; }
|
|
if (nread < 0 || nread > tctx->mc.payload_size) {
|
|
fprintf(stderr, "Message is either truncated or an error occured. nread=%ld, expected=%ld\n", nread, tctx->mc.payload_size);
|
|
perror("read errno");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
if (tctx->is_measlat) measure_parse (nread, &tctx->mc);
|
|
|
|
nwritten = send(fdinfo->fd, tctx->mc.payload, nread, 0);
|
|
// @FIXME don't support EAGAIN on write. Could be intended, you don't think so?
|
|
if (nwritten != nread) {
|
|
fprintf(stderr, "Didn't write the same number of bytes as read - not supported. nread=%ld, nwritten=%ld\n", nread, nwritten);
|
|
perror("write errno");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
|
printf("~ torecho ~\n");
|
|
|
|
int tcp_serv_sock = 0, err, opt;
|
|
struct evt_core_ctx evts = {0};
|
|
uint16_t ports[] = {7500};
|
|
int ports_count = sizeof(ports[0]) / sizeof(ports);
|
|
struct tor_os_str tos;
|
|
struct tor_ctl tctl;
|
|
enum TOR_ONION_FLAGS tof = TOR_ONION_FLAG_NONE;
|
|
char url[1024];
|
|
struct torecho_ctx tctx = {0};
|
|
tctx.mc.is_server = 1;
|
|
tctx.mc.payload_size = 1500;
|
|
|
|
while ((opt = getopt(argc, argv, "ns:m")) != -1) {
|
|
switch(opt) {
|
|
case 'n':
|
|
tof |= TOR_ONION_FLAG_NON_ANONYMOUS;
|
|
break;
|
|
case 'm':
|
|
tctx.is_measlat = 1;
|
|
break;
|
|
case 's':
|
|
tctx.mc.payload_size = atoi(optarg);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
// 1. Register categories
|
|
struct evt_core_cat tcp_co = {
|
|
.app_ctx = &tctx,
|
|
.free_app_ctx = NULL,
|
|
.cb = te_on_tcp_co,
|
|
.err_cb = NULL,
|
|
.name = "tcp-co",
|
|
.flags = EPOLLIN,
|
|
.socklist = NULL
|
|
};
|
|
struct evt_core_cat tcp_all = {
|
|
.app_ctx = &tctx ,
|
|
.free_app_ctx = NULL,
|
|
.cb = te_on_tcp,
|
|
.err_cb = NULL,
|
|
.name = "tcp-all",
|
|
.flags = EPOLLIN | EPOLLOUT | EPOLLET | EPOLLRDHUP,
|
|
.socklist = NULL
|
|
};
|
|
measure_prepare (&tctx.mc);
|
|
|
|
evt_core_init(&evts, 0);
|
|
evt_core_add_cat(&evts, &tcp_co);
|
|
evt_core_add_cat(&evts, &tcp_all);
|
|
printf("--- Categories created\n");
|
|
|
|
// 2. Create or load onion services
|
|
te_create_onion_services (&tos, &tctl, ports, ports_count, tof);
|
|
printf("--- Onion services created\n");
|
|
|
|
// 3. Create TCP server
|
|
sprintf(url, "%d", ports[0]);
|
|
tcp_serv_sock = create_tcp_server ("0.0.0.0", url);
|
|
err = listen(tcp_serv_sock, SOMAXCONN);
|
|
|
|
struct evt_core_cat cat = {0};
|
|
struct evt_core_fdinfo fdinfo = {0};
|
|
fdinfo.cat = &cat;
|
|
fdinfo.url = url;
|
|
|
|
fdinfo.fd = tcp_serv_sock;
|
|
sprintf(url, "tcp:co:127.0.0.1:%d", ports[0]);
|
|
fdinfo.cat->name = "tcp-co";
|
|
evt_core_add_fd(&evts, &fdinfo);
|
|
printf("--- TCP server is listening\n");
|
|
|
|
// 4. Start main loop
|
|
evt_core_loop (&evts);
|
|
|
|
return 0;
|
|
}
|