2018-08-04 17:35:29 +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 <err.h>
|
2018-08-09 04:24:49 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-08-09 04:24:49 +00:00
|
|
|
#include <sys/socket.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <sysexits.h>
|
|
|
|
#include <tls.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
static struct tls *client;
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-11-30 23:06:43 +00:00
|
|
|
int ircConnect(void) {
|
2018-08-04 17:35:29 +00:00
|
|
|
int error;
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
struct tls_config *config = tls_config_new();
|
|
|
|
error = tls_config_set_ciphers(config, "compat");
|
|
|
|
if (error) errx(EX_SOFTWARE, "tls_config");
|
|
|
|
|
|
|
|
client = tls_client();
|
|
|
|
if (!client) errx(EX_SOFTWARE, "tls_client");
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
error = tls_configure(client, config);
|
|
|
|
if (error) errx(EX_SOFTWARE, "tls_configure: %s", tls_error(client));
|
|
|
|
tls_config_free(config);
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-09-16 17:25:31 +00:00
|
|
|
struct addrinfo *head;
|
|
|
|
struct addrinfo hints = {
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_protocol = IPPROTO_TCP,
|
|
|
|
};
|
2018-12-03 04:22:18 +00:00
|
|
|
error = getaddrinfo(self.host, self.port, &hints, &head);
|
2018-09-16 17:25:31 +00:00
|
|
|
if (error) errx(EX_NOHOST, "getaddrinfo: %s", gai_strerror(error));
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
int sock = -1;
|
2018-09-16 17:25:31 +00:00
|
|
|
for (struct addrinfo *ai = head; ai; ai = ai->ai_next) {
|
2018-12-04 19:58:14 +00:00
|
|
|
sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
|
|
|
|
if (sock < 0) err(EX_OSERR, "socket");
|
2018-09-16 17:25:31 +00:00
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
error = connect(sock, ai->ai_addr, ai->ai_addrlen);
|
2018-09-16 17:25:31 +00:00
|
|
|
if (!error) break;
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
close(sock);
|
|
|
|
sock = -1;
|
2018-09-16 17:25:31 +00:00
|
|
|
}
|
2018-12-04 19:58:14 +00:00
|
|
|
if (sock < 0) err(EX_UNAVAILABLE, "connect");
|
2018-09-16 17:25:31 +00:00
|
|
|
freeaddrinfo(head);
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
error = fcntl(sock, F_SETFD, FD_CLOEXEC);
|
2018-08-09 04:24:49 +00:00
|
|
|
if (error) err(EX_IOERR, "fcntl");
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
error = tls_connect_socket(client, sock, self.host);
|
|
|
|
if (error) errx(EX_PROTOCOL, "tls_connect: %s", tls_error(client));
|
2018-11-30 23:06:43 +00:00
|
|
|
|
|
|
|
const char *ssh = getenv("SSH_CLIENT");
|
2018-12-03 04:22:18 +00:00
|
|
|
if (self.webp && ssh) {
|
2018-11-30 23:06:43 +00:00
|
|
|
int len = strlen(ssh);
|
|
|
|
const char *sp = strchr(ssh, ' ');
|
|
|
|
if (sp) len = sp - ssh;
|
|
|
|
ircFmt(
|
|
|
|
"WEBIRC %s %s %.*s %.*s\r\n",
|
2018-12-03 04:22:18 +00:00
|
|
|
self.webp, self.user, len, ssh, len, ssh
|
2018-11-30 23:06:43 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
if (self.auth) ircFmt("CAP REQ :sasl\r\n");
|
2018-12-03 04:22:18 +00:00
|
|
|
if (self.pass) ircFmt("PASS :%s\r\n", self.pass);
|
2018-12-02 03:05:37 +00:00
|
|
|
ircFmt("NICK %s\r\n", self.nick);
|
2018-12-03 04:08:49 +00:00
|
|
|
ircFmt("USER %s 0 * :%s\r\n", self.user, self.real);
|
2018-11-30 23:06:43 +00:00
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
return sock;
|
2018-11-30 23:06:43 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 21:54:46 +00:00
|
|
|
void ircWrite(const char *ptr, size_t len) {
|
2018-08-04 17:35:29 +00:00
|
|
|
while (len) {
|
2018-12-04 19:58:14 +00:00
|
|
|
ssize_t ret = tls_write(client, ptr, len);
|
2018-08-04 17:35:29 +00:00
|
|
|
if (ret == TLS_WANT_POLLIN || ret == TLS_WANT_POLLOUT) continue;
|
2018-12-04 19:58:14 +00:00
|
|
|
if (ret < 0) errx(EX_IOERR, "tls_write: %s", tls_error(client));
|
2018-08-04 17:35:29 +00:00
|
|
|
ptr += ret;
|
|
|
|
len -= ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 21:54:46 +00:00
|
|
|
void ircFmt(const char *format, ...) {
|
2018-08-04 17:35:29 +00:00
|
|
|
char *buf;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
2018-12-04 19:58:14 +00:00
|
|
|
int len = vasprintf(&buf, format, ap);
|
2018-08-04 17:35:29 +00:00
|
|
|
va_end(ap);
|
|
|
|
if (!buf) err(EX_OSERR, "vasprintf");
|
2018-12-05 19:46:34 +00:00
|
|
|
if (self.raw) {
|
2019-02-25 22:00:28 +00:00
|
|
|
if (!isatty(STDERR_FILENO)) fprintf(stderr, "<<< %.*s\n", len - 2, buf);
|
2018-12-05 19:46:34 +00:00
|
|
|
uiFmt(TagRaw, UICold, "\3%d<<<\3 %.*s", IRCWhite, len - 2, buf);
|
2018-08-17 18:00:08 +00:00
|
|
|
}
|
2018-08-04 21:54:46 +00:00
|
|
|
ircWrite(buf, len);
|
2018-08-04 17:35:29 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
2018-12-14 21:43:49 +00:00
|
|
|
void ircQuit(const char *mesg) {
|
|
|
|
ircFmt("QUIT :%s\r\n", mesg);
|
|
|
|
self.quit = true;
|
|
|
|
}
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
void ircRead(void) {
|
2018-08-11 23:30:30 +00:00
|
|
|
static char buf[4096];
|
|
|
|
static size_t len;
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
ssize_t read;
|
|
|
|
retry:
|
|
|
|
read = tls_read(client, &buf[len], sizeof(buf) - len);
|
|
|
|
if (read == TLS_WANT_POLLIN || read == TLS_WANT_POLLOUT) goto retry;
|
|
|
|
if (read < 0) errx(EX_IOERR, "tls_read: %s", tls_error(client));
|
2018-12-14 21:48:16 +00:00
|
|
|
if (!read) {
|
|
|
|
if (!self.quit) errx(EX_PROTOCOL, "unexpected eof");
|
2019-02-22 19:11:50 +00:00
|
|
|
uiExit(EX_OK);
|
2018-12-14 21:48:16 +00:00
|
|
|
}
|
2018-08-04 17:35:29 +00:00
|
|
|
len += read;
|
|
|
|
|
2018-12-04 19:58:14 +00:00
|
|
|
char *crlf;
|
|
|
|
char *line = buf;
|
2019-01-25 07:27:38 +00:00
|
|
|
while (NULL != (crlf = memmem(line, &buf[len] - line, "\r\n", 2))) {
|
2018-08-04 17:35:29 +00:00
|
|
|
crlf[0] = '\0';
|
2018-12-05 19:46:34 +00:00
|
|
|
if (self.raw) {
|
2019-02-25 22:00:28 +00:00
|
|
|
if (!isatty(STDERR_FILENO)) fprintf(stderr, ">>> %s\n", line);
|
2018-12-05 19:46:34 +00:00
|
|
|
uiFmt(TagRaw, UICold, "\3%d>>>\3 %s", IRCGray, line);
|
2018-08-17 18:00:08 +00:00
|
|
|
}
|
2018-08-04 17:35:29 +00:00
|
|
|
handle(line);
|
|
|
|
line = &crlf[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
len -= line - buf;
|
|
|
|
memmove(buf, line, len);
|
|
|
|
}
|