]> git.ozlabs.org Git - petitboot/blob - discover/paths.c
discover/powerpc: Add param_name arg
[petitboot] / discover / paths.c
1 #if defined(HAVE_CONFIG_H)
2 #include "config.h"
3 #endif
4
5 #include <assert.h>
6 #include <netdb.h>
7 #include <string.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <sys/socket.h>
11 #include <sys/stat.h>
12 #include <sys/types.h>
13
14 #include <talloc/talloc.h>
15 #include <system/system.h>
16 #include <process/process.h>
17 #include <url/url.h>
18 #include <log/log.h>
19 #include "i18n/i18n.h"
20
21 #include "paths.h"
22 #include "device-handler.h"
23 #include "sysinfo.h"
24
25 #define DEVICE_MOUNT_BASE (LOCAL_STATE_DIR "/petitboot/mnt")
26
27
28 struct list     pending_network_jobs;
29
30 struct network_job {
31         struct load_task        *task;
32         int                     flags;
33
34         struct list_item        list;
35 };
36
37 struct load_task {
38         struct pb_url           *url;
39         struct process          *process;
40         struct load_url_result  *result;
41         bool                    async;
42         load_url_complete       async_cb;
43         void                    *async_data;
44 };
45
46 const char *mount_base(void)
47 {
48         return DEVICE_MOUNT_BASE;
49 }
50
51 char *join_paths(void *alloc_ctx, const char *a, const char *b)
52 {
53         char *full_path;
54
55         full_path = talloc_array(alloc_ctx, char, strlen(a) + strlen(b) + 2);
56
57         strcpy(full_path, a);
58         if (b[0] != '/' && a[strlen(a) - 1] != '/')
59                 strcat(full_path, "/");
60         strcat(full_path, b);
61
62         return full_path;
63 }
64
65 #ifndef PETITBOOT_TEST
66
67 #ifdef WITH_BUSYBOX
68 static inline bool have_busybox(void) { return true; }
69 #else
70 static inline bool have_busybox(void) { return false; }
71 #endif
72
73 static char *local_name(void *ctx)
74 {
75         char *ret, tmp[] = "/tmp/pb-XXXXXX";
76         mode_t oldmask;
77         int fd;
78
79         oldmask = umask(0644);
80         fd = mkstemp(tmp);
81         umask(oldmask);
82
83         if (fd < 0)
84                 return NULL;
85
86         close(fd);
87
88         ret = talloc_strdup(ctx, tmp);
89
90         return ret;
91 }
92
93 static void load_url_result_cleanup_local(struct load_url_result *result)
94 {
95         if (result->cleanup_local)
96                 unlink(result->local);
97 }
98
99 static void load_url_process_exit(struct process *process)
100 {
101         struct load_task *task = process->data;
102         struct load_url_result *result;
103         load_url_complete cb;
104         void *data;
105
106         pb_debug("The download client '%s' [pid %d, url %s] exited, rc %d\n",
107                         process->path, process->pid, task->url->full,
108                         process->exit_status);
109
110         result = task->result;
111         data = task->async_data;
112         cb = task->async_cb;
113
114         if (result->status == LOAD_CANCELLED) {
115                 load_url_result_cleanup_local(result);
116         } else if (process_exit_ok(process)) {
117                 result->status = LOAD_OK;
118         } else {
119                 result->status = LOAD_ERROR;
120                 load_url_result_cleanup_local(result);
121                 pb_debug("Download client stdout buffer:\n%s\n",
122                                 process->stdout_buf);
123         }
124
125         if (result->status == LOAD_OK && process->stdout_data)
126                 device_handler_status_info(process->stdout_data,
127                                 _("Download complete: %s"), task->url->file);
128
129         /* The load callback may well free the ctx, which was the
130          * talloc parent of the task. Therefore, we want to do our cleanup
131          * before invoking it
132          */
133         process_release(process);
134         talloc_free(task);
135         result->task = NULL;
136
137         cb(result, data);
138 }
139
140 /*
141  * Callback to retrieve progress information from Busybox utilities.
142  * Busybox utilities use a common progress bar format which progress percentage
143  * and current size can be can be parsed from.
144  */
145 static int busybox_progress_cb(void *arg)
146 {
147         const char *busybox_fmt = "%*s %u%*[%* |]%u%c %*u:%*u:%*u ETA\n";
148         struct process_info *procinfo = arg;
149         char *n, *s, suffix, *line = NULL;
150         struct device_handler *handler;
151         unsigned int percentage, size;
152         struct process *p;
153         int rc;
154
155         if (!arg)
156                 return -1;
157
158         p = procinfo_get_process(procinfo);
159         handler = p->stdout_data;
160
161         rc = process_process_stdout(procinfo, &line);
162
163         if (rc) {
164                 /* Unregister ourselves from progress tracking */
165                 device_handler_status_download_remove(handler, procinfo);
166         }
167
168         if (rc || !line)
169                 return rc;
170
171         rc = sscanf(line, busybox_fmt, &percentage, &size, &suffix);
172
173         /*
174          * Many unrecognised lines are partial updates. If we see a partial
175          * line with a newline character, see if we can match a valid line
176          * at the end of stdout_buf
177          */
178         if (rc != 3) {
179                 n = strchr(line, '\n');
180                 if (n)
181                         for (s = n - 1; s >= p->stdout_buf; s--)
182                                 if (*s == '\n') {
183                                         rc = sscanf(s + 1, busybox_fmt,
184                                                 &percentage, &size, &suffix);
185                                         break;
186                                 }
187         }
188
189         if (rc != 3) {
190                 percentage = size = 0;
191                 suffix = ' ';
192         }
193
194         device_handler_status_download(handler, procinfo,
195                         percentage, size, suffix);
196
197         return 0;
198 }
199
200
201
202 static void load_process_to_local_file(struct load_task *task,
203                 const char **argv, int argv_local_idx)
204 {
205         int rc;
206
207         task->result->local = local_name(task->result);
208         if (!task->result->local) {
209                 task->result->status = LOAD_ERROR;
210                 return;
211         }
212         task->result->cleanup_local = true;
213
214         if (argv_local_idx)
215                 argv[argv_local_idx] = task->result->local;
216
217         task->process->argv = argv;
218         task->process->path = argv[0];
219
220         if (task->async) {
221                 rc = process_run_async(task->process);
222                 if (rc) {
223                         process_release(task->process);
224                         task->process = NULL;
225                 }
226                 task->result->status = rc ? LOAD_ERROR : LOAD_ASYNC;
227         } else {
228                 rc = process_run_sync(task->process);
229                 if (rc || !process_exit_ok(task->process))
230                         task->result->status = LOAD_ERROR;
231                 else
232                         task->result->status = LOAD_OK;
233                 process_release(task->process);
234                 task->process = NULL;
235         }
236 }
237
238 /**
239  * pb_load_nfs - Create a mountpoint, set the local file within that
240  * mountpoint, and run the appropriate mount command
241  */
242
243 static void load_nfs(struct load_task *task)
244 {
245         char *mountpoint, *opts;
246         int rc;
247         const char *argv[] = {
248                         pb_system_apps.mount,
249                         "-t", "nfs",
250                         NULL,                   /* 3: opts */
251                         task->url->host,
252                         task->url->dir,
253                         NULL,                   /* 6: mountpoint */
254                         NULL,
255         };
256
257         task->result->status = LOAD_ERROR;
258         mountpoint = local_name(task->result);
259         if (!mountpoint)
260                 return;
261         task->result->cleanup_local = true;
262         argv[6] = mountpoint;
263
264         rc = pb_mkdir_recursive(mountpoint);
265         if (rc)
266                 return;
267
268         opts = talloc_strdup(NULL, "ro,nolock,nodiratime");
269         argv[3] = opts;
270
271         if (task->url->port)
272                 opts = talloc_asprintf_append(opts, ",port=%s",
273                                                 task->url->port);
274
275         task->result->local = talloc_asprintf(task->result, "%s/%s",
276                                                         mountpoint,
277                                                         task->url->path);
278
279         task->process->path = pb_system_apps.mount;
280         task->process->argv = argv;
281
282         if (task->async) {
283                 rc = process_run_async(task->process);
284                 if (rc) {
285                         process_release(task->process);
286                         task->process = NULL;
287                 }
288                 task->result->status = rc ? LOAD_ERROR : LOAD_ASYNC;
289         } else {
290                 rc = process_run_sync(task->process);
291                 task->result->status = rc ? LOAD_ERROR : LOAD_OK;
292                 process_release(task->process);
293                 task->process = NULL;
294         }
295
296         talloc_free(opts);
297 }
298
299 static void load_sftp(struct load_task *task)
300 {
301         const char *argv[] = {
302                         pb_system_apps.sftp,
303                         NULL,           /* 1: host:path */
304                         NULL,           /* 2: local file */
305                         NULL,
306         };
307
308         argv[1] = talloc_asprintf(task, "%s:%s",
309                                 task->url->host, task->url->path);
310         load_process_to_local_file(task, argv, 2);
311 }
312
313 static enum tftp_type check_tftp_type(void *ctx)
314 {
315         const char *argv[] = { pb_system_apps.tftp, "-V", NULL };
316         struct process *process;
317         enum tftp_type type;
318         int rc;
319
320         process = process_create(ctx);
321         process->path = pb_system_apps.tftp;
322         process->argv = argv;
323         process->keep_stdout = true;
324         process->add_stderr = true;
325         rc = process_run_sync(process);
326
327         if (rc || !process->stdout_buf || process->stdout_len == 0) {
328                 pb_log("Can't check TFTP client type!\n");
329                 type = TFTP_TYPE_BROKEN;
330
331         } else if (memmem(process->stdout_buf, process->stdout_len,
332                                 "tftp-hpa", strlen("tftp-hpa"))) {
333                 pb_debug("Found TFTP client type: tftp-hpa\n");
334                 type = TFTP_TYPE_HPA;
335
336         } else if (memmem(process->stdout_buf, process->stdout_len,
337                                 "BusyBox", strlen("BusyBox"))) {
338                 pb_debug("Found TFTP client type: BusyBox tftp\n");
339                 type = TFTP_TYPE_BUSYBOX;
340
341         } else {
342                 pb_log("Unknown TFTP client type!\n");
343                 type = TFTP_TYPE_BROKEN;
344         }
345
346         process_release(process);
347         return type;
348 }
349
350 static void load_tftp(struct load_task *task)
351 {
352         const char *port = "69";
353         const char *argv[10] = {
354                 pb_system_apps.tftp,
355         };
356
357         if (task->url->port)
358                 port = task->url->port;
359
360         if (tftp_type == TFTP_TYPE_UNKNOWN)
361                 tftp_type = check_tftp_type(task);
362
363         if (tftp_type == TFTP_TYPE_BUSYBOX) {
364                 argv[1] = "-g";
365                 argv[2] = "-l";
366                 argv[3] = NULL; /* 3: local file */
367                 argv[4] = "-r";
368                 argv[5] = task->url->path;
369                 argv[6] = task->url->host;
370                 argv[7] = port;
371                 argv[8] = NULL;
372
373                 load_process_to_local_file(task, argv, 3);
374
375         } else if (tftp_type == TFTP_TYPE_HPA) {
376                 argv[1] = "-m";
377                 argv[2] = "binary";
378                 argv[3] = task->url->host;
379                 argv[4] = port;
380                 argv[5] = "-c";
381                 argv[6] = "get";
382                 argv[7] = task->url->path;
383                 argv[8] = NULL; /* 8: local file */
384                 argv[9] = NULL;
385                 load_process_to_local_file(task, argv, 8);
386
387         } else
388                 task->result->status = LOAD_ERROR;
389 }
390
391 enum wget_flags {
392         wget_empty                      = 0x1,
393         wget_no_check_certificate       = 0x2,
394         wget_verbose                    = 0x4,
395 };
396
397 /**
398  * pb_load_wget - Loads a remote file via wget and returns the local file path.
399  *
400  * Returns the local file path in a talloc'ed character string on success,
401  * or NULL on error.
402  */
403
404 static void load_wget(struct load_task *task, int flags)
405 {
406         const char *argv[] = {
407                 pb_system_apps.wget,
408                 "-O",
409                 NULL, /* 2: local file */
410                 NULL, /* 3 (optional): --quiet */
411                 NULL, /* 4 (optional): --no-check-certificate */
412                 NULL, /* 5: URL */
413                 NULL,
414         };
415         int i;
416
417         if (task->process->stdout_cb)
418                 flags |= wget_verbose;
419
420         i = 3;
421 #if defined(DEBUG)
422         flags |= wget_verbose;
423 #endif
424         if ((flags & wget_verbose) == 0)
425                 argv[i++] = "--quiet";
426
427         if (flags & wget_no_check_certificate)
428                 argv[i++] = "--no-check-certificate";
429
430         argv[i] = task->url->full;
431
432         load_process_to_local_file(task, argv, 2);
433 }
434
435 /* Although we don't need to load anything for a local path (we just return
436  * the path from the file:// URL), the other load helpers will error-out on
437  * non-existant files. So, do the same here with an access() check on the local
438  * filename.
439  */
440 static void load_local(struct load_task *task)
441 {
442         struct load_url_result *result = task->result;
443         int rc;
444
445         rc = access(task->url->path, F_OK);
446         if (rc) {
447                 result->status = LOAD_ERROR;
448         } else {
449                 result->local = talloc_strdup(task->result, task->url->path);
450                 result->status = LOAD_OK;
451         }
452
453         task->async_cb(task->result, task->async_data);
454 }
455
456 static void load_url_async_start_pending(struct load_task *task, int flags)
457 {
458         pb_log("Starting pending job for %s\n", task->url->full);
459
460         switch (task->url->scheme) {
461         case pb_url_ftp:
462         case pb_url_http:
463                 load_wget(task, flags);
464                 break;
465         case pb_url_https:
466                 flags |= wget_no_check_certificate;
467                 load_wget(task, flags);
468                 break;
469         case pb_url_nfs:
470                 load_nfs(task);
471                 break;
472         case pb_url_sftp:
473                 load_sftp(task);
474                 break;
475         case pb_url_tftp:
476                 load_tftp(task);
477                 break;
478         default:
479                 /* Shouldn't be a need via this path but.. */
480                 load_local(task);
481                 break;
482         }
483
484         if (task->result->status == LOAD_ERROR) {
485                 pb_log("Pending job failed for %s\n", task->url->full);
486                 load_url_result_cleanup_local(task->result);
487                 talloc_free(task->result);
488                 talloc_free(task);
489         }
490 }
491
492 void pending_network_jobs_start(void)
493 {
494         struct network_job *job, *tmp;
495
496         if (!pending_network_jobs.head.next)
497                 return;
498
499         list_for_each_entry_safe(&pending_network_jobs, job, tmp, list) {
500                 load_url_async_start_pending(job->task, job->flags);
501                 list_remove(&job->list);
502         }
503 }
504
505 void pending_network_jobs_cancel(void)
506 {
507         struct network_job *job, *tmp;
508
509         if (!pending_network_jobs.head.next)
510                 return;
511
512         list_for_each_entry_safe(&pending_network_jobs, job, tmp, list)
513                 talloc_free(job);
514         list_init(&pending_network_jobs);
515 }
516
517 static void pending_network_jobs_add(struct load_task *task, int flags)
518 {
519         struct network_job *job;
520
521         if (!pending_network_jobs.head.next)
522                 list_init(&pending_network_jobs);
523
524         job = talloc(task, struct network_job);
525         if (!job) {
526                 pb_log("Failed to allocate space for pending job\n");
527                 return;
528         }
529
530         job->task = task;
531         job->flags = flags;
532         list_add_tail(&pending_network_jobs, &job->list);
533 }
534
535
536 /**
537  * load_url - Loads a (possibly) remote URL and returns the local file
538  * path.
539  * @ctx: The talloc context to associate with the returned string.
540  * @url: The remote file URL.
541  * @tempfile: An optional variable pointer to be set when a temporary local
542  *  file is created.
543  * @url_cb: An optional callback pointer if the caller wants to load url
544  *  asynchronously.
545  *
546  * Returns the local file path in a talloc'ed character string on success,
547  * or NULL on error.
548  */
549
550 struct load_url_result *load_url_async(void *ctx, struct pb_url *url,
551                 load_url_complete async_cb, void *async_data,
552                 waiter_cb stdout_cb, void *stdout_data)
553 {
554         struct load_url_result *result;
555         struct load_task *task;
556         struct addrinfo *res;
557         int flags = 0;
558
559         if (!url)
560                 return NULL;
561
562         task = talloc_zero(ctx, struct load_task);
563         task->url = url;
564         task->async = async_cb != NULL;
565         task->result = talloc_zero(ctx, struct load_url_result);
566         task->result->task = task;
567         task->result->url = url;
568         task->process = process_create(task);
569         if (task->async) {
570                 task->async_cb = async_cb;
571                 task->async_data = async_data;
572                 task->process->exit_cb = load_url_process_exit;
573                 task->process->data = task;
574                 task->process->stdout_cb = stdout_cb;
575                 task->process->stdout_data = stdout_data;
576         }
577
578         if (!stdout_cb && stdout_data && have_busybox())
579                 task->process->stdout_cb = busybox_progress_cb;
580
581         /* Make sure we save output for any task that has a custom handler */
582         if (task->process->stdout_cb) {
583                 task->process->add_stderr = true;
584                 task->process->keep_stdout = true;
585         }
586
587         /* If the url is remote but network is not yet available queue up this
588          * load for later */
589         if (url->scheme != pb_url_file) {
590                 if (getaddrinfo(url->host, NULL, NULL, &res) != 0) {
591                         pb_log("load task for %s queued pending network\n", url->full);
592                         pending_network_jobs_add(task, flags);
593                         task->result->status = LOAD_ASYNC;
594                         return task->result;
595                 }
596                 freeaddrinfo(res);
597         }
598
599         switch (url->scheme) {
600         case pb_url_ftp:
601         case pb_url_http:
602                 load_wget(task, flags);
603                 break;
604         case pb_url_https:
605                 flags |= wget_no_check_certificate;
606                 load_wget(task, flags);
607                 break;
608         case pb_url_nfs:
609                 load_nfs(task);
610                 break;
611         case pb_url_sftp:
612                 load_sftp(task);
613                 break;
614         case pb_url_tftp:
615                 load_tftp(task);
616                 break;
617         default:
618                 load_local(task);
619                 break;
620         }
621
622         result = task->result;
623         if (result->status == LOAD_ERROR) {
624                 load_url_result_cleanup_local(task->result);
625                 talloc_free(result);
626                 talloc_free(task);
627                 return NULL;
628         }
629
630         if (!task->async || result->status == LOAD_OK)
631                 talloc_free(task);
632
633         return result;
634 }
635
636 struct load_url_result *load_url(void *ctx, struct pb_url *url)
637 {
638         return load_url_async(ctx, url, NULL, NULL, NULL, NULL);
639 }
640
641 void load_url_async_cancel(struct load_url_result *res)
642 {
643         struct load_task *task = res->task;
644
645         /* the completion callback may have already been called; this clears
646          * res->task */
647         if (!task)
648                 return;
649
650         if (res->status == LOAD_CANCELLED)
651                 return;
652
653         assert(task->async);
654         assert(task->process);
655
656         res->status = LOAD_CANCELLED;
657         process_stop_async(task->process);
658 }
659
660 #else
661
662 static void __attribute__((unused)) load_local(
663                 struct load_task *task __attribute__((unused)))
664 {
665 }
666 static void __attribute__((unused)) load_wget(
667                 struct load_task *task __attribute__((unused)),
668                 int flags __attribute__((unused)))
669 {
670 }
671 static void __attribute__((unused)) load_tftp(
672                 struct load_task *task __attribute__((unused)))
673 {
674 }
675 static void __attribute__((unused)) load_sftp(
676                 struct load_task *task __attribute__((unused)))
677 {
678 }
679 static void __attribute__((unused)) load_nfs(
680                 struct load_task *task __attribute__((unused)))
681 {
682 }
683 static void __attribute__((unused)) load_url_process_exit(
684                 struct process *process __attribute__((unused)))
685 {
686 }
687
688 #endif