summaryrefslogtreecommitdiffstats
path: root/discover/discover-server.c
blob: 34d82be828cc623bb7e5f12b949a72c23953c052 (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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <errno.h>
#include <assert.h>
#include <string.h>

#include <sys/socket.h>
#include <sys/un.h>
#include <asm/byteorder.h>

#include <pb-config/pb-config.h>
#include <talloc/talloc.h>
#include <waiter/waiter.h>
#include <log/log.h>

#include "pb-protocol/pb-protocol.h"
#include "list/list.h"

#include "device-handler.h"
#include "discover-server.h"
#include "platform.h"
#include "sysinfo.h"

struct discover_server {
	int socket;
	struct waitset *waitset;
	struct waiter *waiter;
	struct list clients;
	struct list status;
	struct device_handler *device_handler;
};

struct client {
	struct discover_server *server;
	struct list_item list;
	struct waiter *waiter;
	int fd;
	bool remote_closed;
};


static int server_destructor(void *arg)
{
	struct discover_server *server = arg;

	if (server->waiter)
		waiter_remove(server->waiter);

	if (server->socket >= 0)
		close(server->socket);

	return 0;
}

static int client_destructor(void *arg)
{
	struct client *client = arg;

	if (client->fd >= 0)
		close(client->fd);

	if (client->waiter)
		waiter_remove(client->waiter);

	list_remove(&client->list);

	return 0;

}

static void print_clients(struct discover_server *server)
	__attribute__((unused));

static void print_clients(struct discover_server *server)
{
	struct client *client;

	pb_debug("current clients [%p,%p,%p]:\n",
			&server->clients.head,
			server->clients.head.prev,
			server->clients.head.next);
	list_for_each_entry(&server->clients, client, list)
		pb_debug("\t[%p,%p,%p] client: %d\n", &client->list,
				client->list.prev, client->list.next,
				client->fd);
}

static int client_write_message(
		struct discover_server *server __attribute__((unused)),
		struct client *client, struct pb_protocol_message *message)
{
	int rc;

	if (client->remote_closed)
		return -1;

	rc = pb_protocol_write_message(client->fd, message);
	if (rc)
		client->remote_closed = true;

	return rc;
}

static int write_device_add_message(struct discover_server *server,
		struct client *client, const struct device *dev)
{
	struct pb_protocol_message *message;
	int len;

	len = pb_protocol_device_len(dev);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_DEVICE_ADD, len);
	if (!message)
		return -1;

	pb_protocol_serialise_device(dev, message->payload, len);

	return client_write_message(server, client, message);
}

static int write_boot_option_add_message(struct discover_server *server,
		struct client *client, const struct boot_option *opt)
{
	struct pb_protocol_message *message;
	int len;

	len = pb_protocol_boot_option_len(opt);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_BOOT_OPTION_ADD, len);
	if (!message)
		return -1;

	pb_protocol_serialise_boot_option(opt, message->payload, len);

	return client_write_message(server, client, message);
}

static int write_plugin_option_add_message(struct discover_server *server,
		struct client *client, const struct plugin_option *opt)
{
	struct pb_protocol_message *message;
	int len;

	len = pb_protocol_plugin_option_len(opt);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_PLUGIN_OPTION_ADD, len);
	if (!message)
		return -1;

	pb_protocol_serialise_plugin_option(opt, message->payload, len);

	return client_write_message(server, client, message);
}

static int write_plugins_remove_message(struct discover_server *server,
		struct client *client)
{
	struct pb_protocol_message *message;

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_PLUGINS_REMOVE, 0);
	if (!message)
		return -1;

	/* No payload so nothing to serialise */

	return client_write_message(server, client, message);
}

static int write_device_remove_message(struct discover_server *server,
		struct client *client, char *dev_id)
{
	struct pb_protocol_message *message;
	int len;

	len = strlen(dev_id) + sizeof(uint32_t);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_DEVICE_REMOVE, len);
	if (!message)
		return -1;

	pb_protocol_serialise_string(message->payload, dev_id);

	return client_write_message(server, client, message);
}

static int write_boot_status_message(struct discover_server *server,
		struct client *client, const struct status *status)
{
	struct pb_protocol_message *message;
	int len;

	len = pb_protocol_boot_status_len(status);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_STATUS, len);
	if (!message)
		return -1;

	pb_protocol_serialise_boot_status(status, message->payload, len);

	return client_write_message(server, client, message);
}

static int write_system_info_message(struct discover_server *server,
		struct client *client, const struct system_info *sysinfo)
{
	struct pb_protocol_message *message;
	int len;

	len = pb_protocol_system_info_len(sysinfo);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_SYSTEM_INFO, len);
	if (!message)
		return -1;

	pb_protocol_serialise_system_info(sysinfo, message->payload, len);

	return client_write_message(server, client, message);
}

static int write_config_message(struct discover_server *server,
		struct client *client, const struct config *config)
{
	struct pb_protocol_message *message;
	int len;

	len = pb_protocol_config_len(config);

	message = pb_protocol_create_message(client,
			PB_PROTOCOL_ACTION_CONFIG, len);
	if (!message)
		return -1;

	pb_protocol_serialise_config(config, message->payload, len);

	return client_write_message(server, client, message);
}

static int discover_server_process_message(void *arg)
{
	struct autoboot_option *autoboot_opt;
	struct pb_protocol_message *message;
	struct boot_command *boot_command;
	struct client *client = arg;
	struct config *config;
	char *url;
	int rc;

	message = pb_protocol_read_message(client, client->fd);

	if (!message) {
		talloc_free(client);
		return 0;
	}


	switch (message->action) {
	case PB_PROTOCOL_ACTION_BOOT:
		boot_command = talloc(client, struct boot_command);

		rc = pb_protocol_deserialise_boot_command(boot_command,
				message);
		if (rc) {
			pb_log_fn("no boot command?\n");
			return 0;
		}

		device_handler_boot(client->server->device_handler,
				boot_command);
		break;

	case PB_PROTOCOL_ACTION_CANCEL_DEFAULT:
		device_handler_cancel_default(client->server->device_handler);
		break;

	case PB_PROTOCOL_ACTION_REINIT:
		device_handler_reinit(client->server->device_handler);
		break;

	case PB_PROTOCOL_ACTION_CONFIG:
		config = talloc_zero(client, struct config);

		rc = pb_protocol_deserialise_config(config, message);
		if (rc) {
			pb_log_fn("no config?\n");
			return 0;
		}

		device_handler_update_config(client->server->device_handler,
				config);
		break;

	case PB_PROTOCOL_ACTION_ADD_URL:
		url = pb_protocol_deserialise_string((void *) client, message);

		device_handler_process_url(client->server->device_handler,
				url, NULL, NULL);
		break;

	case PB_PROTOCOL_ACTION_PLUGIN_INSTALL:
		url = pb_protocol_deserialise_string((void *) client, message);

		device_handler_install_plugin(client->server->device_handler,
				url);
		break;

	case PB_PROTOCOL_ACTION_TEMP_AUTOBOOT:
		autoboot_opt = talloc_zero(client, struct autoboot_option);
		rc = pb_protocol_deserialise_temp_autoboot(autoboot_opt,
				message);
		if (rc) {
			pb_log("can't parse temporary autoboot message\n");
			return 0;
		}

		device_handler_apply_temp_autoboot(
				client->server->device_handler,
				autoboot_opt);
		break;

	default:
		pb_log_fn("invalid action %d\n", message->action);
		return 0;
	}


	return 0;
}

static int discover_server_process_connection(void *arg)
{
	struct discover_server *server = arg;
	struct statuslog_entry *entry;
	int fd, rc, i, n_devices, n_plugins;
	struct client *client;

	/* accept the incoming connection */
	fd = accept(server->socket, NULL, NULL);
	if (fd < 0) {
		pb_log("accept: %s\n", strerror(errno));
		return 0;
	}

	/* add to our list of clients */
	client = talloc_zero(server, struct client);
	list_add(&server->clients, &client->list);

	talloc_set_destructor(client, client_destructor);

	client->fd = fd;
	client->server = server;
	client->waiter = waiter_register_io(server->waitset, client->fd,
				WAIT_IN, discover_server_process_message,
				client);

	/* send sysinfo to client */
	rc = write_system_info_message(server, client, system_info_get());
	if (rc)
		return 0;

	/* send config to client */
	rc = write_config_message(server, client, config_get());
	if (rc)
		return 0;

	/* send existing devices to client */
	n_devices = device_handler_get_device_count(server->device_handler);
	for (i = 0; i < n_devices; i++) {
		const struct discover_boot_option *opt;
		const struct discover_device *device;

		device = device_handler_get_device(server->device_handler, i);
		rc = write_device_add_message(server, client, device->device);
		if (rc)
			return 0;

		list_for_each_entry(&device->boot_options, opt, list) {
			rc = write_boot_option_add_message(server, client,
					opt->option);
			if (rc)
				return 0;
		}
	}

	/* send status backlog to client */
	list_for_each_entry(&server->status, entry, list)
		write_boot_status_message(server, client, entry->status);

	/* send installed plugins to client */
	n_plugins = device_handler_get_plugin_count(server->device_handler);
	for (i = 0; i < n_plugins; i++) {
		const struct plugin_option *plugin;

		plugin = device_handler_get_plugin(server->device_handler, i);
		write_plugin_option_add_message(server, client, plugin);
	}

	return 0;
}

void discover_server_notify_device_add(struct discover_server *server,
		struct device *device)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_device_add_message(server, client, device);

}

void discover_server_notify_boot_option_add(struct discover_server *server,
		struct boot_option *boot_option)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_boot_option_add_message(server, client, boot_option);
}

void discover_server_notify_device_remove(struct discover_server *server,
		struct device *device)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_device_remove_message(server, client, device->id);

}

void discover_server_notify_boot_status(struct discover_server *server,
		struct status *status)
{
	struct statuslog_entry *entry;
	struct client *client;

	/* Duplicate the status struct to add to the backlog */
	entry = talloc(server, struct statuslog_entry);
	if (!entry) {
		pb_log("Failed to allocated saved status!\n");
	} else {
		entry->status = talloc(entry, struct status);
		if (entry->status) {
			entry->status->type = status->type;
			entry->status->message = talloc_strdup(entry->status,
							       status->message);
			entry->status->backlog = true;
			list_add_tail(&server->status, &entry->list);
		} else {
			talloc_free(entry);
		}
	}

	list_for_each_entry(&server->clients, client, list)
		write_boot_status_message(server, client, status);
}

void discover_server_notify_system_info(struct discover_server *server,
		const struct system_info *sysinfo)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_system_info_message(server, client, sysinfo);
}

void discover_server_notify_config(struct discover_server *server,
		const struct config *config)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_config_message(server, client, config);
}

void discover_server_notify_plugin_option_add(struct discover_server *server,
		struct plugin_option *opt)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_plugin_option_add_message(server, client, opt);
}

void discover_server_notify_plugins_remove(struct discover_server *server)
{
	struct client *client;

	list_for_each_entry(&server->clients, client, list)
		write_plugins_remove_message(server, client);
}

void discover_server_set_device_source(struct discover_server *server,
		struct device_handler *handler)
{
	server->device_handler = handler;
}

struct discover_server *discover_server_init(struct waitset *waitset)
{
	struct discover_server *server;
	struct sockaddr_un addr;

	server = talloc(NULL, struct discover_server);
	if (!server)
		return NULL;

	server->waiter = NULL;
	server->waitset = waitset;
	list_init(&server->clients);
	list_init(&server->status);

	unlink(PB_SOCKET_PATH);

	server->socket = socket(AF_UNIX, SOCK_STREAM, 0);
	if (server->socket < 0) {
		pb_log("error creating server socket: %s\n", strerror(errno));
		goto out_err;
	}

	talloc_set_destructor(server, server_destructor);

	addr.sun_family = AF_UNIX;
	strcpy(addr.sun_path, PB_SOCKET_PATH);

	if (bind(server->socket, (struct sockaddr *)&addr, sizeof(addr))) {
		pb_log("error binding server socket: %s\n", strerror(errno));
		goto out_err;
	}

	if (listen(server->socket, 8)) {
		pb_log("server socket listen: %s\n", strerror(errno));
		goto out_err;
	}

	server->waiter = waiter_register_io(server->waitset, server->socket,
			WAIT_IN, discover_server_process_connection, server);

	return server;

out_err:
	talloc_free(server);
	return NULL;
}

void discover_server_destroy(struct discover_server *server)
{
	talloc_free(server);
}

OpenPOWER on IntegriCloud