aboutsummaryrefslogtreecommitdiffstats
path: root/servers-master.c
blob: f6ebfee64282bd7fb39237221badc31a46c1547c (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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
/* See LICENSE file for copyright and license details. */
#include "servers-master.h"
#include "servers-crtc.h"
#include "servers-gamma.h"
#include "servers-coopgamma.h"
#include "util.h"
#include "communication.h"
#include "state.h"

#include <sys/socket.h>
#include <errno.h>
#include <fcntl.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>


/**
 * All poll(3p) events that are not for writing
 */
#define NON_WR_POLL_EVENTS (POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI | POLLERR | POLLHUP | POLLNVAL)


/**
 * Extract headers from an inbound message and pass
 * them on to appropriate message handling function
 * 
 * @param   conn  The index of the connection
 * @param   msg   The inbound message
 * @return        1: The connection as closed
 *                0: Successful
 *                -1: Failure
 */
static int
dispatch_message(size_t conn, struct message *restrict msg)
{
	size_t i;
	int r = 0;
	const char *header;
	const char *value;
	const char *command       = NULL;
	const char *crtc          = NULL;
	const char *coalesce      = NULL;
	const char *high_priority = NULL;
	const char *low_priority  = NULL;
	const char *priority      = NULL;
	const char *class         = NULL;
	const char *lifespan      = NULL;
	const char *message_id    = NULL;

	for (i = 0; i < msg->header_count; i++) {
		value = strstr((header = msg->headers[i]), ": ") + 2;
		if      (strstr(header, "Command: ")       == header)  command       = value;
		else if (strstr(header, "CRTC: ")          == header)  crtc          = value;
		else if (strstr(header, "Coalesce: ")      == header)  coalesce      = value;
		else if (strstr(header, "High priority: ") == header)  high_priority = value;
		else if (strstr(header, "Low priority: ")  == header)  low_priority  = value;
		else if (strstr(header, "Priority: ")      == header)  priority      = value;
		else if (strstr(header, "Class: ")         == header)  class         = value;
		else if (strstr(header, "Lifespan: ")      == header)  lifespan      = value;
		else if (strstr(header, "Message ID: ")    == header)  message_id    = value;
		else if (strstr(header, "Length: ")        == header)  ;/* Handled transparently */
		else
			fprintf(stderr, "%s: ignoring unrecognised header: %s\n", argv0, header);
	}

	if (!command) {
		fprintf(stderr, "%s: ignoring message without Command header\n", argv0);

	} else if (!message_id) {
		fprintf(stderr, "%s: ignoring message without Message ID header\n", argv0);

	} else if (!strcmp(command, "enumerate-crtcs")) {
		if (crtc || coalesce || high_priority || low_priority || priority || class || lifespan)
			fprintf(stderr, "%s: ignoring superfluous headers in Command: enumerate-crtcs message\n", argv0);
		r = handle_enumerate_crtcs(conn, message_id);

	} else if (!strcmp(command, "get-gamma-info")) {
		if (coalesce || high_priority || low_priority || priority || class || lifespan)
			fprintf(stderr, "%s: ignoring superfluous headers in Command: get-gamma-info message\n", argv0);
		r = handle_get_gamma_info(conn, message_id, crtc);

	} else if (!strcmp(command, "get-gamma")) {
		if (priority || class || lifespan)
			fprintf(stderr, "%s: ignoring superfluous headers in Command: get-gamma message\n", argv0);
		r = handle_get_gamma(conn, message_id, crtc, coalesce, high_priority, low_priority);

	} else if (!strcmp(command, "set-gamma")) {
		if (coalesce || high_priority || low_priority)
			fprintf(stderr, "%s: ignoring superfluous headers in Command: set-gamma message\n", argv0);
		r = handle_set_gamma(conn, message_id, crtc, priority, class, lifespan);

	} else {
		fprintf(stderr, "%s: ignoring unrecognised command: Command: %s\n", argv0, command);
	}

	return r;
}


/**
 * Sets the file descriptor set that includes
 * the server socket and all connections
 * 
 * The file descriptor will be ordered as in
 * the array `connections`, `socketfd` will
 * be last.
 * 
 * @param   fds        Reference parameter for the array of file descriptors
 * @param   fdn        Output parameter for the number of file descriptors
 * @param   fds_alloc  Reference parameter for the allocation size of `fds`, in elements
 * @return             Zero on success, -1 on error
 */
static int
update_fdset(struct pollfd **restrict fds, nfds_t *restrict fdn, nfds_t *restrict fds_alloc)
{
	size_t i;
	nfds_t j = 0;
	void *new;

	if (connections_used + 1 > *fds_alloc) {
		new = realloc(*fds, (connections_used + 1) * sizeof(**fds));
		if (!new)
			return -1;
		*fds = new;
		*fds_alloc = connections_used + 1;
	}

	for (i = 0; i < connections_used; i++) {
		if (connections[i] >= 0) {
			(*fds)[j].fd = connections[i];
			(*fds)[j].events = NON_WR_POLL_EVENTS;
			j++;
		}
	}

	(*fds)[j].fd = socketfd;
	(*fds)[j].events = NON_WR_POLL_EVENTS;
	j++;

	*fdn = j;
	return 0;
}


/**
 * Handle event on the server socket
 * 
 * @return  1: New connection accepted
 *          0: Successful
 *          -1: Failure
 */
static int
handle_server(void)
{
	int fd, flags, saved_errno;
	void *new;

	fd = accept(socketfd, NULL, NULL);
	if (fd < 0) {
		switch (errno) {
		case ECONNABORTED:
		case EINVAL:
			terminate = 1;
			/* fall through */
		case EINTR:
			return 0;
		default:
			return -1;
		}
	}

	flags = fcntl(fd, F_GETFL);
	if (flags < 0 || fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
		goto fail;

	if (connections_ptr == connections_alloc) {
		new = realloc(connections, (connections_alloc + 10) * sizeof(*connections));
		if (!new)
			goto fail;
		connections = new;
		connections[connections_ptr] = fd;

		new = realloc(outbound, (connections_alloc + 10) * sizeof(*outbound));
		if (!new)
			goto fail;
		outbound = new;
		ring_initialise(&outbound[connections_ptr]);

		new = realloc(inbound, (connections_alloc + 10) * sizeof(*inbound));
		if (!new)
			goto fail;
		inbound = new;
		connections_alloc += 10;
		if (message_initialise(&inbound[connections_ptr]))
			goto fail;
	} else {
		connections[connections_ptr] = fd;
		ring_initialise(&outbound[connections_ptr]);
		if (message_initialise(&inbound[connections_ptr]))
			goto fail;
	}

	connections_ptr++;
	while (connections_ptr < connections_used && connections[connections_ptr] >= 0)
		connections_ptr++;
	if (connections_used < connections_ptr)
		connections_used = connections_ptr;

	return 1;
fail:
	saved_errno = errno;
	shutdown(fd, SHUT_RDWR);
	close(fd);
	errno = saved_errno;
	return -1;
}


/**
 * Handle event on a connection to a client
 * 
 * @param   conn  The index of the connection
 * @return        1: The connection as closed
 *                0: Successful
 *                -1: Failure
 */
static int
handle_connection(size_t conn)
{
	struct message *restrict msg = &inbound[conn];
	int r, fd = connections[conn];

again:
	errno = 0;
	switch (message_read(msg, fd)) {
	default:
		break;

	case -1:
		switch (errno) {
		case EINTR:
#if defined(EAGAIN)
		case EAGAIN:
#endif
#if defined(EWOULDBLOCK) && (!defined(EAGAIN) || EAGAIN != EWOULDBLOCK)
		case EWOULDBLOCK:
#endif
			return 0;
		default:
			return -1;
		case ECONNRESET:;
			/* Fall through to `case -2` in outer switch */
		}

	case -2:
		shutdown(fd, SHUT_RDWR);
		close(fd);
		connections[conn] = -1;
		if (conn < connections_ptr)
			connections_ptr = conn;
		while (connections_used > 0 && connections[connections_used - 1] < 0)
			connections_used -= 1;
		message_destroy(msg);
		ring_destroy(&outbound[conn]);
		if (connection_closed(fd) < 0)
			return -1;
		return 1;
	}

	if ((r = dispatch_message(conn, msg)))
		return r;

	goto again;
}


/**
 * Disconnect all clients
 */
void
disconnect_all(void)
{
	size_t i;
	for (i = 0; i < connections_used; i++) {
		if (connections[i] >= 0) {
			shutdown(connections[i], SHUT_RDWR);
			close(connections[i]);
		}
	}
}


/**
 * The program's main loop
 * 
 * @return  Zero on success, -1 on error
 */
int
main_loop(void)
{
	struct pollfd *fds = NULL;
	nfds_t i, fdn = 0, fds_alloc = 0;
	int r, update, do_read, do_write, fd;
	size_t j;

	if (update_fdset(&fds, &fdn, &fds_alloc) < 0)
		goto fail;

	while (!reexec && !terminate) {
		if (connection) {
			if ((connection == 1 ? disconnect() : reconnect()) < 0) {
				connection = 0;
				goto fail;
			}
			connection = 0;
		}

		for (j = 0, i = 0; j < connections_used; j++) {
			if (connections[j] >= 0) {
				fds[i].revents = 0;
				if (ring_have_more(outbound + j))
					fds[(size_t)i++ + j].events |= POLLOUT;
				else
					fds[(size_t)i++ + j].events &= ~POLLOUT;
			}
		}
		fds[i].revents = 0;

		if (poll(fds, fdn, -1) < 0) {
			if (errno == EAGAIN)
				perror(argv0);
			else if (errno != EINTR)
				goto fail;
		}

		update = 0;
		for (i = 0; i < fdn; i++) {
			do_read  = fds[i].revents & NON_WR_POLL_EVENTS;
			do_write = fds[i].revents & POLLOUT;
			fd = fds[i].fd;
			if (!do_read && !do_write)
				continue;

			if (fd == socketfd) {
				r = handle_server();
			} else {
				for (j = 0; connections[j] != fd; j++);
				r = do_read ? handle_connection(j) : 0;
			}

			if (r >= 0 && do_write)
				r |= continue_send(j);
			if (r < 0)
				goto fail;
			update |= r > 0;
		}
		if (update && update_fdset(&fds, &fdn, &fds_alloc) < 0)
			goto fail;
	}

	free(fds);
	return 0;

fail:
	free(fds);
	return -1;
}