catboy/chat.c

267 lines
6.6 KiB
C
Raw Normal View History

2020-02-01 06:18:01 +00:00
/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <err.h>
2020-02-04 08:58:56 +00:00
#include <errno.h>
2020-02-09 00:12:05 +00:00
#include <fcntl.h>
#include <locale.h>
2020-02-04 08:58:56 +00:00
#include <poll.h>
2020-02-05 00:02:54 +00:00
#include <signal.h>
2020-02-01 06:18:01 +00:00
#include <stdbool.h>
2020-02-10 10:50:28 +00:00
#include <stdint.h>
2020-02-01 06:18:01 +00:00
#include <stdio.h>
#include <stdlib.h>
2020-02-08 22:22:51 +00:00
#include <string.h>
#include <sys/wait.h>
2020-02-01 06:18:01 +00:00
#include <sysexits.h>
#include <unistd.h>
#include "chat.h"
2020-02-01 07:33:17 +00:00
char *idNames[IDCap] = {
[None] = "<none>",
[Debug] = "<debug>",
[Network] = "<network>",
};
2020-02-02 08:27:50 +00:00
enum Color idColors[IDCap] = {
[None] = Black,
2020-02-05 00:02:54 +00:00
[Debug] = Green,
2020-02-02 08:27:50 +00:00
[Network] = Gray,
};
2020-02-01 07:33:17 +00:00
size_t idNext = Network + 1;
struct Self self = { .color = Default };
2020-02-01 06:18:01 +00:00
2020-02-11 00:40:13 +00:00
static const char *save;
static void exitSave(void) {
int error = uiSave(save);
if (error) {
warn("%s", save);
_exit(EX_IOERR);
}
}
2020-02-10 10:50:28 +00:00
uint32_t hashInit;
2020-02-08 22:42:19 +00:00
int procPipe[2] = { -1, -1 };
static void pipeRead(void) {
char buf[1024];
ssize_t len = read(procPipe[0], buf, sizeof(buf) - 1);
if (len < 0) err(EX_IOERR, "read");
if (!len) return;
buf[len - 1] = '\0';
char *ptr = buf;
while (ptr) {
char *line = strsep(&ptr, "\n");
uiFormat(Network, Warm, NULL, "%s", line);
}
}
2020-02-05 00:02:54 +00:00
static volatile sig_atomic_t signals[NSIG];
static void signalHandler(int signal) {
signals[signal] = 1;
}
2020-02-01 06:18:01 +00:00
int main(int argc, char *argv[]) {
setlocale(LC_CTYPE, "");
2020-02-01 06:18:01 +00:00
bool insecure = false;
const char *host = NULL;
const char *port = "6697";
const char *cert = NULL;
const char *priv = NULL;
bool sasl = false;
const char *pass = NULL;
const char *nick = NULL;
const char *user = NULL;
const char *real = NULL;
2020-02-11 00:40:13 +00:00
const char *Opts = "!C:H:O:a:c:eh:j:k:n:p:r:s:u:vw:";
const struct option LongOpts[] = {
{ "insecure", no_argument, NULL, '!' },
2020-02-09 02:44:50 +00:00
{ "copy", required_argument, NULL, 'C' },
2020-02-10 10:50:28 +00:00
{ "hash", required_argument, NULL, 'H' },
2020-02-09 02:21:21 +00:00
{ "open", required_argument, NULL, 'O' },
{ "sasl-plain", required_argument, NULL, 'a' },
{ "cert", required_argument, NULL, 'c' },
{ "sasl-external", no_argument, NULL, 'e' },
{ "host", required_argument, NULL, 'h' },
{ "join", required_argument, NULL, 'j' },
{ "priv", required_argument, NULL, 'k' },
{ "nick", required_argument, NULL, 'n' },
{ "port", required_argument, NULL, 'p' },
{ "real", required_argument, NULL, 'r' },
2020-02-11 00:40:13 +00:00
{ "save", required_argument, NULL, 's' },
{ "user", required_argument, NULL, 'u' },
{ "debug", no_argument, NULL, 'v' },
{ "pass", required_argument, NULL, 'w' },
{0},
};
2020-02-01 06:18:01 +00:00
int opt;
while (0 < (opt = getopt_config(argc, argv, Opts, LongOpts, NULL))) {
2020-02-01 06:18:01 +00:00
switch (opt) {
break; case '!': insecure = true;
2020-02-09 02:44:50 +00:00
break; case 'C': urlCopyUtil = optarg;
2020-02-10 10:50:28 +00:00
break; case 'H': hashInit = strtoul(optarg, NULL, 0);
2020-02-09 02:21:21 +00:00
break; case 'O': urlOpenUtil = optarg;
2020-02-01 06:18:01 +00:00
break; case 'a': sasl = true; self.plain = optarg;
break; case 'c': cert = optarg;
break; case 'e': sasl = true;
break; case 'h': host = optarg;
break; case 'j': self.join = optarg;
break; case 'k': priv = optarg;
break; case 'n': nick = optarg;
break; case 'p': port = optarg;
break; case 'r': real = optarg;
2020-02-11 00:40:13 +00:00
break; case 's': save = optarg;
2020-02-01 06:18:01 +00:00
break; case 'u': user = optarg;
2020-02-01 07:26:35 +00:00
break; case 'v': self.debug = true;
2020-02-01 06:18:01 +00:00
break; case 'w': pass = optarg;
2020-02-06 03:51:45 +00:00
break; default: return EX_USAGE;
2020-02-01 06:18:01 +00:00
}
}
if (!host) errx(EX_USAGE, "host required");
if (!nick) nick = getenv("USER");
if (!nick) errx(EX_CONFIG, "USER unset");
if (!user) user = nick;
if (!real) real = nick;
set(&self.nick, "*");
set(&self.network, host);
set(&self.chanTypes, "#&");
set(&self.prefixes, "@+");
2020-02-08 02:30:25 +00:00
commandComplete();
FILE *certFile = NULL;
FILE *privFile = NULL;
if (cert) {
certFile = configOpen(cert, "r");
if (!certFile) return EX_NOINPUT;
}
if (priv) {
privFile = configOpen(priv, "r");
if (!privFile) return EX_NOINPUT;
}
ircConfig(insecure, certFile, privFile);
if (certFile) fclose(certFile);
if (privFile) fclose(privFile);
uiInit();
2020-02-11 00:40:13 +00:00
if (save) {
uiLoad(save);
atexit(exitSave);
}
uiShowID(Network);
uiFormat(
Network, Cold, NULL,
"\3%dcatgirl\3\tis GPLv3 fwee softwawe ^w^ "
"code is avaiwable fwom https://git.causal.agency/catgirl",
Pink
);
uiFormat(Network, Cold, NULL, "Traveling...");
uiDraw();
2020-02-01 06:18:01 +00:00
int irc = ircConnect(host, port);
if (pass) ircFormat("PASS :%s\r\n", pass);
if (sasl) ircFormat("CAP REQ :sasl\r\n");
ircFormat("CAP LS\r\n");
ircFormat("NICK :%s\r\n", nick);
ircFormat("USER %s 0 * :%s\r\n", user, real);
2020-02-01 07:26:35 +00:00
2020-02-05 00:02:54 +00:00
signal(SIGHUP, signalHandler);
signal(SIGINT, signalHandler);
signal(SIGTERM, signalHandler);
2020-02-08 22:22:51 +00:00
signal(SIGCHLD, signalHandler);
2020-02-05 00:02:54 +00:00
sig_t cursesWinch = signal(SIGWINCH, signalHandler);
2020-02-08 22:42:19 +00:00
int error = pipe(procPipe);
if (error) err(EX_OSERR, "pipe");
2020-02-09 00:12:05 +00:00
fcntl(irc, F_SETFD, FD_CLOEXEC);
fcntl(procPipe[0], F_SETFD, FD_CLOEXEC);
fcntl(procPipe[1], F_SETFD, FD_CLOEXEC);
2020-02-08 22:42:19 +00:00
struct pollfd fds[3] = {
2020-02-04 08:58:56 +00:00
{ .events = POLLIN, .fd = STDIN_FILENO },
{ .events = POLLIN, .fd = irc },
2020-02-08 22:42:19 +00:00
{ .events = POLLIN, .fd = procPipe[0] },
2020-02-04 08:58:56 +00:00
};
2020-02-06 02:57:23 +00:00
while (!self.quit) {
2020-02-08 22:42:19 +00:00
int nfds = poll(fds, ARRAY_LEN(fds), -1);
2020-02-04 08:58:56 +00:00
if (nfds < 0 && errno != EINTR) err(EX_IOERR, "poll");
2020-02-08 22:42:19 +00:00
if (nfds > 0) {
if (fds[0].revents) uiRead();
if (fds[1].revents) ircRecv();
if (fds[2].revents) pipeRead();
}
2020-02-04 08:58:56 +00:00
2020-02-06 02:57:23 +00:00
if (signals[SIGHUP]) self.quit = "zzz";
if (signals[SIGINT] || signals[SIGTERM]) break;
2020-02-08 22:22:51 +00:00
if (signals[SIGCHLD]) {
signals[SIGCHLD] = 0;
2020-02-08 22:22:51 +00:00
int status;
while (0 < waitpid(-1, &status, WNOHANG)) {
if (WIFEXITED(status) && WEXITSTATUS(status)) {
uiFormat(
Network, Warm, NULL,
"Process exits with status %d", WEXITSTATUS(status)
);
} else if (WIFSIGNALED(status)) {
uiFormat(
Network, Warm, NULL,
"Process terminates from %s",
strsignal(WTERMSIG(status))
);
}
}
uiShow();
2020-02-08 22:22:51 +00:00
}
2020-02-05 00:02:54 +00:00
if (signals[SIGWINCH]) {
signals[SIGWINCH] = 0;
cursesWinch(SIGWINCH);
2020-02-05 22:58:49 +00:00
// XXX: For some reason, calling uiDraw() here is the only way to
// get uiRead() to properly receive KEY_RESIZE.
uiDraw();
uiRead();
2020-02-05 00:02:54 +00:00
}
uiDraw();
2020-02-01 07:26:35 +00:00
}
2020-02-05 00:02:54 +00:00
2020-02-06 02:57:23 +00:00
if (self.quit) {
ircFormat("QUIT :%s\r\n", self.quit);
} else {
ircFormat("QUIT\r\n");
}
struct Message msg = {
.nick = self.nick,
.user = self.user,
.cmd = "QUIT",
.params[0] = self.quit,
};
handle(msg);
2020-02-05 00:02:54 +00:00
uiHide();
2020-02-01 06:18:01 +00:00
}