blob: 1e253611c367fe2f0b2fbd8be36ce2f54f69d684 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass92ccc962012-12-26 09:53:35 +00002/*
3 * Copyright (c) 2012, Google Inc.
Simon Glass92ccc962012-12-26 09:53:35 +00004 */
5
6#include <common.h>
7#include <fs.h>
8#include <os.h>
9
Simon Glass4101f682016-02-29 15:25:34 -070010int sandbox_fs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info)
Simon Glass92ccc962012-12-26 09:53:35 +000011{
Sjoerd Simons85300a92015-04-13 22:54:19 +020012 /*
Simon Glass4101f682016-02-29 15:25:34 -070013 * Only accept a NULL struct blk_desc for the sandbox, which is when
Sjoerd Simons85300a92015-04-13 22:54:19 +020014 * hostfs interface is used
15 */
16 return rbdd != NULL;
Simon Glass92ccc962012-12-26 09:53:35 +000017}
18
Suriyan Ramasami96b10462014-11-17 14:39:37 -080019int sandbox_fs_read_at(const char *filename, loff_t pos, void *buffer,
20 loff_t maxsize, loff_t *actread)
Simon Glass92ccc962012-12-26 09:53:35 +000021{
Suriyan Ramasami96b10462014-11-17 14:39:37 -080022 loff_t size;
Simon Glass92ccc962012-12-26 09:53:35 +000023 int fd, ret;
24
25 fd = os_open(filename, OS_O_RDONLY);
26 if (fd < 0)
27 return fd;
28 ret = os_lseek(fd, pos, OS_SEEK_SET);
29 if (ret == -1) {
30 os_close(fd);
31 return ret;
32 }
Suriyan Ramasami96b10462014-11-17 14:39:37 -080033 if (!maxsize) {
34 ret = os_get_filesize(filename, &size);
35 if (ret) {
36 os_close(fd);
37 return ret;
38 }
39
40 maxsize = size;
41 }
42
Simon Glass92ccc962012-12-26 09:53:35 +000043 size = os_read(fd, buffer, maxsize);
44 os_close(fd);
45
Suriyan Ramasami96b10462014-11-17 14:39:37 -080046 if (size < 0) {
47 ret = -1;
48 } else {
49 ret = 0;
50 *actread = size;
51 }
52
53 return ret;
Simon Glass92ccc962012-12-26 09:53:35 +000054}
55
Suriyan Ramasami96b10462014-11-17 14:39:37 -080056int sandbox_fs_write_at(const char *filename, loff_t pos, void *buffer,
57 loff_t towrite, loff_t *actwrite)
Simon Glass7eb2c8d2013-04-20 08:42:51 +000058{
59 ssize_t size;
60 int fd, ret;
61
62 fd = os_open(filename, OS_O_RDWR | OS_O_CREAT);
63 if (fd < 0)
64 return fd;
65 ret = os_lseek(fd, pos, OS_SEEK_SET);
66 if (ret == -1) {
67 os_close(fd);
68 return ret;
69 }
70 size = os_write(fd, buffer, towrite);
71 os_close(fd);
72
Suriyan Ramasami96b10462014-11-17 14:39:37 -080073 if (size == -1) {
74 ret = -1;
75 } else {
76 ret = 0;
77 *actwrite = size;
78 }
79
80 return ret;
Simon Glass7eb2c8d2013-04-20 08:42:51 +000081}
82
Simon Glass92ccc962012-12-26 09:53:35 +000083int sandbox_fs_ls(const char *dirname)
84{
85 struct os_dirent_node *head, *node;
86 int ret;
87
88 ret = os_dirent_ls(dirname, &head);
89 if (ret)
Tom Rini03177242016-10-17 21:09:32 -040090 goto out;
Simon Glass92ccc962012-12-26 09:53:35 +000091
92 for (node = head; node; node = node->next) {
93 printf("%s %10lu %s\n", os_dirent_get_typename(node->type),
94 node->size, node->name);
95 }
Tom Rini03177242016-10-17 21:09:32 -040096out:
Stefan BrĂ¼ns86167082016-10-01 20:41:38 +020097 os_dirent_free(head);
Simon Glass92ccc962012-12-26 09:53:35 +000098
Tom Rini03177242016-10-17 21:09:32 -040099 return ret;
Simon Glass92ccc962012-12-26 09:53:35 +0000100}
101
Stephen Warren0a30aa12014-02-03 13:21:07 -0700102int sandbox_fs_exists(const char *filename)
103{
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800104 loff_t size;
105 int ret;
Stephen Warren0a30aa12014-02-03 13:21:07 -0700106
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800107 ret = os_get_filesize(filename, &size);
108 return ret == 0;
Stephen Warren0a30aa12014-02-03 13:21:07 -0700109}
110
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800111int sandbox_fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600112{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800113 return os_get_filesize(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600114}
115
Simon Glass92ccc962012-12-26 09:53:35 +0000116void sandbox_fs_close(void)
117{
118}
119
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800120int fs_read_sandbox(const char *filename, void *buf, loff_t offset, loff_t len,
121 loff_t *actread)
Simon Glass92ccc962012-12-26 09:53:35 +0000122{
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800123 int ret;
Simon Glass92ccc962012-12-26 09:53:35 +0000124
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800125 ret = sandbox_fs_read_at(filename, offset, buf, len, actread);
126 if (ret)
Simon Glass92ccc962012-12-26 09:53:35 +0000127 printf("** Unable to read file %s **\n", filename);
Simon Glass92ccc962012-12-26 09:53:35 +0000128
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800129 return ret;
Simon Glass92ccc962012-12-26 09:53:35 +0000130}
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000131
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800132int fs_write_sandbox(const char *filename, void *buf, loff_t offset,
133 loff_t len, loff_t *actwrite)
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000134{
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800135 int ret;
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000136
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800137 ret = sandbox_fs_write_at(filename, offset, buf, len, actwrite);
138 if (ret)
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000139 printf("** Unable to write file %s **\n", filename);
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000140
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800141 return ret;
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000142}