2 * Copyright (c) 2011 The Chromium OS Authors.
3 * SPDX-License-Identifier: GPL-2.0+
20 #include <sys/types.h>
21 #include <linux/types.h>
23 #include <asm/getopt.h>
24 #include <asm/sections.h>
25 #include <asm/state.h>
29 /* Operating System Interface */
32 size_t length; /* number of bytes in the block */
35 ssize_t os_read(int fd, void *buf, size_t count)
37 return read(fd, buf, count);
40 ssize_t os_read_no_block(int fd, void *buf, size_t count)
42 const int flags = fcntl(fd, F_GETFL, 0);
44 fcntl(fd, F_SETFL, flags | O_NONBLOCK);
45 return os_read(fd, buf, count);
48 ssize_t os_write(int fd, const void *buf, size_t count)
50 return write(fd, buf, count);
53 off_t os_lseek(int fd, off_t offset, int whence)
55 if (whence == OS_SEEK_SET)
57 else if (whence == OS_SEEK_CUR)
59 else if (whence == OS_SEEK_END)
63 return lseek(fd, offset, whence);
66 int os_open(const char *pathname, int os_flags)
70 switch (os_flags & OS_O_MASK) {
85 if (os_flags & OS_O_CREAT)
88 return open(pathname, flags, 0777);
96 int os_unlink(const char *pathname)
98 return unlink(pathname);
101 void os_exit(int exit_code)
106 /* Restore tty state when we exit */
107 static struct termios orig_term;
108 static bool term_setup;
110 void os_fd_restore(void)
113 tcsetattr(0, TCSANOW, &orig_term);
118 /* Put tty into raw mode so <tab> and <ctrl+c> work */
119 void os_tty_raw(int fd, bool allow_sigs)
126 /* If not a tty, don't complain */
127 if (tcgetattr(fd, &orig_term))
131 term.c_iflag = IGNBRK | IGNPAR;
132 term.c_oflag = OPOST | ONLCR;
133 term.c_cflag = CS8 | CREAD | CLOCAL;
134 term.c_lflag = allow_sigs ? ISIG : 0;
135 if (tcsetattr(fd, TCSANOW, &term))
139 atexit(os_fd_restore);
142 void *os_malloc(size_t length)
144 struct os_mem_hdr *hdr;
146 hdr = mmap(NULL, length + sizeof(*hdr), PROT_READ | PROT_WRITE,
147 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
148 if (hdr == MAP_FAILED)
150 hdr->length = length;
155 void os_free(void *ptr)
157 struct os_mem_hdr *hdr = ptr;
161 munmap(hdr, hdr->length + sizeof(*hdr));
164 void *os_realloc(void *ptr, size_t length)
166 struct os_mem_hdr *hdr = ptr;
171 buf = os_malloc(length);
175 if (length > hdr->length)
176 length = hdr->length;
177 memcpy(buf, ptr, length);
185 void os_usleep(unsigned long usec)
190 uint64_t __attribute__((no_instrument_function)) os_get_nsec(void)
192 #if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK)
194 if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) {
197 gettimeofday(&tv, NULL);
198 tp.tv_sec = tv.tv_sec;
199 tp.tv_nsec = tv.tv_usec * 1000;
201 return tp.tv_sec * 1000000000ULL + tp.tv_nsec;
204 gettimeofday(&tv, NULL);
205 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
209 static char *short_opts;
210 static struct option *long_opts;
212 int os_parse_args(struct sandbox_state *state, int argc, char *argv[])
214 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
215 size_t num_options = __u_boot_sandbox_option_count();
218 int hidden_short_opt;
223 if (short_opts || long_opts)
229 /* dynamically construct the arguments to the system getopt_long */
230 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1);
231 long_opts = os_malloc(sizeof(*long_opts) * num_options);
232 if (!short_opts || !long_opts)
236 * getopt_long requires "val" to be unique (since that is what the
237 * func returns), so generate unique values automatically for flags
238 * that don't have a short option. pick 0x100 as that is above the
239 * single byte range (where ASCII/ISO-XXXX-X charsets live).
241 hidden_short_opt = 0x100;
243 for (i = 0; i < num_options; ++i) {
244 long_opts[i].name = sb_opt[i]->flag;
245 long_opts[i].has_arg = sb_opt[i]->has_arg ?
246 required_argument : no_argument;
247 long_opts[i].flag = NULL;
249 if (sb_opt[i]->flag_short) {
250 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short;
251 if (long_opts[i].has_arg == required_argument)
252 short_opts[si++] = ':';
254 long_opts[i].val = sb_opt[i]->flag_short = hidden_short_opt++;
256 short_opts[si] = '\0';
258 /* we need to handle output ourselves since u-boot provides printf */
262 * walk all of the options the user gave us on the command line,
263 * figure out what u-boot option structure they belong to (via
264 * the unique short val key), and call the appropriate callback.
266 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
267 for (i = 0; i < num_options; ++i) {
268 if (sb_opt[i]->flag_short == c) {
269 if (sb_opt[i]->callback(state, optarg)) {
270 state->parse_err = sb_opt[i]->flag;
276 if (i == num_options) {
278 * store the faulting flag for later display. we have to
279 * store the flag itself as the getopt parsing itself is
280 * tricky: need to handle the following flags (assume all
281 * of the below are unknown):
282 * -a optopt='a' optind=<next>
283 * -abbbb optopt='a' optind=<this>
284 * -aaaaa optopt='a' optind=<this>
285 * --a optopt=0 optind=<this>
286 * as you can see, it is impossible to determine the exact
287 * faulting flag without doing the parsing ourselves, so
288 * we just report the specific flag that failed.
291 static char parse_err[3] = { '-', 0, '\0', };
292 parse_err[1] = optopt;
293 state->parse_err = parse_err;
295 state->parse_err = argv[optind - 1];
303 void os_dirent_free(struct os_dirent_node *node)
305 struct os_dirent_node *next;
314 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp)
316 struct dirent *entry;
317 struct os_dirent_node *head, *node, *next;
327 dir = opendir(dirname);
331 /* Create a buffer upfront, with typically sufficient size */
332 dirlen = strlen(dirname) + 2;
340 for (node = head = NULL;; node = next) {
342 entry = readdir(dir);
347 next = malloc(sizeof(*node) + strlen(entry->d_name) + 1);
349 os_dirent_free(head);
353 if (dirlen + strlen(entry->d_name) > len) {
354 len = dirlen + strlen(entry->d_name);
356 fname = realloc(fname, len);
360 os_dirent_free(head);
366 strcpy(next->name, entry->d_name);
367 switch (entry->d_type) {
369 next->type = OS_FILET_REG;
372 next->type = OS_FILET_DIR;
375 next->type = OS_FILET_LNK;
378 next->type = OS_FILET_UNKNOWN;
381 snprintf(fname, len, "%s/%s", dirname, next->name);
382 if (!stat(fname, &buf))
383 next->size = buf.st_size;
397 const char *os_dirent_typename[OS_FILET_COUNT] = {
404 const char *os_dirent_get_typename(enum os_dirent_t type)
406 if (type >= OS_FILET_REG && type < OS_FILET_COUNT)
407 return os_dirent_typename[type];
409 return os_dirent_typename[OS_FILET_UNKNOWN];
412 int os_get_filesize(const char *fname, loff_t *size)
417 ret = stat(fname, &buf);
429 void os_puts(const char *str)
435 int os_write_ram_buf(const char *fname)
437 struct sandbox_state *state = state_get_current();
440 fd = open(fname, O_CREAT | O_WRONLY, 0777);
443 ret = write(fd, state->ram_buf, state->ram_size);
445 if (ret != state->ram_size)
451 int os_read_ram_buf(const char *fname)
453 struct sandbox_state *state = state_get_current();
457 ret = os_get_filesize(fname, &size);
460 if (size != state->ram_size)
462 fd = open(fname, O_RDONLY);
466 ret = read(fd, state->ram_buf, state->ram_size);
468 if (ret != state->ram_size)
474 static int make_exec(char *fname, const void *data, int size)
478 strcpy(fname, "/tmp/u-boot.jump.XXXXXX");
482 if (write(fd, data, size) < 0)
485 if (chmod(fname, 0777))
491 static int add_args(char ***argvp, const char *add_args[], int count)
496 for (argv = *argvp, argc = 0; (*argvp)[argc]; argc++)
499 argv = malloc((argc + count + 1) * sizeof(char *));
501 printf("Out of memory for %d argv\n", count);
504 memcpy(argv, *argvp, argc * sizeof(char *));
505 memcpy(argv + argc, add_args, count * sizeof(char *));
506 argv[argc + count] = NULL;
512 int os_jump_to_image(const void *dest, int size)
514 struct sandbox_state *state = state_get_current();
515 char fname[30], mem_fname[30];
517 const char *extra_args[5];
518 char **argv = state->argv;
523 err = make_exec(fname, dest, size);
527 strcpy(mem_fname, "/tmp/u-boot.mem.XXXXXX");
528 fd = mkstemp(mem_fname);
532 err = os_write_ram_buf(mem_fname);
538 extra_args[0] = "-j";
539 extra_args[1] = fname;
540 extra_args[2] = "-m";
541 extra_args[3] = mem_fname;
542 extra_args[4] = "--rm_memory";
543 err = add_args(&argv, extra_args,
544 sizeof(extra_args) / sizeof(extra_args[0]));
549 for (i = 0; argv[i]; i++)
550 printf("%d %s\n", i, argv[i]);
556 err = execv(fname, argv);
561 return unlink(fname);
564 int os_find_u_boot(char *fname, int maxlen)
566 struct sandbox_state *state = state_get_current();
567 const char *progname = state->argv[0];
568 int len = strlen(progname);
572 if (len >= maxlen || len < 4)
575 /* Look for 'u-boot' in the same directory as 'u-boot-spl' */
576 strcpy(fname, progname);
577 if (!strcmp(fname + len - 4, "-spl")) {
578 fname[len - 4] = '\0';
579 fd = os_open(fname, O_RDONLY);
586 /* Look for 'u-boot' in the parent directory of spl/ */
587 p = strstr(fname, "/spl/");
590 fd = os_open(fname, O_RDONLY);
600 int os_spl_to_uboot(const char *fname)
602 struct sandbox_state *state = state_get_current();
603 char *argv[state->argc + 1];
606 memcpy(argv, state->argv, sizeof(char *) * (state->argc + 1));
607 argv[0] = (char *)fname;
608 ret = execv(fname, argv);
612 return unlink(fname);
615 void os_localtime(struct rtc_time *rt)
617 time_t t = time(NULL);
621 rt->tm_sec = tm->tm_sec;
622 rt->tm_min = tm->tm_min;
623 rt->tm_hour = tm->tm_hour;
624 rt->tm_mday = tm->tm_mday;
625 rt->tm_mon = tm->tm_mon + 1;
626 rt->tm_year = tm->tm_year + 1900;
627 rt->tm_wday = tm->tm_wday;
628 rt->tm_yday = tm->tm_yday;
629 rt->tm_isdst = tm->tm_isdst;