9 #include <sys/socket.h>
11 #include <asm/byteorder.h>
13 #include <talloc/talloc.h>
16 #include "discover-client.h"
17 #include "pb-protocol/pb-protocol.h"
19 struct discover_client {
21 struct discover_client_ops ops;
23 struct device **devices;
26 static int discover_client_destructor(void *arg)
28 struct discover_client *client = arg;
36 void discover_client_destroy(struct discover_client *client)
41 static struct device *find_device(struct discover_client *client,
46 for (i = 0; i < client->n_devices; i++) {
47 struct device *dev = client->devices[i];
48 if (!strcmp(dev->id, id))
55 static void device_add(struct discover_client *client, struct device *device)
58 client->devices = talloc_realloc(client, client->devices,
59 struct device *, client->n_devices);
61 client->devices[client->n_devices - 1] = device;
62 talloc_steal(client, device);
64 if (client->ops.device_add)
65 client->ops.device_add(device, client->ops.cb_arg);
68 static void boot_option_add(struct discover_client *client,
69 struct boot_option *opt)
73 dev = find_device(client, opt->device_id);
75 /* we require that devices are already present before any boot options
79 talloc_steal(dev, opt);
81 if (client->ops.boot_option_add)
82 client->ops.boot_option_add(dev, opt, client->ops.cb_arg);
85 static void device_remove(struct discover_client *client, const char *id)
87 struct device *device = NULL;
90 for (i = 0; i < client->n_devices; i++) {
91 if (!strcmp(client->devices[i]->id, id)) {
92 device = client->devices[i];
100 /* remove the device from the client's device array */
102 memmove(&client->devices[i], &client->devices[i+1],
103 (client->n_devices - i) * sizeof(client->devices[0]));
104 client->devices = talloc_realloc(client, client->devices,
105 struct device *, client->n_devices);
108 client->ops.device_remove(device, client->ops.cb_arg);
113 static void update_status(struct discover_client *client,
114 struct boot_status *status)
116 if (client->ops.update_status)
117 client->ops.update_status(status, client->ops.cb_arg);
121 static int discover_client_process(void *arg)
123 struct discover_client *client = arg;
124 struct pb_protocol_message *message;
125 struct boot_status *status;
126 struct boot_option *opt;
131 message = pb_protocol_read_message(client, client->fd);
136 switch (message->action) {
137 case PB_PROTOCOL_ACTION_DEVICE_ADD:
138 dev = talloc_zero(client, struct device);
139 list_init(&dev->boot_options);
141 rc = pb_protocol_deserialise_device(dev, message);
143 pb_log("%s: no device?\n", __func__);
147 device_add(client, dev);
149 case PB_PROTOCOL_ACTION_BOOT_OPTION_ADD:
150 opt = talloc_zero(client, struct boot_option);
152 rc = pb_protocol_deserialise_boot_option(opt, message);
154 pb_log("%s: no boot_option?\n", __func__);
158 boot_option_add(client, opt);
160 case PB_PROTOCOL_ACTION_DEVICE_REMOVE:
161 dev_id = pb_protocol_deserialise_string(client, message);
163 pb_log("%s: no device id?\n", __func__);
166 device_remove(client, dev_id);
168 case PB_PROTOCOL_ACTION_STATUS:
169 status = talloc_zero(client, struct boot_status);
171 rc = pb_protocol_deserialise_boot_status(status, message);
173 pb_log("%s: invalid status message?\n", __func__);
176 update_status(client, status);
179 pb_log("%s: unknown action %d\n", __func__, message->action);
186 struct discover_client* discover_client_init(struct waitset *waitset,
187 const struct discover_client_ops *ops, void *cb_arg)
189 struct discover_client *client;
190 struct sockaddr_un addr;
192 client = talloc(NULL, struct discover_client);
196 memcpy(&client->ops, ops, sizeof(client->ops));
197 client->ops.cb_arg = cb_arg;
199 client->fd = socket(AF_UNIX, SOCK_STREAM, 0);
200 if (client->fd < 0) {
201 pb_log("%s: socket: %s\n", __func__, strerror(errno));
205 talloc_set_destructor(client, discover_client_destructor);
207 client->n_devices = 0;
208 client->devices = NULL;
210 addr.sun_family = AF_UNIX;
211 strcpy(addr.sun_path, PB_SOCKET_PATH);
213 if (connect(client->fd, (struct sockaddr *)&addr, sizeof(addr))) {
214 pb_log("%s: connect: %s\n", __func__, strerror(errno));
218 waiter_register_io(waitset, client->fd, WAIT_IN,
219 discover_client_process, client);
228 /* accessors for discovered devices */
229 int discover_client_device_count(struct discover_client *client)
231 return client->n_devices;
234 struct device *discover_client_get_device(struct discover_client *client,
237 if (index < 0 || index >= client->n_devices)
240 return client->devices[index];
243 static void create_boot_command(struct boot_command *command,
244 const struct device *device __attribute__((unused)),
245 const struct boot_option *boot_option,
246 const struct pb_boot_data *data)
249 command->option_id = boot_option->id;
250 command->boot_image_file = data->image;
251 command->initrd_file = data->initrd;
252 command->dtb_file = data->dtb;
253 command->boot_args = data->args;
256 int discover_client_boot(struct discover_client *client,
257 const struct device *device,
258 const struct boot_option *boot_option,
259 const struct pb_boot_data *data)
261 struct pb_protocol_message *message;
262 struct boot_command boot_command;
265 create_boot_command(&boot_command, device, boot_option, data);
267 len = pb_protocol_boot_len(&boot_command);
269 message = pb_protocol_create_message(client,
270 PB_PROTOCOL_ACTION_BOOT, len);
275 pb_protocol_serialise_boot_command(&boot_command,
276 message->payload, len);
278 rc = pb_protocol_write_message(client->fd, message);
283 int discover_client_cancel_default(struct discover_client *client)
285 struct pb_protocol_message *message;
287 message = pb_protocol_create_message(client,
288 PB_PROTOCOL_ACTION_CANCEL_DEFAULT, 0);
293 return pb_protocol_write_message(client->fd, message);