blob: 1d87a53843eaddb84dd55f766a922b1dba9b440b [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
Taylor Hutte1015502013-02-24 17:33:13 +000041ssize_t os_read_no_block(int fd, void *buf, size_t count)
42{
43 const int flags = fcntl(fd, F_GETFL, 0);
44
45 fcntl(fd, F_SETFL, flags | O_NONBLOCK);
46 return os_read(fd, buf, count);
47}
48
Simon Glass7a9219c2011-10-03 19:26:44 +000049ssize_t os_write(int fd, const void *buf, size_t count)
50{
51 return write(fd, buf, count);
52}
53
Mike Frysingere2dcefc2011-10-25 13:02:58 +020054off_t os_lseek(int fd, off_t offset, int whence)
55{
56 if (whence == OS_SEEK_SET)
57 whence = SEEK_SET;
58 else if (whence == OS_SEEK_CUR)
59 whence = SEEK_CUR;
60 else if (whence == OS_SEEK_END)
61 whence = SEEK_END;
62 else
63 os_exit(1);
64 return lseek(fd, offset, whence);
65}
66
Simon Glassd9165152012-02-20 23:56:58 -050067int os_open(const char *pathname, int os_flags)
Simon Glass7a9219c2011-10-03 19:26:44 +000068{
Simon Glassd9165152012-02-20 23:56:58 -050069 int flags;
70
71 switch (os_flags & OS_O_MASK) {
72 case OS_O_RDONLY:
73 default:
74 flags = O_RDONLY;
75 break;
76
77 case OS_O_WRONLY:
78 flags = O_WRONLY;
79 break;
80
81 case OS_O_RDWR:
82 flags = O_RDWR;
83 break;
84 }
85
86 if (os_flags & OS_O_CREAT)
87 flags |= O_CREAT;
Simon Glass50b288a2018-10-01 11:55:07 -060088 if (os_flags & OS_O_TRUNC)
89 flags |= O_TRUNC;
Simon Glassd9165152012-02-20 23:56:58 -050090
91 return open(pathname, flags, 0777);
Simon Glass7a9219c2011-10-03 19:26:44 +000092}
93
94int os_close(int fd)
95{
96 return close(fd);
97}
98
Stephen Warrencfd13e82014-03-01 22:18:00 -070099int os_unlink(const char *pathname)
100{
101 return unlink(pathname);
102}
103
Simon Glass7a9219c2011-10-03 19:26:44 +0000104void os_exit(int exit_code)
105{
106 exit(exit_code);
107}
Mike Frysingerab06a752011-10-26 00:21:29 +0000108
109/* Restore tty state when we exit */
110static struct termios orig_term;
Simon Glassffb87902014-02-27 13:26:22 -0700111static bool term_setup;
Mike Frysingerab06a752011-10-26 00:21:29 +0000112
Simon Glass8939df02015-05-10 21:07:27 -0600113void os_fd_restore(void)
Mike Frysingerab06a752011-10-26 00:21:29 +0000114{
Simon Glass8939df02015-05-10 21:07:27 -0600115 if (term_setup) {
Simon Glassffb87902014-02-27 13:26:22 -0700116 tcsetattr(0, TCSANOW, &orig_term);
Simon Glass8939df02015-05-10 21:07:27 -0600117 term_setup = false;
118 }
Mike Frysingerab06a752011-10-26 00:21:29 +0000119}
120
121/* Put tty into raw mode so <tab> and <ctrl+c> work */
Simon Glassffb87902014-02-27 13:26:22 -0700122void os_tty_raw(int fd, bool allow_sigs)
Mike Frysingerab06a752011-10-26 00:21:29 +0000123{
Mike Frysingerab06a752011-10-26 00:21:29 +0000124 struct termios term;
125
Simon Glassffb87902014-02-27 13:26:22 -0700126 if (term_setup)
Mike Frysingerab06a752011-10-26 00:21:29 +0000127 return;
Mike Frysingerab06a752011-10-26 00:21:29 +0000128
129 /* If not a tty, don't complain */
130 if (tcgetattr(fd, &orig_term))
131 return;
132
133 term = orig_term;
134 term.c_iflag = IGNBRK | IGNPAR;
135 term.c_oflag = OPOST | ONLCR;
136 term.c_cflag = CS8 | CREAD | CLOCAL;
Simon Glassffb87902014-02-27 13:26:22 -0700137 term.c_lflag = allow_sigs ? ISIG : 0;
Mike Frysingerab06a752011-10-26 00:21:29 +0000138 if (tcsetattr(fd, TCSANOW, &term))
139 return;
140
Simon Glass8939df02015-05-10 21:07:27 -0600141 term_setup = true;
Mike Frysingerab06a752011-10-26 00:21:29 +0000142 atexit(os_fd_restore);
143}
Matthias Weisser21899b12011-11-05 11:40:34 +0100144
145void *os_malloc(size_t length)
146{
Simon Glass77595c62013-11-10 10:26:57 -0700147 struct os_mem_hdr *hdr;
Simon Glass61318502018-09-15 00:50:54 -0600148 int page_size = getpagesize();
Simon Glass77595c62013-11-10 10:26:57 -0700149
Simon Glass61318502018-09-15 00:50:54 -0600150 hdr = mmap(NULL, length + page_size,
Alexander Graf6e6e4b22018-06-22 14:44:13 +0200151 PROT_READ | PROT_WRITE | PROT_EXEC,
152 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
Simon Glass77595c62013-11-10 10:26:57 -0700153 if (hdr == MAP_FAILED)
154 return NULL;
155 hdr->length = length;
156
Simon Glass61318502018-09-15 00:50:54 -0600157 return (void *)hdr + page_size;
Simon Glass77595c62013-11-10 10:26:57 -0700158}
159
Masahiro Yamada347d06d2014-01-15 13:06:41 +0900160void os_free(void *ptr)
Simon Glass77595c62013-11-10 10:26:57 -0700161{
162 struct os_mem_hdr *hdr = ptr;
163
164 hdr--;
165 if (ptr)
166 munmap(hdr, hdr->length + sizeof(*hdr));
167}
168
169void *os_realloc(void *ptr, size_t length)
170{
171 struct os_mem_hdr *hdr = ptr;
172 void *buf = NULL;
173
174 hdr--;
175 if (length != 0) {
176 buf = os_malloc(length);
177 if (!buf)
178 return buf;
179 if (ptr) {
180 if (length > hdr->length)
181 length = hdr->length;
182 memcpy(buf, ptr, length);
183 }
184 }
185 os_free(ptr);
186
187 return buf;
Matthias Weisser21899b12011-11-05 11:40:34 +0100188}
Matthias Weisserd99a6872011-11-29 12:16:40 +0100189
190void os_usleep(unsigned long usec)
191{
192 usleep(usec);
193}
194
Simon Glass2a54d152013-05-19 16:45:35 -0700195uint64_t __attribute__((no_instrument_function)) os_get_nsec(void)
Matthias Weisserd99a6872011-11-29 12:16:40 +0100196{
197#if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK)
198 struct timespec tp;
199 if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) {
200 struct timeval tv;
201
202 gettimeofday(&tv, NULL);
203 tp.tv_sec = tv.tv_sec;
204 tp.tv_nsec = tv.tv_usec * 1000;
205 }
206 return tp.tv_sec * 1000000000ULL + tp.tv_nsec;
207#else
208 struct timeval tv;
209 gettimeofday(&tv, NULL);
210 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
211#endif
212}
Simon Glass70db4212012-02-15 15:51:16 -0800213
214static char *short_opts;
215static struct option *long_opts;
216
217int os_parse_args(struct sandbox_state *state, int argc, char *argv[])
218{
Simon Glass7b3efc62013-12-03 16:43:23 -0700219 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass70db4212012-02-15 15:51:16 -0800220 size_t num_options = __u_boot_sandbox_option_count();
221 size_t i;
222
223 int hidden_short_opt;
224 size_t si;
225
226 int c;
227
228 if (short_opts || long_opts)
229 return 1;
230
231 state->argc = argc;
232 state->argv = argv;
233
234 /* dynamically construct the arguments to the system getopt_long */
235 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1);
236 long_opts = os_malloc(sizeof(*long_opts) * num_options);
237 if (!short_opts || !long_opts)
238 return 1;
239
240 /*
241 * getopt_long requires "val" to be unique (since that is what the
242 * func returns), so generate unique values automatically for flags
243 * that don't have a short option. pick 0x100 as that is above the
244 * single byte range (where ASCII/ISO-XXXX-X charsets live).
245 */
246 hidden_short_opt = 0x100;
247 si = 0;
248 for (i = 0; i < num_options; ++i) {
249 long_opts[i].name = sb_opt[i]->flag;
250 long_opts[i].has_arg = sb_opt[i]->has_arg ?
251 required_argument : no_argument;
252 long_opts[i].flag = NULL;
253
254 if (sb_opt[i]->flag_short) {
255 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short;
256 if (long_opts[i].has_arg == required_argument)
257 short_opts[si++] = ':';
258 } else
259 long_opts[i].val = sb_opt[i]->flag_short = hidden_short_opt++;
260 }
261 short_opts[si] = '\0';
262
263 /* we need to handle output ourselves since u-boot provides printf */
264 opterr = 0;
265
266 /*
267 * walk all of the options the user gave us on the command line,
268 * figure out what u-boot option structure they belong to (via
269 * the unique short val key), and call the appropriate callback.
270 */
271 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
272 for (i = 0; i < num_options; ++i) {
273 if (sb_opt[i]->flag_short == c) {
274 if (sb_opt[i]->callback(state, optarg)) {
275 state->parse_err = sb_opt[i]->flag;
276 return 0;
277 }
278 break;
279 }
280 }
281 if (i == num_options) {
282 /*
283 * store the faulting flag for later display. we have to
284 * store the flag itself as the getopt parsing itself is
285 * tricky: need to handle the following flags (assume all
286 * of the below are unknown):
287 * -a optopt='a' optind=<next>
288 * -abbbb optopt='a' optind=<this>
289 * -aaaaa optopt='a' optind=<this>
290 * --a optopt=0 optind=<this>
291 * as you can see, it is impossible to determine the exact
292 * faulting flag without doing the parsing ourselves, so
293 * we just report the specific flag that failed.
294 */
295 if (optopt) {
296 static char parse_err[3] = { '-', 0, '\0', };
297 parse_err[1] = optopt;
298 state->parse_err = parse_err;
299 } else
300 state->parse_err = argv[optind - 1];
301 break;
302 }
303 }
304
305 return 0;
306}
Simon Glass62584db2012-12-26 09:53:34 +0000307
308void os_dirent_free(struct os_dirent_node *node)
309{
310 struct os_dirent_node *next;
311
312 while (node) {
313 next = node->next;
314 free(node);
315 node = next;
316 }
317}
318
319int os_dirent_ls(const char *dirname, struct os_dirent_node **headp)
320{
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200321 struct dirent *entry;
Simon Glass62584db2012-12-26 09:53:34 +0000322 struct os_dirent_node *head, *node, *next;
323 struct stat buf;
324 DIR *dir;
325 int ret;
326 char *fname;
Heinrich Schuchardt04d0da52017-09-21 12:56:07 +0200327 char *old_fname;
Simon Glass62584db2012-12-26 09:53:34 +0000328 int len;
Stefan Brünsf189899c2016-10-01 20:41:40 +0200329 int dirlen;
Simon Glass62584db2012-12-26 09:53:34 +0000330
331 *headp = NULL;
332 dir = opendir(dirname);
333 if (!dir)
334 return -1;
335
Stefan Brünsf189899c2016-10-01 20:41:40 +0200336 /* Create a buffer upfront, with typically sufficient size */
337 dirlen = strlen(dirname) + 2;
338 len = dirlen + 256;
Simon Glass62584db2012-12-26 09:53:34 +0000339 fname = malloc(len);
340 if (!fname) {
341 ret = -ENOMEM;
342 goto done;
343 }
344
345 for (node = head = NULL;; node = next) {
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200346 errno = 0;
347 entry = readdir(dir);
348 if (!entry) {
349 ret = errno;
Simon Glass62584db2012-12-26 09:53:34 +0000350 break;
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200351 }
352 next = malloc(sizeof(*node) + strlen(entry->d_name) + 1);
Heinrich Schuchardt04d0da52017-09-21 12:56:07 +0200353 if (!next) {
Simon Glass62584db2012-12-26 09:53:34 +0000354 os_dirent_free(head);
355 ret = -ENOMEM;
356 goto done;
357 }
Heinrich Schuchardt04d0da52017-09-21 12:56:07 +0200358 if (dirlen + strlen(entry->d_name) > len) {
359 len = dirlen + strlen(entry->d_name);
360 old_fname = fname;
361 fname = realloc(fname, len);
362 if (!fname) {
363 free(old_fname);
364 free(next);
365 os_dirent_free(head);
366 ret = -ENOMEM;
367 goto done;
368 }
369 }
Stephen Warren9c38c072014-06-11 10:26:23 -0600370 next->next = NULL;
Stefan Brünsbf635ed2016-10-01 20:41:42 +0200371 strcpy(next->name, entry->d_name);
372 switch (entry->d_type) {
Simon Glass62584db2012-12-26 09:53:34 +0000373 case DT_REG:
374 next->type = OS_FILET_REG;
375 break;
376 case DT_DIR:
377 next->type = OS_FILET_DIR;
378 break;
379 case DT_LNK:
380 next->type = OS_FILET_LNK;
381 break;
Stefan Brüns2f159402016-10-04 21:46:35 +0200382 default:
383 next->type = OS_FILET_UNKNOWN;
Simon Glass62584db2012-12-26 09:53:34 +0000384 }
385 next->size = 0;
386 snprintf(fname, len, "%s/%s", dirname, next->name);
387 if (!stat(fname, &buf))
388 next->size = buf.st_size;
389 if (node)
390 node->next = next;
Stefan Brünsce2ec192016-10-01 20:41:39 +0200391 else
392 head = next;
Simon Glass62584db2012-12-26 09:53:34 +0000393 }
394 *headp = head;
395
396done:
397 closedir(dir);
Simon Glassf80a8bb2014-11-11 12:47:08 -0700398 free(fname);
Simon Glass62584db2012-12-26 09:53:34 +0000399 return ret;
400}
401
402const char *os_dirent_typename[OS_FILET_COUNT] = {
403 " ",
404 "SYM",
405 "DIR",
406 "???",
407};
408
409const char *os_dirent_get_typename(enum os_dirent_t type)
410{
Tom Rinie2bc87d2017-05-13 20:11:30 -0400411 if (type >= OS_FILET_REG && type < OS_FILET_COUNT)
Simon Glass62584db2012-12-26 09:53:34 +0000412 return os_dirent_typename[type];
413
414 return os_dirent_typename[OS_FILET_UNKNOWN];
415}
416
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800417int os_get_filesize(const char *fname, loff_t *size)
Simon Glass62584db2012-12-26 09:53:34 +0000418{
419 struct stat buf;
420 int ret;
421
422 ret = stat(fname, &buf);
423 if (ret)
424 return ret;
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800425 *size = buf.st_size;
426 return 0;
Simon Glass62584db2012-12-26 09:53:34 +0000427}
Simon Glass91b136c2013-11-10 10:27:01 -0700428
Simon Glass0b189b62017-12-04 13:48:17 -0700429void os_putc(int ch)
430{
431 putchar(ch);
432}
433
434void os_puts(const char *str)
435{
436 while (*str)
437 os_putc(*str++);
438}
439
Simon Glass5c2859c2013-11-10 10:27:03 -0700440int os_write_ram_buf(const char *fname)
441{
442 struct sandbox_state *state = state_get_current();
443 int fd, ret;
444
445 fd = open(fname, O_CREAT | O_WRONLY, 0777);
446 if (fd < 0)
447 return -ENOENT;
448 ret = write(fd, state->ram_buf, state->ram_size);
449 close(fd);
450 if (ret != state->ram_size)
451 return -EIO;
452
453 return 0;
454}
455
456int os_read_ram_buf(const char *fname)
457{
458 struct sandbox_state *state = state_get_current();
459 int fd, ret;
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800460 loff_t size;
Simon Glass5c2859c2013-11-10 10:27:03 -0700461
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800462 ret = os_get_filesize(fname, &size);
463 if (ret < 0)
464 return ret;
Simon Glass5c2859c2013-11-10 10:27:03 -0700465 if (size != state->ram_size)
466 return -ENOSPC;
467 fd = open(fname, O_RDONLY);
468 if (fd < 0)
469 return -ENOENT;
470
471 ret = read(fd, state->ram_buf, state->ram_size);
472 close(fd);
473 if (ret != state->ram_size)
474 return -EIO;
475
476 return 0;
477}
Simon Glass47f5fcf2014-02-27 13:26:15 -0700478
479static int make_exec(char *fname, const void *data, int size)
480{
481 int fd;
482
483 strcpy(fname, "/tmp/u-boot.jump.XXXXXX");
484 fd = mkstemp(fname);
485 if (fd < 0)
486 return -ENOENT;
487 if (write(fd, data, size) < 0)
488 return -EIO;
489 close(fd);
490 if (chmod(fname, 0777))
491 return -ENOEXEC;
492
493 return 0;
494}
495
496static int add_args(char ***argvp, const char *add_args[], int count)
497{
498 char **argv;
499 int argc;
500
501 for (argv = *argvp, argc = 0; (*argvp)[argc]; argc++)
502 ;
503
504 argv = malloc((argc + count + 1) * sizeof(char *));
505 if (!argv) {
506 printf("Out of memory for %d argv\n", count);
507 return -ENOMEM;
508 }
509 memcpy(argv, *argvp, argc * sizeof(char *));
510 memcpy(argv + argc, add_args, count * sizeof(char *));
511 argv[argc + count] = NULL;
512
513 *argvp = argv;
514 return 0;
515}
516
517int os_jump_to_image(const void *dest, int size)
518{
519 struct sandbox_state *state = state_get_current();
520 char fname[30], mem_fname[30];
521 int fd, err;
Simon Glassab839dc2014-02-27 13:26:23 -0700522 const char *extra_args[5];
Simon Glass47f5fcf2014-02-27 13:26:15 -0700523 char **argv = state->argv;
524#ifdef DEBUG
525 int argc, i;
526#endif
527
528 err = make_exec(fname, dest, size);
529 if (err)
530 return err;
531
532 strcpy(mem_fname, "/tmp/u-boot.mem.XXXXXX");
533 fd = mkstemp(mem_fname);
534 if (fd < 0)
535 return -ENOENT;
536 close(fd);
537 err = os_write_ram_buf(mem_fname);
538 if (err)
539 return err;
540
541 os_fd_restore();
542
543 extra_args[0] = "-j";
544 extra_args[1] = fname;
545 extra_args[2] = "-m";
546 extra_args[3] = mem_fname;
Simon Glassab839dc2014-02-27 13:26:23 -0700547 extra_args[4] = "--rm_memory";
Simon Glass47f5fcf2014-02-27 13:26:15 -0700548 err = add_args(&argv, extra_args,
549 sizeof(extra_args) / sizeof(extra_args[0]));
550 if (err)
551 return err;
552
553#ifdef DEBUG
554 for (i = 0; argv[i]; i++)
555 printf("%d %s\n", i, argv[i]);
556#endif
557
558 if (state_uninit())
559 os_exit(2);
560
561 err = execv(fname, argv);
562 free(argv);
563 if (err)
564 return err;
565
566 return unlink(fname);
567}
Simon Glass94eefde2015-04-20 12:37:22 -0600568
Simon Glassd4e33f52016-07-04 11:57:45 -0600569int os_find_u_boot(char *fname, int maxlen)
570{
571 struct sandbox_state *state = state_get_current();
572 const char *progname = state->argv[0];
573 int len = strlen(progname);
574 char *p;
575 int fd;
576
577 if (len >= maxlen || len < 4)
578 return -ENOSPC;
579
580 /* Look for 'u-boot' in the same directory as 'u-boot-spl' */
581 strcpy(fname, progname);
582 if (!strcmp(fname + len - 4, "-spl")) {
583 fname[len - 4] = '\0';
584 fd = os_open(fname, O_RDONLY);
585 if (fd >= 0) {
586 close(fd);
587 return 0;
588 }
589 }
590
591 /* Look for 'u-boot' in the parent directory of spl/ */
592 p = strstr(fname, "/spl/");
593 if (p) {
594 strcpy(p, p + 4);
595 fd = os_open(fname, O_RDONLY);
596 if (fd >= 0) {
597 close(fd);
598 return 0;
599 }
600 }
601
602 return -ENOENT;
603}
604
605int os_spl_to_uboot(const char *fname)
606{
607 struct sandbox_state *state = state_get_current();
608 char *argv[state->argc + 1];
609 int ret;
610
611 memcpy(argv, state->argv, sizeof(char *) * (state->argc + 1));
612 argv[0] = (char *)fname;
613 ret = execv(fname, argv);
614 if (ret)
615 return ret;
616
617 return unlink(fname);
618}
619
Simon Glass94eefde2015-04-20 12:37:22 -0600620void os_localtime(struct rtc_time *rt)
621{
622 time_t t = time(NULL);
623 struct tm *tm;
624
625 tm = localtime(&t);
626 rt->tm_sec = tm->tm_sec;
627 rt->tm_min = tm->tm_min;
628 rt->tm_hour = tm->tm_hour;
629 rt->tm_mday = tm->tm_mday;
630 rt->tm_mon = tm->tm_mon + 1;
631 rt->tm_year = tm->tm_year + 1900;
632 rt->tm_wday = tm->tm_wday;
633 rt->tm_yday = tm->tm_yday;
634 rt->tm_isdst = tm->tm_isdst;
635}
Simon Glass30eef212018-05-16 09:42:22 -0600636
Simon Glassfe938fb2018-09-15 00:50:55 -0600637void os_abort(void)
638{
639 abort();
640}
Simon Glass9f8037e2018-10-01 21:12:32 -0600641
642int os_mprotect_allow(void *start, size_t len)
643{
644 int page_size = getpagesize();
645
646 /* Move start to the start of a page, len to the end */
647 start = (void *)(((ulong)start) & ~(page_size - 1));
648 len = (len + page_size * 2) & ~(page_size - 1);
649
650 return mprotect(start, len, PROT_READ | PROT_WRITE);
651}