summaryrefslogtreecommitdiffstats
path: root/discover/udev.c
blob: 6747e78a8064f7a04a5b377b3535a6a412658a71 (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

#define _GNU_SOURCE

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>

#include <talloc/talloc.h>

#include "udev.h"
#include "log.h"
#include "waiter.h"
#include "pb-discover.h"
#include "device-handler.h"

#define PBOOT_DEVICE_SOCKET "/tmp/petitboot.udev"

#define max(a, b) ((a) > (b) ? (a) : (b))

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

static void parse_event_params(struct udev_event *event, char *buf, int len)
{
	int param_len, name_len, value_len;
	struct param *param;
	char *sep;

	for (; len > 0; len -= param_len + 1, buf += param_len + 1) {

		/* find the length of the whole parameter */
		param_len = strnlen(buf, len);
		if (!param_len) {
			/* multiple NULs? skip over */
			param_len = 1;
			continue;
		}

		/* find the separator */
		sep = memchr(buf, '=', param_len);
		if (!sep)
			continue;

		name_len = sep - buf;
		value_len = param_len - name_len - 1;

		/* update the params array */
		event->params = talloc_realloc(event, event->params,
					struct param, ++event->n_params);
		param = &event->params[event->n_params - 1];

		param->name = talloc_strndup(event, buf, name_len);
		param->value = talloc_strndup(event, sep + 1, value_len);
	}
}

const char *udev_event_param(struct udev_event *event, const char *name)
{
	int i;

	for (i = 0; i < event->n_params; i++)
		if (!strcasecmp(event->params[i].name, name))
			return event->params[i].value;

	return NULL;
}

static void print_event(struct udev_event *event)
{
	const char *action, *params[] = {
		"DEVNAME", "ID_TYPE", "ID_BUS", "ID_FS_UUID", "ID_FS_LABEL",
		NULL,
	};
	int i;

	action = event->action == UDEV_ACTION_ADD ? "add" : "remove";

	pb_log("udev %s event:\n", action);
	printf("\tdevice: %s\n", event->device);

	for (i = 0; params[i]; i++)
		printf("\t%-12s => %s\n",
				params[i], udev_event_param(event, params[i]));

}

static void handle_udev_message(struct udev *udev, char *buf, int len)
{
	char *sep, *device;
	enum udev_action action;
	struct udev_event *event;
	int device_len;

	/* we should see an <action>@<device>\0 at the head of the buffer */
	sep = strchr(buf, '@');
	if (!sep)
		return;

	/* terminate the action string */
	*sep = '\0';
	len -= sep - buf + 1;

	if (!strcmp(buf, "add")) {
		action = UDEV_ACTION_ADD;

	} else if (!strcmp(buf, "remove")) {
		action = UDEV_ACTION_REMOVE;

	} else {
		return;
	}

	/* initialise the device string */
	device = sep + 1;
	device_len = strnlen(device, len);
	if (!device_len)
		return;

	/* now we have an action and a device, we can construct an event */
	event = talloc(udev, struct udev_event);
	event->action = action;
	event->device = talloc_strndup(event, device, device_len);
	event->n_params = 0;
	event->params = NULL;

	len -= device_len + 1;
	parse_event_params(event, device + device_len + 1, len);

	print_event(event);

	device_handler_event(udev->handler, event);

	talloc_free(event);

	return;
}

static int udev_process(void *arg)
{
	struct udev *udev = arg;
	char buf[4096];
	int len;

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

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

	if (len == 0)
		return 0;

	handle_udev_message(udev, buf, len);

	return 0;
}

static int udev_destructor(void *p)
{
	struct udev *udev = p;

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

	return 0;
}

struct udev *udev_init(struct device_handler *handler)
{
	struct sockaddr_un addr;
	struct udev *udev;

	unlink(PBOOT_DEVICE_SOCKET);

	udev = talloc(NULL, struct udev);

	udev->handler = handler;

	udev->socket = socket(PF_UNIX, SOCK_DGRAM, 0);
	if (udev->socket < 0) {
		pb_log("Error creating udev socket: %s\n", strerror(errno));
		goto out_err;
	}

	talloc_set_destructor(udev, udev_destructor);

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

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

	waiter_register(udev->socket, WAIT_IN, udev_process, udev);

	return udev;

out_err:
	talloc_free(udev);
	return NULL;
}

void udev_destroy(struct udev *udev)
{
	talloc_free(udev);
}
OpenPOWER on IntegriCloud