2018-09-06 04:41:06 +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-12-01 00:45:34 +00:00
|
|
|
#include <assert.h>
|
2018-09-06 04:41:06 +00:00
|
|
|
#include <err.h>
|
2018-12-01 00:45:34 +00:00
|
|
|
#include <errno.h>
|
2018-09-06 04:41:06 +00:00
|
|
|
#include <poll.h>
|
|
|
|
#include <signal.h>
|
2018-12-02 03:05:37 +00:00
|
|
|
#include <stdbool.h>
|
2018-09-06 04:41:06 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2018-12-01 00:45:34 +00:00
|
|
|
#include <stdnoreturn.h>
|
2018-09-06 04:41:06 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2018-09-10 23:18:26 +00:00
|
|
|
static struct {
|
|
|
|
bool wait;
|
2018-12-02 03:05:37 +00:00
|
|
|
int pipe;
|
2018-12-04 19:58:14 +00:00
|
|
|
} child = {
|
2018-12-02 03:05:37 +00:00
|
|
|
.pipe = -1,
|
|
|
|
};
|
|
|
|
|
2018-10-28 06:14:22 +00:00
|
|
|
void eventWait(const char *argv[static 2]) {
|
2018-09-10 23:18:26 +00:00
|
|
|
uiHide();
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (!pid) {
|
2018-10-28 06:14:22 +00:00
|
|
|
execvp(argv[0], (char *const *)argv);
|
2018-09-10 23:18:26 +00:00
|
|
|
err(EX_CONFIG, "%s", argv[0]);
|
|
|
|
}
|
2018-12-04 19:58:14 +00:00
|
|
|
child.wait = true;
|
2018-12-02 03:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void childWait(void) {
|
|
|
|
uiShow();
|
|
|
|
int status;
|
|
|
|
pid_t pid = wait(&status);
|
|
|
|
if (pid < 0) err(EX_OSERR, "wait");
|
|
|
|
if (WIFEXITED(status) && WEXITSTATUS(status)) {
|
|
|
|
uiFmt(TagStatus, UIHot, "event: exit %d", WEXITSTATUS(status));
|
|
|
|
} else if (WIFSIGNALED(status)) {
|
|
|
|
uiFmt(
|
|
|
|
TagStatus, UIHot,
|
|
|
|
"event: signal %s", strsignal(WTERMSIG(status))
|
|
|
|
);
|
|
|
|
}
|
2018-12-04 19:58:14 +00:00
|
|
|
child.wait = false;
|
2018-09-10 23:18:26 +00:00
|
|
|
}
|
2018-09-06 04:41:06 +00:00
|
|
|
|
2018-10-28 06:14:22 +00:00
|
|
|
void eventPipe(const char *argv[static 2]) {
|
2018-12-04 19:58:14 +00:00
|
|
|
if (child.pipe > 0) {
|
2018-09-10 23:18:26 +00:00
|
|
|
uiLog(TagStatus, UIHot, L"event: existing pipe");
|
2018-09-06 04:41:06 +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]);
|
2018-10-28 06:14:22 +00:00
|
|
|
execvp(argv[0], (char *const *)argv);
|
2018-09-06 04:41:06 +00:00
|
|
|
perror(argv[0]);
|
|
|
|
exit(EX_CONFIG);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(rw[1]);
|
2018-12-04 19:58:14 +00:00
|
|
|
child.pipe = rw[0];
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
static void childRead(void) {
|
2018-09-06 04:41:06 +00:00
|
|
|
char buf[256];
|
2018-12-04 19:58:14 +00:00
|
|
|
ssize_t len = read(child.pipe, buf, sizeof(buf) - 1);
|
2018-09-06 04:41:06 +00:00
|
|
|
if (len < 0) err(EX_IOERR, "read");
|
|
|
|
if (len) {
|
|
|
|
buf[len] = '\0';
|
2018-12-02 03:05:37 +00:00
|
|
|
buf[strcspn(buf, "\n")] = '\0';
|
|
|
|
uiFmt(TagStatus, UIHot, "event: %s", buf);
|
2018-09-06 04:41:06 +00:00
|
|
|
} else {
|
2018-12-04 19:58:14 +00:00
|
|
|
close(child.pipe);
|
|
|
|
child.pipe = -1;
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-01 00:45:34 +00:00
|
|
|
static sig_atomic_t sig[NSIG];
|
|
|
|
static void handler(int n) {
|
|
|
|
sig[n] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
noreturn void eventLoop(void) {
|
|
|
|
sigset_t mask;
|
|
|
|
sigemptyset(&mask);
|
2018-12-02 03:05:37 +00:00
|
|
|
struct sigaction action = {
|
2018-12-01 00:45:34 +00:00
|
|
|
.sa_handler = handler,
|
|
|
|
.sa_mask = mask,
|
2018-12-02 03:05:37 +00:00
|
|
|
.sa_flags = SA_RESTART | SA_NOCLDSTOP,
|
2018-12-01 00:45:34 +00:00
|
|
|
};
|
2018-12-02 03:05:37 +00:00
|
|
|
sigaction(SIGCHLD, &action, NULL);
|
|
|
|
sigaction(SIGINT, &action, NULL);
|
2018-12-04 20:38:22 +00:00
|
|
|
sigaction(SIGHUP, &action, NULL);
|
2018-12-01 00:45:34 +00:00
|
|
|
|
|
|
|
struct sigaction curses;
|
2018-12-02 03:05:37 +00:00
|
|
|
sigaction(SIGWINCH, &action, &curses);
|
2018-12-01 00:45:34 +00:00
|
|
|
assert(!(curses.sa_flags & SA_SIGINFO));
|
2018-09-06 04:41:06 +00:00
|
|
|
|
2019-02-22 19:19:20 +00:00
|
|
|
uiShowTag(TagStatus);
|
2018-12-04 19:58:14 +00:00
|
|
|
uiFmt(TagStatus, UICold, "Traveling to %s...", self.host);
|
2019-01-26 07:50:59 +00:00
|
|
|
uiDraw();
|
2018-12-04 19:58:14 +00:00
|
|
|
int irc = ircConnect();
|
|
|
|
|
2018-09-06 04:41:06 +00:00
|
|
|
for (;;) {
|
2018-12-02 03:05:37 +00:00
|
|
|
if (sig[SIGCHLD]) childWait();
|
2018-12-14 21:43:49 +00:00
|
|
|
if (sig[SIGHUP]) ircQuit("zzz");
|
2018-12-02 03:05:37 +00:00
|
|
|
if (sig[SIGINT]) {
|
|
|
|
signal(SIGINT, SIG_DFL);
|
2018-12-14 21:43:49 +00:00
|
|
|
ircQuit("Goodbye");
|
2018-12-02 03:05:37 +00:00
|
|
|
}
|
2018-12-01 00:45:34 +00:00
|
|
|
if (sig[SIGWINCH]) {
|
|
|
|
curses.sa_handler(SIGWINCH);
|
|
|
|
uiRead();
|
2018-12-04 19:58:14 +00:00
|
|
|
uiDraw();
|
2018-09-10 23:18:26 +00:00
|
|
|
}
|
2018-12-04 20:38:22 +00:00
|
|
|
sig[SIGCHLD] = sig[SIGHUP] = sig[SIGINT] = sig[SIGWINCH] = 0;
|
2018-12-02 03:05:37 +00:00
|
|
|
|
|
|
|
struct pollfd fds[3] = {
|
2018-12-04 19:58:14 +00:00
|
|
|
{ .events = POLLIN, .fd = irc },
|
|
|
|
{ .events = POLLIN, .fd = STDIN_FILENO },
|
|
|
|
{ .events = POLLIN, .fd = child.pipe },
|
2018-12-02 03:05:37 +00:00
|
|
|
};
|
2018-12-04 19:58:14 +00:00
|
|
|
if (child.wait) fds[1].events = 0;
|
|
|
|
if (child.pipe < 0) fds[2].events = 0;
|
2018-09-06 04:41:06 +00:00
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
int nfds = poll(fds, 3, -1);
|
|
|
|
if (nfds < 0) {
|
2018-12-01 00:45:34 +00:00
|
|
|
if (errno == EINTR) continue;
|
|
|
|
err(EX_IOERR, "poll");
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
if (fds[0].revents) ircRead();
|
|
|
|
if (fds[1].revents) uiRead();
|
|
|
|
if (fds[2].revents) childRead();
|
|
|
|
|
2018-12-02 03:05:37 +00:00
|
|
|
uiDraw();
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
}
|