Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 3 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Simon Glass | 62584db | 2012-12-26 09:53:34 +0000 | [diff] [blame] | 6 | #include <dirent.h> |
Simon Glass | e101247 | 2012-01-10 15:54:05 -0800 | [diff] [blame] | 7 | #include <errno.h> |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 8 | #include <fcntl.h> |
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 9 | #include <getopt.h> |
Simon Glass | 62584db | 2012-12-26 09:53:34 +0000 | [diff] [blame] | 10 | #include <stdio.h> |
Simon Glass | 2a54d15 | 2013-05-19 16:45:35 -0700 | [diff] [blame] | 11 | #include <stdint.h> |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 12 | #include <stdlib.h> |
Simon Glass | 62584db | 2012-12-26 09:53:34 +0000 | [diff] [blame] | 13 | #include <string.h> |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 14 | #include <termios.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 15 | #include <time.h> |
Simon Glass | e101247 | 2012-01-10 15:54:05 -0800 | [diff] [blame] | 16 | #include <unistd.h> |
Matthias Weisser | 21899b1 | 2011-11-05 11:40:34 +0100 | [diff] [blame] | 17 | #include <sys/mman.h> |
Simon Glass | e101247 | 2012-01-10 15:54:05 -0800 | [diff] [blame] | 18 | #include <sys/stat.h> |
Simon Glass | 3bdf56b | 2012-01-10 15:54:06 -0800 | [diff] [blame] | 19 | #include <sys/time.h> |
Simon Glass | e101247 | 2012-01-10 15:54:05 -0800 | [diff] [blame] | 20 | #include <sys/types.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 21 | #include <linux/types.h> |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 22 | |
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 23 | #include <asm/getopt.h> |
| 24 | #include <asm/sections.h> |
| 25 | #include <asm/state.h> |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 26 | #include <os.h> |
| 27 | |
| 28 | /* Operating System Interface */ |
| 29 | |
Simon Glass | 77595c6 | 2013-11-10 10:26:57 -0700 | [diff] [blame] | 30 | struct os_mem_hdr { |
| 31 | size_t length; /* number of bytes in the block */ |
| 32 | }; |
| 33 | |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 34 | ssize_t os_read(int fd, void *buf, size_t count) |
| 35 | { |
| 36 | return read(fd, buf, count); |
| 37 | } |
| 38 | |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 39 | ssize_t os_read_no_block(int fd, void *buf, size_t count) |
| 40 | { |
| 41 | const int flags = fcntl(fd, F_GETFL, 0); |
| 42 | |
| 43 | fcntl(fd, F_SETFL, flags | O_NONBLOCK); |
| 44 | return os_read(fd, buf, count); |
| 45 | } |
| 46 | |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 47 | ssize_t os_write(int fd, const void *buf, size_t count) |
| 48 | { |
| 49 | return write(fd, buf, count); |
| 50 | } |
| 51 | |
Mike Frysinger | e2dcefc | 2011-10-25 13:02:58 +0200 | [diff] [blame] | 52 | off_t os_lseek(int fd, off_t offset, int whence) |
| 53 | { |
| 54 | if (whence == OS_SEEK_SET) |
| 55 | whence = SEEK_SET; |
| 56 | else if (whence == OS_SEEK_CUR) |
| 57 | whence = SEEK_CUR; |
| 58 | else if (whence == OS_SEEK_END) |
| 59 | whence = SEEK_END; |
| 60 | else |
| 61 | os_exit(1); |
| 62 | return lseek(fd, offset, whence); |
| 63 | } |
| 64 | |
Simon Glass | d916515 | 2012-02-20 23:56:58 -0500 | [diff] [blame] | 65 | int os_open(const char *pathname, int os_flags) |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 66 | { |
Simon Glass | d916515 | 2012-02-20 23:56:58 -0500 | [diff] [blame] | 67 | int flags; |
| 68 | |
| 69 | switch (os_flags & OS_O_MASK) { |
| 70 | case OS_O_RDONLY: |
| 71 | default: |
| 72 | flags = O_RDONLY; |
| 73 | break; |
| 74 | |
| 75 | case OS_O_WRONLY: |
| 76 | flags = O_WRONLY; |
| 77 | break; |
| 78 | |
| 79 | case OS_O_RDWR: |
| 80 | flags = O_RDWR; |
| 81 | break; |
| 82 | } |
| 83 | |
| 84 | if (os_flags & OS_O_CREAT) |
| 85 | flags |= O_CREAT; |
| 86 | |
| 87 | return open(pathname, flags, 0777); |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | int os_close(int fd) |
| 91 | { |
| 92 | return close(fd); |
| 93 | } |
| 94 | |
Stephen Warren | cfd13e8 | 2014-03-01 22:18:00 -0700 | [diff] [blame] | 95 | int os_unlink(const char *pathname) |
| 96 | { |
| 97 | return unlink(pathname); |
| 98 | } |
| 99 | |
Simon Glass | 7a9219c | 2011-10-03 19:26:44 +0000 | [diff] [blame] | 100 | void os_exit(int exit_code) |
| 101 | { |
| 102 | exit(exit_code); |
| 103 | } |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 104 | |
| 105 | /* Restore tty state when we exit */ |
| 106 | static struct termios orig_term; |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame^] | 107 | static bool term_setup; |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 108 | |
| 109 | static void os_fd_restore(void) |
| 110 | { |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame^] | 111 | if (term_setup) |
| 112 | tcsetattr(0, TCSANOW, &orig_term); |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /* Put tty into raw mode so <tab> and <ctrl+c> work */ |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame^] | 116 | void os_tty_raw(int fd, bool allow_sigs) |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 117 | { |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 118 | struct termios term; |
| 119 | |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame^] | 120 | if (term_setup) |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 121 | return; |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame^] | 122 | term_setup = true; |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 123 | |
| 124 | /* If not a tty, don't complain */ |
| 125 | if (tcgetattr(fd, &orig_term)) |
| 126 | return; |
| 127 | |
| 128 | term = orig_term; |
| 129 | term.c_iflag = IGNBRK | IGNPAR; |
| 130 | term.c_oflag = OPOST | ONLCR; |
| 131 | term.c_cflag = CS8 | CREAD | CLOCAL; |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame^] | 132 | term.c_lflag = allow_sigs ? ISIG : 0; |
Mike Frysinger | ab06a75 | 2011-10-26 00:21:29 +0000 | [diff] [blame] | 133 | if (tcsetattr(fd, TCSANOW, &term)) |
| 134 | return; |
| 135 | |
| 136 | atexit(os_fd_restore); |
| 137 | } |
Matthias Weisser | 21899b1 | 2011-11-05 11:40:34 +0100 | [diff] [blame] | 138 | |
| 139 | void *os_malloc(size_t length) |
| 140 | { |
Simon Glass | 77595c6 | 2013-11-10 10:26:57 -0700 | [diff] [blame] | 141 | struct os_mem_hdr *hdr; |
| 142 | |
| 143 | hdr = mmap(NULL, length + sizeof(*hdr), PROT_READ | PROT_WRITE, |
| 144 | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); |
| 145 | if (hdr == MAP_FAILED) |
| 146 | return NULL; |
| 147 | hdr->length = length; |
| 148 | |
| 149 | return hdr + 1; |
| 150 | } |
| 151 | |
Masahiro Yamada | 347d06d | 2014-01-15 13:06:41 +0900 | [diff] [blame] | 152 | void os_free(void *ptr) |
Simon Glass | 77595c6 | 2013-11-10 10:26:57 -0700 | [diff] [blame] | 153 | { |
| 154 | struct os_mem_hdr *hdr = ptr; |
| 155 | |
| 156 | hdr--; |
| 157 | if (ptr) |
| 158 | munmap(hdr, hdr->length + sizeof(*hdr)); |
| 159 | } |
| 160 | |
| 161 | void *os_realloc(void *ptr, size_t length) |
| 162 | { |
| 163 | struct os_mem_hdr *hdr = ptr; |
| 164 | void *buf = NULL; |
| 165 | |
| 166 | hdr--; |
| 167 | if (length != 0) { |
| 168 | buf = os_malloc(length); |
| 169 | if (!buf) |
| 170 | return buf; |
| 171 | if (ptr) { |
| 172 | if (length > hdr->length) |
| 173 | length = hdr->length; |
| 174 | memcpy(buf, ptr, length); |
| 175 | } |
| 176 | } |
| 177 | os_free(ptr); |
| 178 | |
| 179 | return buf; |
Matthias Weisser | 21899b1 | 2011-11-05 11:40:34 +0100 | [diff] [blame] | 180 | } |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 181 | |
| 182 | void os_usleep(unsigned long usec) |
| 183 | { |
| 184 | usleep(usec); |
| 185 | } |
| 186 | |
Simon Glass | 2a54d15 | 2013-05-19 16:45:35 -0700 | [diff] [blame] | 187 | uint64_t __attribute__((no_instrument_function)) os_get_nsec(void) |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 188 | { |
| 189 | #if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK) |
| 190 | struct timespec tp; |
| 191 | if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) { |
| 192 | struct timeval tv; |
| 193 | |
| 194 | gettimeofday(&tv, NULL); |
| 195 | tp.tv_sec = tv.tv_sec; |
| 196 | tp.tv_nsec = tv.tv_usec * 1000; |
| 197 | } |
| 198 | return tp.tv_sec * 1000000000ULL + tp.tv_nsec; |
| 199 | #else |
| 200 | struct timeval tv; |
| 201 | gettimeofday(&tv, NULL); |
| 202 | return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000; |
| 203 | #endif |
| 204 | } |
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 205 | |
| 206 | static char *short_opts; |
| 207 | static struct option *long_opts; |
| 208 | |
| 209 | int os_parse_args(struct sandbox_state *state, int argc, char *argv[]) |
| 210 | { |
Simon Glass | 7b3efc6 | 2013-12-03 16:43:23 -0700 | [diff] [blame] | 211 | struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start; |
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 212 | size_t num_options = __u_boot_sandbox_option_count(); |
| 213 | size_t i; |
| 214 | |
| 215 | int hidden_short_opt; |
| 216 | size_t si; |
| 217 | |
| 218 | int c; |
| 219 | |
| 220 | if (short_opts || long_opts) |
| 221 | return 1; |
| 222 | |
| 223 | state->argc = argc; |
| 224 | state->argv = argv; |
| 225 | |
| 226 | /* dynamically construct the arguments to the system getopt_long */ |
| 227 | short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1); |
| 228 | long_opts = os_malloc(sizeof(*long_opts) * num_options); |
| 229 | if (!short_opts || !long_opts) |
| 230 | return 1; |
| 231 | |
| 232 | /* |
| 233 | * getopt_long requires "val" to be unique (since that is what the |
| 234 | * func returns), so generate unique values automatically for flags |
| 235 | * that don't have a short option. pick 0x100 as that is above the |
| 236 | * single byte range (where ASCII/ISO-XXXX-X charsets live). |
| 237 | */ |
| 238 | hidden_short_opt = 0x100; |
| 239 | si = 0; |
| 240 | for (i = 0; i < num_options; ++i) { |
| 241 | long_opts[i].name = sb_opt[i]->flag; |
| 242 | long_opts[i].has_arg = sb_opt[i]->has_arg ? |
| 243 | required_argument : no_argument; |
| 244 | long_opts[i].flag = NULL; |
| 245 | |
| 246 | if (sb_opt[i]->flag_short) { |
| 247 | short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short; |
| 248 | if (long_opts[i].has_arg == required_argument) |
| 249 | short_opts[si++] = ':'; |
| 250 | } else |
| 251 | long_opts[i].val = sb_opt[i]->flag_short = hidden_short_opt++; |
| 252 | } |
| 253 | short_opts[si] = '\0'; |
| 254 | |
| 255 | /* we need to handle output ourselves since u-boot provides printf */ |
| 256 | opterr = 0; |
| 257 | |
| 258 | /* |
| 259 | * walk all of the options the user gave us on the command line, |
| 260 | * figure out what u-boot option structure they belong to (via |
| 261 | * the unique short val key), and call the appropriate callback. |
| 262 | */ |
| 263 | while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) { |
| 264 | for (i = 0; i < num_options; ++i) { |
| 265 | if (sb_opt[i]->flag_short == c) { |
| 266 | if (sb_opt[i]->callback(state, optarg)) { |
| 267 | state->parse_err = sb_opt[i]->flag; |
| 268 | return 0; |
| 269 | } |
| 270 | break; |
| 271 | } |
| 272 | } |
| 273 | if (i == num_options) { |
| 274 | /* |
| 275 | * store the faulting flag for later display. we have to |
| 276 | * store the flag itself as the getopt parsing itself is |
| 277 | * tricky: need to handle the following flags (assume all |
| 278 | * of the below are unknown): |
| 279 | * -a optopt='a' optind=<next> |
| 280 | * -abbbb optopt='a' optind=<this> |
| 281 | * -aaaaa optopt='a' optind=<this> |
| 282 | * --a optopt=0 optind=<this> |
| 283 | * as you can see, it is impossible to determine the exact |
| 284 | * faulting flag without doing the parsing ourselves, so |
| 285 | * we just report the specific flag that failed. |
| 286 | */ |
| 287 | if (optopt) { |
| 288 | static char parse_err[3] = { '-', 0, '\0', }; |
| 289 | parse_err[1] = optopt; |
| 290 | state->parse_err = parse_err; |
| 291 | } else |
| 292 | state->parse_err = argv[optind - 1]; |
| 293 | break; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | return 0; |
| 298 | } |
Simon Glass | 62584db | 2012-12-26 09:53:34 +0000 | [diff] [blame] | 299 | |
| 300 | void os_dirent_free(struct os_dirent_node *node) |
| 301 | { |
| 302 | struct os_dirent_node *next; |
| 303 | |
| 304 | while (node) { |
| 305 | next = node->next; |
| 306 | free(node); |
| 307 | node = next; |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | int os_dirent_ls(const char *dirname, struct os_dirent_node **headp) |
| 312 | { |
| 313 | struct dirent entry, *result; |
| 314 | struct os_dirent_node *head, *node, *next; |
| 315 | struct stat buf; |
| 316 | DIR *dir; |
| 317 | int ret; |
| 318 | char *fname; |
| 319 | int len; |
| 320 | |
| 321 | *headp = NULL; |
| 322 | dir = opendir(dirname); |
| 323 | if (!dir) |
| 324 | return -1; |
| 325 | |
| 326 | /* Create a buffer for the maximum filename length */ |
| 327 | len = sizeof(entry.d_name) + strlen(dirname) + 2; |
| 328 | fname = malloc(len); |
| 329 | if (!fname) { |
| 330 | ret = -ENOMEM; |
| 331 | goto done; |
| 332 | } |
| 333 | |
| 334 | for (node = head = NULL;; node = next) { |
| 335 | ret = readdir_r(dir, &entry, &result); |
| 336 | if (ret || !result) |
| 337 | break; |
| 338 | next = malloc(sizeof(*node) + strlen(entry.d_name) + 1); |
| 339 | if (!next) { |
| 340 | os_dirent_free(head); |
| 341 | ret = -ENOMEM; |
| 342 | goto done; |
| 343 | } |
| 344 | strcpy(next->name, entry.d_name); |
| 345 | switch (entry.d_type) { |
| 346 | case DT_REG: |
| 347 | next->type = OS_FILET_REG; |
| 348 | break; |
| 349 | case DT_DIR: |
| 350 | next->type = OS_FILET_DIR; |
| 351 | break; |
| 352 | case DT_LNK: |
| 353 | next->type = OS_FILET_LNK; |
| 354 | break; |
| 355 | } |
| 356 | next->size = 0; |
| 357 | snprintf(fname, len, "%s/%s", dirname, next->name); |
| 358 | if (!stat(fname, &buf)) |
| 359 | next->size = buf.st_size; |
| 360 | if (node) |
| 361 | node->next = next; |
| 362 | if (!head) |
| 363 | head = node; |
| 364 | } |
| 365 | *headp = head; |
| 366 | |
| 367 | done: |
| 368 | closedir(dir); |
| 369 | return ret; |
| 370 | } |
| 371 | |
| 372 | const char *os_dirent_typename[OS_FILET_COUNT] = { |
| 373 | " ", |
| 374 | "SYM", |
| 375 | "DIR", |
| 376 | "???", |
| 377 | }; |
| 378 | |
| 379 | const char *os_dirent_get_typename(enum os_dirent_t type) |
| 380 | { |
| 381 | if (type >= 0 && type < OS_FILET_COUNT) |
| 382 | return os_dirent_typename[type]; |
| 383 | |
| 384 | return os_dirent_typename[OS_FILET_UNKNOWN]; |
| 385 | } |
| 386 | |
| 387 | ssize_t os_get_filesize(const char *fname) |
| 388 | { |
| 389 | struct stat buf; |
| 390 | int ret; |
| 391 | |
| 392 | ret = stat(fname, &buf); |
| 393 | if (ret) |
| 394 | return ret; |
| 395 | return buf.st_size; |
| 396 | } |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 397 | |
| 398 | void os_putc(int ch) |
| 399 | { |
| 400 | putchar(ch); |
| 401 | } |
| 402 | |
| 403 | void os_puts(const char *str) |
| 404 | { |
| 405 | while (*str) |
| 406 | os_putc(*str++); |
| 407 | } |
Simon Glass | 5c2859c | 2013-11-10 10:27:03 -0700 | [diff] [blame] | 408 | |
| 409 | int os_write_ram_buf(const char *fname) |
| 410 | { |
| 411 | struct sandbox_state *state = state_get_current(); |
| 412 | int fd, ret; |
| 413 | |
| 414 | fd = open(fname, O_CREAT | O_WRONLY, 0777); |
| 415 | if (fd < 0) |
| 416 | return -ENOENT; |
| 417 | ret = write(fd, state->ram_buf, state->ram_size); |
| 418 | close(fd); |
| 419 | if (ret != state->ram_size) |
| 420 | return -EIO; |
| 421 | |
| 422 | return 0; |
| 423 | } |
| 424 | |
| 425 | int os_read_ram_buf(const char *fname) |
| 426 | { |
| 427 | struct sandbox_state *state = state_get_current(); |
| 428 | int fd, ret; |
| 429 | int size; |
| 430 | |
| 431 | size = os_get_filesize(fname); |
| 432 | if (size < 0) |
| 433 | return -ENOENT; |
| 434 | if (size != state->ram_size) |
| 435 | return -ENOSPC; |
| 436 | fd = open(fname, O_RDONLY); |
| 437 | if (fd < 0) |
| 438 | return -ENOENT; |
| 439 | |
| 440 | ret = read(fd, state->ram_buf, state->ram_size); |
| 441 | close(fd); |
| 442 | if (ret != state->ram_size) |
| 443 | return -EIO; |
| 444 | |
| 445 | return 0; |
| 446 | } |
Simon Glass | 47f5fcf | 2014-02-27 13:26:15 -0700 | [diff] [blame] | 447 | |
| 448 | static int make_exec(char *fname, const void *data, int size) |
| 449 | { |
| 450 | int fd; |
| 451 | |
| 452 | strcpy(fname, "/tmp/u-boot.jump.XXXXXX"); |
| 453 | fd = mkstemp(fname); |
| 454 | if (fd < 0) |
| 455 | return -ENOENT; |
| 456 | if (write(fd, data, size) < 0) |
| 457 | return -EIO; |
| 458 | close(fd); |
| 459 | if (chmod(fname, 0777)) |
| 460 | return -ENOEXEC; |
| 461 | |
| 462 | return 0; |
| 463 | } |
| 464 | |
| 465 | static int add_args(char ***argvp, const char *add_args[], int count) |
| 466 | { |
| 467 | char **argv; |
| 468 | int argc; |
| 469 | |
| 470 | for (argv = *argvp, argc = 0; (*argvp)[argc]; argc++) |
| 471 | ; |
| 472 | |
| 473 | argv = malloc((argc + count + 1) * sizeof(char *)); |
| 474 | if (!argv) { |
| 475 | printf("Out of memory for %d argv\n", count); |
| 476 | return -ENOMEM; |
| 477 | } |
| 478 | memcpy(argv, *argvp, argc * sizeof(char *)); |
| 479 | memcpy(argv + argc, add_args, count * sizeof(char *)); |
| 480 | argv[argc + count] = NULL; |
| 481 | |
| 482 | *argvp = argv; |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | int os_jump_to_image(const void *dest, int size) |
| 487 | { |
| 488 | struct sandbox_state *state = state_get_current(); |
| 489 | char fname[30], mem_fname[30]; |
| 490 | int fd, err; |
| 491 | const char *extra_args[4]; |
| 492 | char **argv = state->argv; |
| 493 | #ifdef DEBUG |
| 494 | int argc, i; |
| 495 | #endif |
| 496 | |
| 497 | err = make_exec(fname, dest, size); |
| 498 | if (err) |
| 499 | return err; |
| 500 | |
| 501 | strcpy(mem_fname, "/tmp/u-boot.mem.XXXXXX"); |
| 502 | fd = mkstemp(mem_fname); |
| 503 | if (fd < 0) |
| 504 | return -ENOENT; |
| 505 | close(fd); |
| 506 | err = os_write_ram_buf(mem_fname); |
| 507 | if (err) |
| 508 | return err; |
| 509 | |
| 510 | os_fd_restore(); |
| 511 | |
| 512 | extra_args[0] = "-j"; |
| 513 | extra_args[1] = fname; |
| 514 | extra_args[2] = "-m"; |
| 515 | extra_args[3] = mem_fname; |
| 516 | err = add_args(&argv, extra_args, |
| 517 | sizeof(extra_args) / sizeof(extra_args[0])); |
| 518 | if (err) |
| 519 | return err; |
| 520 | |
| 521 | #ifdef DEBUG |
| 522 | for (i = 0; argv[i]; i++) |
| 523 | printf("%d %s\n", i, argv[i]); |
| 524 | #endif |
| 525 | |
| 526 | if (state_uninit()) |
| 527 | os_exit(2); |
| 528 | |
| 529 | err = execv(fname, argv); |
| 530 | free(argv); |
| 531 | if (err) |
| 532 | return err; |
| 533 | |
| 534 | return unlink(fname); |
| 535 | } |