2018-08-02 04:29:35 +00:00
|
|
|
/* Copyright (C) 2018 Curtis McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <curses.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <stdarg.h>
|
2018-08-03 02:29:10 +00:00
|
|
|
#include <stdbool.h>
|
2018-08-02 04:29:35 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
#include <tls.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
#define err(...) do { endwin(); err(__VA_ARGS__); } while (0)
|
|
|
|
#define errx(...) do { endwin(); errx(__VA_ARGS__); } while (0)
|
|
|
|
|
2018-08-02 04:29:35 +00:00
|
|
|
static void curse(void) {
|
|
|
|
setlocale(LC_CTYPE, "");
|
|
|
|
initscr();
|
|
|
|
keypad(stdscr, true);
|
|
|
|
start_color();
|
|
|
|
assume_default_colors(-1, -1);
|
|
|
|
}
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
static const int CHAT_LINES = 100;
|
|
|
|
static struct {
|
|
|
|
WINDOW *topic;
|
|
|
|
WINDOW *chat;
|
|
|
|
WINDOW *input;
|
|
|
|
} ui;
|
|
|
|
|
|
|
|
static void uiInit(void) {
|
|
|
|
ui.topic = newwin(2, COLS, 0, 0);
|
|
|
|
mvwhline(ui.topic, 1, 0, ACS_HLINE, COLS);
|
|
|
|
|
|
|
|
ui.chat = newpad(CHAT_LINES, COLS);
|
|
|
|
wsetscrreg(ui.chat, 0, CHAT_LINES - 1);
|
|
|
|
scrollok(ui.chat, true);
|
|
|
|
wmove(ui.chat, CHAT_LINES - (LINES - 4) - 1, 0);
|
|
|
|
|
|
|
|
ui.input = newwin(2, COLS, LINES - 2, 0);
|
|
|
|
mvwhline(ui.input, 0, 0, ACS_HLINE, COLS);
|
|
|
|
wmove(ui.input, 1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uiDraw(void) {
|
|
|
|
wnoutrefresh(ui.topic);
|
|
|
|
pnoutrefresh(
|
|
|
|
ui.chat,
|
|
|
|
CHAT_LINES - (LINES - 4), 0,
|
|
|
|
2, 0, LINES - 1, COLS - 1
|
|
|
|
);
|
|
|
|
wnoutrefresh(ui.input);
|
|
|
|
doupdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uiTopic(const char *topic) {
|
|
|
|
wmove(ui.topic, 0, 0);
|
|
|
|
wclrtoeol(ui.topic);
|
|
|
|
waddnstr(ui.topic, topic, COLS);
|
|
|
|
}
|
|
|
|
static void uiChat(const char *line) {
|
|
|
|
waddch(ui.chat, '\n');
|
|
|
|
waddstr(ui.chat, line);
|
|
|
|
}
|
|
|
|
static void uiFmt(const char *format, ...) {
|
|
|
|
char *buf;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
vasprintf(&buf, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
if (!buf) err(EX_OSERR, "vasprintf");
|
|
|
|
uiChat(buf);
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
int sock;
|
|
|
|
struct tls *tls;
|
|
|
|
bool verbose;
|
|
|
|
char *nick;
|
|
|
|
char *chan;
|
|
|
|
} client;
|
|
|
|
|
|
|
|
static void clientWrite(const char *ptr, size_t len) {
|
2018-08-02 04:29:35 +00:00
|
|
|
while (len) {
|
2018-08-03 02:29:10 +00:00
|
|
|
ssize_t ret = tls_write(client.tls, ptr, len);
|
2018-08-02 04:29:35 +00:00
|
|
|
if (ret == TLS_WANT_POLLIN || ret == TLS_WANT_POLLOUT) continue;
|
2018-08-03 02:29:10 +00:00
|
|
|
if (ret < 0) errx(EX_IOERR, "tls_write: %s", tls_error(client.tls));
|
2018-08-02 04:29:35 +00:00
|
|
|
ptr += ret;
|
|
|
|
len -= ret;
|
|
|
|
}
|
|
|
|
}
|
2018-08-03 02:29:10 +00:00
|
|
|
static void clientFmt(const char *format, ...) {
|
2018-08-02 04:29:35 +00:00
|
|
|
char *buf;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
int len = vasprintf(&buf, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
if (!buf) err(EX_OSERR, "vasprintf");
|
2018-08-03 02:29:10 +00:00
|
|
|
if (client.verbose) uiFmt("<<< %.*s", len - 2, buf);
|
|
|
|
clientWrite(buf, len);
|
2018-08-02 04:29:35 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
typedef void (*Handler)(char *prefix, char *params);
|
|
|
|
|
|
|
|
static char *shift(char **params) {
|
|
|
|
char *rest = *params;
|
|
|
|
if (!rest) errx(EX_PROTOCOL, "expected param");
|
|
|
|
if (rest[0] == ':') {
|
|
|
|
*params = NULL;
|
|
|
|
return &rest[1];
|
|
|
|
}
|
|
|
|
return strsep(params, " ");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle001(char *prefix, char *params) {
|
|
|
|
(void)prefix; (void)params;
|
|
|
|
clientFmt("JOIN %s\r\n", client.chan);
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
static void handlePing(char *prefix, char *params) {
|
|
|
|
(void)prefix;
|
|
|
|
clientFmt("PONG %s\r\n", params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleJoin(char *prefix, char *params) {
|
|
|
|
char *nick = strsep(&prefix, "!");
|
|
|
|
char *chan = shift(¶ms);
|
|
|
|
uiFmt("--> %s arrived in %s", nick, chan);
|
|
|
|
}
|
|
|
|
static void handlePart(char *prefix, char *params) {
|
|
|
|
char *nick = strsep(&prefix, "!");
|
|
|
|
char *chan = shift(¶ms);
|
|
|
|
char *reason = shift(¶ms);
|
|
|
|
uiFmt("<-- %s left %s, \"%s\"", nick, chan, reason);
|
|
|
|
}
|
|
|
|
static void handleQuit(char *prefix, char *params) {
|
|
|
|
char *nick = strsep(&prefix, "!");
|
|
|
|
char *reason = shift(¶ms);
|
|
|
|
uiFmt("<-- %s left, \"%s\"", nick, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle332(char *prefix, char *params) {
|
|
|
|
(void)prefix;
|
|
|
|
shift(¶ms);
|
|
|
|
char *chan = shift(¶ms);
|
|
|
|
char *topic = shift(¶ms);
|
|
|
|
uiTopic(topic);
|
|
|
|
uiFmt("--- The sign in %s reads, \"%s\"", chan, topic);
|
|
|
|
}
|
|
|
|
static void handleTopic(char *prefix, char *params) {
|
|
|
|
char *nick = strsep(&prefix, "!");
|
|
|
|
char *chan = shift(¶ms);
|
|
|
|
char *topic = shift(¶ms);
|
|
|
|
uiTopic(topic);
|
|
|
|
uiFmt("--- %s placed a new sign in %s, \"%s\"", nick, chan, topic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle353(char *prefix, char *params) {
|
|
|
|
(void)prefix;
|
|
|
|
shift(¶ms);
|
|
|
|
shift(¶ms);
|
|
|
|
char *chan = shift(¶ms);
|
|
|
|
char *names = shift(¶ms);
|
|
|
|
// TODO: Clean up names (add commas, remove sigils)
|
|
|
|
uiFmt("--- In %s are %s", chan, names);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handlePrivmsg(char *prefix, char *params) {
|
|
|
|
char *nick = strsep(&prefix, "!");
|
|
|
|
shift(¶ms);
|
|
|
|
char *message = shift(¶ms);
|
|
|
|
uiFmt("<%s> %s", nick, message);
|
|
|
|
}
|
|
|
|
static void handleNotice(char *prefix, char *params) {
|
|
|
|
char *nick = strsep(&prefix, "!");
|
|
|
|
shift(¶ms);
|
|
|
|
char *message = shift(¶ms);
|
|
|
|
uiFmt("-%s- %s", nick, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
const char *command;
|
|
|
|
Handler handler;
|
|
|
|
} HANDLERS[] = {
|
|
|
|
{ "001", handle001 },
|
|
|
|
{ "332", handle332 },
|
|
|
|
{ "353", handle353 },
|
|
|
|
{ "JOIN", handleJoin },
|
|
|
|
{ "NOTICE", handleNotice },
|
|
|
|
{ "PART", handlePart },
|
|
|
|
{ "PING", handlePing },
|
|
|
|
{ "PRIVMSG", handlePrivmsg },
|
|
|
|
{ "QUIT", handleQuit },
|
|
|
|
{ "TOPIC", handleTopic },
|
|
|
|
};
|
|
|
|
static const size_t HANDLERS_LEN = sizeof(HANDLERS) / sizeof(HANDLERS[0]);
|
|
|
|
|
|
|
|
static void handle(char *line) {
|
|
|
|
char *prefix = NULL;
|
|
|
|
if (line[0] == ':') {
|
|
|
|
prefix = strsep(&line, " ") + 1;
|
|
|
|
if (!line) errx(EX_PROTOCOL, "eol after prefix");
|
|
|
|
}
|
|
|
|
char *command = strsep(&line, " ");
|
|
|
|
for (size_t i = 0; i < HANDLERS_LEN; ++i) {
|
|
|
|
if (strcmp(command, HANDLERS[i].command)) continue;
|
|
|
|
HANDLERS[i].handler(prefix, line);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clientRead(void) {
|
2018-08-02 04:29:35 +00:00
|
|
|
static char buf[4096];
|
|
|
|
static size_t fill;
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
ssize_t size = tls_read(client.tls, buf + fill, sizeof(buf) - fill);
|
|
|
|
if (size < 0) errx(EX_IOERR, "tls_read: %s", tls_error(client.tls));
|
2018-08-02 04:29:35 +00:00
|
|
|
fill += size;
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
char *end, *line = buf;
|
2018-08-02 04:29:35 +00:00
|
|
|
while ((end = strnstr(line, "\r\n", buf + fill - line))) {
|
|
|
|
end[0] = '\0';
|
2018-08-03 02:29:10 +00:00
|
|
|
if (client.verbose) uiFmt(">>> %s", line);
|
|
|
|
handle(line);
|
2018-08-02 04:29:35 +00:00
|
|
|
line = &end[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
fill -= line - buf;
|
|
|
|
memmove(buf, line, fill);
|
|
|
|
}
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
static void uiRead(void) {
|
|
|
|
static char buf[256];
|
|
|
|
static size_t fill;
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
int ch = wgetch(ui.input);
|
|
|
|
if (ch == '\n') {
|
|
|
|
buf[fill] = '\0';
|
|
|
|
char *params;
|
|
|
|
asprintf(¶ms, "%s :%s", client.chan, buf);
|
|
|
|
if (!params) err(EX_OSERR, "asprintf");
|
|
|
|
clientFmt("PRIVMSG %s\r\n", params);
|
|
|
|
handlePrivmsg(client.nick, params);
|
|
|
|
free(params);
|
|
|
|
fill = 0;
|
|
|
|
wmove(ui.input, 1, 0);
|
|
|
|
wclrtoeol(ui.input);
|
|
|
|
} else {
|
|
|
|
buf[fill++] = ch;
|
|
|
|
waddch(ui.input, ch);
|
|
|
|
}
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
static void webirc(const char *pass) {
|
2018-08-02 04:29:35 +00:00
|
|
|
const char *ssh = getenv("SSH_CLIENT");
|
|
|
|
if (!ssh) return;
|
|
|
|
int len = strchrnul(ssh, ' ') - ssh;
|
2018-08-03 02:29:10 +00:00
|
|
|
clientFmt("WEBIRC %s %s %.*s %.*s\r\n", pass, client.nick, len, ssh, len, ssh);
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
int error;
|
|
|
|
|
|
|
|
const char *host = NULL;
|
|
|
|
const char *port = "6697";
|
|
|
|
const char *webPass = NULL;
|
|
|
|
|
|
|
|
int opt;
|
2018-08-03 02:29:10 +00:00
|
|
|
while (0 < (opt = getopt(argc, argv, "h:j:n:p:vw:"))) {
|
2018-08-02 04:29:35 +00:00
|
|
|
switch (opt) {
|
|
|
|
break; case 'h': host = optarg;
|
2018-08-03 02:29:10 +00:00
|
|
|
break; case 'j': client.chan = strdup(optarg);
|
|
|
|
break; case 'n': client.nick = strdup(optarg);
|
2018-08-02 04:29:35 +00:00
|
|
|
break; case 'p': port = optarg;
|
2018-08-03 02:29:10 +00:00
|
|
|
break; case 'v': client.verbose = true;
|
2018-08-02 04:29:35 +00:00
|
|
|
break; case 'w': webPass = optarg;
|
|
|
|
break; default: return EX_USAGE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curse();
|
|
|
|
|
|
|
|
char hostBuf[64] = {0};
|
|
|
|
if (!host) {
|
|
|
|
addstr("Host: ");
|
|
|
|
getnstr(hostBuf, sizeof(hostBuf) - 1);
|
|
|
|
host = hostBuf;
|
|
|
|
}
|
2018-08-03 02:29:10 +00:00
|
|
|
if (!client.chan) {
|
|
|
|
char buf[64] = {0};
|
2018-08-02 04:29:35 +00:00
|
|
|
addstr("Join: ");
|
2018-08-03 02:29:10 +00:00
|
|
|
getnstr(buf, sizeof(buf) - 1);
|
|
|
|
client.chan = strdup(buf);
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|
2018-08-03 02:29:10 +00:00
|
|
|
if (!client.nick) {
|
|
|
|
char buf[16] = {0};
|
|
|
|
addstr("Name: ");
|
|
|
|
getnstr(buf, sizeof(buf) - 1);
|
|
|
|
client.nick = strdup(buf);
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|
2018-08-03 02:29:10 +00:00
|
|
|
erase();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
|
|
|
|
uiInit();
|
|
|
|
uiChat("=== Traveling...");
|
|
|
|
uiDraw();
|
2018-08-02 04:29:35 +00:00
|
|
|
|
|
|
|
struct addrinfo *ai;
|
|
|
|
struct addrinfo hints = {
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_protocol = IPPROTO_TCP,
|
|
|
|
};
|
|
|
|
error = getaddrinfo(host, port, &hints, &ai);
|
|
|
|
if (error) errx(EX_NOHOST, "getaddrinfo: %s", gai_strerror(error));
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
client.sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
|
|
|
|
if (client.sock < 0) err(EX_OSERR, "socket");
|
2018-08-02 04:29:35 +00:00
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
error = connect(client.sock, ai->ai_addr, ai->ai_addrlen);
|
2018-08-02 04:29:35 +00:00
|
|
|
if (error) err(EX_UNAVAILABLE, "connect");
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
client.tls = tls_client();
|
|
|
|
if (!client.tls) errx(EX_OSERR, "tls_client");
|
2018-08-02 04:29:35 +00:00
|
|
|
|
|
|
|
struct tls_config *config = tls_config_new();
|
2018-08-03 02:29:10 +00:00
|
|
|
error = tls_configure(client.tls, config);
|
2018-08-02 04:29:35 +00:00
|
|
|
if (error) errx(EX_OSERR, "tls_configure");
|
|
|
|
tls_config_free(config);
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
error = tls_connect_socket(client.tls, client.sock, host);
|
2018-08-02 04:29:35 +00:00
|
|
|
if (error) err(EX_PROTOCOL, "tls_connect");
|
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
if (webPass) webirc(webPass);
|
|
|
|
clientFmt("NICK %s\r\n", client.nick);
|
|
|
|
clientFmt("USER %s x x :%s\r\n", client.nick, client.nick);
|
2018-08-02 04:29:35 +00:00
|
|
|
|
|
|
|
struct pollfd fds[2] = {
|
|
|
|
{ .fd = STDIN_FILENO, .events = POLLIN },
|
2018-08-03 02:29:10 +00:00
|
|
|
{ .fd = client.sock, .events = POLLIN },
|
2018-08-02 04:29:35 +00:00
|
|
|
};
|
|
|
|
while (0 < poll(fds, 2, -1)) {
|
2018-08-03 02:29:10 +00:00
|
|
|
if (fds[0].revents) uiRead();
|
|
|
|
if (fds[1].revents) clientRead();
|
|
|
|
uiDraw();
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|
|
|
|
err(EX_IOERR, "poll");
|
|
|
|
}
|