]> git.ozlabs.org Git - petitboot/blob - discover/device-handler.c
discover/event: Ensure event struct exists for async callers
[petitboot] / discover / device-handler.c
1 #include <assert.h>
2 #include <stdlib.h>
3 #include <stdbool.h>
4 #include <unistd.h>
5 #include <string.h>
6 #include <errno.h>
7 #include <mntent.h>
8 #include <locale.h>
9 #include <sys/stat.h>
10 #include <sys/wait.h>
11 #include <sys/mount.h>
12
13 #include <talloc/talloc.h>
14 #include <list/list.h>
15 #include <log/log.h>
16 #include <types/types.h>
17 #include <system/system.h>
18 #include <process/process.h>
19 #include <url/url.h>
20 #include <i18n/i18n.h>
21
22 #include <sys/types.h>
23 #include <sys/socket.h>
24 #include <netdb.h>
25 #include <arpa/inet.h>
26
27 #include "device-handler.h"
28 #include "discover-server.h"
29 #include "devmapper.h"
30 #include "user-event.h"
31 #include "platform.h"
32 #include "event.h"
33 #include "parser.h"
34 #include "resource.h"
35 #include "paths.h"
36 #include "sysinfo.h"
37 #include "boot.h"
38 #include "udev.h"
39 #include "network.h"
40 #include "ipmi.h"
41
42 enum default_priority {
43         DEFAULT_PRIORITY_REMOTE         = 1,
44         DEFAULT_PRIORITY_LOCAL_FIRST    = 2,
45         DEFAULT_PRIORITY_LOCAL_LAST     = 0xfe,
46         DEFAULT_PRIORITY_DISABLED       = 0xff,
47 };
48
49 struct device_handler {
50         struct discover_server  *server;
51         int                     dry_run;
52
53         struct pb_udev          *udev;
54         struct network          *network;
55         struct user_event       *user_event;
56
57         struct discover_device  **devices;
58         unsigned int            n_devices;
59
60         struct ramdisk_device   **ramdisks;
61         unsigned int            n_ramdisks;
62
63         struct waitset          *waitset;
64         struct waiter           *timeout_waiter;
65         bool                    autoboot_enabled;
66         unsigned int            sec_to_boot;
67
68         struct discover_boot_option *default_boot_option;
69         int                     default_boot_option_priority;
70
71         struct list             unresolved_boot_options;
72
73         struct boot_task        *pending_boot;
74         bool                    pending_boot_is_default;
75 };
76
77 static int mount_device(struct discover_device *dev);
78 static int umount_device(struct discover_device *dev);
79
80 static int device_handler_init_sources(struct device_handler *handler);
81 static void device_handler_reinit_sources(struct device_handler *handler);
82
83 static void device_handler_update_lang(const char *lang);
84
85 void discover_context_add_boot_option(struct discover_context *ctx,
86                 struct discover_boot_option *boot_option)
87 {
88         boot_option->source = ctx->parser;
89         list_add_tail(&ctx->boot_options, &boot_option->list);
90         talloc_steal(ctx, boot_option);
91 }
92
93 /**
94  * device_handler_get_device_count - Get the count of current handler devices.
95  */
96
97 int device_handler_get_device_count(const struct device_handler *handler)
98 {
99         return handler->n_devices;
100 }
101
102 /**
103  * device_handler_get_device - Get a handler device by index.
104  */
105
106 const struct discover_device *device_handler_get_device(
107         const struct device_handler *handler, unsigned int index)
108 {
109         if (index >= handler->n_devices) {
110                 assert(0 && "bad index");
111                 return NULL;
112         }
113
114         return handler->devices[index];
115 }
116
117 struct discover_boot_option *discover_boot_option_create(
118                 struct discover_context *ctx,
119                 struct discover_device *device)
120 {
121         struct discover_boot_option *opt;
122
123         opt = talloc_zero(ctx, struct discover_boot_option);
124         opt->option = talloc_zero(opt, struct boot_option);
125         opt->device = device;
126
127         return opt;
128 }
129
130 static int device_match_uuid(struct discover_device *dev, const char *uuid)
131 {
132         return dev->uuid && !strcmp(dev->uuid, uuid);
133 }
134
135 static int device_match_label(struct discover_device *dev, const char *label)
136 {
137         return dev->label && !strcmp(dev->label, label);
138 }
139
140 static int device_match_id(struct discover_device *dev, const char *id)
141 {
142         return !strcmp(dev->device->id, id);
143 }
144
145 static int device_match_serial(struct discover_device *dev, const char *serial)
146 {
147         const char *val = discover_device_get_param(dev, "ID_SERIAL");
148         return val && !strcmp(val, serial);
149 }
150
151 static struct discover_device *device_lookup(
152                 struct device_handler *device_handler,
153                 int (match_fn)(struct discover_device *, const char *),
154                 const char *str)
155 {
156         struct discover_device *dev;
157         unsigned int i;
158
159         if (!str)
160                 return NULL;
161
162         for (i = 0; i < device_handler->n_devices; i++) {
163                 dev = device_handler->devices[i];
164
165                 if (match_fn(dev, str))
166                         return dev;
167         }
168
169         return NULL;
170 }
171
172 struct discover_device *device_lookup_by_name(struct device_handler *handler,
173                 const char *name)
174 {
175         if (!strncmp(name, "/dev/", strlen("/dev/")))
176                 name += strlen("/dev/");
177
178         return device_lookup_by_id(handler, name);
179 }
180
181 struct discover_device *device_lookup_by_uuid(
182                 struct device_handler *device_handler,
183                 const char *uuid)
184 {
185         return device_lookup(device_handler, device_match_uuid, uuid);
186 }
187
188 struct discover_device *device_lookup_by_label(
189                 struct device_handler *device_handler,
190                 const char *label)
191 {
192         return device_lookup(device_handler, device_match_label, label);
193 }
194
195 struct discover_device *device_lookup_by_id(
196                 struct device_handler *device_handler,
197                 const char *id)
198 {
199         return device_lookup(device_handler, device_match_id, id);
200 }
201
202 struct discover_device *device_lookup_by_serial(
203                 struct device_handler *device_handler,
204                 const char *serial)
205 {
206         return device_lookup(device_handler, device_match_serial, serial);
207 }
208
209 void device_handler_destroy(struct device_handler *handler)
210 {
211         talloc_free(handler);
212 }
213
214 static int destroy_device(void *arg)
215 {
216         struct discover_device *dev = arg;
217
218         umount_device(dev);
219
220         return 0;
221 }
222
223 struct discover_device *discover_device_create(struct device_handler *handler,
224                 const char *id)
225 {
226         struct discover_device *dev;
227
228         dev = device_lookup_by_id(handler, id);
229         if (dev)
230                 return dev;
231
232         dev = talloc_zero(handler, struct discover_device);
233         dev->device = talloc_zero(dev, struct device);
234         dev->device->id = talloc_strdup(dev->device, id);
235         list_init(&dev->params);
236         list_init(&dev->boot_options);
237
238         talloc_set_destructor(dev, destroy_device);
239
240         return dev;
241 }
242
243 struct discover_device_param {
244         char                    *name;
245         char                    *value;
246         struct list_item        list;
247 };
248
249 void discover_device_set_param(struct discover_device *device,
250                 const char *name, const char *value)
251 {
252         struct discover_device_param *param;
253         bool found = false;
254
255         list_for_each_entry(&device->params, param, list) {
256                 if (!strcmp(param->name, name)) {
257                         found = true;
258                         break;
259                 }
260         }
261
262         if (!found) {
263                 if (!value)
264                         return;
265                 param = talloc(device, struct discover_device_param);
266                 param->name = talloc_strdup(param, name);
267                 list_add(&device->params, &param->list);
268         } else {
269                 if (!value) {
270                         list_remove(&param->list);
271                         talloc_free(param);
272                         return;
273                 }
274                 talloc_free(param->value);
275         }
276
277         param->value = talloc_strdup(param, value);
278 }
279
280 const char *discover_device_get_param(struct discover_device *device,
281                 const char *name)
282 {
283         struct discover_device_param *param;
284
285         list_for_each_entry(&device->params, param, list) {
286                 if (!strcmp(param->name, name))
287                         return param->value;
288         }
289         return NULL;
290 }
291
292 struct device_handler *device_handler_init(struct discover_server *server,
293                 struct waitset *waitset, int dry_run)
294 {
295         struct device_handler *handler;
296         int rc;
297
298         handler = talloc_zero(NULL, struct device_handler);
299         handler->server = server;
300         handler->waitset = waitset;
301         handler->dry_run = dry_run;
302         handler->autoboot_enabled = config_get()->autoboot_enabled;
303
304         list_init(&handler->unresolved_boot_options);
305
306         /* set up our mount point base */
307         pb_mkdir_recursive(mount_base());
308
309         parser_init();
310
311         if (config_get()->safe_mode)
312                 return handler;
313
314         rc = device_handler_init_sources(handler);
315         if (rc) {
316                 talloc_free(handler);
317                 return NULL;
318         }
319
320         return handler;
321 }
322
323 void device_handler_reinit(struct device_handler *handler)
324 {
325         struct discover_boot_option *opt, *tmp;
326         struct ramdisk_device *ramdisk;
327         unsigned int i;
328
329         device_handler_cancel_default(handler);
330
331         /* free unresolved boot options */
332         list_for_each_entry_safe(&handler->unresolved_boot_options,
333                         opt, tmp, list)
334                 talloc_free(opt);
335         list_init(&handler->unresolved_boot_options);
336
337         /* drop all devices */
338         for (i = 0; i < handler->n_devices; i++) {
339                 discover_server_notify_device_remove(handler->server,
340                                 handler->devices[i]->device);
341                 ramdisk = handler->devices[i]->ramdisk;
342                 talloc_free(handler->devices[i]);
343                 talloc_free(ramdisk);
344         }
345
346         talloc_free(handler->devices);
347         handler->devices = NULL;
348         handler->n_devices = 0;
349         talloc_free(handler->ramdisks);
350         handler->ramdisks = NULL;
351         handler->n_ramdisks = 0;
352
353         device_handler_reinit_sources(handler);
354 }
355
356 void device_handler_remove(struct device_handler *handler,
357                 struct discover_device *device)
358 {
359         struct discover_boot_option *opt, *tmp;
360         unsigned int i;
361
362         list_for_each_entry_safe(&device->boot_options, opt, tmp, list) {
363                 if (opt == handler->default_boot_option) {
364                         pb_log("Default option %s cancelled since device removed",
365                                         opt->option->name);
366                         device_handler_cancel_default(handler);
367                         break;
368                 }
369         }
370
371         for (i = 0; i < handler->n_devices; i++)
372                 if (handler->devices[i] == device)
373                         break;
374
375         if (i == handler->n_devices) {
376                 talloc_free(device);
377                 return;
378         }
379
380         /* Free any unresolved options, as they're currently allocated
381          * against the handler */
382         list_for_each_entry_safe(&handler->unresolved_boot_options,
383                         opt, tmp, list) {
384                 if (opt->device != device)
385                         continue;
386                 list_remove(&opt->list);
387                 talloc_free(opt);
388         }
389
390         /* if this is a network device, we have to unregister it from the
391          * network code */
392         if (device->device->type == DEVICE_TYPE_NETWORK)
393                 network_unregister_device(handler->network, device);
394
395         handler->n_devices--;
396         memmove(&handler->devices[i], &handler->devices[i + 1],
397                 (handler->n_devices - i) * sizeof(handler->devices[0]));
398         handler->devices = talloc_realloc(handler, handler->devices,
399                 struct discover_device *, handler->n_devices);
400
401         if (device->notified)
402                 discover_server_notify_device_remove(handler->server,
403                                                         device->device);
404
405         talloc_free(device);
406 }
407
408 void device_handler_boot_status(void *arg, struct boot_status *status)
409 {
410         struct device_handler *handler = arg;
411
412         discover_server_notify_boot_status(handler->server, status);
413 }
414
415 static void countdown_status(struct device_handler *handler,
416                 struct discover_boot_option *opt, unsigned int sec)
417 {
418         struct boot_status status;
419
420         status.type = BOOT_STATUS_INFO;
421         status.progress = -1;
422         status.detail = NULL;
423         status.message = talloc_asprintf(handler,
424                         _("Booting in %d sec: %s"), sec, opt->option->name);
425
426         discover_server_notify_boot_status(handler->server, &status);
427
428         talloc_free(status.message);
429 }
430
431 static int default_timeout(void *arg)
432 {
433         struct device_handler *handler = arg;
434         struct discover_boot_option *opt;
435
436         if (!handler->default_boot_option)
437                 return 0;
438
439         if (handler->pending_boot)
440                 return 0;
441
442         opt = handler->default_boot_option;
443
444         if (handler->sec_to_boot) {
445                 countdown_status(handler, opt, handler->sec_to_boot);
446                 handler->sec_to_boot--;
447                 handler->timeout_waiter = waiter_register_timeout(
448                                                 handler->waitset, 1000,
449                                                 default_timeout, handler);
450                 return 0;
451         }
452
453         handler->timeout_waiter = NULL;
454
455         pb_log("Timeout expired, booting default option %s\n", opt->option->id);
456
457         platform_pre_boot();
458
459         handler->pending_boot = boot(handler, handler->default_boot_option,
460                         NULL, handler->dry_run, device_handler_boot_status,
461                         handler);
462         handler->pending_boot_is_default = true;
463         return 0;
464 }
465
466 struct {
467         enum ipmi_bootdev       ipmi_type;
468         enum device_type        device_type;
469 } device_type_map[] = {
470         { IPMI_BOOTDEV_NETWORK, DEVICE_TYPE_NETWORK },
471         { IPMI_BOOTDEV_DISK, DEVICE_TYPE_DISK },
472         { IPMI_BOOTDEV_DISK, DEVICE_TYPE_USB },
473         { IPMI_BOOTDEV_CDROM, DEVICE_TYPE_OPTICAL },
474 };
475
476 static bool ipmi_device_type_matches(enum ipmi_bootdev ipmi_type,
477                 enum device_type device_type)
478 {
479         unsigned int i;
480
481         for (i = 0; i < ARRAY_SIZE(device_type_map); i++) {
482                 if (device_type_map[i].device_type == device_type)
483                         return device_type_map[i].ipmi_type == ipmi_type;
484         }
485
486         return false;
487 }
488
489 static int autoboot_option_priority(const struct config *config,
490                                 struct discover_boot_option *opt)
491 {
492         enum device_type type = opt->device->device->type;
493         const char *uuid = opt->device->uuid;
494         struct autoboot_option *auto_opt;
495         unsigned int i;
496
497         for (i = 0; i < config->n_autoboot_opts; i++) {
498                 auto_opt = &config->autoboot_opts[i];
499                 if (auto_opt->boot_type == BOOT_DEVICE_UUID)
500                         if (!strcmp(auto_opt->uuid, uuid))
501                                 return DEFAULT_PRIORITY_LOCAL_FIRST + i;
502
503                 if (auto_opt->boot_type == BOOT_DEVICE_TYPE)
504                         if (auto_opt->type == type ||
505                             auto_opt->type == DEVICE_TYPE_ANY)
506                                 return DEFAULT_PRIORITY_LOCAL_FIRST + i;
507         }
508
509         return -1;
510 }
511
512 /*
513  * We have different priorities to resolve conflicts between boot options that
514  * report to be the default for their device. This function assigns a priority
515  * for these options.
516  */
517 static enum default_priority default_option_priority(
518                 struct discover_boot_option *opt)
519 {
520         const struct config *config;
521
522         config = config_get();
523
524         /* We give highest priority to IPMI-configured boot options. If
525          * we have an IPMI bootdev configuration set, then we don't allow
526          * any other defaults */
527         if (config->ipmi_bootdev) {
528                 bool ipmi_match = ipmi_device_type_matches(config->ipmi_bootdev,
529                                 opt->device->device->type);
530                 if (ipmi_match)
531                         return DEFAULT_PRIORITY_REMOTE;
532
533                 pb_debug("handler: disabled default priority due to "
534                                 "non-matching IPMI type %x\n",
535                                 config->ipmi_bootdev);
536                 return DEFAULT_PRIORITY_DISABLED;
537         }
538
539         /* Next, try to match the option against the user-defined autoboot
540          * options, either by device UUID or type. */
541         if (config->n_autoboot_opts) {
542                 int boot_match = autoboot_option_priority(config, opt);
543                 if (boot_match > 0)
544                         return boot_match;
545         }
546
547         /* If the option didn't match any entry in the array, it is disabled */
548         pb_debug("handler: disabled default priority due to "
549                         "non-matching UUID or type\n");
550         return DEFAULT_PRIORITY_DISABLED;
551 }
552
553 static void set_default(struct device_handler *handler,
554                 struct discover_boot_option *opt)
555 {
556         enum default_priority cur_prio, new_prio;
557
558         if (!handler->autoboot_enabled)
559                 return;
560
561         pb_debug("handler: new default option: %s\n", opt->option->id);
562
563         new_prio = default_option_priority(opt);
564
565         /* Anything outside our range prevents a default boot */
566         if (new_prio >= DEFAULT_PRIORITY_DISABLED)
567                 return;
568
569         pb_debug("handler: calculated priority %d\n", new_prio);
570
571         /* Resolve any conflicts: if we have a new default option, it only
572          * replaces the current if it has a higher priority. */
573         if (handler->default_boot_option) {
574
575                 cur_prio = handler->default_boot_option_priority;
576
577                 if (new_prio < cur_prio) {
578                         pb_log("handler: new prio %d beats "
579                                         "old prio %d for %s\n",
580                                         new_prio, cur_prio,
581                                         handler->default_boot_option
582                                                 ->option->id);
583                         handler->default_boot_option = opt;
584                         handler->default_boot_option_priority = new_prio;
585                         /* extend the timeout a little, so the user sees some
586                          * indication of the change */
587                         handler->sec_to_boot += 2;
588                 }
589
590                 return;
591         }
592
593         handler->sec_to_boot = config_get()->autoboot_timeout_sec;
594         handler->default_boot_option = opt;
595         handler->default_boot_option_priority = new_prio;
596
597         pb_log("handler: boot option %s set as default, timeout %u sec.\n",
598                opt->option->id, handler->sec_to_boot);
599
600         default_timeout(handler);
601 }
602
603 static bool resource_is_resolved(struct resource *res)
604 {
605         return !res || res->resolved;
606 }
607
608 /* We only use this in an assert, which will disappear if we're compiling
609  * with NDEBUG, so we need the 'used' attribute for these builds */
610 static bool __attribute__((used)) boot_option_is_resolved(
611                 struct discover_boot_option *opt)
612 {
613         return resource_is_resolved(opt->boot_image) &&
614                 resource_is_resolved(opt->initrd) &&
615                 resource_is_resolved(opt->dtb) &&
616                 resource_is_resolved(opt->args_sig_file) &&
617                 resource_is_resolved(opt->icon);
618 }
619
620 static bool resource_resolve(struct resource *res, const char *name,
621                 struct discover_boot_option *opt,
622                 struct device_handler *handler)
623 {
624         struct parser *parser = opt->source;
625
626         if (resource_is_resolved(res))
627                 return true;
628
629         pb_debug("Attempting to resolve resource %s->%s with parser %s\n",
630                         opt->option->id, name, parser->name);
631         parser->resolve_resource(handler, res);
632
633         return res->resolved;
634 }
635
636 static bool boot_option_resolve(struct discover_boot_option *opt,
637                 struct device_handler *handler)
638 {
639         return resource_resolve(opt->boot_image, "boot_image", opt, handler) &&
640                 resource_resolve(opt->initrd, "initrd", opt, handler) &&
641                 resource_resolve(opt->dtb, "dtb", opt, handler) &&
642                 resource_resolve(opt->args_sig_file, "args_sig_file", opt,
643                         handler) &&
644                 resource_resolve(opt->icon, "icon", opt, handler);
645 }
646
647 static void boot_option_finalise(struct device_handler *handler,
648                 struct discover_boot_option *opt)
649 {
650         assert(boot_option_is_resolved(opt));
651
652         /* check that the parsers haven't set any of the final data */
653         assert(!opt->option->boot_image_file);
654         assert(!opt->option->initrd_file);
655         assert(!opt->option->dtb_file);
656         assert(!opt->option->icon_file);
657         assert(!opt->option->device_id);
658         assert(!opt->option->args_sig_file);
659
660         if (opt->boot_image)
661                 opt->option->boot_image_file = opt->boot_image->url->full;
662         if (opt->initrd)
663                 opt->option->initrd_file = opt->initrd->url->full;
664         if (opt->dtb)
665                 opt->option->dtb_file = opt->dtb->url->full;
666         if (opt->icon)
667                 opt->option->icon_file = opt->icon->url->full;
668         if (opt->args_sig_file)
669                 opt->option->args_sig_file = opt->args_sig_file->url->full;
670
671         opt->option->device_id = opt->device->device->id;
672
673         if (opt->option->is_default)
674                 set_default(handler, opt);
675 }
676
677 static void notify_boot_option(struct device_handler *handler,
678                 struct discover_boot_option *opt)
679 {
680         struct discover_device *dev = opt->device;
681
682         if (!dev->notified)
683                 discover_server_notify_device_add(handler->server,
684                                                   opt->device->device);
685         dev->notified = true;
686         discover_server_notify_boot_option_add(handler->server, opt->option);
687 }
688
689 static void process_boot_option_queue(struct device_handler *handler)
690 {
691         struct discover_boot_option *opt, *tmp;
692
693         list_for_each_entry_safe(&handler->unresolved_boot_options,
694                         opt, tmp, list) {
695
696                 pb_debug("queue: attempting resolution for %s\n",
697                                 opt->option->id);
698
699                 if (!boot_option_resolve(opt, handler))
700                         continue;
701
702                 pb_debug("\tresolved!\n");
703
704                 list_remove(&opt->list);
705                 list_add_tail(&opt->device->boot_options, &opt->list);
706                 talloc_steal(opt->device, opt);
707                 boot_option_finalise(handler, opt);
708                 notify_boot_option(handler, opt);
709         }
710 }
711
712 struct discover_context *device_handler_discover_context_create(
713                 struct device_handler *handler,
714                 struct discover_device *device)
715 {
716         struct discover_context *ctx;
717
718         ctx = talloc_zero(handler, struct discover_context);
719         ctx->device = device;
720         ctx->network = handler->network;
721         list_init(&ctx->boot_options);
722
723         return ctx;
724 }
725
726 void device_handler_add_device(struct device_handler *handler,
727                 struct discover_device *device)
728 {
729         handler->n_devices++;
730         handler->devices = talloc_realloc(handler, handler->devices,
731                                 struct discover_device *, handler->n_devices);
732         handler->devices[handler->n_devices - 1] = device;
733
734         if (device->device->type == DEVICE_TYPE_NETWORK)
735                 network_register_device(handler->network, device);
736 }
737
738 void device_handler_add_ramdisk(struct device_handler *handler,
739                 const char *path)
740 {
741         struct ramdisk_device *dev;
742         unsigned int i;
743
744         if (!path)
745                 return;
746
747         for (i = 0; i < handler->n_ramdisks; i++)
748                 if (!strcmp(handler->ramdisks[i]->path, path))
749                         return;
750
751         dev = talloc_zero(handler, struct ramdisk_device);
752         if (!dev) {
753                 pb_log("Failed to allocate memory to track %s\n", path);
754                 return;
755         }
756
757         dev->path = talloc_strdup(handler, path);
758
759         handler->ramdisks = talloc_realloc(handler, handler->ramdisks,
760                                 struct ramdisk_device *,
761                                 handler->n_ramdisks + 1);
762         if (!handler->ramdisks) {
763                 pb_log("Failed to reallocate memory"
764                        "- ramdisk tracking inconsistent!\n");
765                 return;
766         }
767
768         handler->ramdisks[i] = dev;
769         i = handler->n_ramdisks++;
770 }
771
772 struct ramdisk_device *device_handler_get_ramdisk(
773                 struct device_handler *handler)
774 {
775         unsigned int i;
776         char *name;
777         dev_t id;
778
779         /* Check if free ramdisk exists */
780         for (i = 0; i < handler->n_ramdisks; i++)
781                 if (!handler->ramdisks[i]->snapshot &&
782                     !handler->ramdisks[i]->origin &&
783                     !handler->ramdisks[i]->base)
784                         return handler->ramdisks[i];
785
786         /* Otherwise create a new one */
787         name = talloc_asprintf(handler, "/dev/ram%d",
788                         handler->n_ramdisks);
789         if (!name) {
790                 pb_debug("Failed to allocate memory to name /dev/ram%d",
791                         handler->n_ramdisks);
792                 return NULL;
793         }
794
795         id = makedev(1, handler->n_ramdisks);
796         if (mknod(name, S_IFBLK, id)) {
797                 if (errno == EEXIST) {
798                         /* We haven't yet received updates for existing
799                          * ramdisks - add and use this one */
800                         pb_debug("Using untracked ramdisk %s\n", name);
801                 } else {
802                         pb_log("Failed to create new ramdisk %s: %s\n",
803                                name, strerror(errno));
804                         return NULL;
805                 }
806         }
807         device_handler_add_ramdisk(handler, name);
808         talloc_free(name);
809
810         return handler->ramdisks[i];
811 }
812
813 void device_handler_release_ramdisk(struct discover_device *device)
814 {
815         struct ramdisk_device *ramdisk = device->ramdisk;
816
817         talloc_free(ramdisk->snapshot);
818         talloc_free(ramdisk->origin);
819         talloc_free(ramdisk->base);
820
821         ramdisk->snapshot = ramdisk->origin = ramdisk->base = NULL;
822         ramdisk->sectors = 0;
823
824         device->ramdisk = NULL;
825 }
826
827 /* Start discovery on a hotplugged device. The device will be in our devices
828  * array, but has only just been initialised by the hotplug source.
829  */
830 int device_handler_discover(struct device_handler *handler,
831                 struct discover_device *dev)
832 {
833         struct discover_context *ctx;
834         struct boot_status *status;
835         int rc;
836
837         status = talloc_zero(handler, struct boot_status);
838         status->type = BOOT_STATUS_INFO;
839         /*
840          * TRANSLATORS: this string will be passed the type and identifier
841          * of the device. For example, the first parameter could be "Disk",
842          * (which will be translated accordingly) and the second a Linux device
843          * identifier like 'sda1' (which will not be translated)
844          */
845         status->message = talloc_asprintf(status, _("Processing %s device %s"),
846                                 device_type_display_name(dev->device->type),
847                                 dev->device->id);
848         device_handler_boot_status(handler, status);
849
850         process_boot_option_queue(handler);
851
852         /* create our context */
853         ctx = device_handler_discover_context_create(handler, dev);
854
855         rc = mount_device(dev);
856         if (rc)
857                 goto out;
858
859         /* add this device to our system info */
860         system_info_register_blockdev(dev->device->id, dev->uuid,
861                         dev->mount_path);
862
863         /* run the parsers. This will populate the ctx's boot_option list. */
864         iterate_parsers(ctx);
865
866         /* add discovered stuff to the handler */
867         device_handler_discover_context_commit(handler, ctx);
868
869 out:
870         /*
871          * TRANSLATORS: the format specifier in this string is a Linux
872          * device identifier, like 'sda1'
873          */
874         status->message = talloc_asprintf(status,_("Processing %s complete"),
875                                 dev->device->id);
876         device_handler_boot_status(handler, status);
877
878         talloc_free(status);
879         talloc_unlink(handler, ctx);
880
881         return 0;
882 }
883
884 /* Incoming dhcp event */
885 int device_handler_dhcp(struct device_handler *handler,
886                 struct discover_device *dev, struct event *event)
887 {
888         struct discover_context *ctx;
889         struct boot_status *status;
890
891         status = talloc_zero(handler, struct boot_status);
892         status->type = BOOT_STATUS_INFO;
893         /*
894          * TRANSLATORS: this format specifier will be the name of a network
895          * device, like 'eth0'.
896          */
897         status->message = talloc_asprintf(status, _("Processing dhcp event on %s"),
898                                 dev->device->id);
899         device_handler_boot_status(handler, status);
900
901         /* create our context */
902         ctx = device_handler_discover_context_create(handler, dev);
903         talloc_steal(ctx, event);
904         ctx->event = event;
905
906         iterate_parsers(ctx);
907
908         device_handler_discover_context_commit(handler, ctx);
909
910         /*
911          * TRANSLATORS: this format specifier will be the name of a network
912          * device, like 'eth0'.
913          */
914         status->message = talloc_asprintf(status,_("Processing %s complete"),
915                                 dev->device->id);
916         device_handler_boot_status(handler, status);
917
918         talloc_free(status);
919         talloc_unlink(handler, ctx);
920
921         return 0;
922 }
923
924 /* incoming conf event */
925 int device_handler_conf(struct device_handler *handler,
926                 struct discover_device *dev, struct pb_url *url)
927 {
928         struct discover_context *ctx;
929         struct boot_status *status;
930
931         status = talloc_zero(handler, struct boot_status);
932         status->type = BOOT_STATUS_INFO;
933         status->message = talloc_asprintf(status, _("Processing user config"));
934         device_handler_boot_status(handler, status);
935
936         /* create our context */
937         ctx = device_handler_discover_context_create(handler, dev);
938         ctx->conf_url = url;
939
940         iterate_parsers(ctx);
941
942         device_handler_discover_context_commit(handler, ctx);
943
944         status->message = talloc_asprintf(status,
945                                 _("Processing user config complete"));
946         device_handler_boot_status(handler, status);
947
948         talloc_free(status);
949         talloc_unlink(handler, ctx);
950
951         return 0;
952 }
953
954 static struct discover_boot_option *find_boot_option_by_id(
955                 struct device_handler *handler, const char *id)
956 {
957         unsigned int i;
958
959         for (i = 0; i < handler->n_devices; i++) {
960                 struct discover_device *dev = handler->devices[i];
961                 struct discover_boot_option *opt;
962
963                 list_for_each_entry(&dev->boot_options, opt, list)
964                         if (!strcmp(opt->option->id, id))
965                                 return opt;
966         }
967
968         return NULL;
969 }
970
971 void device_handler_boot(struct device_handler *handler,
972                 struct boot_command *cmd)
973 {
974         struct discover_boot_option *opt = NULL;
975
976         if (cmd->option_id && strlen(cmd->option_id))
977                 opt = find_boot_option_by_id(handler, cmd->option_id);
978
979         if (handler->pending_boot)
980                 boot_cancel(handler->pending_boot);
981
982         platform_pre_boot();
983
984         handler->pending_boot = boot(handler, opt, cmd, handler->dry_run,
985                         device_handler_boot_status, handler);
986         handler->pending_boot_is_default = false;
987 }
988
989 void device_handler_cancel_default(struct device_handler *handler)
990 {
991         struct boot_status status;
992
993         if (handler->timeout_waiter)
994                 waiter_remove(handler->timeout_waiter);
995
996         handler->timeout_waiter = NULL;
997         handler->autoboot_enabled = false;
998
999         /* we only send status if we had a default boot option queued */
1000         if (!handler->default_boot_option)
1001                 return;
1002
1003         pb_log("Cancelling default boot option\n");
1004
1005         if (handler->pending_boot && handler->pending_boot_is_default) {
1006                 boot_cancel(handler->pending_boot);
1007                 handler->pending_boot = NULL;
1008                 handler->pending_boot_is_default = false;
1009         }
1010
1011         handler->default_boot_option = NULL;
1012
1013         status.type = BOOT_STATUS_INFO;
1014         status.progress = -1;
1015         status.detail = NULL;
1016         status.message = _("Default boot cancelled");
1017
1018         discover_server_notify_boot_status(handler->server, &status);
1019 }
1020
1021 void device_handler_update_config(struct device_handler *handler,
1022                 struct config *config)
1023 {
1024         int rc;
1025
1026         rc = config_set(config);
1027         if (rc)
1028                 return;
1029
1030         discover_server_notify_config(handler->server, config);
1031         device_handler_update_lang(config->lang);
1032         device_handler_reinit(handler);
1033 }
1034
1035 static char *device_from_addr(void *ctx, struct pb_url *url)
1036 {
1037         char *ipaddr, *buf, *tok, *dev = NULL;
1038         const char *delim = " ";
1039         struct sockaddr_in *ip;
1040         struct sockaddr_in si;
1041         struct addrinfo *res;
1042         struct process *p;
1043         int rc;
1044
1045         /* Note: IPv4 only */
1046         rc = inet_pton(AF_INET, url->host, &(si.sin_addr));
1047         if (rc > 0) {
1048                 ipaddr = url->host;
1049         } else {
1050                 /* need to turn hostname into a valid IP */
1051                 rc = getaddrinfo(url->host, NULL, NULL, &res);
1052                 if (rc) {
1053                         pb_debug("%s: Invalid URL\n",__func__);
1054                         return NULL;
1055                 }
1056                 ipaddr = talloc_array(ctx,char,INET_ADDRSTRLEN);
1057                 ip = (struct sockaddr_in *) res->ai_addr;
1058                 inet_ntop(AF_INET, &(ip->sin_addr), ipaddr, INET_ADDRSTRLEN);
1059                 freeaddrinfo(res);
1060         }
1061
1062         const char *argv[] = {
1063                 pb_system_apps.ip,
1064                 "route", "show", "to", "match",
1065                 ipaddr,
1066                 NULL
1067         };
1068
1069         p = process_create(ctx);
1070
1071         p->path = pb_system_apps.ip;
1072         p->argv = argv;
1073         p->keep_stdout = true;
1074
1075         rc = process_run_sync(p);
1076
1077         if (rc || p->exit_status) {
1078                 /* ip has complained for some reason; most likely
1079                  * there is no route to the host - bail out */
1080                 pb_debug("%s: `ip` returns non-zero exit status\n", __func__);
1081                 pb_debug("ip buf: %s\n", p->stdout_buf);
1082                 process_release(p);
1083                 return NULL;
1084         }
1085
1086         buf = p->stdout_buf;
1087         /* If a route is found, ip-route output will be of the form
1088          * "... dev DEVNAME ... " */
1089         tok = strtok(buf, delim);
1090         while (tok) {
1091                 if (!strcmp(tok, "dev")) {
1092                         tok = strtok(NULL, delim);
1093                         dev = talloc_strdup(ctx, tok);
1094                         break;
1095                 }
1096                 tok = strtok(NULL, delim);
1097         }
1098
1099         process_release(p);
1100         if (dev)
1101                 pb_debug("%s: Found interface '%s'\n", __func__,dev);
1102         return dev;
1103 }
1104
1105 void device_handler_process_url(struct device_handler *handler,
1106                 const char *url, const char *mac, const char *ip)
1107 {
1108         struct discover_context *ctx;
1109         struct discover_device *dev;
1110         struct boot_status *status;
1111         struct pb_url *pb_url;
1112         struct event *event;
1113         struct param *param;
1114
1115         status = talloc(handler, struct boot_status);
1116
1117         status->type = BOOT_STATUS_ERROR;
1118         status->progress = 0;
1119         status->detail = talloc_asprintf(status,
1120                         _("Received config URL %s"), url);
1121
1122         if (!handler->network) {
1123                 status->message = talloc_asprintf(handler,
1124                                         _("No network configured"));
1125                 goto msg;
1126         }
1127
1128         event = talloc(handler, struct event);
1129         event->type = EVENT_TYPE_USER;
1130         event->action = EVENT_ACTION_CONF;
1131
1132         if (url[strlen(url) - 1] == '/') {
1133                 event->params = talloc_array(event, struct param, 3);
1134                 param = &event->params[0];
1135                 param->name = talloc_strdup(event, "pxepathprefix");
1136                 param->value = talloc_strdup(event, url);
1137                 param = &event->params[1];
1138                 param->name = talloc_strdup(event, "mac");
1139                 param->value = talloc_strdup(event, mac);
1140                 param = &event->params[2];
1141                 param->name = talloc_strdup(event, "ip");
1142                 param->value = talloc_strdup(event, ip);
1143                 event->n_params = 3;
1144         } else {
1145                 event->params = talloc_array(event, struct param, 1);
1146                 param = &event->params[0];
1147                 param->name = talloc_strdup(event, "pxeconffile");
1148                 param->value = talloc_strdup(event, url);
1149                 event->n_params = 1;
1150         }
1151
1152         pb_url = pb_url_parse(event, event->params->value);
1153         if (!pb_url || (pb_url->scheme != pb_url_file && !pb_url->host)) {
1154                 status->message = talloc_asprintf(handler,
1155                                         _("Invalid config URL!"));
1156                 goto msg;
1157         }
1158
1159         if (pb_url->scheme == pb_url_file)
1160                 event->device = talloc_asprintf(event, "local");
1161         else
1162                 event->device = device_from_addr(event, pb_url);
1163
1164         if (!event->device) {
1165                 status->message = talloc_asprintf(status,
1166                                         _("Unable to route to host %s"),
1167                                         pb_url->host);
1168                 goto msg;
1169         }
1170
1171         dev = discover_device_create(handler, event->device);
1172         if (pb_url->scheme == pb_url_file)
1173                 dev->device->type = DEVICE_TYPE_ANY;
1174         ctx = device_handler_discover_context_create(handler, dev);
1175         talloc_steal(ctx, event);
1176         ctx->event = event;
1177
1178         iterate_parsers(ctx);
1179
1180         device_handler_discover_context_commit(handler, ctx);
1181
1182         talloc_unlink(handler, ctx);
1183
1184         status->type = BOOT_STATUS_INFO;
1185         status->message = talloc_asprintf(status, _("Config file %s parsed"),
1186                                         pb_url->file);
1187 msg:
1188         device_handler_boot_status(handler, status);
1189         talloc_free(status);
1190 }
1191
1192 #ifndef PETITBOOT_TEST
1193
1194 /**
1195  * context_commit - Commit a temporary discovery context to the handler,
1196  * and notify the clients about any new options / devices
1197  */
1198 void device_handler_discover_context_commit(struct device_handler *handler,
1199                 struct discover_context *ctx)
1200 {
1201         struct discover_device *dev = ctx->device;
1202         struct discover_boot_option *opt, *tmp;
1203
1204         if (!device_lookup_by_id(handler, dev->device->id))
1205                 device_handler_add_device(handler, dev);
1206
1207         /* move boot options from the context to the device */
1208         list_for_each_entry_safe(&ctx->boot_options, opt, tmp, list) {
1209                 list_remove(&opt->list);
1210
1211                 /* All boot options need at least a kernel image */
1212                 if (!opt->boot_image || !opt->boot_image->url) {
1213                         pb_log("boot option %s is missing boot image, ignoring\n",
1214                                 opt->option->id);
1215                         talloc_free(opt);
1216                         continue;
1217                 }
1218
1219                 if (boot_option_resolve(opt, handler)) {
1220                         pb_log("boot option %s is resolved, "
1221                                         "sending to clients\n",
1222                                         opt->option->id);
1223                         list_add_tail(&dev->boot_options, &opt->list);
1224                         talloc_steal(dev, opt);
1225                         boot_option_finalise(handler, opt);
1226                         notify_boot_option(handler, opt);
1227                 } else {
1228                         if (!opt->source->resolve_resource) {
1229                                 pb_log("parser %s gave us an unresolved "
1230                                         "resource (%s), but no way to "
1231                                         "resolve it\n",
1232                                         opt->source->name, opt->option->id);
1233                                 talloc_free(opt);
1234                         } else {
1235                                 pb_log("boot option %s is unresolved, "
1236                                                 "adding to queue\n",
1237                                                 opt->option->id);
1238                                 list_add(&handler->unresolved_boot_options,
1239                                                 &opt->list);
1240                                 talloc_steal(handler, opt);
1241                         }
1242                 }
1243         }
1244 }
1245
1246 static void device_handler_update_lang(const char *lang)
1247 {
1248         const char *cur_lang;
1249
1250         if (!lang)
1251                 return;
1252
1253         cur_lang = setlocale(LC_ALL, NULL);
1254         if (cur_lang && !strcmp(cur_lang, lang))
1255                 return;
1256
1257         setlocale(LC_ALL, lang);
1258 }
1259
1260 static int device_handler_init_sources(struct device_handler *handler)
1261 {
1262         /* init our device sources: udev, network and user events */
1263         handler->udev = udev_init(handler, handler->waitset);
1264         if (!handler->udev)
1265                 return -1;
1266
1267         handler->network = network_init(handler, handler->waitset,
1268                         handler->dry_run);
1269         if (!handler->network)
1270                 return -1;
1271
1272         handler->user_event = user_event_init(handler, handler->waitset);
1273         if (!handler->user_event)
1274                 return -1;
1275
1276         return 0;
1277 }
1278
1279 static void device_handler_reinit_sources(struct device_handler *handler)
1280 {
1281         /* if we haven't initialised sources previously (becuase we started in
1282          * safe mode), then init once here. */
1283         if (!(handler->udev || handler->network || handler->user_event)) {
1284                 device_handler_init_sources(handler);
1285                 return;
1286         }
1287
1288         udev_reinit(handler->udev);
1289
1290         network_shutdown(handler->network);
1291         handler->network = network_init(handler, handler->waitset,
1292                         handler->dry_run);
1293 }
1294
1295 static inline const char *get_device_path(struct discover_device *dev)
1296 {
1297         return dev->ramdisk ? dev->ramdisk->snapshot : dev->device_path;
1298 }
1299
1300 static char *check_subvols(struct discover_device *dev)
1301 {
1302         const char *fstype = discover_device_get_param(dev, "ID_FS_TYPE");
1303         struct stat sb;
1304         char *path;
1305         int rc;
1306
1307         if (strncmp(fstype, "btrfs", strlen("btrfs")))
1308                 return dev->mount_path;
1309
1310         /* On btrfs a device's root may be under a subvolume path */
1311         path = join_paths(dev, dev->mount_path, "@");
1312         rc = stat(path, &sb);
1313         if (!rc && S_ISDIR(sb.st_mode)) {
1314                 pb_debug("Using '%s' for btrfs root path\n", path);
1315                 return path;
1316         }
1317
1318         talloc_free(path);
1319         return dev->mount_path;
1320 }
1321
1322 static bool check_existing_mount(struct discover_device *dev)
1323 {
1324         struct stat devstat, mntstat;
1325         const char *device_path;
1326         struct mntent *mnt;
1327         FILE *fp;
1328         int rc;
1329
1330         device_path = get_device_path(dev);
1331
1332         rc = stat(device_path, &devstat);
1333         if (rc) {
1334                 pb_debug("%s: stat failed: %s\n", __func__, strerror(errno));
1335                 return false;
1336         }
1337
1338         if (!S_ISBLK(devstat.st_mode)) {
1339                 pb_debug("%s: %s isn't a block device?\n", __func__,
1340                                 dev->device_path);
1341                 return false;
1342         }
1343
1344         fp = fopen("/proc/self/mounts", "r");
1345
1346         for (;;) {
1347                 mnt = getmntent(fp);
1348                 if (!mnt)
1349                         break;
1350
1351                 if (!mnt->mnt_fsname || mnt->mnt_fsname[0] != '/')
1352                         continue;
1353
1354                 rc = stat(mnt->mnt_fsname, &mntstat);
1355                 if (rc)
1356                         continue;
1357
1358                 if (!S_ISBLK(mntstat.st_mode))
1359                         continue;
1360
1361                 if (mntstat.st_rdev == devstat.st_rdev) {
1362                         dev->mount_path = talloc_strdup(dev, mnt->mnt_dir);
1363                         dev->root_path = check_subvols(dev);
1364                         dev->mounted_rw = !!hasmntopt(mnt, "rw");
1365                         dev->mounted = true;
1366                         dev->unmount = false;
1367
1368                         pb_debug("%s: %s is already mounted (r%c) at %s\n",
1369                                         __func__, dev->device_path,
1370                                         dev->mounted_rw ? 'w' : 'o',
1371                                         mnt->mnt_dir);
1372                         break;
1373                 }
1374         }
1375
1376         fclose(fp);
1377
1378         return mnt != NULL;
1379 }
1380
1381 /*
1382  * Attempt to mount a filesystem safely, while handling certain filesytem-
1383  * specific options
1384  */
1385 static int try_mount(const char *device_path, const char *mount_path,
1386                              const char *fstype, unsigned long flags,
1387                              bool have_snapshot)
1388 {
1389         const char *fs, *safe_opts;
1390         int rc;
1391
1392         /* Mount ext3 as ext4 instead so 'norecovery' can be used */
1393         if (strncmp(fstype, "ext3", strlen("ext3")) == 0) {
1394                 pb_debug("Mounting ext3 filesystem as ext4\n");
1395                 fs = "ext4";
1396         } else
1397                 fs = fstype;
1398
1399         if (strncmp(fs, "xfs", strlen("xfs")) == 0 ||
1400             strncmp(fs, "ext4", strlen("ext4")) == 0)
1401                 safe_opts = "norecovery";
1402         else
1403                 safe_opts = NULL;
1404
1405         errno = 0;
1406         /* If no snapshot is available don't attempt recovery */
1407         if (!have_snapshot)
1408                 return mount(device_path, mount_path, fs, flags, safe_opts);
1409
1410         rc = mount(device_path, mount_path, fs, flags, NULL);
1411
1412         if (!rc)
1413                 return rc;
1414
1415         /* Mounting failed; some filesystems will fail to mount if a recovery
1416          * journal exists (eg. cross-endian XFS), so try again with norecovery
1417          * where that option is available.
1418          * If mounting read-write just return the error as norecovery is not a
1419          * valid option */
1420         if ((flags & MS_RDONLY) != MS_RDONLY || !safe_opts)
1421                 return rc;
1422
1423         errno = 0;
1424         return mount(device_path, mount_path, fs, flags, safe_opts);
1425 }
1426
1427 static int mount_device(struct discover_device *dev)
1428 {
1429         const char *fstype, *device_path;
1430         int rc;
1431
1432         if (!dev->device_path)
1433                 return -1;
1434
1435         if (dev->mounted)
1436                 return 0;
1437
1438         if (check_existing_mount(dev))
1439                 return 0;
1440
1441         fstype = discover_device_get_param(dev, "ID_FS_TYPE");
1442         if (!fstype)
1443                 return 0;
1444
1445         dev->mount_path = join_paths(dev, mount_base(),
1446                                         dev->device_path);
1447
1448         if (pb_mkdir_recursive(dev->mount_path)) {
1449                 pb_log("couldn't create mount directory %s: %s\n",
1450                                 dev->mount_path, strerror(errno));
1451                 goto err_free;
1452         }
1453
1454         device_path = get_device_path(dev);
1455
1456         pb_log("mounting device %s read-only\n", dev->device_path);
1457         rc = try_mount(device_path, dev->mount_path, fstype,
1458                        MS_RDONLY | MS_SILENT, dev->ramdisk);
1459
1460         if (!rc) {
1461                 dev->mounted = true;
1462                 dev->mounted_rw = false;
1463                 dev->unmount = true;
1464                 dev->root_path = check_subvols(dev);
1465                 return 0;
1466         }
1467
1468         pb_log("couldn't mount device %s: mount failed: %s\n",
1469                         device_path, strerror(errno));
1470
1471         /* If mount fails clean up any snapshot */
1472         devmapper_destroy_snapshot(dev);
1473
1474         pb_rmdir_recursive(mount_base(), dev->mount_path);
1475 err_free:
1476         talloc_free(dev->mount_path);
1477         dev->mount_path = NULL;
1478         return -1;
1479 }
1480
1481 static int umount_device(struct discover_device *dev)
1482 {
1483         const char *device_path;
1484         int rc;
1485
1486         if (!dev->mounted || !dev->unmount)
1487                 return 0;
1488
1489         device_path = get_device_path(dev);
1490
1491         pb_log("unmounting device %s\n", device_path);
1492         rc = umount(dev->mount_path);
1493         if (rc)
1494                 return -1;
1495
1496         dev->mounted = false;
1497         devmapper_destroy_snapshot(dev);
1498
1499         pb_rmdir_recursive(mount_base(), dev->mount_path);
1500
1501         talloc_free(dev->mount_path);
1502         dev->mount_path = NULL;
1503         dev->root_path = NULL;
1504
1505         return 0;
1506 }
1507
1508 int device_request_write(struct discover_device *dev, bool *release)
1509 {
1510         const char *fstype, *device_path;
1511         const struct config *config;
1512         int rc;
1513
1514         *release = false;
1515
1516         config = config_get();
1517         if (!config->allow_writes)
1518                 return -1;
1519
1520         if (!dev->mounted)
1521                 return -1;
1522
1523         if (dev->mounted_rw)
1524                 return 0;
1525
1526         fstype = discover_device_get_param(dev, "ID_FS_TYPE");
1527
1528         device_path = get_device_path(dev);
1529
1530         pb_log("remounting device %s read-write\n", device_path);
1531
1532         rc = umount(dev->mount_path);
1533         if (rc) {
1534                 pb_log("Failed to unmount %s: %s\n",
1535                        dev->mount_path, strerror(errno));
1536                 return -1;
1537         }
1538
1539         rc = try_mount(device_path, dev->mount_path, fstype,
1540                        MS_SILENT, dev->ramdisk);
1541         if (rc)
1542                 goto mount_ro;
1543
1544         dev->mounted_rw = true;
1545         *release = true;
1546         return 0;
1547
1548 mount_ro:
1549         pb_log("Unable to remount device %s read-write: %s\n",
1550                device_path, strerror(errno));
1551         rc = try_mount(device_path, dev->mount_path, fstype,
1552                        MS_RDONLY | MS_SILENT, dev->ramdisk);
1553         if (rc)
1554                 pb_log("Unable to recover mount for %s: %s\n",
1555                        device_path, strerror(errno));
1556         return -1;
1557 }
1558
1559 void device_release_write(struct discover_device *dev, bool release)
1560 {
1561         const char *fstype, *device_path;
1562
1563         if (!release)
1564                 return;
1565
1566         device_path = get_device_path(dev);
1567
1568         fstype = discover_device_get_param(dev, "ID_FS_TYPE");
1569
1570         pb_log("remounting device %s read-only\n", device_path);
1571
1572         if (umount(dev->mount_path)) {
1573                 pb_log("Failed to unmount %s\n", dev->mount_path);
1574                 return;
1575         }
1576         dev->mounted_rw = dev->mounted = false;
1577
1578         if (dev->ramdisk) {
1579                 devmapper_merge_snapshot(dev);
1580                 /* device_path becomes stale after merge */
1581                 device_path = get_device_path(dev);
1582         }
1583
1584         if (try_mount(device_path, dev->mount_path, fstype,
1585                        MS_RDONLY | MS_SILENT, dev->ramdisk))
1586                 pb_log("Failed to remount %s read-only: %s\n",
1587                        device_path, strerror(errno));
1588         else
1589                 dev->mounted = true;
1590 }
1591
1592 void device_sync_snapshots(struct device_handler *handler, const char *device)
1593 {
1594         struct discover_device *dev = NULL;
1595         unsigned int i;
1596
1597         if (device) {
1598                 /* Find matching device and sync */
1599                 dev = device_lookup_by_name(handler, device);
1600                 if (!dev) {
1601                         pb_log("%s: device name '%s' unrecognised\n",
1602                                 __func__, device);
1603                         return;
1604                 }
1605                 if (dev->ramdisk)
1606                         device_release_write(dev, true);
1607                 else
1608                         pb_log("%s has no snapshot to merge, skipping\n",
1609                                 dev->device->id);
1610                 return;
1611         }
1612
1613         /* Otherwise sync all relevant devices */
1614         for (i = 0; i < handler->n_devices; i++) {
1615                 dev = handler->devices[i];
1616                 if (dev->device->type != DEVICE_TYPE_DISK &&
1617                         dev->device->type != DEVICE_TYPE_USB)
1618                         continue;
1619                 if (dev->ramdisk)
1620                         device_release_write(dev, true);
1621                 else
1622                         pb_log("%s has no snapshot to merge, skipping\n",
1623                                 dev->device->id);
1624         }
1625 }
1626
1627 #else
1628
1629 void device_handler_discover_context_commit(
1630                 struct device_handler *handler __attribute__((unused)),
1631                 struct discover_context *ctx __attribute__((unused)))
1632 {
1633         pb_log("%s stubbed out for test cases\n", __func__);
1634 }
1635
1636 static void device_handler_update_lang(const char *lang __attribute__((unused)))
1637 {
1638 }
1639
1640 static int device_handler_init_sources(
1641                 struct device_handler *handler __attribute__((unused)))
1642 {
1643         return 0;
1644 }
1645
1646 static void device_handler_reinit_sources(
1647                 struct device_handler *handler __attribute__((unused)))
1648 {
1649 }
1650
1651 static int umount_device(struct discover_device *dev __attribute__((unused)))
1652 {
1653         return 0;
1654 }
1655
1656 static int __attribute__((unused)) mount_device(
1657                 struct discover_device *dev __attribute__((unused)))
1658 {
1659         return 0;
1660 }
1661
1662 int device_request_write(struct discover_device *dev __attribute__((unused)),
1663                 bool *release)
1664 {
1665         *release = true;
1666         return 0;
1667 }
1668
1669 void device_release_write(struct discover_device *dev __attribute__((unused)),
1670         bool release __attribute__((unused)))
1671 {
1672 }
1673
1674 void device_sync_snapshots(
1675                 struct device_handler *handler __attribute__((unused)),
1676                 const char *device __attribute__((unused)))
1677 {
1678 }
1679
1680 #endif