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/>.
|
|
|
|
*/
|
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
#define _WITH_GETLINE
|
2018-08-04 03:54:28 +00:00
|
|
|
|
2018-08-02 04:29:35 +00:00
|
|
|
#include <err.h>
|
2018-08-03 23:22:28 +00:00
|
|
|
#include <errno.h>
|
2018-08-02 04:29:35 +00:00
|
|
|
#include <poll.h>
|
2018-08-05 01:23:28 +00:00
|
|
|
#include <signal.h>
|
2018-08-02 04:29:35 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
#include <unistd.h>
|
2018-08-10 17:36:00 +00:00
|
|
|
#include <sys/wait.h>
|
2018-08-02 04:29:35 +00:00
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
#include "chat.h"
|
2018-08-03 02:29:10 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void selfNick(const char *nick) {
|
|
|
|
free(self.nick);
|
|
|
|
self.nick = strdup(nick);
|
|
|
|
if (!self.nick) err(EX_OSERR, "strdup");
|
|
|
|
}
|
|
|
|
void selfUser(const char *user) {
|
|
|
|
free(self.user);
|
|
|
|
self.user = strdup(user);
|
|
|
|
if (!self.user) err(EX_OSERR, "strdup");
|
|
|
|
}
|
|
|
|
void selfJoin(const char *join) {
|
|
|
|
free(self.join);
|
|
|
|
self.join = strdup(join);
|
|
|
|
if (!self.join) err(EX_OSERR, "strdup");
|
|
|
|
}
|
|
|
|
|
2018-08-10 17:36:00 +00:00
|
|
|
static union {
|
|
|
|
struct {
|
|
|
|
struct pollfd ui;
|
|
|
|
struct pollfd irc;
|
|
|
|
struct pollfd pipe;
|
|
|
|
};
|
|
|
|
struct pollfd fds[3];
|
|
|
|
} fds = {
|
|
|
|
.ui = { .events = POLLIN, .fd = STDIN_FILENO },
|
|
|
|
.irc = { .events = POLLIN },
|
|
|
|
.pipe = { .events = 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
void spawn(char *const argv[]) {
|
|
|
|
if (fds.pipe.events) {
|
2018-08-17 18:00:08 +00:00
|
|
|
uiLog(TAG_STATUS, UI_WARM, L"spawn: existing pipe");
|
2018-08-10 17:36:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rw[2];
|
|
|
|
int error = pipe(rw);
|
|
|
|
if (error) err(EX_OSERR, "pipe");
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (!pid) {
|
|
|
|
close(rw[0]);
|
|
|
|
close(STDIN_FILENO);
|
|
|
|
dup2(rw[1], STDOUT_FILENO);
|
|
|
|
dup2(rw[1], STDERR_FILENO);
|
|
|
|
close(rw[1]);
|
|
|
|
execvp(argv[0], argv);
|
|
|
|
perror(argv[0]);
|
|
|
|
exit(EX_CONFIG);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(rw[1]);
|
|
|
|
fds.pipe.fd = rw[0];
|
|
|
|
fds.pipe.events = POLLIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pipeRead(void) {
|
|
|
|
char buf[256];
|
|
|
|
ssize_t len = read(fds.pipe.fd, buf, sizeof(buf) - 1);
|
|
|
|
if (len < 0) err(EX_IOERR, "read");
|
|
|
|
if (len) {
|
|
|
|
buf[len] = '\0';
|
|
|
|
len = strcspn(buf, "\n");
|
2018-08-17 18:00:08 +00:00
|
|
|
uiFmt(TAG_STATUS, UI_WARM, "spawn: %.*s", (int)len, buf);
|
2018-08-10 17:36:00 +00:00
|
|
|
} else {
|
|
|
|
close(fds.pipe.fd);
|
|
|
|
fds.pipe.events = 0;
|
|
|
|
fds.pipe.revents = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void eventLoop(void) {
|
|
|
|
for (;;) {
|
|
|
|
uiDraw();
|
|
|
|
|
|
|
|
int n = poll(fds.fds, (fds.pipe.events ? 3 : 2), -1);
|
|
|
|
if (n < 0) {
|
|
|
|
if (errno != EINTR) err(EX_IOERR, "poll");
|
|
|
|
uiRead();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fds.ui.revents) uiRead();
|
|
|
|
if (fds.irc.revents) ircRead();
|
|
|
|
if (fds.pipe.revents) pipeRead();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sigchld(int sig) {
|
|
|
|
(void)sig;
|
|
|
|
int status;
|
|
|
|
pid_t pid = wait(&status);
|
|
|
|
if (pid < 0) err(EX_OSERR, "wait");
|
|
|
|
if (WIFEXITED(status) && WEXITSTATUS(status)) {
|
2018-08-17 18:00:08 +00:00
|
|
|
uiFmt(TAG_STATUS, UI_WARM, "spawn: exit %d", WEXITSTATUS(status));
|
2018-08-10 17:36:00 +00:00
|
|
|
} else if (WIFSIGNALED(status)) {
|
2018-08-17 18:00:08 +00:00
|
|
|
uiFmt(TAG_STATUS, UI_WARM, "spawn: signal %d", WTERMSIG(status));
|
2018-08-10 17:36:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-05 01:23:28 +00:00
|
|
|
static void sigint(int sig) {
|
|
|
|
(void)sig;
|
2018-08-11 23:30:30 +00:00
|
|
|
input(TAG_STATUS, "/quit");
|
2018-08-09 04:24:49 +00:00
|
|
|
uiExit();
|
2018-08-05 01:23:28 +00:00
|
|
|
exit(EX_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *prompt(const char *prompt) {
|
2018-08-04 17:35:29 +00:00
|
|
|
char *line = NULL;
|
|
|
|
size_t cap;
|
2018-08-03 18:13:41 +00:00
|
|
|
for (;;) {
|
2018-08-04 17:35:29 +00:00
|
|
|
printf("%s", prompt);
|
|
|
|
fflush(stdout);
|
2018-08-03 02:29:10 +00:00
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
ssize_t len = getline(&line, &cap, stdin);
|
2018-08-11 16:47:39 +00:00
|
|
|
if (ferror(stdin)) err(EX_IOERR, "getline");
|
2018-08-04 17:35:29 +00:00
|
|
|
if (feof(stdin)) exit(EX_OK);
|
|
|
|
if (len < 2) continue;
|
2018-08-03 23:34:19 +00:00
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
line[len - 1] = '\0';
|
|
|
|
return line;
|
2018-08-03 23:17:29 +00:00
|
|
|
}
|
2018-08-03 02:29:10 +00:00
|
|
|
}
|
2018-08-02 04:29:35 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2018-08-04 17:35:29 +00:00
|
|
|
char *host = NULL;
|
2018-08-04 17:43:36 +00:00
|
|
|
const char *port = "6697";
|
2018-08-09 22:26:53 +00:00
|
|
|
const char *pass = NULL;
|
|
|
|
const char *webirc = NULL;
|
2018-08-02 04:29:35 +00:00
|
|
|
|
|
|
|
int opt;
|
2018-08-18 01:50:45 +00:00
|
|
|
while (0 < (opt = getopt(argc, argv, "W:h:j:l:n:p:u:vw:"))) {
|
2018-08-02 04:29:35 +00:00
|
|
|
switch (opt) {
|
2018-08-09 22:26:53 +00:00
|
|
|
break; case 'W': webirc = optarg;
|
2018-08-04 17:35:29 +00:00
|
|
|
break; case 'h': host = strdup(optarg);
|
2018-08-11 03:31:20 +00:00
|
|
|
break; case 'j': selfJoin(optarg);
|
2018-08-18 01:50:45 +00:00
|
|
|
break; case 'l': logOpen(optarg);
|
2018-08-11 03:31:20 +00:00
|
|
|
break; case 'n': selfNick(optarg);
|
2018-08-04 17:43:36 +00:00
|
|
|
break; case 'p': port = optarg;
|
2018-08-11 03:31:20 +00:00
|
|
|
break; case 'u': selfUser(optarg);
|
|
|
|
break; case 'v': self.verbose = true;
|
2018-08-09 22:26:53 +00:00
|
|
|
break; case 'w': pass = optarg;
|
2018-08-02 04:29:35 +00:00
|
|
|
break; default: return EX_USAGE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
if (!host) host = prompt("Host: ");
|
2018-08-11 03:31:20 +00:00
|
|
|
if (!self.nick) self.nick = prompt("Name: ");
|
|
|
|
if (!self.user) selfUser(self.nick);
|
2018-08-02 04:29:35 +00:00
|
|
|
|
2018-08-09 01:48:30 +00:00
|
|
|
inputTab();
|
2018-08-05 01:23:28 +00:00
|
|
|
|
2018-08-03 02:29:10 +00:00
|
|
|
uiInit();
|
2018-08-17 18:00:08 +00:00
|
|
|
uiLog(TAG_STATUS, UI_WARM, L"Traveling...");
|
2018-08-03 02:29:10 +00:00
|
|
|
uiDraw();
|
2018-08-02 04:29:35 +00:00
|
|
|
|
2018-08-10 17:36:00 +00:00
|
|
|
fds.irc.fd = ircConnect(host, port, pass, webirc);
|
2018-08-04 17:35:29 +00:00
|
|
|
free(host);
|
2018-08-02 04:29:35 +00:00
|
|
|
|
2018-08-10 17:36:00 +00:00
|
|
|
signal(SIGINT, sigint);
|
|
|
|
signal(SIGCHLD, sigchld);
|
|
|
|
eventLoop();
|
2018-08-02 04:29:35 +00:00
|
|
|
}
|