/* Copyright (C) 2019 C. McEnroe * * 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 . * * Additional permission under GNU GPL version 3 section 7: * * If you modify this Program, or any covered work, by linking or * combining it with LibreSSL (or a modified version of that library), * containing parts covered by the terms of the OpenSSL License and the * original SSLeay license, the licensors of this Program grant you * additional permission to convey the resulting work. Corresponding * Source for a non-source form of such a combination shall include the * source code for the parts of LibreSSL used as well as that of the * covered work. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef __FreeBSD__ #include #endif #include "bounce.h" bool verbose; static void hashPass(void) { byte rand[12]; int n = RAND_bytes(rand, sizeof(rand)); if (n < 1) errx(EX_OSERR, "RAND_bytes failure"); char salt[3 + BASE64_SIZE(sizeof(rand))] = "$6$"; base64(&salt[3], rand, sizeof(rand)); char *pass = getpass("Password: "); printf("%s\n", crypt(pass, salt)); } static void genKey(const char *path) { const char *name = strrchr(path, '/'); name = (name ? &name[1] : path); char subj[256]; snprintf(subj, sizeof(subj), "/CN=%.*s", (int)strcspn(name, "."), name); execlp( OPENSSL_BIN, "openssl", "req", "-x509", "-new", "-newkey", "rsa:4096", "-sha256", "-days", "3650", "-nodes", "-subj", subj, "-keyout", path, NULL ); err(EX_UNAVAILABLE, "openssl"); } static void redir(int dst, int src) { int fd = dup2(src, dst); if (fd < 0) err(EX_OSERR, "dup2"); close(src); } static void genCert(const char *path, const char *ca) { int out = open(path, O_WRONLY | O_APPEND | O_CREAT, 0600); if (out < 0) err(EX_CANTCREAT, "%s", path); redir(STDOUT_FILENO, out); if (!ca) { genKey(path); 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]); redir(STDOUT_FILENO, rw[1]); genKey(path); } close(rw[1]); redir(STDIN_FILENO, rw[0]); execlp( OPENSSL_BIN, "openssl", "x509", "-CA", ca, "-CAcreateserial", "-days", "3650", NULL ); err(EX_UNAVAILABLE, "openssl"); } static size_t parseSize(const char *str) { char *rest; size_t size = strtoull(str, &rest, 0); if (*rest) errx(EX_USAGE, "invalid size: %s", str); return size; } static struct timeval parseInterval(const char *str) { char *rest; long ms = strtol(str, &rest, 0); if (*rest) errx(EX_USAGE, "invalid interval: %s", str); return (struct timeval) { .tv_sec = ms / 1000, .tv_usec = 1000 * (ms % 1000), }; } static FILE *saveFile; static void saveSave(void) { int error = ringSave(saveFile); if (error) warn("fwrite"); error = fclose(saveFile); if (error) warn("fclose"); } static void saveLoad(const char *path) { umask(0066); saveFile = fopen(path, "a+"); if (!saveFile) err(EX_CANTCREAT, "%s", path); int error = flock(fileno(saveFile), LOCK_EX | LOCK_NB); if (error && errno != EWOULDBLOCK) err(EX_OSERR, "flock"); if (error) errx(EX_CANTCREAT, "lock held by other process: %s", path); rewind(saveFile); ringLoad(saveFile); error = ftruncate(fileno(saveFile), 0); if (error) err(EX_IOERR, "ftruncate"); atexit(saveSave); } struct SplitPath { int dir; char *file; int targetDir; }; static bool linkTarget(char *target, size_t cap, int dir, const char *file) { ssize_t len = readlinkat(dir, file, target, cap - 1); if (len < 0 && errno == EINVAL) return false; if (len < 0) err(EX_NOINPUT, "%s", file); target[len] = '\0'; return true; } static struct SplitPath splitPath(char *path) { struct SplitPath split = { .targetDir = -1 }; split.file = strrchr(path, '/'); if (split.file) { *split.file++ = '\0'; split.dir = open(path, O_DIRECTORY); } else { split.file = path; split.dir = open(".", O_DIRECTORY); } if (split.dir < 0) err(EX_NOINPUT, "%s", path); // Capsicum workaround for certbot "live" symlinks to "../../archive". char target[PATH_MAX]; if (!linkTarget(target, sizeof(target), split.dir, split.file)) { return split; } char *file = strrchr(target, '/'); if (file) { *file = '\0'; split.targetDir = openat(split.dir, target, O_DIRECTORY); if (split.targetDir < 0) err(EX_NOINPUT, "%s", target); } return split; } static FILE *splitOpen(struct SplitPath split) { if (split.targetDir >= 0) { char target[PATH_MAX]; if (!linkTarget(target, sizeof(target), split.dir, split.file)) { errx(EX_CONFIG, "file is no longer a symlink"); } split.dir = split.targetDir; split.file = strrchr(target, '/'); if (!split.file) { errx(EX_CONFIG, "symlink no longer targets directory"); } split.file++; } int fd = openat(split.dir, split.file, O_RDONLY); if (fd < 0) err(EX_NOINPUT, "%s", split.file); FILE *file = fdopen(fd, "r"); if (!file) err(EX_IOERR, "fdopen"); return file; } #ifdef __FreeBSD__ static void capLimit(int fd, const cap_rights_t *rights) { int error = cap_rights_limit(fd, rights); if (error) err(EX_OSERR, "cap_rights_limit"); } static void capLimitSplit(struct SplitPath split, const cap_rights_t *rights) { capLimit(split.dir, rights); if (split.targetDir >= 0) capLimit(split.targetDir, rights); } #endif static volatile sig_atomic_t signals[NSIG]; static void signalHandler(int signal) { signals[signal] = 1; } static struct { struct pollfd *fds; struct Client **clients; size_t cap, len; } event; static void eventAdd(int fd, struct Client *client) { if (event.len == event.cap) { event.cap = (event.cap ? event.cap * 2 : 8); event.fds = realloc(event.fds, sizeof(*event.fds) * event.cap); if (!event.fds) err(EX_OSERR, "realloc"); event.clients = realloc( event.clients, sizeof(*event.clients) * event.cap ); if (!event.clients) err(EX_OSERR, "realloc"); } event.fds[event.len] = (struct pollfd) { .fd = fd, .events = POLLIN }; event.clients[event.len] = client; event.len++; } static void eventRemove(size_t i) { close(event.fds[i].fd); event.len--; event.fds[i] = event.fds[event.len]; event.clients[i] = event.clients[event.len]; } int main(int argc, char *argv[]) { size_t ringSize = 4096; const char *savePath = NULL; const char *bindHost = "localhost"; const char *bindPort = "6697"; char bindPath[PATH_MAX] = ""; char certPath[PATH_MAX] = ""; char privPath[PATH_MAX] = ""; const char *caPath = NULL; const char *genPath = NULL; bool insecure = false; const char *clientCert = NULL; const char *clientPriv = NULL; const char *serverBindHost = NULL; const char *host = NULL; const char *port = "6697"; char *pass = NULL; char *plain = NULL; enum Cap blindReq = 0; const char *nick = NULL; const char *user = NULL; const char *real = NULL; const char *join = NULL; const char *quit = "connection reset by purr"; struct option options[] = { { .val = '!', .name = "insecure", no_argument }, { .val = 'A', .name = "local-ca", required_argument }, { .val = 'C', .name = "local-cert", required_argument }, { .val = 'H', .name = "local-host", required_argument }, { .val = 'K', .name = "local-priv", required_argument }, { .val = 'N', .name = "no-names", no_argument }, { .val = 'P', .name = "local-port", required_argument }, { .val = 'Q', .name = "queue-interval", required_argument }, { .val = 'R', .name = "blind-req", required_argument }, { .val = 'S', .name = "bind", required_argument }, { .val = 'T', .name = "no-sts", no_argument }, { .val = 'U', .name = "local-path", required_argument }, { .val = 'W', .name = "local-pass", required_argument }, { .val = 'a', .name = "sasl-plain", required_argument }, { .val = 'c', .name = "client-cert", required_argument }, { .val = 'e', .name = "sasl-external", no_argument }, { .val = 'f', .name = "save", required_argument }, { .val = 'g', .name = "generate", required_argument }, { .val = 'h', .name = "host", required_argument }, { .val = 'j', .name = "join", required_argument }, { .val = 'k', .name = "client-priv", required_argument }, { .val = 'n', .name = "nick", required_argument }, { .val = 'p', .name = "port", required_argument }, { .val = 'q', .name = "quit", required_argument }, { .val = 'r', .name = "real", required_argument }, { .val = 's', .name = "size", required_argument }, { .val = 'u', .name = "user", required_argument }, { .val = 'v', .name = "verbose", no_argument }, { .val = 'w', .name = "pass", required_argument }, { .val = 'x', .name = "hash", no_argument }, { .val = 'y', .name = "away", required_argument }, // Deprecated names: { .val = 'A', .name = "client-ca", required_argument }, { .val = 'C', .name = "cert", required_argument }, { .val = 'H', .name = "bind-host", required_argument }, { .val = 'K', .name = "priv", required_argument }, { .val = 'P', .name = "bind-port", required_argument }, { .val = 'U', .name = "bind-path", required_argument }, { .val = 'W', .name = "client-pass", required_argument }, {0}, }; char opts[2 * ARRAY_LEN(options)]; for (size_t i = 0, j = 0; i < ARRAY_LEN(options); ++i) { opts[j++] = options[i].val; if (options[i].has_arg) opts[j++] = ':'; } for (int opt; 0 < (opt = getopt_config(argc, argv, opts, options, NULL));) { switch (opt) { break; case '!': insecure = true; break; case 'A': clientCA = true; caPath = optarg; break; case 'C': snprintf(certPath, sizeof(certPath), "%s", optarg); break; case 'H': bindHost = optarg; break; case 'K': snprintf(privPath, sizeof(privPath), "%s", optarg); break; case 'N': stateNoNames = true; break; case 'P': bindPort = optarg; break; case 'Q': serverQueueInterval = parseInterval(optarg); break; case 'R': blindReq |= capParse(optarg, NULL); break; case 'S': serverBindHost = optarg; break; case 'T': clientSTS = false; break; case 'U': snprintf(bindPath, sizeof(bindPath), "%s", optarg); break; case 'W': clientPass = optarg; break; case 'a': blindReq |= CapSASL; plain = optarg; break; case 'c': clientCert = optarg; break; case 'e': blindReq |= CapSASL; break; case 'f': savePath = optarg; break; case 'g': genPath = optarg; break; case 'h': host = optarg; break; case 'j': join = optarg; break; case 'k': clientPriv = optarg; break; case 'n': nick = optarg; break; case 'p': port = optarg; break; case 'q': quit = optarg; break; case 'r': real = optarg; break; case 's': ringSize = parseSize(optarg); break; case 'u': user = optarg; break; case 'v': verbose = true; break; case 'w': pass = optarg; break; case 'x': hashPass(); return EX_OK; break; case 'y': clientAway = optarg; break; default: return EX_USAGE; } } if (blindReq & CapUnsupported) errx(EX_CONFIG, "unsupported capability"); if (genPath) genCert(genPath, caPath); if (bindPath[0]) { struct stat st; int error = stat(bindPath, &st); if (error && errno != ENOENT) err(EX_CANTCREAT, "%s", bindPath); if (S_ISDIR(st.st_mode)) { size_t len = strlen(bindPath); snprintf(&bindPath[len], sizeof(bindPath) - len, "/%s", bindHost); } } if (!certPath[0]) { snprintf( certPath, sizeof(certPath), CERTBOT_PATH "/live/%s/fullchain.pem", bindHost ); } if (!privPath[0]) { snprintf( privPath, sizeof(privPath), CERTBOT_PATH "/live/%s/privkey.pem", bindHost ); } 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; if (!clientAway) clientAway = "pounced :3"; if (clientPass && clientPass[0] != '$') { errx(EX_CONFIG, "password must be hashed with -x"); } ringAlloc(ringSize); if (savePath) saveLoad(savePath); FILE *localCA = NULL; if (caPath) { localCA = fopen(caPath, "r"); if (!localCA) err(EX_NOINPUT, "%s", caPath); } struct SplitPath certSplit = splitPath(certPath); struct SplitPath privSplit = splitPath(privPath); FILE *cert = splitOpen(certSplit); FILE *priv = splitOpen(privSplit); localConfig(cert, priv, localCA, !clientPass); fclose(cert); fclose(priv); int bind[8]; size_t binds = bindPath[0] ? localUnix(bind, ARRAY_LEN(bind), bindPath) : localBind(bind, ARRAY_LEN(bind), bindHost, bindPort); serverConfig(insecure, clientCert, clientPriv); int server = serverConnect(serverBindHost, host, port); #ifdef __FreeBSD__ int error = cap_enter(); if (error) err(EX_OSERR, "cap_enter"); cap_rights_t saveRights, fileRights, sockRights, bindRights; cap_rights_init(&saveRights, CAP_WRITE); cap_rights_init(&fileRights, CAP_FCNTL, CAP_FSTAT, CAP_LOOKUP, CAP_PREAD); cap_rights_init(&sockRights, CAP_EVENT, CAP_RECV, CAP_SEND, CAP_SETSOCKOPT); cap_rights_init(&bindRights, CAP_LISTEN, CAP_ACCEPT); cap_rights_merge(&bindRights, &sockRights); if (saveFile) capLimit(fileno(saveFile), &saveRights); if (localCA) capLimit(fileno(localCA), &fileRights); capLimitSplit(certSplit, &fileRights); capLimitSplit(privSplit, &fileRights); for (size_t i = 0; i < binds; ++i) { capLimit(bind[i], &bindRights); } capLimit(server, &sockRights); #endif stateLogin(pass, blindReq, plain, nick, user, real); if (pass) explicit_bzero(pass, strlen(pass)); if (plain) explicit_bzero(plain, strlen(plain)); while (!stateReady()) serverRecv(); serverFormat("AWAY :%s\r\n", clientAway); if (join) serverFormat("JOIN :%s\r\n", join); signal(SIGINT, signalHandler); signal(SIGTERM, signalHandler); signal(SIGPIPE, SIG_IGN); signal(SIGALRM, signalHandler); signal(SIGINFO, signalHandler); signal(SIGUSR1, signalHandler); for (size_t i = 0; i < binds; ++i) { int error = listen(bind[i], -1); if (error) err(EX_IOERR, "listen"); eventAdd(bind[i], NULL); } eventAdd(server, NULL); for (;;) { for (size_t i = binds + 1; i < event.len; ++i) { assert(event.clients[i]); if (clientDiff(event.clients[i])) { event.fds[i].events |= POLLOUT; } else { event.fds[i].events &= ~POLLOUT; } } int nfds = poll(event.fds, event.len, -1); if (nfds < 0 && errno != EINTR) err(EX_IOERR, "poll"); for (size_t i = event.len - 1; nfds > 0 && i < event.len; --i) { short revents = event.fds[i].revents; if (!revents) continue; if (event.fds[i].fd == server) { serverRecv(); continue; } if (!event.clients[i]) { int fd; struct tls *tls = localAccept(&fd, event.fds[i].fd); if (!tls) { warn("accept"); continue; } int error = tls_handshake(tls); if (error) { warnx("tls_handshake: %s", tls_error(tls)); tls_free(tls); close(fd); } else { eventAdd(fd, clientAlloc(tls)); } continue; } struct Client *client = event.clients[i]; if (revents & POLLOUT) clientConsume(client); if (revents & POLLIN) clientRecv(client); if (clientError(client) || revents & (POLLHUP | POLLERR)) { clientFree(client); eventRemove(i); } } if (signals[SIGINT] || signals[SIGTERM]) break; if (signals[SIGALRM]) { signals[SIGALRM] = 0; serverDequeue(); } if (signals[SIGINFO]) { signals[SIGINFO] = 0; ringInfo(); } if (signals[SIGUSR1]) { signals[SIGUSR1] = 0; cert = splitOpen(certSplit); priv = splitOpen(privSplit); localConfig(cert, priv, localCA, !clientPass); fclose(cert); fclose(priv); } } serverFormat("QUIT :%s\r\n", quit); for (size_t i = binds + 1; i < event.len; ++i) { assert(event.clients[i]); clientFormat(event.clients[i], ":%s QUIT :%s\r\n", stateEcho(), quit); clientFormat(event.clients[i], "ERROR :Disconnecting\r\n"); clientFree(event.clients[i]); close(event.fds[i].fd); } }