]> git.ozlabs.org Git - petitboot/blob - discover/device-handler.c
lib/efi: Cleanup read/write routines
[petitboot] / discover / device-handler.c
1 #include <assert.h>
2 #include <inttypes.h>
3 #include <stdlib.h>
4 #include <stdbool.h>
5 #include <unistd.h>
6 #include <string.h>
7 #include <errno.h>
8 #include <mntent.h>
9 #include <locale.h>
10 #include <sys/stat.h>
11 #include <sys/wait.h>
12 #include <sys/mount.h>
13
14 #include <talloc/talloc.h>
15 #include <list/list.h>
16 #include <log/log.h>
17 #include <types/types.h>
18 #include <system/system.h>
19 #include <process/process.h>
20 #include <url/url.h>
21 #include <i18n/i18n.h>
22 #include <pb-config/pb-config.h>
23
24 #include <sys/sysmacros.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <netdb.h>
28 #include <arpa/inet.h>
29
30 #include "device-handler.h"
31 #include "discover-server.h"
32 #include "devmapper.h"
33 #include "user-event.h"
34 #include "platform.h"
35 #include "event.h"
36 #include "parser.h"
37 #include "resource.h"
38 #include "paths.h"
39 #include "sysinfo.h"
40 #include "boot.h"
41 #include "udev.h"
42 #include "network.h"
43 #include "ipmi.h"
44
45 enum default_priority {
46         DEFAULT_PRIORITY_TEMP_USER      = 1,
47         DEFAULT_PRIORITY_REMOTE         = 2,
48         DEFAULT_PRIORITY_LOCAL_FIRST    = 3,
49         DEFAULT_PRIORITY_LOCAL_LAST     = 0xfe,
50         DEFAULT_PRIORITY_DISABLED       = 0xff,
51 };
52
53 static int default_rescan_timeout = 5 * 60; /* seconds */
54
55 struct progress_info {
56         unsigned int                    percentage;
57         unsigned long                   size;           /* size in bytes */
58
59         const struct process_info       *procinfo;
60         struct list_item        list;
61 };
62
63 struct device_handler {
64         struct discover_server  *server;
65         int                     dry_run;
66
67         struct pb_udev          *udev;
68         struct network          *network;
69         struct user_event       *user_event;
70
71         struct discover_device  **devices;
72         unsigned int            n_devices;
73
74         struct ramdisk_device   **ramdisks;
75         unsigned int            n_ramdisks;
76
77         struct waitset          *waitset;
78         struct waiter           *timeout_waiter;
79         bool                    autoboot_enabled;
80         unsigned int            sec_to_boot;
81         struct autoboot_option  *temp_autoboot;
82
83         struct discover_boot_option *default_boot_option;
84         int                     default_boot_option_priority;
85
86         struct list             unresolved_boot_options;
87
88         struct boot_task        *pending_boot;
89         bool                    pending_boot_is_default;
90
91         struct list             progress;
92         unsigned int            n_progress;
93
94         struct plugin_option    **plugins;
95         unsigned int            n_plugins;
96         bool                    plugin_installing;
97 };
98
99 static int mount_device(struct discover_device *dev);
100 static int umount_device(struct discover_device *dev);
101
102 static int device_handler_init_sources(struct device_handler *handler);
103 static void device_handler_reinit_sources(struct device_handler *handler);
104
105 static void device_handler_update_lang(const char *lang);
106
107 void discover_context_add_boot_option(struct discover_context *ctx,
108                 struct discover_boot_option *boot_option)
109 {
110         boot_option->source = ctx->parser;
111         list_add_tail(&ctx->boot_options, &boot_option->list);
112         talloc_steal(ctx, boot_option);
113 }
114
115 /**
116  * device_handler_get_device_count - Get the count of current handler devices.
117  */
118
119 int device_handler_get_device_count(const struct device_handler *handler)
120 {
121         return handler->n_devices;
122 }
123
124 /**
125  * device_handler_get_device - Get a handler device by index.
126  */
127
128 const struct discover_device *device_handler_get_device(
129         const struct device_handler *handler, unsigned int index)
130 {
131         if (index >= handler->n_devices) {
132                 assert(0 && "bad index");
133                 return NULL;
134         }
135
136         return handler->devices[index];
137 }
138
139 /**
140  * device_handler_get_plugin_count - Get the count of current handler plugins.
141  */
142 int device_handler_get_plugin_count(const struct device_handler *handler)
143 {
144         return handler->n_plugins;
145 }
146
147 /**
148  * discover_handler_get_plugin - Get a handler plugin by index.
149  */
150 const struct plugin_option *device_handler_get_plugin(
151         const struct device_handler *handler, unsigned int index)
152 {
153         if (index >= handler->n_plugins) {
154                 assert(0 && "bad index");
155                 return NULL;
156         }
157
158         return handler->plugins[index];
159 }
160
161 struct network *device_handler_get_network(
162                 const struct device_handler *handler)
163 {
164         return handler->network;
165 }
166
167 struct discover_boot_option *discover_boot_option_create(
168                 struct discover_context *ctx,
169                 struct discover_device *device)
170 {
171         struct discover_boot_option *opt;
172
173         opt = talloc_zero(ctx, struct discover_boot_option);
174         opt->option = talloc_zero(opt, struct boot_option);
175         opt->device = device;
176
177         return opt;
178 }
179
180 static int device_match_uuid(struct discover_device *dev, const char *uuid)
181 {
182         return dev->uuid && !strcmp(dev->uuid, uuid);
183 }
184
185 static int device_match_label(struct discover_device *dev, const char *label)
186 {
187         return dev->label && !strcmp(dev->label, label);
188 }
189
190 static int device_match_id(struct discover_device *dev, const char *id)
191 {
192         return !strcmp(dev->device->id, id);
193 }
194
195 static int device_match_serial(struct discover_device *dev, const char *serial)
196 {
197         const char *val = discover_device_get_param(dev, "ID_SERIAL");
198         return val && !strcmp(val, serial);
199 }
200
201 static struct discover_device *device_lookup(
202                 struct device_handler *device_handler,
203                 int (match_fn)(struct discover_device *, const char *),
204                 const char *str)
205 {
206         struct discover_device *dev;
207         unsigned int i;
208
209         if (!str)
210                 return NULL;
211
212         for (i = 0; i < device_handler->n_devices; i++) {
213                 dev = device_handler->devices[i];
214
215                 if (match_fn(dev, str))
216                         return dev;
217         }
218
219         return NULL;
220 }
221
222 struct discover_device *device_lookup_by_name(struct device_handler *handler,
223                 const char *name)
224 {
225         if (!strncmp(name, "/dev/", strlen("/dev/")))
226                 name += strlen("/dev/");
227
228         return device_lookup_by_id(handler, name);
229 }
230
231 struct discover_device *device_lookup_by_uuid(
232                 struct device_handler *device_handler,
233                 const char *uuid)
234 {
235         return device_lookup(device_handler, device_match_uuid, uuid);
236 }
237
238 struct discover_device *device_lookup_by_label(
239                 struct device_handler *device_handler,
240                 const char *label)
241 {
242         return device_lookup(device_handler, device_match_label, label);
243 }
244
245 struct discover_device *device_lookup_by_id(
246                 struct device_handler *device_handler,
247                 const char *id)
248 {
249         return device_lookup(device_handler, device_match_id, id);
250 }
251
252 struct discover_device *device_lookup_by_serial(
253                 struct device_handler *device_handler,
254                 const char *serial)
255 {
256         return device_lookup(device_handler, device_match_serial, serial);
257 }
258
259 void device_handler_destroy(struct device_handler *handler)
260 {
261         talloc_free(handler);
262 }
263
264 static int destroy_device(void *arg)
265 {
266         struct discover_device *dev = arg;
267
268         umount_device(dev);
269
270         return 0;
271 }
272
273 struct discover_device *discover_device_create(struct device_handler *handler,
274                 const char *uuid, const char *id)
275 {
276         struct discover_device *dev;
277
278         if (uuid)
279                 dev = device_lookup_by_uuid(handler, uuid);
280         else
281                 dev = device_lookup_by_id(handler, id);
282
283         if (dev)
284                 return dev;
285
286         dev = talloc_zero(handler, struct discover_device);
287         dev->device = talloc_zero(dev, struct device);
288         dev->device->id = talloc_strdup(dev->device, id);
289         dev->uuid = talloc_strdup(dev, uuid);
290         list_init(&dev->params);
291         list_init(&dev->boot_options);
292
293         talloc_set_destructor(dev, destroy_device);
294
295         return dev;
296 }
297
298 struct discover_device_param {
299         char                    *name;
300         char                    *value;
301         struct list_item        list;
302 };
303
304 void discover_device_set_param(struct discover_device *device,
305                 const char *name, const char *value)
306 {
307         struct discover_device_param *param;
308         bool found = false;
309
310         list_for_each_entry(&device->params, param, list) {
311                 if (!strcmp(param->name, name)) {
312                         found = true;
313                         break;
314                 }
315         }
316
317         if (!found) {
318                 if (!value)
319                         return;
320                 param = talloc(device, struct discover_device_param);
321                 param->name = talloc_strdup(param, name);
322                 list_add(&device->params, &param->list);
323         } else {
324                 if (!value) {
325                         list_remove(&param->list);
326                         talloc_free(param);
327                         return;
328                 }
329                 talloc_free(param->value);
330         }
331
332         param->value = talloc_strdup(param, value);
333 }
334
335 const char *discover_device_get_param(struct discover_device *device,
336                 const char *name)
337 {
338         struct discover_device_param *param;
339
340         list_for_each_entry(&device->params, param, list) {
341                 if (!strcmp(param->name, name))
342                         return param->value;
343         }
344         return NULL;
345 }
346
347 static void set_env_variables(const struct config *config)
348 {
349         if (config->http_proxy)
350                 setenv("http_proxy", config->http_proxy, 1);
351         else
352                 unsetenv("http_proxy");
353
354         if (config->https_proxy)
355                 setenv("https_proxy", config->https_proxy, 1);
356         else
357                 unsetenv("https_proxy");
358
359         /* Reduce noise in the log from LVM listing open file descriptors */
360         setenv("LVM_SUPPRESS_FD_WARNINGS", "1", 1);
361 }
362
363 struct device_handler *device_handler_init(struct discover_server *server,
364                 struct waitset *waitset, int dry_run)
365 {
366         struct device_handler *handler;
367         int rc;
368
369         handler = talloc_zero(NULL, struct device_handler);
370         handler->server = server;
371         handler->waitset = waitset;
372         handler->dry_run = dry_run;
373         handler->autoboot_enabled = config_autoboot_active(config_get());
374
375         list_init(&handler->unresolved_boot_options);
376
377         list_init(&handler->progress);
378
379         /* set up our mount point base */
380         pb_mkdir_recursive(mount_base());
381
382         parser_init();
383
384         if (config_get()->safe_mode)
385                 return handler;
386
387         set_env_variables(config_get());
388
389         rc = device_handler_init_sources(handler);
390         if (rc) {
391                 talloc_free(handler);
392                 return NULL;
393         }
394
395         return handler;
396 }
397
398 void device_handler_reinit(struct device_handler *handler)
399 {
400         struct discover_boot_option *opt, *tmp;
401         struct ramdisk_device *ramdisk;
402         struct config *config;
403         unsigned int i;
404
405         device_handler_cancel_default(handler);
406         /* Cancel any pending non-default boot */
407         if (handler->pending_boot) {
408                 boot_cancel(handler->pending_boot);
409                 handler->pending_boot = NULL;
410                 handler->pending_boot_is_default = false;
411         }
412
413         /* Cancel any remaining async jobs */
414         process_stop_async_all();
415         pending_network_jobs_cancel();
416
417         /* free unresolved boot options */
418         list_for_each_entry_safe(&handler->unresolved_boot_options,
419                         opt, tmp, list)
420                 talloc_free(opt);
421         list_init(&handler->unresolved_boot_options);
422
423         /* drop all devices */
424         for (i = 0; i < handler->n_devices; i++) {
425                 struct discover_device *device = handler->devices[i];
426                 discover_server_notify_device_remove(handler->server,
427                                 device->device);
428                 ramdisk = device->ramdisk;
429                 if (device->requery_waiter)
430                         waiter_remove(device->requery_waiter);
431                 talloc_free(device);
432                 talloc_free(ramdisk);
433         }
434
435         talloc_free(handler->devices);
436         handler->devices = NULL;
437         handler->n_devices = 0;
438         talloc_free(handler->ramdisks);
439         handler->ramdisks = NULL;
440         handler->n_ramdisks = 0;
441
442         /* drop any known plugins */
443         for (i = 0; i < handler->n_plugins; i++)
444                 talloc_free(handler->plugins[i]);
445         talloc_free(handler->plugins);
446         handler->plugins = NULL;
447         handler->n_plugins = 0;
448
449         discover_server_notify_plugins_remove(handler->server);
450
451         set_env_variables(config_get());
452
453         /* If the safe mode warning was active disable it now */
454         if (config_get()->safe_mode) {
455                 config = config_copy(handler, config_get());
456                 config->safe_mode = false;
457                 config_set(config);
458                 discover_server_notify_config(handler->server, config);
459         }
460
461         /* Force rediscovery on SCSI devices */
462         process_run_simple(handler, pb_system_apps.scsi_rescan, NULL);
463
464         device_handler_reinit_sources(handler);
465 }
466
467 void device_handler_remove(struct device_handler *handler,
468                 struct discover_device *device)
469 {
470         struct discover_boot_option *opt, *tmp;
471         unsigned int i;
472
473         if (device->requery_waiter)
474                 waiter_remove(device->requery_waiter);
475
476         list_for_each_entry_safe(&device->boot_options, opt, tmp, list) {
477                 if (opt == handler->default_boot_option) {
478                         pb_log("Default option %s cancelled since device removed",
479                                         opt->option->name);
480                         device_handler_cancel_default(handler);
481                         break;
482                 }
483         }
484
485         for (i = 0; i < handler->n_devices; i++)
486                 if (handler->devices[i] == device)
487                         break;
488
489         if (i == handler->n_devices) {
490                 talloc_free(device);
491                 return;
492         }
493
494         /* Free any unresolved options, as they're currently allocated
495          * against the handler */
496         list_for_each_entry_safe(&handler->unresolved_boot_options,
497                         opt, tmp, list) {
498                 if (opt->device != device)
499                         continue;
500                 list_remove(&opt->list);
501                 talloc_free(opt);
502         }
503
504         /* if this is a network device, we have to unregister it from the
505          * network code */
506         if (device->device->type == DEVICE_TYPE_NETWORK)
507                 network_unregister_device(handler->network, device);
508
509         handler->n_devices--;
510         memmove(&handler->devices[i], &handler->devices[i + 1],
511                 (handler->n_devices - i) * sizeof(handler->devices[0]));
512         handler->devices = talloc_realloc(handler, handler->devices,
513                 struct discover_device *, handler->n_devices);
514
515         if (device->notified)
516                 discover_server_notify_device_remove(handler->server,
517                                                         device->device);
518
519         talloc_free(device);
520 }
521
522 void device_handler_status(struct device_handler *handler,
523                 struct status *status)
524 {
525         pb_debug("%s: %s\n", __func__, status->message);
526         discover_server_notify_boot_status(handler->server, status);
527 }
528
529 static void _device_handler_vstatus(struct device_handler *handler,
530                 enum status_type type, const char *fmt, va_list ap)
531 {
532         struct status status;
533
534         status.type = type;
535         status.message = talloc_vasprintf(handler, fmt, ap);
536         status.backlog = false;
537
538         device_handler_status(handler, &status);
539
540         talloc_free(status.message);
541 }
542
543 static void _device_handler_vdevstatus(struct device_handler *handler,
544                 struct discover_device *device, enum status_type type,
545                 const char *fmt, va_list ap)
546 {
547         char *msg;
548
549         msg = talloc_asprintf(handler, "[%s] %s",
550                         device ? device->device->id : "unknown", fmt);
551         _device_handler_vstatus(handler, type, msg, ap);
552         talloc_free(msg);
553 }
554
555 void device_handler_status_dev_info(struct device_handler *handler,
556                 struct discover_device *dev, const char *fmt, ...)
557 {
558         va_list ap;
559
560         va_start(ap, fmt);
561         _device_handler_vdevstatus(handler, dev, STATUS_INFO, fmt, ap);
562         va_end(ap);
563 }
564
565 void device_handler_status_dev_err(struct device_handler *handler,
566                 struct discover_device *dev, const char *fmt, ...)
567 {
568         va_list ap;
569
570         va_start(ap, fmt);
571         _device_handler_vdevstatus(handler, dev, STATUS_ERROR, fmt, ap);
572         va_end(ap);
573 }
574
575 void device_handler_status_info(struct device_handler *handler,
576                 const char *fmt, ...)
577 {
578         va_list ap;
579
580         va_start(ap, fmt);
581         _device_handler_vstatus(handler, STATUS_INFO, fmt, ap);
582         va_end(ap);
583 }
584
585 void device_handler_status_err(struct device_handler *handler,
586                 const char *fmt, ...)
587 {
588         va_list ap;
589
590         va_start(ap, fmt);
591         _device_handler_vstatus(handler, STATUS_ERROR, fmt, ap);
592         va_end(ap);
593 }
594
595 void device_handler_status_download(struct device_handler *handler,
596                 const struct process_info *procinfo,
597                 unsigned int percentage, unsigned int size, char suffix)
598 {
599         struct progress_info *p, *progress = NULL;
600         uint64_t current_converted, current = 0;
601         const char *units = " kMGTP";
602         unsigned long size_bytes;
603         char *update = NULL;
604         double total = 0;
605         unsigned int i;
606         int unit = 0;
607
608         list_for_each_entry(&handler->progress, p, list)
609                 if (p->procinfo == procinfo)
610                         progress = p;
611
612         if (!progress) {
613                 pb_log("Registering new progress struct\n");
614                 progress = talloc_zero(handler, struct progress_info);
615                 if (!progress) {
616                         pb_log("Failed to allocate room for progress struct\n");
617                         return;
618                 }
619                 progress->procinfo = procinfo;
620                 list_add(&handler->progress, &progress->list);
621                 handler->n_progress++;
622         }
623
624         size_bytes = size;
625         for (i = 0; i < strlen(units); i++) {
626                 if (units[i] == suffix)
627                         break;
628         }
629
630         if (i >= strlen(units)) {
631             pb_log("Couldn't recognise suffix '%c'\n", suffix);
632             size_bytes = 0;
633         } else {
634                 while (i--)
635                         size_bytes <<= 10;
636         }
637
638         progress->percentage = percentage;
639         progress->size = size_bytes;
640
641         /*
642          * Aggregate the info we have and update status. If a progress struct
643          * has zero for both percentage and size we assume progress information
644          * is unavailable and fall back to a generic progress message.
645          */
646         list_for_each_entry(&handler->progress, p, list) {
647                 uint64_t c;
648                 double t;
649                 if (!p->percentage || !p->size) {
650                         update = talloc_asprintf(handler,
651                                         _("%u downloads in progress..."),
652                                         handler->n_progress);
653                         current = total = 0;
654                         break;
655                 }
656
657                 c = p->size;
658                 t = (100 * c) / p->percentage;
659
660                 current += c;
661                 total += t;
662         }
663
664         if (total) {
665                 current_converted = current;
666                 while (current_converted >= 1000) {
667                         current_converted >>= 10;
668                         unit++;
669                 }
670                 update = talloc_asprintf(handler,
671                                 _("%u %s downloading: %.0f%% - %" PRIu64 "%cB"),
672                                 handler->n_progress,
673                                 ngettext("item", "items", handler->n_progress),
674                                 (current / total) * 100, current_converted,
675                                 units[unit]);
676         }
677
678         if (!update) {
679                 pb_log_fn("failed to allocate new status\n");
680         } else {
681                 device_handler_status_info(handler, "%s\n", update);
682                 talloc_free(update);
683         }
684 }
685
686 static void device_handler_plugin_scan_device(struct device_handler *handler,
687                 struct discover_device *dev)
688 {
689         int rc;
690
691         pb_debug("Scanning %s for plugin files\n", dev->device->id);
692
693         rc = process_run_simple(handler, pb_system_apps.pb_plugin,
694                                 "scan", dev->mount_path,
695                                 NULL);
696         if (rc)
697                 pb_log("Error from pb-plugin scan %s\n",
698                                 dev->mount_path);
699 }
700
701 void device_handler_status_download_remove(struct device_handler *handler,
702                 struct process_info *procinfo)
703 {
704         struct progress_info *p, *tmp;
705
706         list_for_each_entry_safe(&handler->progress, p, tmp, list)
707                 if (p->procinfo == procinfo) {
708                         list_remove(&p->list);
709                         talloc_free(p);
710                         handler->n_progress--;
711                 }
712 }
713
714 static void device_handler_boot_status_cb(void *arg, struct status *status)
715 {
716         struct device_handler *handler = arg;
717
718         /* boot had failed; update handler state to allow a new default if one
719          * is found later
720          */
721         if (status->type == STATUS_ERROR) {
722                 handler->pending_boot = NULL;
723                 handler->default_boot_option = NULL;
724         }
725
726         device_handler_status(handler, status);
727 }
728
729 static void countdown_status(struct device_handler *handler,
730                 struct discover_boot_option *opt, unsigned int sec)
731 {
732         struct status status;
733
734         status.type = STATUS_INFO;
735         status.message = talloc_asprintf(handler,
736                         _("Booting in %d sec: [%s] %s"), sec,
737                         opt->device->device->id, opt->option->name);
738         status.backlog = false;
739
740         device_handler_status(handler, &status);
741
742         talloc_free(status.message);
743 }
744
745 static int default_timeout(void *arg)
746 {
747         struct device_handler *handler = arg;
748         struct discover_boot_option *opt;
749
750         if (!handler->default_boot_option)
751                 return 0;
752
753         if (handler->pending_boot)
754                 return 0;
755
756         opt = handler->default_boot_option;
757
758         if (handler->sec_to_boot) {
759                 countdown_status(handler, opt, handler->sec_to_boot);
760                 handler->sec_to_boot--;
761                 handler->timeout_waiter = waiter_register_timeout(
762                                                 handler->waitset, 1000,
763                                                 default_timeout, handler);
764                 return 0;
765         }
766
767         handler->timeout_waiter = NULL;
768
769         pb_log("Timeout expired, booting default option %s\n", opt->option->id);
770
771         platform_pre_boot();
772
773         handler->pending_boot = boot(handler, handler->default_boot_option,
774                         NULL, handler->dry_run, device_handler_boot_status_cb,
775                         handler);
776         handler->pending_boot_is_default = true;
777         return 0;
778 }
779
780 struct {
781         enum ipmi_bootdev       ipmi_type;
782         enum device_type        device_type;
783 } device_type_map[] = {
784         { IPMI_BOOTDEV_NETWORK, DEVICE_TYPE_NETWORK },
785         { IPMI_BOOTDEV_DISK, DEVICE_TYPE_DISK },
786         { IPMI_BOOTDEV_DISK, DEVICE_TYPE_USB },
787         { IPMI_BOOTDEV_CDROM, DEVICE_TYPE_OPTICAL },
788 };
789
790 static bool ipmi_device_type_matches(enum ipmi_bootdev ipmi_type,
791                 enum device_type device_type)
792 {
793         unsigned int i;
794
795         for (i = 0; i < ARRAY_SIZE(device_type_map); i++) {
796                 if (device_type_map[i].device_type == device_type)
797                         return device_type_map[i].ipmi_type == ipmi_type;
798         }
799
800         return false;
801 }
802
803 static bool autoboot_option_matches(struct autoboot_option *opt,
804                 struct discover_device *dev)
805 {
806         if (opt->boot_type == BOOT_DEVICE_UUID)
807                 if (!strcmp(opt->uuid, dev->uuid))
808                         return true;
809
810         if (opt->boot_type == BOOT_DEVICE_TYPE)
811                 if (opt->type == dev->device->type ||
812                     opt->type == DEVICE_TYPE_ANY)
813                         return true;
814
815         return false;
816 }
817
818 static int autoboot_option_priority(const struct config *config,
819                                 struct discover_boot_option *opt)
820 {
821         struct autoboot_option *auto_opt;
822         unsigned int i;
823
824         for (i = 0; i < config->n_autoboot_opts; i++) {
825                 auto_opt = &config->autoboot_opts[i];
826                 if (autoboot_option_matches(auto_opt, opt->device))
827                         return DEFAULT_PRIORITY_LOCAL_FIRST + i;
828         }
829
830         return -1;
831 }
832
833 /*
834  * We have different priorities to resolve conflicts between boot options that
835  * report to be the default for their device. This function assigns a priority
836  * for these options.
837  */
838 static enum default_priority default_option_priority(
839                 struct device_handler *handler,
840                 struct discover_boot_option *opt)
841 {
842         const struct config *config;
843
844         /* Temporary user-provided autoboot options have highest priority */
845         if (handler->temp_autoboot) {
846                 if (autoboot_option_matches(handler->temp_autoboot,
847                                         opt->device))
848                         return DEFAULT_PRIORITY_TEMP_USER;
849
850                 pb_debug("handler: disabled default priority due to "
851                                 "temporary user override\n");
852                 return DEFAULT_PRIORITY_DISABLED;
853         }
854
855         config = config_get();
856
857         /* Next highest priority to IPMI-configured boot options. If we have an
858          * IPMI bootdev configuration set, then we don't allow any other
859          * defaults */
860         if (config->ipmi_bootdev) {
861                 bool ipmi_match = ipmi_device_type_matches(config->ipmi_bootdev,
862                                 opt->device->device->type);
863                 if (ipmi_match)
864                         return DEFAULT_PRIORITY_REMOTE;
865
866                 pb_debug("handler: disabled default priority due to "
867                                 "non-matching IPMI type %x\n",
868                                 config->ipmi_bootdev);
869                 return DEFAULT_PRIORITY_DISABLED;
870         }
871
872         /* Next, try to match the option against the user-defined autoboot
873          * options, either by device UUID or type. */
874         if (config->n_autoboot_opts) {
875                 int boot_match = autoboot_option_priority(config, opt);
876                 if (boot_match > 0)
877                         return boot_match;
878         } else {
879                 /* If there is no specific boot order, boot any device */
880                 return DEFAULT_PRIORITY_LOCAL_FIRST;
881         }
882
883         /* If the option didn't match any entry in the array, it is disabled */
884         pb_debug("handler: disabled default priority due to "
885                         "non-matching UUID or type\n");
886         return DEFAULT_PRIORITY_DISABLED;
887 }
888
889 static void set_default(struct device_handler *handler,
890                 struct discover_boot_option *opt)
891 {
892         enum default_priority cur_prio, new_prio;
893
894         if (!handler->autoboot_enabled)
895                 return;
896
897         pb_debug("handler: new default option: %s\n", opt->option->id);
898
899         new_prio = default_option_priority(handler, opt);
900
901         /* Anything outside our range prevents a default boot */
902         if (new_prio >= DEFAULT_PRIORITY_DISABLED)
903                 return;
904
905         pb_debug("handler: calculated priority %d\n", new_prio);
906
907         /* Resolve any conflicts: if we have a new default option, it only
908          * replaces the current if it has a higher priority. */
909         if (handler->default_boot_option) {
910
911                 cur_prio = handler->default_boot_option_priority;
912
913                 if (new_prio < cur_prio) {
914                         pb_log("handler: new prio %d beats "
915                                         "old prio %d for %s\n",
916                                         new_prio, cur_prio,
917                                         handler->default_boot_option
918                                                 ->option->id);
919                         handler->default_boot_option = opt;
920                         handler->default_boot_option_priority = new_prio;
921                         /* extend the timeout a little, so the user sees some
922                          * indication of the change */
923                         handler->sec_to_boot += 2;
924                 }
925
926                 return;
927         }
928
929         handler->sec_to_boot = config_get()->autoboot_timeout_sec;
930         handler->default_boot_option = opt;
931         handler->default_boot_option_priority = new_prio;
932
933         pb_log("handler: boot option %s set as default, timeout %u sec.\n",
934                opt->option->id, handler->sec_to_boot);
935
936         default_timeout(handler);
937 }
938
939 static char *autoboot_option_desc(void *ctx, const struct autoboot_option *opt)
940 {
941         const char *type, *val;
942
943         if (opt->boot_type == BOOT_DEVICE_TYPE) {
944                 type = _("device type");
945                 val = device_type_display_name(opt->type);
946         } else if (opt->boot_type == BOOT_DEVICE_UUID) {
947                 type = _("device UUID");
948                 val = opt->uuid;
949         } else {
950                 type = _("unknown specifier");
951                 val = NULL;
952         }
953
954         return talloc_asprintf(ctx, "%s = %s", type, val);
955 }
956
957 void device_handler_apply_temp_autoboot(struct device_handler *handler,
958                 struct autoboot_option *opt)
959 {
960         unsigned int i;
961         char *desc;
962
963         handler->temp_autoboot = talloc_steal(handler, opt);
964
965         desc = autoboot_option_desc(handler, opt);
966         device_handler_status_info(handler,
967                         _("Applying temporary autoboot override: %s"),
968                         desc);
969         talloc_free(desc);
970
971         if (!handler->autoboot_enabled)
972                 return;
973
974         if (!handler->default_boot_option)
975                 return;
976
977         if (autoboot_option_matches(opt, handler->default_boot_option->device))
978                 return;
979
980         /* cancel the default, and rescan available options */
981         device_handler_cancel_default(handler);
982
983         handler->autoboot_enabled = true;
984
985         for (i = 0; i < handler->n_devices; i++) {
986                 struct discover_device *dev = handler->devices[i];
987                 struct discover_boot_option *boot_opt;
988
989                 if (!autoboot_option_matches(opt, dev))
990                         continue;
991
992                 list_for_each_entry(&dev->boot_options, boot_opt, list) {
993                         if (boot_opt->option->is_default) {
994                                 set_default(handler, boot_opt);
995                                 break;
996                         }
997                 }
998         }
999 }
1000
1001 static bool resource_is_resolved(struct resource *res)
1002 {
1003         return !res || res->resolved;
1004 }
1005
1006 /* We only use this in an assert, which will disappear if we're compiling
1007  * with NDEBUG, so we need the 'used' attribute for these builds */
1008 static bool __attribute__((used)) boot_option_is_resolved(
1009                 struct discover_boot_option *opt)
1010 {
1011         return resource_is_resolved(opt->boot_image) &&
1012                 resource_is_resolved(opt->initrd) &&
1013                 resource_is_resolved(opt->dtb) &&
1014                 resource_is_resolved(opt->args_sig_file) &&
1015                 resource_is_resolved(opt->icon);
1016 }
1017
1018 static bool resource_resolve(struct resource *res, const char *name,
1019                 struct discover_boot_option *opt,
1020                 struct device_handler *handler)
1021 {
1022         struct parser *parser = opt->source;
1023
1024         if (resource_is_resolved(res))
1025                 return true;
1026
1027         pb_debug("Attempting to resolve resource %s->%s with parser %s\n",
1028                         opt->option->id, name, parser->name);
1029         parser->resolve_resource(handler, res);
1030
1031         return res->resolved;
1032 }
1033
1034 static bool boot_option_resolve(struct discover_boot_option *opt,
1035                 struct device_handler *handler)
1036 {
1037         return resource_resolve(opt->boot_image, "boot_image", opt, handler) &&
1038                 resource_resolve(opt->initrd, "initrd", opt, handler) &&
1039                 resource_resolve(opt->dtb, "dtb", opt, handler) &&
1040                 resource_resolve(opt->args_sig_file, "args_sig_file", opt,
1041                         handler) &&
1042                 resource_resolve(opt->icon, "icon", opt, handler);
1043 }
1044
1045 static void boot_option_finalise(struct device_handler *handler,
1046                 struct discover_boot_option *opt)
1047 {
1048         assert(boot_option_is_resolved(opt));
1049
1050         /* check that the parsers haven't set any of the final data */
1051         assert(!opt->option->boot_image_file);
1052         assert(!opt->option->initrd_file);
1053         assert(!opt->option->dtb_file);
1054         assert(!opt->option->icon_file);
1055         assert(!opt->option->device_id);
1056         assert(!opt->option->args_sig_file);
1057
1058         if (opt->boot_image)
1059                 opt->option->boot_image_file = opt->boot_image->url->full;
1060         if (opt->initrd)
1061                 opt->option->initrd_file = opt->initrd->url->full;
1062         if (opt->dtb)
1063                 opt->option->dtb_file = opt->dtb->url->full;
1064         if (opt->icon)
1065                 opt->option->icon_file = opt->icon->url->full;
1066         if (opt->args_sig_file)
1067                 opt->option->args_sig_file = opt->args_sig_file->url->full;
1068
1069         opt->option->device_id = opt->device->device->id;
1070
1071         if (opt->option->is_default)
1072                 set_default(handler, opt);
1073 }
1074
1075 static void notify_boot_option(struct device_handler *handler,
1076                 struct discover_boot_option *opt)
1077 {
1078         struct discover_device *dev = opt->device;
1079
1080         if (!dev->notified)
1081                 discover_server_notify_device_add(handler->server,
1082                                                   opt->device->device);
1083         dev->notified = true;
1084         discover_server_notify_boot_option_add(handler->server, opt->option);
1085 }
1086
1087 static void process_boot_option_queue(struct device_handler *handler)
1088 {
1089         struct discover_boot_option *opt, *tmp;
1090
1091         list_for_each_entry_safe(&handler->unresolved_boot_options,
1092                         opt, tmp, list) {
1093
1094                 pb_debug("queue: attempting resolution for %s\n",
1095                                 opt->option->id);
1096
1097                 if (!boot_option_resolve(opt, handler))
1098                         continue;
1099
1100                 pb_debug("\tresolved!\n");
1101
1102                 list_remove(&opt->list);
1103                 list_add_tail(&opt->device->boot_options, &opt->list);
1104                 talloc_steal(opt->device, opt);
1105                 boot_option_finalise(handler, opt);
1106                 notify_boot_option(handler, opt);
1107         }
1108 }
1109
1110 struct discover_context *device_handler_discover_context_create(
1111                 struct device_handler *handler,
1112                 struct discover_device *device)
1113 {
1114         struct discover_context *ctx;
1115
1116         ctx = talloc_zero(handler, struct discover_context);
1117         ctx->handler = handler;
1118         ctx->device = device;
1119         list_init(&ctx->boot_options);
1120
1121         return ctx;
1122 }
1123
1124 void device_handler_add_device(struct device_handler *handler,
1125                 struct discover_device *device)
1126 {
1127         handler->n_devices++;
1128         handler->devices = talloc_realloc(handler, handler->devices,
1129                                 struct discover_device *, handler->n_devices);
1130         handler->devices[handler->n_devices - 1] = device;
1131
1132         if (device->device->type == DEVICE_TYPE_NETWORK)
1133                 network_register_device(handler->network, device);
1134 }
1135
1136 void device_handler_add_ramdisk(struct device_handler *handler,
1137                 const char *path)
1138 {
1139         struct ramdisk_device *dev;
1140         unsigned int i;
1141
1142         if (!path)
1143                 return;
1144
1145         for (i = 0; i < handler->n_ramdisks; i++)
1146                 if (!strcmp(handler->ramdisks[i]->path, path))
1147                         return;
1148
1149         dev = talloc_zero(handler, struct ramdisk_device);
1150         if (!dev) {
1151                 pb_log("Failed to allocate memory to track %s\n", path);
1152                 return;
1153         }
1154
1155         dev->path = talloc_strdup(handler, path);
1156
1157         handler->ramdisks = talloc_realloc(handler, handler->ramdisks,
1158                                 struct ramdisk_device *,
1159                                 handler->n_ramdisks + 1);
1160         if (!handler->ramdisks) {
1161                 pb_log("Failed to reallocate memory"
1162                        "- ramdisk tracking inconsistent!\n");
1163                 return;
1164         }
1165
1166         handler->ramdisks[i] = dev;
1167         i = handler->n_ramdisks++;
1168 }
1169
1170 struct ramdisk_device *device_handler_get_ramdisk(
1171                 struct device_handler *handler)
1172 {
1173         unsigned int i;
1174         char *name;
1175         dev_t id;
1176
1177         /* Check if free ramdisk exists */
1178         for (i = 0; i < handler->n_ramdisks; i++)
1179                 if (!handler->ramdisks[i]->snapshot &&
1180                     !handler->ramdisks[i]->origin &&
1181                     !handler->ramdisks[i]->base)
1182                         return handler->ramdisks[i];
1183
1184         /* Otherwise create a new one */
1185         name = talloc_asprintf(handler, "/dev/ram%d",
1186                         handler->n_ramdisks);
1187         if (!name) {
1188                 pb_debug("Failed to allocate memory to name /dev/ram%d",
1189                         handler->n_ramdisks);
1190                 return NULL;
1191         }
1192
1193         id = makedev(1, handler->n_ramdisks);
1194         if (mknod(name, S_IFBLK, id)) {
1195                 if (errno == EEXIST) {
1196                         /* We haven't yet received updates for existing
1197                          * ramdisks - add and use this one */
1198                         pb_debug("Using untracked ramdisk %s\n", name);
1199                 } else {
1200                         pb_log("Failed to create new ramdisk %s: %s\n",
1201                                name, strerror(errno));
1202                         return NULL;
1203                 }
1204         }
1205         device_handler_add_ramdisk(handler, name);
1206         talloc_free(name);
1207
1208         return handler->ramdisks[i];
1209 }
1210
1211 void device_handler_release_ramdisk(struct discover_device *device)
1212 {
1213         struct ramdisk_device *ramdisk = device->ramdisk;
1214
1215         talloc_free(ramdisk->snapshot);
1216         talloc_free(ramdisk->origin);
1217         talloc_free(ramdisk->base);
1218
1219         ramdisk->snapshot = ramdisk->origin = ramdisk->base = NULL;
1220         ramdisk->sectors = 0;
1221
1222         device->ramdisk = NULL;
1223 }
1224
1225 /* Start discovery on a hotplugged device. The device will be in our devices
1226  * array, but has only just been initialised by the hotplug source.
1227  */
1228 int device_handler_discover(struct device_handler *handler,
1229                 struct discover_device *dev)
1230 {
1231         struct discover_context *ctx;
1232         int rc;
1233
1234         device_handler_status_dev_info(handler, dev,
1235                 /*
1236                  * TRANSLATORS: this string will be passed the type of the
1237                  * device (eg "disk" or "network"), which will be translated
1238                  * accordingly.
1239                  */
1240                 _("Processing new %s device"),
1241                 device_type_display_name(dev->device->type));
1242
1243         /* create our context */
1244         ctx = device_handler_discover_context_create(handler, dev);
1245
1246         rc = mount_device(dev);
1247         if (rc)
1248                 goto out;
1249
1250         /* add this device to our system info */
1251         system_info_register_blockdev(dev->device->id, dev->uuid,
1252                         dev->mount_path);
1253
1254         /* run the parsers. This will populate the ctx's boot_option list. */
1255         iterate_parsers(ctx);
1256
1257         /* add discovered stuff to the handler */
1258         device_handler_discover_context_commit(handler, ctx);
1259
1260         process_boot_option_queue(handler);
1261
1262         /* Check this device for pb-plugins */
1263         device_handler_plugin_scan_device(handler, dev);
1264 out:
1265         talloc_unlink(handler, ctx);
1266
1267         return 0;
1268 }
1269
1270 struct requery_data {
1271         struct device_handler   *handler;
1272         struct discover_device  *device;
1273 };
1274
1275 static int device_handler_requery_timeout_fn(void *data)
1276 {
1277         struct discover_boot_option *opt, *tmp;
1278         struct requery_data *rqd = data;
1279         struct device_handler *handler;
1280         struct discover_device *device;
1281
1282         handler = rqd->handler;
1283         device = rqd->device;
1284
1285         talloc_free(rqd);
1286
1287         /* network_requery_device may re-add a timeout, so clear the device
1288          * waiter here, so we can potentially start a new one. */
1289         device->requery_waiter = NULL;
1290
1291         /* We keep the device around, but get rid of the parsed boot
1292          * options on that device. That involves delaring out the lists,
1293          * and potentially cancelling a default.
1294          */
1295         list_for_each_entry_safe(&handler->unresolved_boot_options,
1296                         opt, tmp, list) {
1297                 if (opt->device != device)
1298                         continue;
1299                 list_remove(&opt->list);
1300                 talloc_free(opt);
1301         }
1302
1303         list_for_each_entry_safe(&device->boot_options, opt, tmp, list) {
1304                 if (opt == handler->default_boot_option) {
1305                         pb_log("Default option %s cancelled since device is being requeried",
1306                                         opt->option->name);
1307                         device_handler_cancel_default(handler);
1308                 }
1309                 list_remove(&opt->list);
1310                 talloc_free(opt);
1311         }
1312
1313         discover_server_notify_device_remove(handler->server, device->device);
1314         device->notified = false;
1315
1316         network_requery_device(handler->network, device);
1317
1318         return 0;
1319 }
1320
1321 /* Schedule a requery in timeout (seconds).
1322  *
1323  * Special values of timeout:
1324  *   0: no requery
1325  *  -1: use default
1326  */
1327 void device_handler_start_requery_timeout( struct device_handler *handler,
1328                 struct discover_device *dev, int timeout)
1329 {
1330         struct requery_data *rqd;
1331
1332         if (dev->requery_waiter)
1333                 return;
1334
1335         if (timeout == -1)
1336                 timeout = default_rescan_timeout;
1337         else if (timeout == 0)
1338                 return;
1339
1340         rqd = talloc(dev, struct requery_data);
1341         rqd->handler = handler;
1342         rqd->device = dev;
1343
1344         pb_debug("starting requery timeout for device %s, in %d sec\n",
1345                         dev->device->id, timeout);
1346
1347         dev->requery_waiter = waiter_register_timeout(handler->waitset,
1348                         timeout * 1000, device_handler_requery_timeout_fn, rqd);
1349 }
1350
1351 static int event_requery_timeout(struct event *event)
1352 {
1353         int timeout = -1;
1354         unsigned long x;
1355         const char *str;
1356         char *endp;
1357
1358         if (!event)
1359                 return timeout;
1360
1361         str = event_get_param(event, "reboottime");
1362         if (!str)
1363                 return timeout;
1364
1365         x = strtoul(str, &endp, 0);
1366         if (endp != str)
1367                 timeout = x;
1368
1369         return timeout;
1370 }
1371
1372
1373 /* Incoming dhcp event */
1374 int device_handler_dhcp(struct device_handler *handler,
1375                 struct discover_device *dev, struct event *event)
1376 {
1377         struct discover_context *ctx;
1378         const char *ip;
1379
1380         if (event_get_param(event, "ipv6"))
1381                 ip = event_get_param(event, "ipv6");
1382         else
1383                 ip = event_get_param(event, "ip");
1384
1385         device_handler_status_dev_info(handler, dev,
1386                         _("Processing DHCP lease response (ip: %s)"), ip);
1387
1388         pending_network_jobs_start();
1389
1390         /* create our context */
1391         ctx = device_handler_discover_context_create(handler, dev);
1392         talloc_steal(ctx, event);
1393         ctx->event = event;
1394
1395         device_handler_start_requery_timeout(handler, dev,
1396                         event_requery_timeout(event));
1397
1398         iterate_parsers(ctx);
1399
1400         device_handler_discover_context_commit(handler, ctx);
1401
1402         talloc_unlink(handler, ctx);
1403
1404         return 0;
1405 }
1406
1407 static struct discover_boot_option *find_boot_option_by_id(
1408                 struct device_handler *handler, const char *id)
1409 {
1410         unsigned int i;
1411
1412         for (i = 0; i < handler->n_devices; i++) {
1413                 struct discover_device *dev = handler->devices[i];
1414                 struct discover_boot_option *opt;
1415
1416                 list_for_each_entry(&dev->boot_options, opt, list)
1417                         if (!strcmp(opt->option->id, id))
1418                                 return opt;
1419         }
1420
1421         return NULL;
1422 }
1423
1424 void device_handler_boot(struct device_handler *handler,
1425                 struct boot_command *cmd)
1426 {
1427         struct discover_boot_option *opt = NULL;
1428
1429         if (cmd->option_id && strlen(cmd->option_id))
1430                 opt = find_boot_option_by_id(handler, cmd->option_id);
1431
1432         if (handler->pending_boot)
1433                 boot_cancel(handler->pending_boot);
1434
1435         platform_pre_boot();
1436
1437         handler->pending_boot = boot(handler, opt, cmd, handler->dry_run,
1438                         device_handler_boot_status_cb, handler);
1439         handler->pending_boot_is_default = false;
1440 }
1441
1442 void device_handler_cancel_default(struct device_handler *handler)
1443 {
1444         if (handler->timeout_waiter)
1445                 waiter_remove(handler->timeout_waiter);
1446
1447         handler->timeout_waiter = NULL;
1448         handler->autoboot_enabled = false;
1449
1450         /* we only send status if we had a default boot option queued */
1451         if (!handler->default_boot_option)
1452                 return;
1453
1454         pb_log("Cancelling default boot option\n");
1455
1456         if (handler->pending_boot && handler->pending_boot_is_default) {
1457                 boot_cancel(handler->pending_boot);
1458                 handler->pending_boot = NULL;
1459                 handler->pending_boot_is_default = false;
1460         }
1461
1462         handler->default_boot_option = NULL;
1463
1464         device_handler_status_info(handler, _("Default boot cancelled"));
1465 }
1466
1467 void device_handler_update_config(struct device_handler *handler,
1468                 struct config *config)
1469 {
1470         int rc;
1471
1472         rc = config_set(config);
1473         if (rc)
1474                 return;
1475
1476         discover_server_notify_config(handler->server, config);
1477         device_handler_update_lang(config->lang);
1478         device_handler_reinit(handler);
1479 }
1480
1481 static char *device_from_addr(void *ctx, struct pb_url *url)
1482 {
1483         char *ipaddr, *buf, *tok, *dev = NULL;
1484         bool ipv6_route;
1485         const char *delim = " ";
1486         struct sockaddr_in *ipv4;
1487         struct sockaddr_in6 *ipv6;
1488         struct addrinfo *res;
1489         struct process *p;
1490         int rc;
1491
1492         /* Confirm url->host is either a valid hostname, or a
1493          * valid IPv4 or IPv6 address */
1494         rc = getaddrinfo(url->host, NULL, NULL, &res);
1495         if (rc) {
1496                 pb_debug("%s: Invalid URL\n",__func__);
1497                 return NULL;
1498         }
1499
1500         switch (res->ai_family) {
1501         case AF_INET:   /* ipv4 */
1502                 ipaddr = talloc_array(ctx,char,INET_ADDRSTRLEN);
1503                 ipv4 = (struct sockaddr_in *) res->ai_addr;
1504                 inet_ntop(AF_INET, &(ipv4->sin_addr), ipaddr, INET_ADDRSTRLEN);
1505                 ipv6_route = false;
1506                 break;
1507         case AF_INET6:  /* ipv6 */
1508                 ipaddr = talloc_array(ctx,char,INET6_ADDRSTRLEN);
1509                 ipv6 = (struct sockaddr_in6 *) res->ai_addr;
1510                 inet_ntop(AF_INET6, &(ipv6->sin6_addr), ipaddr, INET6_ADDRSTRLEN);
1511                 ipv6_route = true;
1512                 break;
1513         default:        /* error */
1514                 freeaddrinfo(res);
1515                 return NULL;
1516         }
1517         freeaddrinfo(res);
1518
1519         const char *argv[] = {
1520                 pb_system_apps.ip,
1521                 ipv6_route ? "-6" : "-4",
1522                 "route", "show", "to", "match",
1523                 ipaddr,
1524                 NULL
1525         };
1526
1527         p = process_create(ctx);
1528
1529         p->path = pb_system_apps.ip;
1530         p->argv = argv;
1531         p->keep_stdout = true;
1532
1533         rc = process_run_sync(p);
1534
1535         if (rc || p->exit_status) {
1536                 /* ip has complained for some reason; most likely
1537                  * there is no route to the host - bail out */
1538                 pb_debug("%s: `ip` returns non-zero exit status\n", __func__);
1539                 pb_debug("ip buf: %s\n", p->stdout_buf);
1540                 process_release(p);
1541                 return NULL;
1542         }
1543
1544         buf = p->stdout_buf;
1545         /* If a route is found, ip-route output will be of the form
1546          * "... dev DEVNAME ... " */
1547         tok = strtok(buf, delim);
1548         while (tok) {
1549                 if (!strcmp(tok, "dev")) {
1550                         tok = strtok(NULL, delim);
1551                         dev = talloc_strdup(ctx, tok);
1552                         break;
1553                 }
1554                 tok = strtok(NULL, delim);
1555         }
1556
1557         process_release(p);
1558         if (dev)
1559                 pb_debug("%s: Found interface '%s'\n", __func__,dev);
1560         return dev;
1561 }
1562
1563 static void process_url_cb(struct load_url_result *result, void *data)
1564 {
1565         struct device_handler *handler;
1566         struct discover_context *ctx;
1567         struct discover_device *dev;
1568         struct event *event = data;
1569         const char *mac;
1570
1571         if (result->status != LOAD_OK) {
1572                 pb_log_fn("Load failed for %s\n", result->url->full);
1573                 return;
1574         }
1575
1576         if (!event)
1577                 return;
1578
1579         handler = talloc_parent(event);
1580         if (!handler)
1581                 return;
1582
1583         event->device = device_from_addr(event, result->url);
1584         if (!event->device) {
1585                 pb_log("Downloaded a file but can't find its interface - pretending it was local\n");
1586                 event->device = talloc_asprintf(event, "local");
1587         }
1588
1589         mac = event_get_param(event, "mac");
1590         char *url = talloc_asprintf(event, "file://%s", result->local);
1591         event_set_param(event, "pxeconffile-local", url);
1592
1593         dev = discover_device_create(handler, mac, event->device);
1594         ctx = device_handler_discover_context_create(handler, dev);
1595         talloc_steal(ctx, event);
1596         ctx->event = event;
1597
1598         iterate_parsers(ctx);
1599
1600         device_handler_discover_context_commit(handler, ctx);
1601
1602         talloc_unlink(handler, ctx);
1603 }
1604
1605 void device_handler_process_url(struct device_handler *handler,
1606                 const char *url, const char *mac, const char *ip)
1607 {
1608         struct discover_context *ctx;
1609         struct discover_device *dev;
1610         bool allow_async = false;
1611         struct pb_url *pb_url;
1612         struct event *event;
1613
1614         event = talloc_zero(handler, struct event);
1615         event->type = EVENT_TYPE_USER;
1616         event->action = EVENT_ACTION_URL;
1617
1618         pb_url = pb_url_parse(event, url);
1619         if (!pb_url || (pb_url->scheme != pb_url_file && !pb_url->host)) {
1620                 device_handler_status_err(handler, _("Invalid config URL!"));
1621                 talloc_free(event);
1622                 return;
1623         }
1624
1625         if (url[strlen(url) - 1] == '/') {
1626                 event_set_param(event, "pxepathprefix", url);
1627                 event_set_param(event, "mac", mac);
1628                 event_set_param(event, "ip", ip);
1629                 event->device = device_from_addr(event, pb_url);
1630                 if (!event->device) {
1631                         device_handler_status_err(handler,
1632                                         _("Unable to route to host %s"),
1633                                         pb_url->host);
1634                         talloc_free(event);
1635                         return;
1636                 }
1637         } else {
1638                 event_set_param(event, "pxeconffile", url);
1639                 allow_async = true;
1640         }
1641
1642         if (pb_url->scheme == pb_url_file)
1643                 event->device = talloc_asprintf(event, "local");
1644         else if (allow_async) {
1645                 /* If file is remote load asynchronously before passing to
1646                  * parser. This allows us to wait for network to be available */
1647                 if (!load_url_async(handler, pb_url, process_url_cb, event,
1648                                         NULL, handler)) {
1649                         pb_log("Failed to load url %s\n", pb_url->full);
1650                         device_handler_status_err(handler, _("Failed to load URL!"));
1651                         talloc_free(event);
1652                 }
1653                 return;
1654         }
1655
1656         /* If path is local we can parse straight away */
1657
1658         dev = discover_device_create(handler, mac, event->device);
1659         if (pb_url->scheme == pb_url_file)
1660                 dev->device->type = DEVICE_TYPE_ANY;
1661         ctx = device_handler_discover_context_create(handler, dev);
1662         talloc_steal(ctx, event);
1663         ctx->event = event;
1664
1665         iterate_parsers(ctx);
1666
1667         device_handler_discover_context_commit(handler, ctx);
1668
1669         talloc_unlink(handler, ctx);
1670 }
1671
1672 static void plugin_install_cb(struct process *process)
1673 {
1674         struct device_handler *handler = process->data;
1675
1676         if (!handler) {
1677                 pb_log_fn("Missing data!\n");
1678                 return;
1679         }
1680
1681         handler->plugin_installing = false;
1682         if (process->exit_status) {
1683                 device_handler_status_err(handler, "Plugin failed to install!");
1684                 pb_log("Failed to install plugin:\n%s\n", process->stdout_buf);
1685         }
1686 }
1687
1688 void device_handler_install_plugin(struct device_handler *handler,
1689                 const char *plugin_file)
1690 {
1691         struct process *p;
1692         int result;
1693
1694         if (handler->plugin_installing) {
1695                 pb_log("Plugin install cancelled - install already running");
1696                 return;
1697         }
1698
1699         p = process_create(handler);
1700         if (!p) {
1701                 pb_log("install_plugin: Failed to create process\n");
1702                 return;
1703         }
1704
1705         const char *argv[] = {
1706                 pb_system_apps.pb_plugin,
1707                 "install",
1708                 "auto",
1709                 plugin_file,
1710                 NULL
1711         };
1712
1713         p->path = pb_system_apps.pb_plugin;
1714         p->argv = argv;
1715         p->exit_cb = plugin_install_cb;
1716         p->data = handler;
1717         p->keep_stdout = true;
1718
1719         result = process_run_async(p);
1720
1721         if (result)
1722                 device_handler_status_err(handler, "Could not install plugin");
1723         else
1724                 handler->plugin_installing = true;
1725 }
1726
1727 #ifndef PETITBOOT_TEST
1728
1729 /**
1730  * context_commit - Commit a temporary discovery context to the handler,
1731  * and notify the clients about any new options / devices
1732  */
1733 void device_handler_discover_context_commit(struct device_handler *handler,
1734                 struct discover_context *ctx)
1735 {
1736         struct discover_device *dev = ctx->device;
1737         struct discover_boot_option *opt, *tmp;
1738
1739         if (!device_lookup_by_uuid(handler, dev->uuid))
1740                 device_handler_add_device(handler, dev);
1741
1742         /* move boot options from the context to the device */
1743         list_for_each_entry_safe(&ctx->boot_options, opt, tmp, list) {
1744                 list_remove(&opt->list);
1745
1746                 /* All boot options need at least a kernel image */
1747                 if (!opt->boot_image || !opt->boot_image->url) {
1748                         pb_log("boot option %s is missing boot image, ignoring\n",
1749                                 opt->option->id);
1750                         talloc_free(opt);
1751                         continue;
1752                 }
1753
1754                 if (boot_option_resolve(opt, handler)) {
1755                         pb_log("boot option %s is resolved, "
1756                                         "sending to clients\n",
1757                                         opt->option->id);
1758                         list_add_tail(&dev->boot_options, &opt->list);
1759                         talloc_steal(dev, opt);
1760                         boot_option_finalise(handler, opt);
1761                         notify_boot_option(handler, opt);
1762                 } else {
1763                         if (!opt->source->resolve_resource) {
1764                                 pb_log("parser %s gave us an unresolved "
1765                                         "resource (%s), but no way to "
1766                                         "resolve it\n",
1767                                         opt->source->name, opt->option->id);
1768                                 talloc_free(opt);
1769                         } else {
1770                                 pb_log("boot option %s is unresolved, "
1771                                                 "adding to queue\n",
1772                                                 opt->option->id);
1773                                 list_add(&handler->unresolved_boot_options,
1774                                                 &opt->list);
1775                                 talloc_steal(handler, opt);
1776                         }
1777                 }
1778         }
1779 }
1780
1781 void device_handler_add_plugin_option(struct device_handler *handler,
1782                 struct plugin_option *opt)
1783 {
1784         struct plugin_option *tmp;
1785         unsigned int i;
1786
1787         for (i = 0; i < handler->n_plugins; i++) {
1788                 tmp = handler->plugins[i];
1789                 /* If both id and version match, ignore */
1790                 if (strncmp(opt->id, tmp->id, strlen(opt->id)) == 0 &&
1791                                 strcmp(opt->version, tmp->version) == 0) {
1792                         pb_log("discover: Plugin '%s' already exists, ignoring\n",
1793                                         opt->id);
1794                         return;
1795                 }
1796         }
1797
1798         handler->plugins = talloc_realloc(handler, handler->plugins,
1799                         struct plugin_option *, handler->n_plugins + 1);
1800         if (!handler->plugins) {
1801                 pb_log("Failed to allocate memory for new plugin\n");
1802                 handler->n_plugins = 0;
1803                 return;
1804         }
1805
1806         handler->plugins[handler->n_plugins++] = opt;
1807         discover_server_notify_plugin_option_add(handler->server, opt);
1808 }
1809
1810 static void device_handler_update_lang(const char *lang)
1811 {
1812         const char *cur_lang;
1813
1814         if (!lang)
1815                 return;
1816
1817         cur_lang = setlocale(LC_ALL, NULL);
1818         if (cur_lang && !strcmp(cur_lang, lang))
1819                 return;
1820
1821         setlocale(LC_ALL, lang);
1822 }
1823
1824 static int device_handler_init_sources(struct device_handler *handler)
1825 {
1826         /* init our device sources: udev, network and user events */
1827         handler->user_event = user_event_init(handler, handler->waitset);
1828         if (!handler->user_event)
1829                 return -1;
1830
1831         handler->network = network_init(handler, handler->waitset,
1832                         handler->dry_run);
1833         if (!handler->network)
1834                 return -1;
1835
1836         handler->udev = udev_init(handler, handler->waitset);
1837         if (!handler->udev)
1838                 return -1;
1839
1840         return 0;
1841 }
1842
1843 static void device_handler_reinit_sources(struct device_handler *handler)
1844 {
1845         /* if we haven't initialised sources previously (becuase we started in
1846          * safe mode), then init once here. */
1847         if (!(handler->udev || handler->network || handler->user_event)) {
1848                 device_handler_init_sources(handler);
1849                 return;
1850         }
1851
1852         system_info_reinit();
1853
1854         network_shutdown(handler->network);
1855         handler->network = network_init(handler, handler->waitset,
1856                         handler->dry_run);
1857
1858         udev_reinit(handler->udev);
1859 }
1860
1861 static inline const char *get_device_path(struct discover_device *dev)
1862 {
1863         return dev->ramdisk ? dev->ramdisk->snapshot : dev->device_path;
1864 }
1865
1866 static char *check_subvols(struct discover_device *dev)
1867 {
1868         const char *fstype = discover_device_get_param(dev, "ID_FS_TYPE");
1869         struct stat sb;
1870         char *path;
1871         int rc;
1872
1873         if (strncmp(fstype, "btrfs", strlen("btrfs")))
1874                 return dev->mount_path;
1875
1876         /* On btrfs a device's root may be under a subvolume path */
1877         path = join_paths(dev, dev->mount_path, "@");
1878         rc = stat(path, &sb);
1879         if (!rc && S_ISDIR(sb.st_mode)) {
1880                 pb_debug("Using '%s' for btrfs root path\n", path);
1881                 return path;
1882         }
1883
1884         talloc_free(path);
1885         return dev->mount_path;
1886 }
1887
1888 static bool check_existing_mount(struct discover_device *dev)
1889 {
1890         struct stat devstat, mntstat;
1891         const char *device_path;
1892         struct mntent *mnt;
1893         FILE *fp;
1894         int rc;
1895
1896         device_path = get_device_path(dev);
1897
1898         rc = stat(device_path, &devstat);
1899         if (rc) {
1900                 pb_debug("%s: stat failed: %s\n", __func__, strerror(errno));
1901                 return false;
1902         }
1903
1904         if (!S_ISBLK(devstat.st_mode)) {
1905                 pb_debug("%s: %s isn't a block device?\n", __func__,
1906                                 dev->device_path);
1907                 return false;
1908         }
1909
1910         fp = fopen("/proc/self/mounts", "r");
1911
1912         for (;;) {
1913                 mnt = getmntent(fp);
1914                 if (!mnt)
1915                         break;
1916
1917                 if (!mnt->mnt_fsname || mnt->mnt_fsname[0] != '/')
1918                         continue;
1919
1920                 rc = stat(mnt->mnt_fsname, &mntstat);
1921                 if (rc)
1922                         continue;
1923
1924                 if (!S_ISBLK(mntstat.st_mode))
1925                         continue;
1926
1927                 if (mntstat.st_rdev == devstat.st_rdev) {
1928                         dev->mount_path = talloc_strdup(dev, mnt->mnt_dir);
1929                         dev->root_path = check_subvols(dev);
1930                         dev->mounted_rw = !!hasmntopt(mnt, "rw");
1931                         dev->mounted = true;
1932                         dev->unmount = false;
1933
1934                         pb_debug("%s: %s is already mounted (r%c) at %s\n",
1935                                         __func__, dev->device_path,
1936                                         dev->mounted_rw ? 'w' : 'o',
1937                                         mnt->mnt_dir);
1938                         break;
1939                 }
1940         }
1941
1942         fclose(fp);
1943
1944         return mnt != NULL;
1945 }
1946
1947 /*
1948  * Attempt to mount a filesystem safely, while handling certain filesytem-
1949  * specific options
1950  */
1951 static int try_mount(const char *device_path, const char *mount_path,
1952                              const char *fstype, unsigned long flags,
1953                              bool have_snapshot)
1954 {
1955         const char *fs, *safe_opts;
1956         int rc;
1957
1958         /* Mount ext3 as ext4 instead so 'norecovery' can be used */
1959         if (strncmp(fstype, "ext3", strlen("ext3")) == 0) {
1960                 pb_debug("Mounting ext3 filesystem as ext4\n");
1961                 fs = "ext4";
1962         } else
1963                 fs = fstype;
1964
1965         if (strncmp(fs, "xfs", strlen("xfs")) == 0 ||
1966             strncmp(fs, "ext4", strlen("ext4")) == 0)
1967                 safe_opts = "norecovery";
1968         else
1969                 safe_opts = NULL;
1970
1971         errno = 0;
1972         /* If no snapshot is available don't attempt recovery */
1973         if (!have_snapshot)
1974                 return mount(device_path, mount_path, fs, flags, safe_opts);
1975
1976         rc = mount(device_path, mount_path, fs, flags, NULL);
1977
1978         if (!rc)
1979                 return rc;
1980
1981         /* Mounting failed; some filesystems will fail to mount if a recovery
1982          * journal exists (eg. cross-endian XFS), so try again with norecovery
1983          * where that option is available.
1984          * If mounting read-write just return the error as norecovery is not a
1985          * valid option */
1986         if ((flags & MS_RDONLY) != MS_RDONLY || !safe_opts)
1987                 return rc;
1988
1989         errno = 0;
1990         return mount(device_path, mount_path, fs, flags, safe_opts);
1991 }
1992
1993 static int mount_device(struct discover_device *dev)
1994 {
1995         const char *fstype, *device_path;
1996         int rc;
1997
1998         if (!dev->device_path)
1999                 return -1;
2000
2001         if (dev->mounted)
2002                 return 0;
2003
2004         if (check_existing_mount(dev))
2005                 return 0;
2006
2007         fstype = discover_device_get_param(dev, "ID_FS_TYPE");
2008         if (!fstype)
2009                 return 0;
2010
2011         dev->mount_path = join_paths(dev, mount_base(),
2012                                         dev->device_path);
2013
2014         if (pb_mkdir_recursive(dev->mount_path)) {
2015                 pb_log("couldn't create mount directory %s: %s\n",
2016                                 dev->mount_path, strerror(errno));
2017                 goto err_free;
2018         }
2019
2020         device_path = get_device_path(dev);
2021
2022         pb_log("mounting device %s read-only\n", dev->device_path);
2023         rc = try_mount(device_path, dev->mount_path, fstype,
2024                        MS_RDONLY | MS_SILENT, dev->ramdisk);
2025
2026         /* If mount fails clean up any snapshot and try again */
2027         if (rc && dev->ramdisk) {
2028                 pb_log("couldn't mount snapshot for %s: mount failed: %s\n",
2029                                 device_path, strerror(errno));
2030                 pb_log("falling back to actual device\n");
2031
2032                 devmapper_destroy_snapshot(dev);
2033
2034                 device_path = get_device_path(dev);
2035                 pb_log("mounting device %s read-only\n", dev->device_path);
2036                 rc = try_mount(device_path, dev->mount_path, fstype,
2037                                MS_RDONLY | MS_SILENT, dev->ramdisk);
2038         }
2039
2040         if (!rc) {
2041                 dev->mounted = true;
2042                 dev->mounted_rw = false;
2043                 dev->unmount = true;
2044                 dev->root_path = check_subvols(dev);
2045                 return 0;
2046         }
2047
2048         pb_log("couldn't mount device %s: mount failed: %s\n",
2049                         device_path, strerror(errno));
2050
2051         pb_rmdir_recursive(mount_base(), dev->mount_path);
2052 err_free:
2053         talloc_free(dev->mount_path);
2054         dev->mount_path = NULL;
2055         return -1;
2056 }
2057
2058 static int umount_device(struct discover_device *dev)
2059 {
2060         const char *device_path;
2061         int rc;
2062
2063         if (!dev->mounted || !dev->unmount)
2064                 return 0;
2065
2066         device_path = get_device_path(dev);
2067
2068         pb_log("unmounting device %s\n", device_path);
2069         rc = umount(dev->mount_path);
2070         if (rc)
2071                 return -1;
2072
2073         dev->mounted = false;
2074         devmapper_destroy_snapshot(dev);
2075
2076         pb_rmdir_recursive(mount_base(), dev->mount_path);
2077
2078         talloc_free(dev->mount_path);
2079         dev->mount_path = NULL;
2080         dev->root_path = NULL;
2081
2082         return 0;
2083 }
2084
2085 int device_request_write(struct discover_device *dev, bool *release)
2086 {
2087         const char *fstype, *device_path;
2088         const struct config *config;
2089         int rc;
2090
2091         *release = false;
2092
2093         config = config_get();
2094         if (!config->allow_writes)
2095                 return -1;
2096
2097         if (!dev->mounted)
2098                 return -1;
2099
2100         if (dev->mounted_rw)
2101                 return 0;
2102
2103         fstype = discover_device_get_param(dev, "ID_FS_TYPE");
2104
2105         device_path = get_device_path(dev);
2106
2107         pb_log("remounting device %s read-write\n", device_path);
2108
2109         rc = umount(dev->mount_path);
2110         if (rc) {
2111                 pb_log("Failed to unmount %s: %s\n",
2112                        dev->mount_path, strerror(errno));
2113                 return -1;
2114         }
2115
2116         rc = try_mount(device_path, dev->mount_path, fstype,
2117                        MS_SILENT, dev->ramdisk);
2118         if (rc)
2119                 goto mount_ro;
2120
2121         dev->mounted_rw = true;
2122         *release = true;
2123         return 0;
2124
2125 mount_ro:
2126         pb_log("Unable to remount device %s read-write: %s\n",
2127                device_path, strerror(errno));
2128         rc = try_mount(device_path, dev->mount_path, fstype,
2129                        MS_RDONLY | MS_SILENT, dev->ramdisk);
2130         if (rc)
2131                 pb_log("Unable to recover mount for %s: %s\n",
2132                        device_path, strerror(errno));
2133         return -1;
2134 }
2135
2136 void device_release_write(struct discover_device *dev, bool release)
2137 {
2138         const char *fstype, *device_path;
2139
2140         if (!release)
2141                 return;
2142
2143         device_path = get_device_path(dev);
2144
2145         fstype = discover_device_get_param(dev, "ID_FS_TYPE");
2146
2147         pb_log("remounting device %s read-only\n", device_path);
2148
2149         if (umount(dev->mount_path)) {
2150                 pb_log("Failed to unmount %s\n", dev->mount_path);
2151                 return;
2152         }
2153         dev->mounted_rw = dev->mounted = false;
2154
2155         if (dev->ramdisk) {
2156                 devmapper_merge_snapshot(dev);
2157                 /* device_path becomes stale after merge */
2158                 device_path = get_device_path(dev);
2159         }
2160
2161         if (try_mount(device_path, dev->mount_path, fstype,
2162                        MS_RDONLY | MS_SILENT, dev->ramdisk))
2163                 pb_log("Failed to remount %s read-only: %s\n",
2164                        device_path, strerror(errno));
2165         else
2166                 dev->mounted = true;
2167 }
2168
2169 void device_sync_snapshots(struct device_handler *handler, const char *device)
2170 {
2171         struct discover_device *dev = NULL;
2172         unsigned int i;
2173
2174         if (device) {
2175                 /* Find matching device and sync */
2176                 dev = device_lookup_by_name(handler, device);
2177                 if (!dev) {
2178                         pb_log("%s: device name '%s' unrecognised\n",
2179                                 __func__, device);
2180                         return;
2181                 }
2182                 if (dev->ramdisk)
2183                         device_release_write(dev, true);
2184                 else
2185                         pb_log("%s has no snapshot to merge, skipping\n",
2186                                 dev->device->id);
2187                 return;
2188         }
2189
2190         /* Otherwise sync all relevant devices */
2191         for (i = 0; i < handler->n_devices; i++) {
2192                 dev = handler->devices[i];
2193                 if (dev->device->type != DEVICE_TYPE_DISK &&
2194                         dev->device->type != DEVICE_TYPE_USB)
2195                         continue;
2196                 if (dev->ramdisk)
2197                         device_release_write(dev, true);
2198                 else
2199                         pb_log("%s has no snapshot to merge, skipping\n",
2200                                 dev->device->id);
2201         }
2202 }
2203
2204 #else
2205
2206 void device_handler_discover_context_commit(
2207                 struct device_handler *handler __attribute__((unused)),
2208                 struct discover_context *ctx __attribute__((unused)))
2209 {
2210         pb_log_fn("stubbed out for test cases\n");
2211 }
2212
2213 static void device_handler_update_lang(const char *lang __attribute__((unused)))
2214 {
2215 }
2216
2217 static int device_handler_init_sources(
2218                 struct device_handler *handler __attribute__((unused)))
2219 {
2220         return 0;
2221 }
2222
2223 static void device_handler_reinit_sources(
2224                 struct device_handler *handler __attribute__((unused)))
2225 {
2226 }
2227
2228 static int umount_device(struct discover_device *dev __attribute__((unused)))
2229 {
2230         return 0;
2231 }
2232
2233 static int __attribute__((unused)) mount_device(
2234                 struct discover_device *dev __attribute__((unused)))
2235 {
2236         return 0;
2237 }
2238
2239 int device_request_write(struct discover_device *dev __attribute__((unused)),
2240                 bool *release)
2241 {
2242         *release = true;
2243         return 0;
2244 }
2245
2246 void device_release_write(struct discover_device *dev __attribute__((unused)),
2247         bool release __attribute__((unused)))
2248 {
2249 }
2250
2251 void device_sync_snapshots(
2252                 struct device_handler *handler __attribute__((unused)),
2253                 const char *device __attribute__((unused)))
2254 {
2255 }
2256
2257 #endif