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 static void os_fd_restore(void)
113 tcsetattr(0, TCSANOW, &orig_term);
116 /* Put tty into raw mode so <tab> and <ctrl+c> work */
117 void os_tty_raw(int fd, bool allow_sigs)
125 /* If not a tty, don't complain */
126 if (tcgetattr(fd, &orig_term))
130 term.c_iflag = IGNBRK | IGNPAR;
131 term.c_oflag = OPOST | ONLCR;
132 term.c_cflag = CS8 | CREAD | CLOCAL;
133 term.c_lflag = allow_sigs ? ISIG : 0;
134 if (tcsetattr(fd, TCSANOW, &term))
137 atexit(os_fd_restore);
140 void *os_malloc(size_t length)
142 struct os_mem_hdr *hdr;
144 hdr = mmap(NULL, length + sizeof(*hdr), PROT_READ | PROT_WRITE,
145 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
146 if (hdr == MAP_FAILED)
148 hdr->length = length;
153 void os_free(void *ptr)
155 struct os_mem_hdr *hdr = ptr;
159 munmap(hdr, hdr->length + sizeof(*hdr));
162 void *os_realloc(void *ptr, size_t length)
164 struct os_mem_hdr *hdr = ptr;
169 buf = os_malloc(length);
173 if (length > hdr->length)
174 length = hdr->length;
175 memcpy(buf, ptr, length);
183 void os_usleep(unsigned long usec)
188 uint64_t __attribute__((no_instrument_function)) os_get_nsec(void)
190 #if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK)
192 if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) {
195 gettimeofday(&tv, NULL);
196 tp.tv_sec = tv.tv_sec;
197 tp.tv_nsec = tv.tv_usec * 1000;
199 return tp.tv_sec * 1000000000ULL + tp.tv_nsec;
202 gettimeofday(&tv, NULL);
203 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
207 static char *short_opts;
208 static struct option *long_opts;
210 int os_parse_args(struct sandbox_state *state, int argc, char *argv[])
212 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
213 size_t num_options = __u_boot_sandbox_option_count();
216 int hidden_short_opt;
221 if (short_opts || long_opts)
227 /* dynamically construct the arguments to the system getopt_long */
228 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1);
229 long_opts = os_malloc(sizeof(*long_opts) * num_options);
230 if (!short_opts || !long_opts)
234 * getopt_long requires "val" to be unique (since that is what the
235 * func returns), so generate unique values automatically for flags
236 * that don't have a short option. pick 0x100 as that is above the
237 * single byte range (where ASCII/ISO-XXXX-X charsets live).
239 hidden_short_opt = 0x100;
241 for (i = 0; i < num_options; ++i) {
242 long_opts[i].name = sb_opt[i]->flag;
243 long_opts[i].has_arg = sb_opt[i]->has_arg ?
244 required_argument : no_argument;
245 long_opts[i].flag = NULL;
247 if (sb_opt[i]->flag_short) {
248 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short;
249 if (long_opts[i].has_arg == required_argument)
250 short_opts[si++] = ':';
252 long_opts[i].val = sb_opt[i]->flag_short = hidden_short_opt++;
254 short_opts[si] = '\0';
256 /* we need to handle output ourselves since u-boot provides printf */
260 * walk all of the options the user gave us on the command line,
261 * figure out what u-boot option structure they belong to (via
262 * the unique short val key), and call the appropriate callback.
264 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
265 for (i = 0; i < num_options; ++i) {
266 if (sb_opt[i]->flag_short == c) {
267 if (sb_opt[i]->callback(state, optarg)) {
268 state->parse_err = sb_opt[i]->flag;
274 if (i == num_options) {
276 * store the faulting flag for later display. we have to
277 * store the flag itself as the getopt parsing itself is
278 * tricky: need to handle the following flags (assume all
279 * of the below are unknown):
280 * -a optopt='a' optind=<next>
281 * -abbbb optopt='a' optind=<this>
282 * -aaaaa optopt='a' optind=<this>
283 * --a optopt=0 optind=<this>
284 * as you can see, it is impossible to determine the exact
285 * faulting flag without doing the parsing ourselves, so
286 * we just report the specific flag that failed.
289 static char parse_err[3] = { '-', 0, '\0', };
290 parse_err[1] = optopt;
291 state->parse_err = parse_err;
293 state->parse_err = argv[optind - 1];
301 void os_dirent_free(struct os_dirent_node *node)
303 struct os_dirent_node *next;
312 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp)
314 struct dirent entry, *result;
315 struct os_dirent_node *head, *node, *next;
323 dir = opendir(dirname);
327 /* Create a buffer for the maximum filename length */
328 len = sizeof(entry.d_name) + strlen(dirname) + 2;
335 for (node = head = NULL;; node = next) {
336 ret = readdir_r(dir, &entry, &result);
339 next = malloc(sizeof(*node) + strlen(entry.d_name) + 1);
341 os_dirent_free(head);
346 strcpy(next->name, entry.d_name);
347 switch (entry.d_type) {
349 next->type = OS_FILET_REG;
352 next->type = OS_FILET_DIR;
355 next->type = OS_FILET_LNK;
359 snprintf(fname, len, "%s/%s", dirname, next->name);
360 if (!stat(fname, &buf))
361 next->size = buf.st_size;
375 const char *os_dirent_typename[OS_FILET_COUNT] = {
382 const char *os_dirent_get_typename(enum os_dirent_t type)
384 if (type >= 0 && type < OS_FILET_COUNT)
385 return os_dirent_typename[type];
387 return os_dirent_typename[OS_FILET_UNKNOWN];
390 int os_get_filesize(const char *fname, loff_t *size)
395 ret = stat(fname, &buf);
407 void os_puts(const char *str)
413 int os_write_ram_buf(const char *fname)
415 struct sandbox_state *state = state_get_current();
418 fd = open(fname, O_CREAT | O_WRONLY, 0777);
421 ret = write(fd, state->ram_buf, state->ram_size);
423 if (ret != state->ram_size)
429 int os_read_ram_buf(const char *fname)
431 struct sandbox_state *state = state_get_current();
435 ret = os_get_filesize(fname, &size);
438 if (size != state->ram_size)
440 fd = open(fname, O_RDONLY);
444 ret = read(fd, state->ram_buf, state->ram_size);
446 if (ret != state->ram_size)
452 static int make_exec(char *fname, const void *data, int size)
456 strcpy(fname, "/tmp/u-boot.jump.XXXXXX");
460 if (write(fd, data, size) < 0)
463 if (chmod(fname, 0777))
469 static int add_args(char ***argvp, const char *add_args[], int count)
474 for (argv = *argvp, argc = 0; (*argvp)[argc]; argc++)
477 argv = malloc((argc + count + 1) * sizeof(char *));
479 printf("Out of memory for %d argv\n", count);
482 memcpy(argv, *argvp, argc * sizeof(char *));
483 memcpy(argv + argc, add_args, count * sizeof(char *));
484 argv[argc + count] = NULL;
490 int os_jump_to_image(const void *dest, int size)
492 struct sandbox_state *state = state_get_current();
493 char fname[30], mem_fname[30];
495 const char *extra_args[5];
496 char **argv = state->argv;
501 err = make_exec(fname, dest, size);
505 strcpy(mem_fname, "/tmp/u-boot.mem.XXXXXX");
506 fd = mkstemp(mem_fname);
510 err = os_write_ram_buf(mem_fname);
516 extra_args[0] = "-j";
517 extra_args[1] = fname;
518 extra_args[2] = "-m";
519 extra_args[3] = mem_fname;
520 extra_args[4] = "--rm_memory";
521 err = add_args(&argv, extra_args,
522 sizeof(extra_args) / sizeof(extra_args[0]));
527 for (i = 0; argv[i]; i++)
528 printf("%d %s\n", i, argv[i]);
534 err = execv(fname, argv);
539 return unlink(fname);
542 void os_localtime(struct rtc_time *rt)
544 time_t t = time(NULL);
548 rt->tm_sec = tm->tm_sec;
549 rt->tm_min = tm->tm_min;
550 rt->tm_hour = tm->tm_hour;
551 rt->tm_mday = tm->tm_mday;
552 rt->tm_mon = tm->tm_mon + 1;
553 rt->tm_year = tm->tm_year + 1900;
554 rt->tm_wday = tm->tm_wday;
555 rt->tm_yday = tm->tm_yday;
556 rt->tm_isdst = tm->tm_isdst;