blob: c2e5f57193e65e4f22b954ba7814741881f80c25 [file] [log] [blame]
Simon Glass7a9219c2011-10-03 19:26:44 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
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 Glass62584db2012-12-26 09:53:34 +000010#include <stdio.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000011#include <stdlib.h>
Simon Glass62584db2012-12-26 09:53:34 +000012#include <string.h>
Mike Frysingerab06a752011-10-26 00:21:29 +000013#include <termios.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010014#include <time.h>
Simon Glasse1012472012-01-10 15:54:05 -080015#include <unistd.h>
Matthias Weisser21899b12011-11-05 11:40:34 +010016#include <sys/mman.h>
Simon Glasse1012472012-01-10 15:54:05 -080017#include <sys/stat.h>
Simon Glass3bdf56b2012-01-10 15:54:06 -080018#include <sys/time.h>
Simon Glasse1012472012-01-10 15:54:05 -080019#include <sys/types.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010020#include <linux/types.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000021
Simon Glass70db4212012-02-15 15:51:16 -080022#include <asm/getopt.h>
23#include <asm/sections.h>
24#include <asm/state.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000025#include <os.h>
26
27/* Operating System Interface */
28
29ssize_t os_read(int fd, void *buf, size_t count)
30{
31 return read(fd, buf, count);
32}
33
Taylor Hutte1015502013-02-24 17:33:13 +000034ssize_t os_read_no_block(int fd, void *buf, size_t count)
35{
36 const int flags = fcntl(fd, F_GETFL, 0);
37
38 fcntl(fd, F_SETFL, flags | O_NONBLOCK);
39 return os_read(fd, buf, count);
40}
41
Simon Glass7a9219c2011-10-03 19:26:44 +000042ssize_t os_write(int fd, const void *buf, size_t count)
43{
44 return write(fd, buf, count);
45}
46
Mike Frysingere2dcefc2011-10-25 13:02:58 +020047off_t os_lseek(int fd, off_t offset, int whence)
48{
49 if (whence == OS_SEEK_SET)
50 whence = SEEK_SET;
51 else if (whence == OS_SEEK_CUR)
52 whence = SEEK_CUR;
53 else if (whence == OS_SEEK_END)
54 whence = SEEK_END;
55 else
56 os_exit(1);
57 return lseek(fd, offset, whence);
58}
59
Simon Glassd9165152012-02-20 23:56:58 -050060int os_open(const char *pathname, int os_flags)
Simon Glass7a9219c2011-10-03 19:26:44 +000061{
Simon Glassd9165152012-02-20 23:56:58 -050062 int flags;
63
64 switch (os_flags & OS_O_MASK) {
65 case OS_O_RDONLY:
66 default:
67 flags = O_RDONLY;
68 break;
69
70 case OS_O_WRONLY:
71 flags = O_WRONLY;
72 break;
73
74 case OS_O_RDWR:
75 flags = O_RDWR;
76 break;
77 }
78
79 if (os_flags & OS_O_CREAT)
80 flags |= O_CREAT;
81
82 return open(pathname, flags, 0777);
Simon Glass7a9219c2011-10-03 19:26:44 +000083}
84
85int os_close(int fd)
86{
87 return close(fd);
88}
89
90void os_exit(int exit_code)
91{
92 exit(exit_code);
93}
Mike Frysingerab06a752011-10-26 00:21:29 +000094
95/* Restore tty state when we exit */
96static struct termios orig_term;
97
98static void os_fd_restore(void)
99{
100 tcsetattr(0, TCSANOW, &orig_term);
101}
102
103/* Put tty into raw mode so <tab> and <ctrl+c> work */
104void os_tty_raw(int fd)
105{
106 static int setup = 0;
107 struct termios term;
108
109 if (setup)
110 return;
111 setup = 1;
112
113 /* If not a tty, don't complain */
114 if (tcgetattr(fd, &orig_term))
115 return;
116
117 term = orig_term;
118 term.c_iflag = IGNBRK | IGNPAR;
119 term.c_oflag = OPOST | ONLCR;
120 term.c_cflag = CS8 | CREAD | CLOCAL;
121 term.c_lflag = 0;
122 if (tcsetattr(fd, TCSANOW, &term))
123 return;
124
125 atexit(os_fd_restore);
126}
Matthias Weisser21899b12011-11-05 11:40:34 +0100127
128void *os_malloc(size_t length)
129{
130 return mmap(NULL, length, PROT_READ | PROT_WRITE,
131 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
132}
Matthias Weisserd99a6872011-11-29 12:16:40 +0100133
134void os_usleep(unsigned long usec)
135{
136 usleep(usec);
137}
138
Simon Glasse2ee1002013-06-11 11:14:44 -0700139u64 __attribute__((no_instrument_function)) os_get_nsec(void)
Matthias Weisserd99a6872011-11-29 12:16:40 +0100140{
141#if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK)
142 struct timespec tp;
143 if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) {
144 struct timeval tv;
145
146 gettimeofday(&tv, NULL);
147 tp.tv_sec = tv.tv_sec;
148 tp.tv_nsec = tv.tv_usec * 1000;
149 }
150 return tp.tv_sec * 1000000000ULL + tp.tv_nsec;
151#else
152 struct timeval tv;
153 gettimeofday(&tv, NULL);
154 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
155#endif
156}
Simon Glass70db4212012-02-15 15:51:16 -0800157
158static char *short_opts;
159static struct option *long_opts;
160
161int os_parse_args(struct sandbox_state *state, int argc, char *argv[])
162{
163 struct sb_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
164 size_t num_options = __u_boot_sandbox_option_count();
165 size_t i;
166
167 int hidden_short_opt;
168 size_t si;
169
170 int c;
171
172 if (short_opts || long_opts)
173 return 1;
174
175 state->argc = argc;
176 state->argv = argv;
177
178 /* dynamically construct the arguments to the system getopt_long */
179 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1);
180 long_opts = os_malloc(sizeof(*long_opts) * num_options);
181 if (!short_opts || !long_opts)
182 return 1;
183
184 /*
185 * getopt_long requires "val" to be unique (since that is what the
186 * func returns), so generate unique values automatically for flags
187 * that don't have a short option. pick 0x100 as that is above the
188 * single byte range (where ASCII/ISO-XXXX-X charsets live).
189 */
190 hidden_short_opt = 0x100;
191 si = 0;
192 for (i = 0; i < num_options; ++i) {
193 long_opts[i].name = sb_opt[i]->flag;
194 long_opts[i].has_arg = sb_opt[i]->has_arg ?
195 required_argument : no_argument;
196 long_opts[i].flag = NULL;
197
198 if (sb_opt[i]->flag_short) {
199 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short;
200 if (long_opts[i].has_arg == required_argument)
201 short_opts[si++] = ':';
202 } else
203 long_opts[i].val = sb_opt[i]->flag_short = hidden_short_opt++;
204 }
205 short_opts[si] = '\0';
206
207 /* we need to handle output ourselves since u-boot provides printf */
208 opterr = 0;
209
210 /*
211 * walk all of the options the user gave us on the command line,
212 * figure out what u-boot option structure they belong to (via
213 * the unique short val key), and call the appropriate callback.
214 */
215 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
216 for (i = 0; i < num_options; ++i) {
217 if (sb_opt[i]->flag_short == c) {
218 if (sb_opt[i]->callback(state, optarg)) {
219 state->parse_err = sb_opt[i]->flag;
220 return 0;
221 }
222 break;
223 }
224 }
225 if (i == num_options) {
226 /*
227 * store the faulting flag for later display. we have to
228 * store the flag itself as the getopt parsing itself is
229 * tricky: need to handle the following flags (assume all
230 * of the below are unknown):
231 * -a optopt='a' optind=<next>
232 * -abbbb optopt='a' optind=<this>
233 * -aaaaa optopt='a' optind=<this>
234 * --a optopt=0 optind=<this>
235 * as you can see, it is impossible to determine the exact
236 * faulting flag without doing the parsing ourselves, so
237 * we just report the specific flag that failed.
238 */
239 if (optopt) {
240 static char parse_err[3] = { '-', 0, '\0', };
241 parse_err[1] = optopt;
242 state->parse_err = parse_err;
243 } else
244 state->parse_err = argv[optind - 1];
245 break;
246 }
247 }
248
249 return 0;
250}
Simon Glass62584db2012-12-26 09:53:34 +0000251
252void os_dirent_free(struct os_dirent_node *node)
253{
254 struct os_dirent_node *next;
255
256 while (node) {
257 next = node->next;
258 free(node);
259 node = next;
260 }
261}
262
263int os_dirent_ls(const char *dirname, struct os_dirent_node **headp)
264{
265 struct dirent entry, *result;
266 struct os_dirent_node *head, *node, *next;
267 struct stat buf;
268 DIR *dir;
269 int ret;
270 char *fname;
271 int len;
272
273 *headp = NULL;
274 dir = opendir(dirname);
275 if (!dir)
276 return -1;
277
278 /* Create a buffer for the maximum filename length */
279 len = sizeof(entry.d_name) + strlen(dirname) + 2;
280 fname = malloc(len);
281 if (!fname) {
282 ret = -ENOMEM;
283 goto done;
284 }
285
286 for (node = head = NULL;; node = next) {
287 ret = readdir_r(dir, &entry, &result);
288 if (ret || !result)
289 break;
290 next = malloc(sizeof(*node) + strlen(entry.d_name) + 1);
291 if (!next) {
292 os_dirent_free(head);
293 ret = -ENOMEM;
294 goto done;
295 }
296 strcpy(next->name, entry.d_name);
297 switch (entry.d_type) {
298 case DT_REG:
299 next->type = OS_FILET_REG;
300 break;
301 case DT_DIR:
302 next->type = OS_FILET_DIR;
303 break;
304 case DT_LNK:
305 next->type = OS_FILET_LNK;
306 break;
307 }
308 next->size = 0;
309 snprintf(fname, len, "%s/%s", dirname, next->name);
310 if (!stat(fname, &buf))
311 next->size = buf.st_size;
312 if (node)
313 node->next = next;
314 if (!head)
315 head = node;
316 }
317 *headp = head;
318
319done:
320 closedir(dir);
321 return ret;
322}
323
324const char *os_dirent_typename[OS_FILET_COUNT] = {
325 " ",
326 "SYM",
327 "DIR",
328 "???",
329};
330
331const char *os_dirent_get_typename(enum os_dirent_t type)
332{
333 if (type >= 0 && type < OS_FILET_COUNT)
334 return os_dirent_typename[type];
335
336 return os_dirent_typename[OS_FILET_UNKNOWN];
337}
338
339ssize_t os_get_filesize(const char *fname)
340{
341 struct stat buf;
342 int ret;
343
344 ret = stat(fname, &buf);
345 if (ret)
346 return ret;
347 return buf.st_size;
348}