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