summaryrefslogtreecommitdiff
path: root/tacplus-daemon/parser.c
blob: 5684769e8066911f5691290d289c48f63e565243 (plain)
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
/*
	TACACS+ D-Bus Daemon code

	Copyright (c) 2018-2019 AT&T Intellectual Property.
	Copyright (c) 2015-2016 Brocade Communications Systems, Inc.

	SPDX-License-Identifier: GPL-2.0-only
*/

#include <assert.h>
#include <glib.h>
#include <netinet/ip.h>
#include <stdbool.h>

#include "parser.h"
#include "utils.h"

/* TODO: set max config size 
 *       header file
 *       make more versatile/flexible
 */

static const char *s_general = "general";
static const char *s_options = "options";

static inline
void g_syslog(int priority, const char *fmt, GError *e)
{
	syslog(priority, fmt, e->message);
	g_error_free(e);
}

static inline
void sa_set_port(struct sockaddr *sa, ushort port)
{
	if (!sa) {
		syslog(LOG_CRIT, "sa should never be NULL");
		exit(1);
	}

	if (sa->sa_family == AF_INET) {
		struct sockaddr_in *sin = (struct sockaddr_in *) sa;
		sin->sin_port = htons(port);
	} else if (sa->sa_family == AF_INET6) {
		struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
		sin6->sin6_port = htons(port);
	}
}

static
bool isReservedSection(const char *name)
{
	return (!strcmp(name, s_general) || !strcmp(name, s_options));
}

void read_config(const char *f_name, struct tacplus_options **opts)
{
	GKeyFile *keyfile;
	GKeyFileFlags flags;
	GError *error = NULL;
	gsize length;
	const struct addrinfo hints = {
		.ai_family = AF_UNSPEC,
		.ai_socktype = SOCK_STREAM,
		.ai_flags = AI_NUMERICHOST,
	};
	struct connection conn[TACPLUS_MAX_SERVERS];
	unsigned nservers, setupTimeout;
	int dscp;
	unsigned i, j;

	nservers = 0;

	/* initialize key file */
	keyfile = g_key_file_new();
	flags = G_KEY_FILE_NONE;

	if (!g_key_file_load_from_file(keyfile, f_name, flags, &error)) {
		g_syslog(LOG_ERR, "config file open: %s", error);
		g_key_file_free(keyfile);
		return;
	}

	/* get the names of sections; any section that doesn't have
	 * a reserved name is assumed to be a server configuration.
	 */

	char **sections = g_key_file_get_groups(keyfile, &length);

	/* any global options would be handled here from the
	 * 'general' section
	 */

	gboolean broadcast = g_key_file_get_boolean(keyfile, s_general, "BroadcastAccounting", &error);
	if (error) {
		g_syslog(LOG_ERR, "parse BroadcastAccounting option: %s", error);
		goto cleanup2;
	}

#ifndef HAVE_LIBTAC_EVENT
	if (broadcast) {
		syslog(LOG_ERR, "Cannot enable unsupported BroadcastAccounting option");
		broadcast = false;
	}
#endif

	setupTimeout = g_key_file_get_integer(keyfile, s_general, "SetupTimeout", &error);
	if (error) {
		g_syslog(LOG_ERR, "parse SetupTimeout option: %s", error);
		goto cleanup2;
	}
	if (setupTimeout <= 0) {
		syslog(LOG_ERR, "parse SetupTimeout option must be higher than 0.\n");
		goto cleanup2;
	}

	dscp = g_key_file_get_integer(keyfile, s_general, "Dscp", &error);
	if (error) {
		if (error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
			g_syslog(LOG_ERR, "parse Dscp option: %s", error);
			goto cleanup2;
		}
		dscp = IPTOS_CLASS_CS6;
		g_error_free(error);
	} else if (dscp < 0 || dscp > 63) {
		syslog(LOG_ERR, "Dscp value must be in the range <0-63>");
		goto cleanup2;
	} else {
		// The two least significant bits are used for ECN
		dscp <<= 2;
	}

	for (i = j = 0; i < length; ++i) {
		int hold_down, port, timeout, err;
		gchar *gsecret, *addr, *src_addr, *gsrc_intf;
		struct addrinfo *ai, *pai, *sai;
		gchar *server = sections[i];
		const char *secret, *src_intf;
		bool valid = true;

		if (isReservedSection(server))
			continue;

		/* Clear variables which may be set from previous iterations */
		error = NULL;
		ai = pai = sai = NULL;

		/* start with tuple of address and port */
		addr = g_key_file_get_string(keyfile, server, "Address", &error);
		if (error) {
			g_syslog(LOG_ERR, "parse server address: %s", error);
			ai = NULL;
			valid = false;
		} else {
			/* ignore the port, we'll patch it in later... */
			err = getaddrinfo(addr, NULL, &hints, &ai);
			if (err != 0) {
				syslog(LOG_ERR, "parse server address: %s",
				       gai_strerror(err));
				valid = false;
			}
		}

		port = g_key_file_get_integer(keyfile, server, "Port", &error);
		if (error) {
			g_syslog(LOG_ERR, "parse port: %s", error);
			valid = false;
		}

		/* ... then required secret and timeout. */
		gsecret = g_key_file_get_string(keyfile, server, "Secret", &error);
		if (error) {
			g_syslog(LOG_ERR, "parse secret: %s", error);
			valid = false;
			secret = NULL;
		} else {
			/* we do this so that the special memory destruction
			 * that glib requires is confined to this module.
			 */
			secret = strdup(gsecret);
			if (! secret) {
				syslog(LOG_CRIT, "tacplus secret allocation fail: out-of-memory");
				valid = false;
			}
			g_free(gsecret);
		}

		timeout = g_key_file_get_integer(keyfile, server, "Timeout", &error);
		if (error) {
			g_syslog(LOG_ERR, "parse timeout: %s", error);
			valid = false;
		}

		hold_down = g_key_file_get_integer(keyfile, server, "HoldDown", &error);
		if (error) {
			g_syslog(LOG_ERR, "parse HoldDown: %s", error);
			valid = false;
		} else if (hold_down < 0) {
			syslog(LOG_ERR, "Invalid negative HoldDown %d", hold_down);
			valid = false;
		}

		/* substitute in port # */
		for (pai = ai; pai != NULL; pai = pai->ai_next)
			/* if pai is non-NULL, then pai->ai_addr should
			 * also never be NULL...
			 */
			sa_set_port(pai->ai_addr, port);

		/* SourceAddress, which is optional... */
		src_addr = g_key_file_get_string(keyfile, server, "SourceAddress", &error);
		if (error) {
			if (error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND)
				g_syslog(LOG_ERR, "parse source address: %s",
					 error);
			else
				g_error_free(error);

			sai = NULL;
		} else {
			err = getaddrinfo(src_addr, "", &hints, &sai);
			if (err != 0) {
				syslog(LOG_ERR, "parse source address: %s",
				       gai_strerror(err));
				valid = false;
			}
		}

		/* Optional SourceInterface */
		error = NULL;
		gsrc_intf = g_key_file_get_string(keyfile, server, "SourceInterface", &error);
		if (error) {
			if (error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
				g_syslog(LOG_ERR, "parse source interface: %s", error);
				valid = false;
			}
			else
				g_error_free(error);
			src_intf = NULL;
		} else {
			src_intf = strdup (gsrc_intf);
			if (! src_intf) {
				syslog(LOG_CRIT, "tacplus source interface allocation "
					   "fail: out-of-memory");
				valid = false;
			}
			g_free(gsrc_intf);
		}

		if (!valid)
			goto cleanup;

		if (j == TACPLUS_MAX_SERVERS) {
			syslog(LOG_WARNING,
			       "too many servers configured: ignoring %s", server);
			goto cleanup;
		}

		conn[j].addr = ai;
		conn[j].secret = secret;
		conn[j].timeout = timeout;
		conn[j].hold_down = hold_down;
		conn[j].src_addr = sai;
		conn[j].src_intf = src_intf;
		++j;

cleanup:
		g_free((char *)addr);
		g_free((char *)src_addr);

		if (valid)
			continue;

		if (ai)
			freeaddrinfo(ai);
		if (sai)
			freeaddrinfo(sai);
	}

	nservers = j;

cleanup2:
	/* release stuff... */
	g_strfreev(sections);
	g_key_file_free(keyfile);

	if (!nservers) {
		syslog(LOG_ERR, "no servers configured");
		exit(1);
	}

	*opts = tacplus_options_alloc(nservers);
	if (!opts) {
		syslog(LOG_CRIT, "tacplus_options allocation fail: out-of-memory");
		exit(1);
	}

	(*opts)->next_server = INVALID_SERVER_ID;
	(*opts)->curr_server = 0;
	(*opts)->broadcast = broadcast;
	(*opts)->dscp = dscp;
	(*opts)->setupTimeout = setupTimeout;

	for (i = 0; i < nservers; ++i) {
		(*opts)->server[i].id = i;
		(*opts)->server[i].addrs = conn[i].addr;
		(*opts)->server[i].src_addrs = conn[i].src_addr;
		(*opts)->server[i].src_intf = conn[i].src_intf;
		(*opts)->server[i].secret = conn[i].secret;
		(*opts)->server[i].timeout = conn[i].timeout;
		(*opts)->server[i].hold_down = conn[i].hold_down;
#ifdef HAVE_LIBTAC_EVENT
		(*opts)->server[i].session = NULL;
#endif
	}
}