summaryrefslogtreecommitdiffstats
path: root/discover/user-event.c
blob: 11a54df39f2fb6b966cd863f0b9ac431f6a235dc (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
/*
 *  Copyright (C) 2009 Sony Computer Entertainment Inc.
 *  Copyright 2009 Sony Corp.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; version 2 of the License.
 *
 *  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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif

#include <assert.h>
#include <errno.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>

#include <log/log.h>
#include <url/url.h>
#include <types/types.h>
#include <talloc/talloc.h>
#include <waiter/waiter.h>

#include "device-handler.h"
#include "resource.h"
#include "event.h"
#include "user-event.h"


#define MAC_ADDR_SIZE	6
#define IP_ADDR_SIZE	4

struct user_event {
	struct device_handler *handler;
	int socket;
};

static const char *event_action_name(enum event_action action)
{
	switch (action) {
	case EVENT_ACTION_ADD:
		return "add";
	case EVENT_ACTION_REMOVE:
		return "remove";
	case EVENT_ACTION_DHCP:
		return "dhcp";
	default:
		break;
	}

	return "unknown";
}

static void user_event_print_event(struct event __attribute__((unused)) *event)
{
	int i;

	pb_debug("user_event %s event:\n", event_action_name(event->action));
	pb_debug("\tdevice: %s\n", event->device);

	for (i = 0; i < event->n_params; i++)
		pb_debug("\t%-12s => %s\n",
			event->params[i].name, event->params[i].value);
}

static struct resource *user_event_resource(struct discover_boot_option *opt,
		struct event *event)
{
	const char *siaddr, *boot_file;
	struct resource *res;
	struct pb_url *url;
	char *url_str;

	siaddr = event_get_param(event, "siaddr");
	if (!siaddr) {
		pb_log("%s: next server option not found\n", __func__);
		return NULL;
	}

	boot_file = event_get_param(event, "boot_file");
	if (!boot_file) {
		pb_log("%s: boot_file not found\n", __func__);
		return NULL;
	}

	url_str = talloc_asprintf(opt, "%s%s/%s", "tftp://", siaddr, boot_file);
	url = pb_url_parse(opt, url_str);
	talloc_free(url_str);

	if (!url)
		return NULL;

	res = create_url_resource(opt, url);
	if (!res) {
		talloc_free(url);
		return NULL;
	}

	return res;
}

static int parse_user_event(struct discover_context *ctx, struct event *event)
{
	struct discover_boot_option *d_opt;
	char *server_ip, *root_dir, *p;
	struct boot_option *opt;
	struct device *dev;
	const char *val;

	dev = ctx->device->device;

	d_opt = discover_boot_option_create(ctx, ctx->device);
	if (!d_opt)
		goto fail;

	opt = d_opt->option;

	val = event_get_param(event, "name");

	if (!val) {
		pb_log("%s: no name found\n", __func__);
		goto fail_opt;
	}

	opt->id = talloc_asprintf(opt, "%s#%s", dev->id, val);
	opt->name = talloc_strdup(opt, val);

	d_opt->boot_image = user_event_resource(d_opt, event);
	if (!d_opt->boot_image) {
		pb_log("%s: no boot image found for %s!\n", __func__,
				opt->name);
		goto fail_opt;
	}

	val = event_get_param(event, "rootpath");
	if (val) {
		server_ip = talloc_strdup(opt, val);
		p = strchr(server_ip, ':');
		if (p) {
			root_dir = talloc_strdup(opt, p + 1);
			*p = '\0';
			opt->boot_args = talloc_asprintf(opt, "%s%s:%s",
					"root=/dev/nfs ip=any nfsroot=",
					server_ip, root_dir);

			talloc_free(root_dir);
		} else {
			opt->boot_args = talloc_asprintf(opt, "%s",
					"root=/dev/nfs ip=any nfsroot=");
		}

		talloc_free(server_ip);
	}

	opt->description = talloc_asprintf(opt, "%s %s", opt->boot_image_file,
		opt->boot_args ? : "");

	if (event_get_param(event, "default"))
		opt->is_default = true;

	discover_context_add_boot_option(ctx, d_opt);

	return 0;

fail_opt:
	talloc_free(d_opt);
fail:
	return -1;
}

static const char *parse_host_addr(struct event *event)
{
	const char *val;

	val = event_get_param(event, "tftp");
	if (val)
		return val;

	val = event_get_param(event, "siaddr");
	if (val)
		return val;

	val = event_get_param(event, "serverid");
	if (val)
		return val;

	return NULL;
}

static char *parse_mac_addr(struct discover_context *ctx, const char *mac)
{
	unsigned int mac_addr_arr[MAC_ADDR_SIZE];
	char *mac_addr;

	sscanf(mac, "%X:%X:%X:%X:%X:%X", mac_addr_arr, mac_addr_arr + 1,
			mac_addr_arr + 2, mac_addr_arr + 3, mac_addr_arr + 4,
			mac_addr_arr + 5);

	mac_addr = talloc_asprintf(ctx, "01-%02X-%02X-%02X-%02X-%02X-%02X",
			mac_addr_arr[0], mac_addr_arr[1], mac_addr_arr[2],
			mac_addr_arr[3], mac_addr_arr[4], mac_addr_arr[5]);

	return mac_addr;
}

static char *parse_ip_addr(struct discover_context *ctx, const char *ip)
{
	unsigned int ip_addr_arr[IP_ADDR_SIZE];
	char *ip_hex;

	sscanf(ip, "%u.%u.%u.%u", ip_addr_arr, ip_addr_arr + 1,
			ip_addr_arr + 2, ip_addr_arr + 3);

	ip_hex = talloc_asprintf(ctx, "%02X%02X%02X%02X", ip_addr_arr[0],
			ip_addr_arr[1], ip_addr_arr[2], ip_addr_arr[3]);

	return ip_hex;
}

struct pb_url *user_event_parse_conf_url(struct discover_context *ctx,
		struct event *event, bool *is_complete)
{
	const char *conffile, *host, *bootfile;
	char *p, *basedir, *url_str;
	struct pb_url *url;

	conffile = event_get_param(event, "pxeconffile");
	if (conffile) {
		if (is_url(conffile)) {
			url = pb_url_parse(ctx, conffile);
		} else {
			host = parse_host_addr(event);
			if (!host) {
				pb_log("%s: host address not found\n",
						__func__);
				return NULL;
			}

			url_str = talloc_asprintf(ctx, "%s%s/%s", "tftp://",
					host, conffile);
			url = pb_url_parse(ctx, url_str);

			talloc_free(url_str);
		}

		*is_complete = true;
	} else {
		host = parse_host_addr(event);
		if (!host) {
			pb_log("%s: host address not found\n", __func__);
			return NULL;
		}

		bootfile = event_get_param(event, "bootfile");
		if (!bootfile) {
			pb_log("%s: bootfile param not found\n", __func__);
			return NULL;
		}

		basedir = talloc_strdup(ctx, bootfile);
		p = strchr(basedir, '/');
		if (p)
			*p = '\0';

		if (!strcmp(basedir,"") || !strcmp(basedir, "."))
			url_str = talloc_asprintf(ctx, "%s%s/", "tftp://",host);
		else
			url_str = talloc_asprintf(ctx, "%s%s/%s/", "tftp://",host,
					basedir);

		url = pb_url_parse(ctx, url_str);

		talloc_free(url_str);
		talloc_free(basedir);
		*is_complete = false;
	}

	return url;
}

char **user_event_parse_conf_filenames(
		struct discover_context *ctx, struct event *event)
{
	char *mac_addr, *ip_hex;
	const char *mac, *ip;
	char **filenames;
	int index, len;

	mac = event_get_param(event, "mac");
	if (mac)
		mac_addr = parse_mac_addr(ctx, mac);
	else
		mac_addr = NULL;

	ip = event_get_param(event, "ip");
	if (ip) {
		ip_hex = parse_ip_addr(ctx, ip);
		len = strlen(ip_hex);
	} else {
		ip_hex = NULL;
		len = 0;
	}

	if (!mac_addr && !ip_hex) {
		pb_log("%s: neither mac nor ip parameter found\n", __func__);
		return NULL;
	}

	/* Filenames as fallback IP's + mac + default */
	filenames = talloc_array(ctx, char *, len + 3);

	index = 0;
	if (mac_addr)
		filenames[index++] = talloc_strdup(filenames, mac_addr);

	while (len) {
		filenames[index++] = talloc_strdup(filenames, ip_hex);
		ip_hex[--len] = '\0';
	}

	filenames[index++] = talloc_strdup(filenames, "default");
	filenames[index++] = NULL;

	if (mac_addr)
		talloc_free(mac_addr);

	if (ip_hex)
		talloc_free(ip_hex);

	return filenames;
}

static int user_event_dhcp(struct user_event *uev, struct event *event)
{
	struct device_handler *handler = uev->handler;
	struct discover_device *dev;

	dev = discover_device_create(handler, event->device);

	device_handler_dhcp(handler, dev, event);

	return 0;
}

static int user_event_conf(struct user_event *uev, struct event *event)
{
	struct device_handler *handler = uev->handler;
	struct discover_device *dev;
	struct pb_url *url;
	const char *val;

	val = event_get_param(event, "url");
	if (!val)
		return 0;

	url = pb_url_parse(event, val);
	if (!url)
		return 0;

	dev = discover_device_create(handler, event->device);

	device_handler_conf(handler, dev, url);

	return 0;
}

static int user_event_add(struct user_event *uev, struct event *event)
{
	struct device_handler *handler = uev->handler;
	struct discover_context *ctx;
	struct discover_device *dev;

	dev = discover_device_create(handler, event->device);
	ctx = device_handler_discover_context_create(handler, dev);

	parse_user_event(ctx, event);

	device_handler_discover_context_commit(handler, ctx);

	talloc_free(ctx);

	return 0;
}

static int user_event_remove(struct user_event *uev, struct event *event)
{
	struct device_handler *handler = uev->handler;
	struct discover_device *dev;

	dev = device_lookup_by_id(handler, event->device);
	if (!dev)
		return 0;

	device_handler_remove(handler, dev);

	return 0;
}

static void user_event_handle_message(struct user_event *uev, char *buf,
	int len)
{
	int result;
	struct event *event;

	event = talloc(uev, struct event);
	event->type = EVENT_TYPE_USER;

	result = event_parse_ad_message(event, buf, len);

	if (result)
		return;

	user_event_print_event(event);

	switch (event->action) {
	case EVENT_ACTION_ADD:
		result = user_event_add(uev, event);
		break;
	case EVENT_ACTION_REMOVE:
		result = user_event_remove(uev, event);
		break;
	case EVENT_ACTION_CONF:
		result = user_event_conf(uev, event);
		break;
	case EVENT_ACTION_DHCP:
		result = user_event_dhcp(uev, event);
		break;
	default:
		break;
	}

	talloc_free(event);

	return;
}

static int user_event_process(void *arg)
{
	struct user_event *uev = arg;
	char buf[PBOOT_USER_EVENT_SIZE];
	int len;

	len = recvfrom(uev->socket, buf, sizeof(buf), 0, NULL, NULL);

	if (len < 0) {
		pb_log("%s: socket read failed: %s", __func__, strerror(errno));
		return 0;
	}

	if (len == 0) {
		pb_log("%s: empty", __func__);
		return 0;
	}

	pb_debug("%s: %u bytes\n", __func__, len);

	user_event_handle_message(uev, buf, len);

	return 0;
}

static int user_event_destructor(void *arg)
{
	struct user_event *uev = arg;

	pb_debug("%s\n", __func__);

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

	return 0;
}

struct user_event *user_event_init(struct waitset *waitset,
		struct device_handler *handler)
{
	struct sockaddr_un addr;
	struct user_event *uev;

	unlink(PBOOT_USER_EVENT_SOCKET);

	uev = talloc(NULL, struct user_event);

	uev->handler = handler;

	uev->socket = socket(AF_UNIX, SOCK_DGRAM, 0);
	if (uev->socket < 0) {
		pb_log("%s: Error creating event handler socket: %s\n",
			__func__, strerror(errno));
		goto out_err;
	}

	talloc_set_destructor(uev, user_event_destructor);

	memset(&addr, 0, sizeof(addr));
	addr.sun_family = AF_UNIX;
	strcpy(addr.sun_path, PBOOT_USER_EVENT_SOCKET);

	if (bind(uev->socket, (struct sockaddr *)&addr, sizeof(addr))) {
		pb_log("Error binding event handler socket: %s\n",
			strerror(errno));
	}

	waiter_register_io(waitset, uev->socket, WAIT_IN,
			user_event_process, uev);

	pb_debug("%s: waiting on %s\n", __func__, PBOOT_USER_EVENT_SOCKET);

	return uev;

out_err:
	talloc_free(uev);
	return NULL;
}

void user_event_destroy(struct user_event *uev)
{
	talloc_free(uev);
}
OpenPOWER on IntegriCloud