summary refs log tree commit diff
path: root/bouncer.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-19 21:31:11 -0400
committerJune McEnroe <june@causal.agency>2019-10-19 21:31:11 -0400
commit2b9244fd6b80e6bd8472fe805ce6cf734754ce31 (patch)
treeba8df5bf168e90dd1c817238ba87a1a2c09bd9b2 /bouncer.c
parentBind to all available addresses (diff)
downloadpounce-2b9244fd6b80e6bd8472fe805ce6cf734754ce31.tar.gz
pounce-2b9244fd6b80e6bd8472fe805ce6cf734754ce31.zip
Move listen code to listen.c
Diffstat (limited to 'bouncer.c')
-rw-r--r--bouncer.c99
1 files changed, 99 insertions, 0 deletions
diff --git a/bouncer.c b/bouncer.c
new file mode 100644
index 0000000..3bf44cd
--- /dev/null
+++ b/bouncer.c
@@ -0,0 +1,99 @@
+/* Copyright (C) 2019  C. 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>
+#include <limits.h>
+#include <poll.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sysexits.h>
+#include <tls.h>
+#include <unistd.h>
+
+#include "bouncer.h"
+
+static char *censor(char *arg) {
+	char *dup = strdup(arg);
+	if (!dup) err(EX_OSERR, "strdup");
+	memset(arg, '*', strlen(dup));
+	return dup;
+}
+
+int main(int argc, char *argv[]) {
+	const char *localHost = "localhost";
+	const char *localPort = "6697";
+	const char *localPass = NULL;
+	char certPath[PATH_MAX] = "";
+	char privPath[PATH_MAX] = "";
+
+	const char *host = NULL;
+	const char *port = "6697";
+	const char *pass = NULL;
+	const char *auth = NULL;
+	const char *nick = NULL;
+	const char *user = NULL;
+	const char *real = NULL;
+	const char *join = NULL;
+
+	int opt;
+	while (0 < (opt = getopt(argc, argv, "C:H:K:P:W:a:h:j:n:p:r:u:w:"))) {
+		switch (opt) {
+			break; case 'C': strlcpy(certPath, optarg, sizeof(certPath));
+			break; case 'H': localHost = optarg;
+			break; case 'K': strlcpy(privPath, optarg, sizeof(privPath));
+			break; case 'P': localPort = optarg;
+			break; case 'W': localPass = censor(optarg);
+			break; case 'a': auth = censor(optarg);
+			break; case 'h': host = optarg;
+			break; case 'j': join = optarg;
+			break; case 'n': nick = optarg;
+			break; case 'p': port = optarg;
+			break; case 'r': real = optarg;
+			break; case 'u': user = optarg;
+			break; case 'w': pass = censor(optarg);
+			break; default:  return EX_USAGE;
+		}
+	}
+
+	if (!certPath[0]) {
+		snprintf(certPath, sizeof(certPath), DEFAULT_CERT_PATH, localHost);
+	}
+	if (!privPath[0]) {
+		snprintf(privPath, sizeof(privPath), DEFAULT_PRIV_PATH, localHost);
+	}
+
+	if (!host) errx(EX_USAGE, "no host");
+	if (!nick) {
+		nick = getenv("USER");
+		if (!nick) errx(EX_CONFIG, "USER unset");
+	}
+	if (!user) user = nick;
+	if (!real) real = nick;
+
+	enum { PollCap = 64 };
+	struct pollfd fds[PollCap];
+
+	listenConfig(certPath, privPath);
+	size_t binds = listenBind(fds, PollCap, localHost, localPort);
+
+	while (0 < poll(fds, binds, -1)) {
+		for (size_t i = 0; i < binds; ++i) {
+			if (!fds[i].revents) continue;
+			struct tls *client = listenAccept(&fds[binds], fds[i].fd);
+		}
+	}
+}
> 2018-08-07Handle PART and QUIT without messagesJune McEnroe 2018-08-07Make safe filling the who bufferJune McEnroe 2018-08-07Add reverse and reset IRC formatting codesJune McEnroe 2018-08-06Rewrite line editing again, add formattingJune McEnroe 2018-08-06Fix allocation size in vaswprintfJune McEnroe This is so embarrassing. It only started crashing once it had strings that were long enough, and then it took me so long to notice this mistake. I was worried I was still doing va_list wrong somehow. 2018-08-06Implement word wrappingJune McEnroe 2018-08-06Use wchar_t strings for all of UIJune McEnroe vaswprintf is a nightmare. 2018-08-06Rename line editing functionsJune McEnroe 2018-08-05Initialize all possible color pairsJune McEnroe This is actually possible with use_default_colors! 2018-08-05Refactor color initializationJune McEnroe 2018-08-05Add ^L redrawJune McEnroe 2018-08-05Use 16 colors if availableJune McEnroe Fall back to using bold if there are only 8 colors. This also allowed bright background colors in 16-color terminals. I must port this system to torus. I'll be able to remove the awful termcap patch hack. 2018-08-05Limit parsed colors to number of mIRC colorsJune McEnroe Oh boy that's embarrassing. 2018-08-04Show source link on exitJune McEnroe 2018-08-04Implement line editing, scrollingJune McEnroe Don't really have a way to implement the M-* keys, and currently missing C-w. 2018-08-04Handle /topicJune McEnroe