blob: acc5e70d2d3eb5f307b5eebfd92b3096099f63d3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass7a9219c2011-10-03 19:26:44 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass7a9219c2011-10-03 19:26:44 +00004 */
5
Simon Glass62584db2012-12-26 09:53:34 +00006#include <dirent.h>
Simon Glasse1012472012-01-10 15:54:05 -08007#include <errno.h>
Simon Glass7a9219c2011-10-03 19:26:44 +00008#include <fcntl.h>
Simon Glass70db4212012-02-15 15:51:16 -08009#include <getopt.h>
Simon Glass30eef212018-05-16 09:42:22 -060010#include <setjmp.h>
Simon Glass62584db2012-12-26 09:53:34 +000011#include <stdio.h>
Simon Glass2a54d152013-05-19 16:45:35 -070012#include <stdint.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000013#include <stdlib.h>
Simon Glass62584db2012-12-26 09:53:34 +000014#include <string.h>
Mike Frysingerab06a752011-10-26 00:21:29 +000015#include <termios.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010016#include <time.h>
Simon Glasse1012472012-01-10 15:54:05 -080017#include <unistd.h>
Matthias Weisser21899b12011-11-05 11:40:34 +010018#include <sys/mman.h>
Simon Glasse1012472012-01-10 15:54:05 -080019#include <sys/stat.h>
Simon Glass3bdf56b2012-01-10 15:54:06 -080020#include <sys/time.h>
Simon Glasse1012472012-01-10 15:54:05 -080021#include <sys/types.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010022#include <linux/types.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000023
Simon Glass70db4212012-02-15 15:51:16 -080024#include <asm/getopt.h>
25#include <asm/sections.h>
26#include <asm/state.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000027#include <os.h>
Simon Glass94eefde2015-04-20 12:37:22 -060028#include <rtc_def.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000029
30/* Operating System Interface */
31
Simon Glass77595c62013-11-10 10:26:57 -070032struct os_mem_hdr {
33 size_t length; /* number of bytes in the block */
34};
35
Simon Glass7a9219c2011-10-03 19:26:44 +000036ssize_t os_read(int fd, void *buf, size_t count)
37{
38 return read(fd, buf, count);
39}
40
41ssize_t os_write(int fd, const void *buf, size_t count)
42{
43 return write(fd, buf, count);
44}
45
Mike Frysingere2dcefc2011-10-25 13:02:58 +020046off_t os_lseek(int fd, off_t offset, int whence)
47{
48 if (whence == OS_SEEK_SET)
49 whence = SEEK_SET;
50 else if (whence == OS_SEEK_CUR)
51 whence = SEEK_CUR;
52 else if (whence == OS_SEEK_END)
53 whence = SEEK_END;
54 else
55 os_exit(1);
56 return lseek(fd, offset, whence);
57}
58
Simon Glassd9165152012-02-20 23:56:58 -050059int os_open(const char *pathname, int os_flags)
Simon Glass7a9219c2011-10-03 19:26:44 +000060{
Simon Glassd9165152012-02-20 23:56:58 -050061 int flags;
62
63 switch (os_flags & OS_O_MASK) {
64 case OS_O_RDONLY:
65 default:
66 flags = O_RDONLY;
67 break;
68
69 case OS_O_WRONLY:
70 flags = O_WRONLY;
71 break;
72
73 case OS_O_RDWR:
74 flags = O_RDWR;
75 break;
76 }
77
78 if (os_flags & OS_O_CREAT)
79 flags |= O_CREAT;
Simon Glass50b288a2018-10-01 11:55:07 -060080 if (os_flags & OS_O_TRUNC)
81 flags |= O_TRUNC;
Simon Glassd9165152012-02-20 23:56:58 -050082
83 return open(pathname, flags, 0777);
Simon Glass7a9219c2011-10-03 19:26:44 +000084}
85
86int os_close(int fd)
87{
88 return close(fd);
89}
90
Stephen Warrencfd13e82014-03-01 22:18:00 -070091int os_unlink(const char *pathname)
92{
93 return unlink(pathname);
94}
95
Simon Glass7a9219c2011-10-03 19:26:44 +000096void os_exit(int exit_code)
97{
98 exit(exit_code);
99}
Mike Frysingerab06a752011-10-26 00:21:29 +0000100
Simon Glass566bf3a2018-11-06 15:21:25 -0700101int os_write_file(const char *fname, const void *buf, int size)
Simon Glass056a5ce2018-10-01 11:55:08 -0600102{
Simon Glass056a5ce2018-10-01 11:55:08 -0600103 int fd;
104
105 fd = os_open(fname, OS_O_WRONLY | OS_O_CREAT | OS_O_TRUNC);
106 if (fd < 0) {
107 printf("Cannot open file '%s'\n", fname);
108 return -EIO;
109 }
110 if (os_write(fd, buf, size) != size) {
111 printf("Cannot write to file '%s'\n", fname);
Simon Glass566bf3a2018-11-06 15:21:25 -0700112 os_close(fd);
Simon Glass056a5ce2018-10-01 11:55:08 -0600113 return -EIO;
114 }
115 os_close(fd);
Simon Glass056a5ce2018-10-01 11:55:08 -0600116
117 return 0;
118}
119
Simon Glass566bf3a2018-11-06 15:21:25 -0700120int os_read_file(const char *fname, void **bufp, int *sizep)
121{
122 off_t size;
123 int ret = -EIO;
124 int fd;
125
126 fd = os_open(fname, OS_O_RDONLY);
127 if (fd < 0) {
128 printf("Cannot open file '%s'\n", fname);
129 goto err;
130 }
131 size = os_lseek(fd, 0, OS_SEEK_END);
132 if (size < 0) {
133 printf("Cannot seek to end of file '%s'\n", fname);
134 goto err;
135 }
136 if (os_lseek(fd, 0, OS_SEEK_SET) < 0) {
137 printf("Cannot seek to start of file '%s'\n", fname);
138 goto err;
139 }
140 *bufp = os_malloc(size);
141 if (!*bufp) {
142 printf("Not enough memory to read file '%s'\n", fname);
143 ret = -ENOMEM;
144 goto err;
145 }
146 if (os_read(fd, *bufp, size) != size) {
147 printf("Cannot read from file '%s'\n", fname);
148 goto err;
149 }
150 os_close(fd);
151 *sizep = size;
152
153 return 0;
154err:
155 os_close(fd);
156 return ret;
157}
158
Mike Frysingerab06a752011-10-26 00:21:29 +0000159/* Restore tty state when we exit */
160static struct termios orig_term;
Simon Glassffb87902014-02-27 13:26:22 -0700161static bool term_setup;
Simon Glass4af3e9a2018-10-01 11:55:20 -0600162static bool term_nonblock;
Mike Frysingerab06a752011-10-26 00:21:29 +0000163
Simon Glass8939df02015-05-10 21:07:27 -0600164void os_fd_restore(void)
Mike Frysingerab06a752011-10-26 00:21:29 +0000165{
Simon Glass8939df02015-05-10 21:07:27 -0600166 if (term_setup) {
Simon Glass4af3e9a2018-10-01 11:55:20 -0600167 int flags;
168
Simon Glassffb87902014-02-27 13:26:22 -0700169 tcsetattr(0, TCSANOW, &orig_term);
Simon Glass4af3e9a2018-10-01 11:55:20 -0600170 if (term_nonblock) {
171 flags = fcntl(0, F_GETFL, 0);
172 fcntl(0, F_SETFL, flags & ~O_NONBLOCK);
173 }
Simon Glass8939df02015-05-10 21:07:27 -0600174 term_setup = false;
175 }
Mike Frysingerab06a752011-10-26 00:21:29 +0000176}
177
178/* Put tty into raw mode so <tab> and <ctrl+c> work */
Simon Glassffb87902014-02-27 13:26:22 -0700179void os_tty_raw(int fd, bool allow_sigs)
Mike Frysingerab06a752011-10-26 00:21:29 +0000180{
Mike Frysingerab06a752011-10-26 00:21:29 +0000181 struct termios term;
Simon Glass4af3e9a2018-10-01 11:55:20 -0600182 int flags;
Mike Frysingerab06a752011-10-26 00:21:29 +0000183
Simon Glassffb87902014-02-27 13:26:22 -0700184 if (term_setup)
Mike Frysingerab06a752011-10-26 00:21:29 +0000185 return;
Mike Frysingerab06a752011-10-26 00:21:29 +0000186
187 /* If not a tty, don't complain */
188 if (tcgetattr(fd, &orig_term))
189 return;
190
191 term = orig_term;
192 term.c_iflag = IGNBRK | IGNPAR;
193 term.c_oflag = OPOST | ONLCR;
194 term.c_cflag = CS8 | CREAD | CLOCAL;
Simon Glassffb87902014-02-27 13:26:22 -0700195 term.c_lflag = allow_sigs ? ISIG : 0;
Mike Frysingerab06a752011-10-26 00:21:29 +0000196 if (tcsetattr(fd, TCSANOW, &term))
197 return;
198
Simon Glass4af3e9a2018-10-01 11:55:20 -0600199 flags = fcntl(fd, F_GETFL, 0);
200 if (!(flags & O_NONBLOCK)) {
201 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK))
202 return;
203 term_nonblock = true;
204 }
205
Simon Glass8939df02015-05-10 21:07:27 -0600206 term_setup = true;
Mike Frysingerab06a752011-10-26 00:21:29 +0000207 atexit(os_fd_restore);
208}
Matthias Weisser21899b12011-11-05 11:40:34 +0100209
210void *os_malloc(size_t length)
211{
Simon Glass77595c62013-11-10 10:26:57 -0700212 struct os_mem_hdr *hdr;
Simon Glass61318502018-09-15 00:50:54 -0600213 int page_size = getpagesize();
Simon Glass77595c62013-11-10 10:26:57 -0700214
Simon Glassbd8b7452018-06-17 08:57:43 -0600215 /*
216 * Use an address that is hopefully available to us so that pointers
217 * to this memory are fairly obvious. If we end up with a different
218 * address, that's fine too.
219 */
220 hdr = mmap((void *)0x10000000, length + page_size,
Alexander Graf6e6e4b22018-06-22 14:44:13 +0200221 PROT_READ | PROT_WRITE | PROT_EXEC,
222 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
Simon Glass77595c62013-11-10 10:26:57 -0700223 if (hdr == MAP_FAILED)
224 return NULL;
225 hdr->length = length;
226
Simon Glass61318502018-09-15 00:50:54 -0600227 return (void *)hdr + page_size;
Simon Glass77595c62013-11-10 10:26:57 -0700228}
229
Masahiro Yamada347d06d2014-01-15 13:06:41 +0900230void os_free(void *ptr)
Simon Glass77595c62013-11-10 10:26:57 -0700231{
232 struct os_mem_hdr *hdr = ptr;
233
234 hdr--;
235 if (ptr)
236 munmap(hdr, hdr->length + sizeof(*hdr));
237}
238
239void *os_realloc(void *ptr, size_t length)
240{
241 struct os_mem_hdr *hdr = ptr;
242 void *buf = NULL;
243
244 hdr--;
245 if (length != 0) {
246 buf = os_malloc(length);
247 if (!buf)
248 return buf;
249 if (ptr) {
250 if (length > hdr->length)
251 length = hdr->length;
252 memcpy(buf, ptr, length);
253 }
254 }
255 os_free(ptr);
256
257 return buf;
Matthias Weisser21899b12011-11-05 11:40:34 +0100258}
Matthias Weisserd99a6872011-11-29 12:16:40 +0100259
260void os_usleep(unsigned long usec)
261{
262 usleep(usec);
263}
264
Simon Glass2a54d152013-05-19 16:45:35 -0700265uint64_t __attribute__((no_instrument_function)) os_get_nsec(void)
Matthias Weisserd99a6872011-11-29 12:16:40 +0100266{
267#if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK)
268 struct timespec tp;
269 if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) {
270 struct timeval tv;
271
272 gettimeofday(&tv, NULL);
273 tp.tv_sec = tv.tv_sec;
274 tp.tv_nsec = tv.tv_usec * 1000;
275 }
276 return tp.tv_sec * 1000000000ULL + tp.tv_nsec;
277#else
278 struct timeval tv;
279 gettimeofday(&tv, NULL);
280 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
281#endif
282}
Simon Glass70db4212012-02-15 15:51:16 -0800283
284static char *short_opts;
285static struct option *long_opts;
286
287int os_parse_args(struct sandbox_state *state, int argc, char *argv[])
288{
Simon Glass7b3efc62013-12-03 16:43:23 -0700289 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass70db4212012-02-15 15:51:16 -0800290 size_t num_options = __u_boot_sandbox_option_count();
291 size_t i;
292
293 int hidden_short_opt;
294 size_t si;
295
296 int c;
297
298 if (short_opts || long_opts)
299 return 1;
300
301 state->argc = argc;
302 state->argv = argv;
303
304 /* dynamically construct the arguments to the system getopt_long */
305 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1);
306 long_opts = os_malloc(sizeof(*long_opts) * num_options);
307 if (!short_opts || !long_opts)
308 return 1;
309
310 /*
311 * getopt_long requires "val" to be unique (since that is what the
312 * func returns), so generate unique values automatically for flags
313 * that don't have a short option. pick 0x100 as that is above the
314 * single byte range (where ASCII/ISO-XXXX-X charsets live).
315 */
316 hidden_short_opt = 0x100;
317 si = 0;
318 for (i = 0; i < num_options; ++i) {
319 long_opts[i].name = sb_opt[i]->flag;
320 long_opts[i].has_arg = sb_opt[i]->has_arg ?
321 required_argument : no_argument;
322 long_opts[i].flag = NULL;
323
324 if (sb_opt[i]->flag_short) {
325 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short;
326 if (long_opts[i].has_arg == required_argument)
327 short_opts[si++] = ':';
328 } else
329 long_opts[i].val = sb_opt[i]->flag_short = hidden_short_opt++;
330 }
331 short_opts[si] = '\0';
332
333 /* we need to handle output ourselves since u-boot provides printf */
334 opterr = 0;
335
336 /*
337 * walk all of the options the user gave us on the command line,
338 * figure out what u-boot option structure they belong to (via
339 * the unique short val key), and call the appropriate callback.
340 */
341 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
342 for (i = 0; i < num_options; ++i) {
343 if (sb_opt[i]->flag_short == c) {
344 if (sb_opt[i]->callback(state, optarg)) {
345 state->parse_err = sb_opt[i]->flag;
346 return 0;
347 }
348 break;
349 }
350 }
351 if (i == num_options) {
352 /*
353 * store the faulting flag for later display. we have to
354 * store the flag itself as the getopt parsing itself is
355 * tricky: need to handle the following flags (assume all
356 * of the below are unknown):
357 * -a optopt='a' optind=<next>
358 * -abbbb optopt='a' optind=<this>
359 * -aaaaa optopt='a' optind=<this>
360 * --a optopt=0 optind=<this>
361 * as you can see, it is impossible to determine the exact
362 * faulting flag without doing the parsing ourselves, so
363 * we just report the specific flag that failed.
364 */
365 if (optopt) {
366 static char parse_err[3] = { '-', 0, '\0', };
367 parse_err[1] = optopt;
368 state->parse_err = parse_err;
369 } else
370 state->parse_err = argv[optind - 1];
371 break;
372 }
373 }
374
375 return 0;
376}
Simon Glass62584db2012-12-26 09:53:34 +0000377
378void os_dirent_free(struct os_dirent_node *node)
379{
380 struct os_dirent_node *next;
381
382 while (node) {
383 next = node->next;
384 free(node);
385 node = next;
386 }
387}
388
389int os_dirent_ls(const char *dirname, struct os_dirent_node **headp)
390{
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200391 struct dirent *entry;
Simon Glass62584db2012-12-26 09:53:34 +0000392 struct os_dirent_node *head, *node, *next;
393 struct stat buf;
394 DIR *dir;
395 int ret;
396 char *fname;
Heinrich Schuchardt04d0da52017-09-21 12:56:07 +0200397 char *old_fname;
Simon Glass62584db2012-12-26 09:53:34 +0000398 int len;
Stefan Brünsf189899c2016-10-01 20:41:40 +0200399 int dirlen;
Simon Glass62584db2012-12-26 09:53:34 +0000400
401 *headp = NULL;
402 dir = opendir(dirname);
403 if (!dir)
404 return -1;
405
Stefan Brünsf189899c2016-10-01 20:41:40 +0200406 /* Create a buffer upfront, with typically sufficient size */
407 dirlen = strlen(dirname) + 2;
408 len = dirlen + 256;
Simon Glass62584db2012-12-26 09:53:34 +0000409 fname = malloc(len);
410 if (!fname) {
411 ret = -ENOMEM;
412 goto done;
413 }
414
415 for (node = head = NULL;; node = next) {
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200416 errno = 0;
417 entry = readdir(dir);
418 if (!entry) {
419 ret = errno;
Simon Glass62584db2012-12-26 09:53:34 +0000420 break;
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200421 }
422 next = malloc(sizeof(*node) + strlen(entry->d_name) + 1);
Heinrich Schuchardt04d0da52017-09-21 12:56:07 +0200423 if (!next) {
Simon Glass62584db2012-12-26 09:53:34 +0000424 os_dirent_free(head);
425 ret = -ENOMEM;
426 goto done;
427 }
Heinrich Schuchardt04d0da52017-09-21 12:56:07 +0200428 if (dirlen + strlen(entry->d_name) > len) {
429 len = dirlen + strlen(entry->d_name);
430 old_fname = fname;
431 fname = realloc(fname, len);
432 if (!fname) {
433 free(old_fname);
434 free(next);
435 os_dirent_free(head);
436 ret = -ENOMEM;
437 goto done;
438 }
439 }
Stephen Warren9c38c072014-06-11 10:26:23 -0600440 next->next = NULL;
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200441 strcpy(next->name, entry->d_name);
442 switch (entry->d_type) {
Simon Glass62584db2012-12-26 09:53:34 +0000443 case DT_REG:
444 next->type = OS_FILET_REG;
445 break;
446 case DT_DIR:
447 next->type = OS_FILET_DIR;
448 break;
449 case DT_LNK:
450 next->type = OS_FILET_LNK;
451 break;
Stefan Brüns2f159402016-10-04 21:46:35 +0200452 default:
453 next->type = OS_FILET_UNKNOWN;
Simon Glass62584db2012-12-26 09:53:34 +0000454 }
455 next->size = 0;
456 snprintf(fname, len, "%s/%s", dirname, next->name);
457 if (!stat(fname, &buf))
458 next->size = buf.st_size;
459 if (node)
460 node->next = next;
Stefan Brünsce2ec192016-10-01 20:41:39 +0200461 else
462 head = next;
Simon Glass62584db2012-12-26 09:53:34 +0000463 }
464 *headp = head;
465
466done:
467 closedir(dir);
Simon Glassf80a8bb2014-11-11 12:47:08 -0700468 free(fname);
Simon Glass62584db2012-12-26 09:53:34 +0000469 return ret;
470}
471
472const char *os_dirent_typename[OS_FILET_COUNT] = {
473 " ",
474 "SYM",
475 "DIR",
476 "???",
477};
478
479const char *os_dirent_get_typename(enum os_dirent_t type)
480{
Tom Rinie2bc87d2017-05-13 20:11:30 -0400481 if (type >= OS_FILET_REG && type < OS_FILET_COUNT)
Simon Glass62584db2012-12-26 09:53:34 +0000482 return os_dirent_typename[type];
483
484 return os_dirent_typename[OS_FILET_UNKNOWN];
485}
486
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800487int os_get_filesize(const char *fname, loff_t *size)
Simon Glass62584db2012-12-26 09:53:34 +0000488{
489 struct stat buf;
490 int ret;
491
492 ret = stat(fname, &buf);
493 if (ret)
494 return ret;
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800495 *size = buf.st_size;
496 return 0;
Simon Glass62584db2012-12-26 09:53:34 +0000497}
Simon Glass91b136c2013-11-10 10:27:01 -0700498
Simon Glass0b189b62017-12-04 13:48:17 -0700499void os_putc(int ch)
500{
501 putchar(ch);
502}
503
504void os_puts(const char *str)
505{
506 while (*str)
507 os_putc(*str++);
508}
509
Simon Glass5c2859c2013-11-10 10:27:03 -0700510int os_write_ram_buf(const char *fname)
511{
512 struct sandbox_state *state = state_get_current();
513 int fd, ret;
514
515 fd = open(fname, O_CREAT | O_WRONLY, 0777);
516 if (fd < 0)
517 return -ENOENT;
518 ret = write(fd, state->ram_buf, state->ram_size);
519 close(fd);
520 if (ret != state->ram_size)
521 return -EIO;
522
523 return 0;
524}
525
526int os_read_ram_buf(const char *fname)
527{
528 struct sandbox_state *state = state_get_current();
529 int fd, ret;
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800530 loff_t size;
Simon Glass5c2859c2013-11-10 10:27:03 -0700531
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800532 ret = os_get_filesize(fname, &size);
533 if (ret < 0)
534 return ret;
Simon Glass5c2859c2013-11-10 10:27:03 -0700535 if (size != state->ram_size)
536 return -ENOSPC;
537 fd = open(fname, O_RDONLY);
538 if (fd < 0)
539 return -ENOENT;
540
541 ret = read(fd, state->ram_buf, state->ram_size);
542 close(fd);
543 if (ret != state->ram_size)
544 return -EIO;
545
546 return 0;
547}
Simon Glass47f5fcf2014-02-27 13:26:15 -0700548
549static int make_exec(char *fname, const void *data, int size)
550{
551 int fd;
552
553 strcpy(fname, "/tmp/u-boot.jump.XXXXXX");
554 fd = mkstemp(fname);
555 if (fd < 0)
556 return -ENOENT;
557 if (write(fd, data, size) < 0)
558 return -EIO;
559 close(fd);
560 if (chmod(fname, 0777))
561 return -ENOEXEC;
562
563 return 0;
564}
565
Simon Glass7b5ea142018-11-15 18:44:05 -0700566/**
567 * add_args() - Allocate a new argv with the given args
568 *
569 * This is used to create a new argv array with all the old arguments and some
570 * new ones that are passed in
571 *
572 * @argvp: Returns newly allocated args list
573 * @add_args: Arguments to add, each a string
574 * @count: Number of arguments in @add_args
575 * @return 0 if OK, -ENOMEM if out of memory
576 */
577static int add_args(char ***argvp, char *add_args[], int count)
Simon Glass47f5fcf2014-02-27 13:26:15 -0700578{
579 char **argv;
580 int argc;
581
582 for (argv = *argvp, argc = 0; (*argvp)[argc]; argc++)
583 ;
584
585 argv = malloc((argc + count + 1) * sizeof(char *));
586 if (!argv) {
587 printf("Out of memory for %d argv\n", count);
588 return -ENOMEM;
589 }
590 memcpy(argv, *argvp, argc * sizeof(char *));
591 memcpy(argv + argc, add_args, count * sizeof(char *));
592 argv[argc + count] = NULL;
593
594 *argvp = argv;
595 return 0;
596}
597
Simon Glass7b5ea142018-11-15 18:44:05 -0700598/**
599 * os_jump_to_file() - Jump to a new program
600 *
601 * This saves the memory buffer, sets up arguments to the new process, then
602 * execs it.
603 *
604 * @fname: Filename to exec
605 * @return does not return on success, any return value is an error
606 */
607static int os_jump_to_file(const char *fname)
Simon Glass47f5fcf2014-02-27 13:26:15 -0700608{
609 struct sandbox_state *state = state_get_current();
Simon Glass7b5ea142018-11-15 18:44:05 -0700610 char mem_fname[30];
Simon Glass47f5fcf2014-02-27 13:26:15 -0700611 int fd, err;
Simon Glass7b5ea142018-11-15 18:44:05 -0700612 char *extra_args[5];
Simon Glass47f5fcf2014-02-27 13:26:15 -0700613 char **argv = state->argv;
614#ifdef DEBUG
Simon Glass7b5ea142018-11-15 18:44:05 -0700615 int i;
Simon Glass47f5fcf2014-02-27 13:26:15 -0700616#endif
617
Simon Glass47f5fcf2014-02-27 13:26:15 -0700618 strcpy(mem_fname, "/tmp/u-boot.mem.XXXXXX");
619 fd = mkstemp(mem_fname);
620 if (fd < 0)
621 return -ENOENT;
622 close(fd);
623 err = os_write_ram_buf(mem_fname);
624 if (err)
625 return err;
626
627 os_fd_restore();
628
629 extra_args[0] = "-j";
Simon Glass7b5ea142018-11-15 18:44:05 -0700630 extra_args[1] = (char *)fname;
Simon Glass47f5fcf2014-02-27 13:26:15 -0700631 extra_args[2] = "-m";
632 extra_args[3] = mem_fname;
Simon Glassab839dc2014-02-27 13:26:23 -0700633 extra_args[4] = "--rm_memory";
Simon Glass47f5fcf2014-02-27 13:26:15 -0700634 err = add_args(&argv, extra_args,
635 sizeof(extra_args) / sizeof(extra_args[0]));
636 if (err)
637 return err;
638
639#ifdef DEBUG
640 for (i = 0; argv[i]; i++)
641 printf("%d %s\n", i, argv[i]);
642#endif
643
644 if (state_uninit())
645 os_exit(2);
646
647 err = execv(fname, argv);
648 free(argv);
649 if (err)
650 return err;
651
652 return unlink(fname);
653}
Simon Glass94eefde2015-04-20 12:37:22 -0600654
Simon Glass7b5ea142018-11-15 18:44:05 -0700655int os_jump_to_image(const void *dest, int size)
656{
657 char fname[30];
658 int err;
659
660 err = make_exec(fname, dest, size);
661 if (err)
662 return err;
663
664 return os_jump_to_file(fname);
665}
666
Simon Glassd4e33f52016-07-04 11:57:45 -0600667int os_find_u_boot(char *fname, int maxlen)
668{
669 struct sandbox_state *state = state_get_current();
670 const char *progname = state->argv[0];
671 int len = strlen(progname);
Simon Glass69bc15d2018-10-01 11:55:10 -0600672 const char *suffix;
Simon Glassd4e33f52016-07-04 11:57:45 -0600673 char *p;
674 int fd;
675
676 if (len >= maxlen || len < 4)
677 return -ENOSPC;
678
Simon Glassd4e33f52016-07-04 11:57:45 -0600679 strcpy(fname, progname);
Simon Glass69bc15d2018-10-01 11:55:10 -0600680 suffix = fname + len - 4;
681
682 /* If we are TPL, boot to SPL */
683 if (!strcmp(suffix, "-tpl")) {
684 fname[len - 3] = 's';
685 fd = os_open(fname, O_RDONLY);
686 if (fd >= 0) {
687 close(fd);
688 return 0;
689 }
690
691 /* Look for 'u-boot-tpl' in the tpl/ directory */
692 p = strstr(fname, "/tpl/");
693 if (p) {
694 p[1] = 's';
695 fd = os_open(fname, O_RDONLY);
696 if (fd >= 0) {
697 close(fd);
698 return 0;
699 }
700 }
701 return -ENOENT;
702 }
703
704 /* Look for 'u-boot' in the same directory as 'u-boot-spl' */
705 if (!strcmp(suffix, "-spl")) {
Simon Glassd4e33f52016-07-04 11:57:45 -0600706 fname[len - 4] = '\0';
707 fd = os_open(fname, O_RDONLY);
708 if (fd >= 0) {
709 close(fd);
710 return 0;
711 }
712 }
713
714 /* Look for 'u-boot' in the parent directory of spl/ */
715 p = strstr(fname, "/spl/");
716 if (p) {
717 strcpy(p, p + 4);
718 fd = os_open(fname, O_RDONLY);
719 if (fd >= 0) {
720 close(fd);
721 return 0;
722 }
723 }
724
725 return -ENOENT;
726}
727
728int os_spl_to_uboot(const char *fname)
729{
730 struct sandbox_state *state = state_get_current();
731 char *argv[state->argc + 1];
732 int ret;
733
734 memcpy(argv, state->argv, sizeof(char *) * (state->argc + 1));
735 argv[0] = (char *)fname;
736 ret = execv(fname, argv);
737 if (ret)
738 return ret;
739
740 return unlink(fname);
741}
742
Simon Glass94eefde2015-04-20 12:37:22 -0600743void os_localtime(struct rtc_time *rt)
744{
745 time_t t = time(NULL);
746 struct tm *tm;
747
748 tm = localtime(&t);
749 rt->tm_sec = tm->tm_sec;
750 rt->tm_min = tm->tm_min;
751 rt->tm_hour = tm->tm_hour;
752 rt->tm_mday = tm->tm_mday;
753 rt->tm_mon = tm->tm_mon + 1;
754 rt->tm_year = tm->tm_year + 1900;
755 rt->tm_wday = tm->tm_wday;
756 rt->tm_yday = tm->tm_yday;
757 rt->tm_isdst = tm->tm_isdst;
758}
Simon Glass30eef212018-05-16 09:42:22 -0600759
Simon Glassfe938fb2018-09-15 00:50:55 -0600760void os_abort(void)
761{
762 abort();
763}
Simon Glass9f8037e2018-10-01 21:12:32 -0600764
765int os_mprotect_allow(void *start, size_t len)
766{
767 int page_size = getpagesize();
768
769 /* Move start to the start of a page, len to the end */
770 start = (void *)(((ulong)start) & ~(page_size - 1));
771 len = (len + page_size * 2) & ~(page_size - 1);
772
773 return mprotect(start, len, PROT_READ | PROT_WRITE);
774}