summary refs log tree commit diff
path: root/state.c
blob: 7b96a0b0c2c9c46348af11863ca3d0bbc95a8adb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* 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 <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>

#include "bounce.h"

enum { ISupportCap = 32 };
static struct {
	char *origin;
	char *nick;
	char *welcome;
	char *yourHost;
	char *created;
	char *myInfo[4];
	struct {
		char *values[ISupportCap];
		size_t len;
	} iSupport;
} state;

bool stateReady(void) {
	return state.origin
		&& state.nick
		&& state.welcome
		&& state.yourHost
		&& state.created
		&& state.myInfo[0]
		&& state.iSupport.len;
}

static void set(char **field, const char *value) {
	if (*field) free(*field);
	*field = NULL;
	if (value) {
		*field = strdup(value);
		if (!*field) err(EX_OSERR, "strdup");
	}
}

enum { ParamCap = 15 };
struct Command {
	const char *origin;
	const char *name;
	const char *target;
	const char *params[ParamCap];
};
typedef void Handler(struct Command);

static void cap(struct Command cmd) {
	bool ack = cmd.params[0] && !strcmp(cmd.params[0], "ACK");
	bool sasl = cmd.params[1] && !strcmp(cmd.params[1], "sasl");
	if (!ack || !sasl) errx(EX_CONFIG, "server does not support SASL");
	serverAuth();
}

static void replyWelcome(struct Command cmd) {
	set(&state.origin, cmd.origin);
	set(&state.nick, cmd.target);
	set(&state.welcome, cmd.params[0]);
}

static void replyYourHost(struct Command cmd) {
	set(&state.yourHost, cmd.params[0]);
}

static void replyCreated(struct Command cmd) {
	set(&state.created, cmd.params[0]);
}

static void replyMyInfo(struct Command cmd) {
	set(&state.myInfo[0], cmd.params[0]);
	set(&state.myInfo[1], cmd.params[1]);
	set(&state.myInfo[2], cmd.params[2]);
	set(&state.myInfo[3], cmd.params[3]);
}

static void replyISupport(struct Command cmd) {
	for (size_t i = 0; i < ParamCap; ++i) {
		if (!cmd.params[i] || strchr(cmd.params[i], ' ')) break;
		if (state.iSupport.len == ISupportCap) break;
		set(&state.iSupport.values[state.iSupport.len++], cmd.params[i]);
	}
}

static const struct {
	const char *cmd;
	Handler *fn;
} Handlers[] = {
	{ "001", replyWelcome },
	{ "002", replyYourHost },
	{ "003", replyCreated },
	{ "004", replyMyInfo },
	{ "005", replyISupport },
	{ "CAP", cap },
};
static const size_t HandlersLen = sizeof(Handlers) / sizeof(Handlers[0]);

void stateParse(char *line) {
	struct Command cmd = {0};
	if (line[0] == ':') {
		cmd.origin = 1 + strsep(&line, " ");
		if (!line) errx(EX_PROTOCOL, "eof after origin");
	}

	cmd.name = strsep(&line, " ");
	cmd.target = strsep(&line, " ");
	for (size_t i = 0; line && i < ParamCap; ++i) {
		if (line[0] == ':') {
			cmd.params[i] = line;
			break;
		}
		cmd.params[i] = strsep(&line, " ");
	}

	for (size_t i = 0; i < HandlersLen; ++i) {
		if (strcmp(cmd.name, Handlers[i].cmd)) continue;
		Handlers[i].fn(cmd);
		break;
	}
}