2013-07-30 01:32:39 +02:00
|
|
|
/*
|
|
|
|
* Toxic -- Tox Curses Client
|
|
|
|
*/
|
|
|
|
|
2013-08-23 00:37:19 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-30 01:32:39 +02:00
|
|
|
#include <curses.h>
|
2013-08-08 16:00:12 +02:00
|
|
|
#include <errno.h>
|
2013-07-30 01:32:39 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2013-08-11 02:59:16 +02:00
|
|
|
#include <signal.h>
|
2013-08-21 23:19:35 +02:00
|
|
|
#include <locale.h>
|
2013-08-23 23:03:44 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <netdb.h>
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-08 16:00:12 +02:00
|
|
|
#ifdef _win32
|
|
|
|
#include <direct.h>
|
|
|
|
#else
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2013-08-23 23:03:44 +02:00
|
|
|
#include <sys/socket.h>
|
2013-08-08 16:00:12 +02:00
|
|
|
#endif
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
#include "tox.h"
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-08 10:15:07 +02:00
|
|
|
#include "configdir.h"
|
2013-08-23 00:18:53 +02:00
|
|
|
#include "toxic_windows.h"
|
2013-08-13 00:50:43 +02:00
|
|
|
#include "prompt.h"
|
|
|
|
#include "friendlist.h"
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
/* Export for use in Callbacks */
|
|
|
|
char *DATA_FILE = NULL;
|
2013-08-18 23:16:39 +02:00
|
|
|
char *SRVLIST_FILE = NULL;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_window_resize(int sig)
|
2013-08-11 02:59:16 +02:00
|
|
|
{
|
|
|
|
endwin();
|
|
|
|
refresh();
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
static void init_term()
|
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
/* Setup terminal */
|
|
|
|
signal(SIGWINCH, on_window_resize);
|
2013-08-21 23:19:35 +02:00
|
|
|
setlocale(LC_ALL, "");
|
2013-08-16 19:11:09 +02:00
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
keypad(stdscr, 1);
|
|
|
|
noecho();
|
|
|
|
timeout(100);
|
|
|
|
|
|
|
|
if (has_colors()) {
|
|
|
|
start_color();
|
|
|
|
init_pair(1, COLOR_GREEN, COLOR_BLACK);
|
|
|
|
init_pair(2, COLOR_CYAN, COLOR_BLACK);
|
|
|
|
init_pair(3, COLOR_RED, COLOR_BLACK);
|
|
|
|
init_pair(4, COLOR_BLUE, COLOR_BLACK);
|
|
|
|
init_pair(5, COLOR_YELLOW, COLOR_BLACK);
|
2013-08-18 04:43:10 +02:00
|
|
|
init_pair(6, COLOR_MAGENTA, COLOR_BLACK);
|
|
|
|
init_pair(7, COLOR_BLACK, COLOR_BLACK);
|
|
|
|
init_pair(8, COLOR_BLACK, COLOR_WHITE);
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
refresh();
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
static Tox *init_tox()
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
/* Init core */
|
2013-08-23 23:03:44 +02:00
|
|
|
Tox *m = tox_new();
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
/* Callbacks */
|
|
|
|
m_callback_friendrequest(m, on_request, NULL);
|
|
|
|
m_callback_friendmessage(m, on_message, NULL);
|
|
|
|
m_callback_namechange(m, on_nickchange, NULL);
|
|
|
|
m_callback_statusmessage(m, on_statuschange, NULL);
|
|
|
|
m_callback_action(m, on_action, NULL);
|
2013-08-18 17:59:34 +02:00
|
|
|
#ifdef __linux__
|
|
|
|
setname(m, (uint8_t *) "Cool guy", sizeof("Cool guy"));
|
|
|
|
#elif defined(WIN32)
|
|
|
|
setname(m, (uint8_t *) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
|
2013-08-19 09:23:40 +02:00
|
|
|
#elif defined(__APPLE__)
|
2013-08-18 17:59:34 +02:00
|
|
|
setname(m, (uint8_t *) "Hipster", sizeof("Hipster")); //This used to users of other Unixes are hipsters
|
|
|
|
#else
|
|
|
|
setname(m, (uint8_t *) "Registered Minix user #4", sizeof("Registered Minix user #4"));
|
|
|
|
#endif
|
2013-08-16 19:11:09 +02:00
|
|
|
return m;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:25:08 +02:00
|
|
|
/*
|
|
|
|
resolve_addr():
|
|
|
|
address should represent IPv4 or a hostname with A record
|
|
|
|
|
|
|
|
returns a data in network byte order that can be used to set IP.i or IP_Port.ip.i
|
|
|
|
returns 0 on failure
|
|
|
|
|
|
|
|
TODO: Fix ipv6 support
|
|
|
|
*/
|
|
|
|
uint32_t resolve_addr(const char *address)
|
|
|
|
{
|
|
|
|
struct addrinfo *server = NULL;
|
|
|
|
struct addrinfo hints;
|
|
|
|
int rc;
|
|
|
|
uint32_t addr;
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_family = AF_INET; // IPv4 only right now.
|
|
|
|
hints.ai_socktype = SOCK_DGRAM; // type of socket Tox uses.
|
|
|
|
|
|
|
|
rc = getaddrinfo(address, "echo", &hints, &server);
|
|
|
|
|
|
|
|
// Lookup failed.
|
|
|
|
if (rc != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IPv4 records only..
|
|
|
|
if (server->ai_family != AF_INET) {
|
|
|
|
freeaddrinfo(server);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
addr = ((struct sockaddr_in *)server->ai_addr)->sin_addr.s_addr;
|
|
|
|
|
|
|
|
freeaddrinfo(server);
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2013-08-10 21:46:29 +02:00
|
|
|
#define MAXLINE 90 /* Approx max number of chars in a sever line (IP + port + key) */
|
2013-08-11 06:55:09 +02:00
|
|
|
#define MINLINE 70
|
2013-08-10 21:46:29 +02:00
|
|
|
#define MAXSERVERS 50
|
|
|
|
|
|
|
|
/* Connects to a random DHT server listed in the DHTservers file */
|
2013-08-23 23:03:44 +02:00
|
|
|
int init_connection(Tox *m)
|
2013-08-10 21:46:29 +02:00
|
|
|
{
|
2013-08-18 23:16:39 +02:00
|
|
|
FILE *fp = NULL;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
if (tox_isconnected(m))
|
2013-08-16 19:11:09 +02:00
|
|
|
return 0;
|
|
|
|
|
2013-08-18 23:16:39 +02:00
|
|
|
fp = fopen(SRVLIST_FILE, "r");
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
if (!fp)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
char servers[MAXSERVERS][MAXLINE];
|
|
|
|
char line[MAXLINE];
|
|
|
|
int linecnt = 0;
|
|
|
|
|
|
|
|
while (fgets(line, sizeof(line), fp) && linecnt < MAXSERVERS) {
|
|
|
|
if (strlen(line) > MINLINE)
|
|
|
|
strcpy(servers[linecnt++], line);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (linecnt < 1) {
|
|
|
|
fclose(fp);
|
|
|
|
return 2;
|
|
|
|
}
|
2013-08-10 21:46:29 +02:00
|
|
|
|
|
|
|
fclose(fp);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
char *server = servers[rand() % linecnt];
|
|
|
|
char *ip = strtok(server, " ");
|
|
|
|
char *port = strtok(NULL, " ");
|
|
|
|
char *key = strtok(NULL, " ");
|
|
|
|
|
|
|
|
if (!ip || !port || !key)
|
|
|
|
return 3;
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
tox_IP_Port dht;
|
2013-08-16 19:11:09 +02:00
|
|
|
dht.port = htons(atoi(port));
|
|
|
|
uint32_t resolved_address = resolve_addr(ip);
|
|
|
|
|
|
|
|
if (resolved_address == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dht.ip.i = resolved_address;
|
2013-08-23 23:03:44 +02:00
|
|
|
uint8_t *binary_string = hex_string_to_bin(key);
|
|
|
|
tox_bootstrap(m, dht, binary_string);
|
2013-08-16 19:11:09 +02:00
|
|
|
free(binary_string);
|
2013-08-13 04:34:08 +02:00
|
|
|
return 0;
|
2013-08-10 21:46:29 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
static void do_tox(Tox *m, ToxWindow *prompt)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
static int conn_try = 0;
|
|
|
|
static int conn_err = 0;
|
|
|
|
static bool dht_on = false;
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
if (!dht_on && !tox_isconnected(m) && !(conn_try++ % 100)) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (!conn_err) {
|
2013-08-20 18:08:55 +02:00
|
|
|
conn_err = init_connection(m);
|
2013-08-16 19:11:09 +02:00
|
|
|
wprintw(prompt->window, "\nEstablishing connection...\n");
|
|
|
|
|
|
|
|
if (conn_err)
|
|
|
|
wprintw(prompt->window, "\nAuto-connect failed with error code %d\n", conn_err);
|
|
|
|
}
|
2013-08-23 23:03:44 +02:00
|
|
|
} else if (!dht_on && tox_isconnected(m)) {
|
2013-08-16 19:11:09 +02:00
|
|
|
dht_on = true;
|
|
|
|
wprintw(prompt->window, "\nDHT connected.\n");
|
2013-08-23 23:03:44 +02:00
|
|
|
} else if (dht_on && !tox_isconnected(m)) {
|
2013-08-16 19:11:09 +02:00
|
|
|
dht_on = false;
|
|
|
|
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
|
2013-08-13 04:04:07 +02:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
tox_do(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-16 02:56:22 +02:00
|
|
|
int f_loadfromfile;
|
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
/*
|
|
|
|
* Store Messenger to given location
|
|
|
|
* Return 0 stored successfully
|
|
|
|
* Return 1 malloc failed
|
|
|
|
* Return 2 opening path failed
|
|
|
|
* Return 3 fwrite failed
|
|
|
|
*/
|
2013-08-23 23:03:44 +02:00
|
|
|
int store_data(Tox *m, char *path)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-16 02:56:22 +02:00
|
|
|
if (f_loadfromfile == 0) /*If file loading/saving is disabled*/
|
|
|
|
return 0;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
FILE *fd;
|
|
|
|
size_t len;
|
|
|
|
uint8_t *buf;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
len = tox_size(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
buf = malloc(len);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (buf == NULL) {
|
2013-08-15 12:11:48 +02:00
|
|
|
return 1;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
tox_save(m, buf);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-03 21:12:02 +02:00
|
|
|
fd = fopen(path, "w");
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (fd == NULL) {
|
2013-08-15 12:11:48 +02:00
|
|
|
free(buf);
|
|
|
|
return 2;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
if (fwrite(buf, len, 1, fd) != 1) {
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
static void load_data(Tox *m, char *path)
|
2013-08-15 12:11:48 +02:00
|
|
|
{
|
2013-08-16 02:56:22 +02:00
|
|
|
if (f_loadfromfile == 0) /*If file loading/saving is disabled*/
|
|
|
|
return;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
FILE *fd;
|
|
|
|
size_t len;
|
|
|
|
uint8_t *buf;
|
|
|
|
|
|
|
|
if ((fd = fopen(path, "r")) != NULL) {
|
|
|
|
fseek(fd, 0, SEEK_END);
|
|
|
|
len = ftell(fd);
|
|
|
|
fseek(fd, 0, SEEK_SET);
|
|
|
|
|
|
|
|
buf = malloc(len);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
fprintf(stderr, "malloc() failed.\n");
|
|
|
|
fclose(fd);
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
if (fread(buf, len, 1, fd) != 1) {
|
|
|
|
fprintf(stderr, "fread() failed.\n");
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
tox_load(m, buf, len);
|
2013-08-15 12:11:48 +02:00
|
|
|
|
|
|
|
uint32_t i;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
char name[TOX_MAX_NAME_LENGTH];
|
|
|
|
while (tox_getname(m, i, (uint8_t *)name) != -1) {
|
2013-08-15 12:11:48 +02:00
|
|
|
on_friendadded(m, i);
|
2013-08-23 23:03:44 +02:00
|
|
|
i++;
|
2013-08-15 12:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
} else {
|
|
|
|
int st;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
if ((st = store_data(m, path)) != 0) {
|
|
|
|
fprintf(stderr, "Store messenger failed with return code: %d\n", st);
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
char *user_config_dir = get_user_config_dir();
|
|
|
|
int config_err = 0;
|
|
|
|
|
|
|
|
f_loadfromfile = 1;
|
|
|
|
int f_flag = 0;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < argc; ++i) {
|
|
|
|
if (argv[i] == NULL)
|
|
|
|
break;
|
|
|
|
else if (argv[i][0] == '-') {
|
|
|
|
if (argv[i][1] == 'f') {
|
|
|
|
if (argv[i + 1] != NULL)
|
|
|
|
DATA_FILE = strdup(argv[i + 1]);
|
|
|
|
else
|
|
|
|
f_flag = -1;
|
|
|
|
} else if (argv[i][1] == 'n') {
|
|
|
|
f_loadfromfile = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DATA_FILE == NULL ) {
|
|
|
|
config_err = create_user_config_dir(user_config_dir);
|
|
|
|
|
|
|
|
if (config_err) {
|
|
|
|
DATA_FILE = strdup("data");
|
2013-08-23 00:37:19 +02:00
|
|
|
SRVLIST_FILE = strdup(PACKAGE_DATADIR "/DHTservers");
|
2013-08-16 19:11:09 +02:00
|
|
|
} else {
|
|
|
|
DATA_FILE = malloc(strlen(user_config_dir) + strlen(CONFIGDIR) + strlen("data") + 1);
|
|
|
|
strcpy(DATA_FILE, user_config_dir);
|
|
|
|
strcat(DATA_FILE, CONFIGDIR);
|
2013-08-19 09:23:40 +02:00
|
|
|
strcat(DATA_FILE, "data");
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-18 23:16:39 +02:00
|
|
|
SRVLIST_FILE = malloc(strlen(user_config_dir) + strlen(CONFIGDIR) + strlen("DHTservers") + 1);
|
|
|
|
strcpy(SRVLIST_FILE, user_config_dir);
|
|
|
|
strcat(SRVLIST_FILE, CONFIGDIR);
|
|
|
|
strcat(SRVLIST_FILE, "DHTservers");
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(user_config_dir);
|
|
|
|
|
|
|
|
init_term();
|
2013-08-23 23:03:44 +02:00
|
|
|
Tox *m = init_tox();
|
2013-08-16 19:11:09 +02:00
|
|
|
ToxWindow *prompt = init_windows(m);
|
|
|
|
|
|
|
|
if (f_loadfromfile)
|
|
|
|
load_data(m, DATA_FILE);
|
|
|
|
|
|
|
|
if (f_flag == -1) {
|
|
|
|
attron(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
wprintw(prompt->window, "You passed '-f' without giving an argument.\n"
|
|
|
|
"defaulting to 'data' for a keyfile...\n");
|
|
|
|
attroff(COLOR_PAIR(3) | A_BOLD);
|
2013-08-03 21:12:02 +02:00
|
|
|
}
|
|
|
|
|
2013-08-14 19:21:36 +02:00
|
|
|
if (config_err) {
|
2013-08-16 19:11:09 +02:00
|
|
|
attron(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
wprintw(prompt->window, "Unable to determine configuration directory.\n"
|
|
|
|
"defaulting to 'data' for a keyfile...\n");
|
|
|
|
attroff(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
/* Update tox */
|
|
|
|
do_tox(m, prompt);
|
|
|
|
|
|
|
|
/* Draw */
|
|
|
|
draw_active_window(m);
|
2013-08-14 19:21:36 +02:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
tox_kill(m);
|
2013-08-16 19:11:09 +02:00
|
|
|
free(DATA_FILE);
|
2013-08-18 23:16:39 +02:00
|
|
|
free(SRVLIST_FILE);
|
2013-08-16 19:11:09 +02:00
|
|
|
return 0;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|