telnetproxy/connection.c

202 lines
4.3 KiB
C
Raw Normal View History

2006-11-25 14:31:52 +01:00
#include <stdio.h>
#include <stdlib.h>
2006-12-03 20:03:16 +01:00
#include <unistd.h>
2006-12-03 22:13:20 +01:00
#include <string.h>
2006-11-25 14:31:52 +01:00
#include <time.h>
2006-12-03 20:03:16 +01:00
#include <netinet/ip.h>
2006-11-25 14:31:52 +01:00
#include "connection.h"
2006-12-03 20:03:16 +01:00
#include "event.h"
#include "list.h"
#include "logging.h"
#include "network.h"
struct connection {
struct list_head list;
struct sockaddr_in src_addr;
struct sockaddr_in dst_addr;
int src_fd;
int dst_fd;
2006-12-03 22:13:20 +01:00
time_t login_time;
2006-12-03 20:03:16 +01:00
};
static LIST_HEAD(connection_list);
static struct connection * create_connection()
{
struct connection *con = malloc(sizeof(struct connection));
if (con == NULL) {
log_print(LOG_WARN, "listen_handler(): out of memory");
return 0;
}
con->src_fd = con->dst_fd = -1;
2006-12-03 22:13:20 +01:00
con->src_addr.sin_addr.s_addr = con->src_addr.sin_addr.s_addr = 0;
con->src_addr.sin_port = con->src_addr.sin_port = 0;
2006-12-03 20:03:16 +01:00
con->login_time = time(NULL);
return con;
}
static int destroy_connection(struct connection *con)
{
2006-12-28 20:22:13 +01:00
// TODO: detroy connect-timeout?
2006-12-03 20:03:16 +01:00
if (con->src_fd != -1) {
close(con->src_fd);
event_remove_fd(con->src_fd);
}
if (con->dst_fd != -1) {
close(con->dst_fd);
event_remove_fd(con->dst_fd);
}
free(con);
return 0;
}
static int forward_handler(int fd, void *privdata)
{
struct connection *con = (struct connection *)privdata;
char buf[256];
int len = read(fd, buf, sizeof(buf));
if (len <= 0) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
/* client -> device */
if (con->src_fd == fd)
write(con->dst_fd, buf, len);
/* device -> client */
else if (con->dst_fd == fd)
write(con->src_fd, buf, len);
return 0;
}
2006-12-28 20:22:13 +01:00
static int connect_handler(int fd, void *privdata)
{
struct connection *con = (struct connection *)privdata;
if (tcp_connect_error(fd)) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
log_print(LOG_INFO, "forwarding to %s", get_sockaddr_buf(&con->dst_addr));
event_add_readfd(con->dst_fd, forward_handler, con);
event_add_readfd(con->src_fd, forward_handler, con);
/* dismiss connect_handler */
return -1;
}
2006-12-03 20:03:16 +01:00
static int client_handler(int fd, void *privdata)
{
struct connection *con = (struct connection *)privdata;
char buf[256];
int len = read(fd, buf, sizeof(buf));
if (len <= 0) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
if (parse_saddr(buf, &con->dst_addr) != 0) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
// check destination
con->dst_fd = tcp_connect_socket(&con->dst_addr);
if (con->dst_fd < 0) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
2006-12-28 20:22:13 +01:00
// TODO: start connect timeout, callback destroys connection
log_print(LOG_INFO, "connecting to %s", get_sockaddr_buf(&con->dst_addr));
event_add_writefd(con->dst_fd, connect_handler, con);
2006-12-03 20:03:16 +01:00
/* dismiss client_handler */
return -1;
}
static int admin_handler(int fd, void *privdata)
{
2006-12-03 22:13:20 +01:00
struct connection *con = (struct connection *)privdata;
char buf[256];
int len = read(fd, buf, sizeof(buf));
if (len <= 0) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
if (strncmp(buf, "list", 4) == 0) {
struct connection *entry;
list_for_each_entry(entry, &connection_list, list) {
len = snprintf(buf, sizeof(buf), "%d,", entry->src_fd);
len += get_sockaddr(&entry->src_addr, buf + len, sizeof(buf) - len);
len += snprintf(buf + len, sizeof(buf) - len, ",%d,", entry->dst_fd);
len += get_sockaddr(&entry->dst_addr, buf + len, sizeof(buf) - len);
len += snprintf(buf + len, sizeof(buf) - len, ",%ld\n", (time(NULL) - entry->login_time));
write(fd, buf, len);
}
} else if (strncmp(buf, "kill", 4) == 0) {
} else if (strncmp(buf, "quit", 4) == 0) {
list_del(&con->list);
destroy_connection(con);
return -1;
}
return 0;
2006-12-03 20:03:16 +01:00
}
int listen_handler(int fd, void *privdata)
{
int mode = (int)privdata;
struct connection *con = create_connection();
if (con == NULL) {
log_print(LOG_WARN, "listen_handler(): out of memory");
return 0;
}
unsigned int i = sizeof(con->src_addr);
con->src_fd = accept(fd, (struct sockaddr *)&con->src_addr, &i);
if (con->src_fd < 0) {
free(con);
return 0;
}
log_print(LOG_INFO, "accepted connection from %s", get_sockaddr_buf(&con->src_addr));
list_add_tail(&con->list, &connection_list);
if (mode == CON_ADMIN)
event_add_readfd(con->src_fd, admin_handler, con);
2006-12-03 22:13:20 +01:00
else
event_add_readfd(con->src_fd, client_handler, con);
2006-12-03 20:03:16 +01:00
return 0;
}