about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-10-12 14:17:40 -0400
committerJune McEnroe <june@causal.agency>2018-10-12 14:22:50 -0400
commit8b71da218514b30fcc8eaa2b9c173540dcd30e32 (patch)
tree72e32a329c7d930437d842d24377b6622687d59d
parentRefactor image.c (diff)
downloadtorus-8b71da218514b30fcc8eaa2b9c173540dcd30e32.tar.gz
torus-8b71da218514b30fcc8eaa2b9c173540dcd30e32.zip
Add -d and -s flags to server
-rw-r--r--server.c38
1 files changed, 24 insertions, 14 deletions
diff --git a/server.c b/server.c
index f6c0580..52082e1 100644
--- a/server.c
+++ b/server.c
@@ -37,15 +37,16 @@
 
 static struct Tile *tiles;
 
-static void tilesMap(void) {
-	int fd = open("torus.dat", O_CREAT | O_RDWR, 0644);
-	if (fd < 0) err(EX_CANTCREAT, "torus.dat");
+static void tilesMap(const char *path) {
+	int fd = open(path, O_CREAT | O_RDWR, 0644);
+	if (fd < 0) err(EX_CANTCREAT, "%s", path);
 
 	int error = ftruncate(fd, TilesSize);
-	if (error) err(EX_IOERR, "ftruncate");
+	if (error) err(EX_IOERR, "%s", path);
 
 	tiles = mmap(NULL, TilesSize, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
 	if (tiles == MAP_FAILED) err(EX_OSERR, "mmap");
+	close(fd);
 
 	error = madvise(tiles, TilesSize, MADV_RANDOM);
 	if (error) err(EX_OSERR, "madvise");
@@ -353,23 +354,32 @@ static bool clientMap(const struct Client *client) {
 	return true;
 }
 
-int main() {
+int main(int argc, char *argv[]) {
 	int error;
 
-	tilesMap();
+	const char *dataPath = "torus.dat";
+	const char *sockPath = "torus.sock";
+	int opt;
+	while (0 < (opt = getopt(argc, argv, "d:s:"))) {
+		switch (opt) {
+			break; case 'd': dataPath = optarg;
+			break; case 's': sockPath = optarg;
+			break; default:  return EX_USAGE;
+		}
+	}
+
+	tilesMap(dataPath);
 
 	int server = socket(PF_LOCAL, SOCK_STREAM, 0);
 	if (server < 0) err(EX_OSERR, "socket");
 
-	error = unlink("torus.sock");
-	if (error && errno != ENOENT) err(EX_IOERR, "torus.sock");
+	error = unlink(sockPath);
+	if (error && errno != ENOENT) err(EX_IOERR, "%s", sockPath);
 
-	struct sockaddr_un addr = {
-		.sun_family = AF_LOCAL,
-		.sun_path = "torus.sock",
-	};
-	error = bind(server, (struct sockaddr *)&addr, sizeof(addr));
-	if (error) err(EX_CANTCREAT, "torus.sock");
+	struct sockaddr_un addr = { .sun_family = AF_LOCAL };
+	strlcpy(addr.sun_path, sockPath, sizeof(addr.sun_path));
+	error = bind(server, (struct sockaddr *)&addr, SUN_LEN(&addr));
+	if (error) err(EX_CANTCREAT, "%s", sockPath);
 
 	error = listen(server, 0);
 	if (error) err(EX_OSERR, "listen");
d client configuration documentation and list capabilitiesJune McEnroe 2019-11-10Request all supported caps from serverJune McEnroe 2019-11-10Filter ACCOUNT, AWAY, CHGHOST for incapable clientsJune McEnroe 2019-11-10Rename listen to localJune McEnroe 2019-11-09Remove extended-join and invite-notifyJune McEnroe The remaining caps only generate new commands which can easily be filtered out when sending to clients so will be in the first pass of support. extended-join is probably safe to pass through unaltered, just causing extraneous parameters on JOIN commands, but maybe not. invite-notify reuses the INVITE command where the invited user is not self. 2019-11-09Maintain stateCaps and offer them to clientsJune McEnroe 2019-11-09Parse capabilitiesJune McEnroe The list that I've defined are the ones that I expect to be able to enable probably without any clients breaking... And of course server-time which pounce implements itself. 2019-11-09Avoid the reserved _A names with BIT macroJune McEnroe 2019-11-09Define macro for bit flag enumsJune McEnroe 2019-11-08Check that password is hashedJune McEnroe 2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe On GNU, calling getopt_long again will reset optind back to the first non-option argument, which would cause an infinite loop of reading the same configurtion file forever. 2019-11-08Only change AWAY status for registered clientsJune McEnroe Turns out I did eventually fix this, because I may want to implement "passive clients" for logging or notification stuff, which wouldn't affect AWAY status either. 2019-11-07Just write the example normallyJune McEnroe 2019-11-07Include path in readlinkat errorJune McEnroe 2019-11-07Call clientConsume before clientRecvJune McEnroe This might reduce the frequency of a client getting its own message back because it was behind in the ring when it sent it. 2019-11-06Use -l:filename in Linux.mkJune McEnroe 2019-11-06Fix compat.h for #defined strlcpyJune McEnroe 2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe 2019-11-06Document calico service configurationJune McEnroe 2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe 2019-11-06Document pounce service configurationJune McEnroe 2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe 2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe 2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe 2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe