blob: 9f78b822419657298236beaa4c8e24e6918fc164 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clark2a920802017-09-13 18:05:34 -04002/*
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +02003 * EFI_FILE_PROTOCOL
Rob Clark2a920802017-09-13 18:05:34 -04004 *
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +02005 * Copyright (c) 2017 Rob Clark
Rob Clark2a920802017-09-13 18:05:34 -04006 */
7
8#include <common.h>
9#include <charset.h>
10#include <efi_loader.h>
11#include <malloc.h>
Alexander Grafd5a5a5a2018-08-08 03:54:32 -060012#include <mapmem.h>
Rob Clark2a920802017-09-13 18:05:34 -040013#include <fs.h>
14
Heinrich Schuchardt9e6835e2018-04-04 15:42:11 +020015/* GUID for file system information */
16const efi_guid_t efi_file_system_info_guid = EFI_FILE_SYSTEM_INFO_GUID;
17
Rob Clark2a920802017-09-13 18:05:34 -040018struct file_system {
19 struct efi_simple_file_system_protocol base;
20 struct efi_device_path *dp;
21 struct blk_desc *desc;
22 int part;
23};
24#define to_fs(x) container_of(x, struct file_system, base)
25
26struct file_handle {
27 struct efi_file_handle base;
28 struct file_system *fs;
29 loff_t offset; /* current file position/cursor */
30 int isdir;
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +020031 u64 open_mode;
Rob Clark2a920802017-09-13 18:05:34 -040032
33 /* for reading a directory: */
34 struct fs_dir_stream *dirs;
35 struct fs_dirent *dent;
36
37 char path[0];
38};
39#define to_fh(x) container_of(x, struct file_handle, base)
40
41static const struct efi_file_handle efi_file_handle_protocol;
42
43static char *basename(struct file_handle *fh)
44{
45 char *s = strrchr(fh->path, '/');
46 if (s)
47 return s + 1;
48 return fh->path;
49}
50
51static int set_blk_dev(struct file_handle *fh)
52{
53 return fs_set_blk_dev_with_part(fh->fs->desc, fh->fs->part);
54}
55
Heinrich Schuchardt2c61e0c2018-10-02 05:57:32 +020056/**
57 * is_dir() - check if file handle points to directory
58 *
59 * We assume that set_blk_dev(fh) has been called already.
60 *
61 * @fh: file handle
62 * Return: true if file handle points to a directory
63 */
Rob Clark2a920802017-09-13 18:05:34 -040064static int is_dir(struct file_handle *fh)
65{
66 struct fs_dir_stream *dirs;
67
Rob Clark2a920802017-09-13 18:05:34 -040068 dirs = fs_opendir(fh->path);
69 if (!dirs)
70 return 0;
71
72 fs_closedir(dirs);
73
74 return 1;
75}
76
77/*
78 * Normalize a path which may include either back or fwd slashes,
79 * double slashes, . or .. entries in the path, etc.
80 */
81static int sanitize_path(char *path)
82{
83 char *p;
84
85 /* backslash to slash: */
86 p = path;
87 while ((p = strchr(p, '\\')))
88 *p++ = '/';
89
90 /* handle double-slashes: */
91 p = path;
92 while ((p = strstr(p, "//"))) {
93 char *src = p + 1;
94 memmove(p, src, strlen(src) + 1);
95 }
96
97 /* handle extra /.'s */
98 p = path;
99 while ((p = strstr(p, "/."))) {
100 /*
101 * You'd be tempted to do this *after* handling ".."s
102 * below to avoid having to check if "/." is start of
103 * a "/..", but that won't have the correct results..
104 * for example, "/foo/./../bar" would get resolved to
105 * "/foo/bar" if you did these two passes in the other
106 * order
107 */
108 if (p[2] == '.') {
109 p += 2;
110 continue;
111 }
112 char *src = p + 2;
113 memmove(p, src, strlen(src) + 1);
114 }
115
116 /* handle extra /..'s: */
117 p = path;
118 while ((p = strstr(p, "/.."))) {
119 char *src = p + 3;
120
121 p--;
122
123 /* find beginning of previous path entry: */
124 while (true) {
125 if (p < path)
126 return -1;
127 if (*p == '/')
128 break;
129 p--;
130 }
131
132 memmove(p, src, strlen(src) + 1);
133 }
134
135 return 0;
136}
137
Heinrich Schuchardt050cea72018-09-12 19:00:02 +0200138/**
Heinrich Schuchardtcb0c2a72019-04-06 16:27:34 +0200139 * efi_create_file() - create file or directory
140 *
141 * @fh: file handle
142 * @attributes: attributes for newly created file
143 * Returns: 0 for success
144 */
145static int efi_create_file(struct file_handle *fh, u64 attributes)
146{
147 loff_t actwrite;
148 void *buffer = &actwrite;
149
150 if (attributes & EFI_FILE_DIRECTORY)
151 return fs_mkdir(fh->path);
152 else
153 return fs_write(fh->path, map_to_sysmem(buffer), 0, 0,
154 &actwrite);
155}
156
157/**
Heinrich Schuchardt050cea72018-09-12 19:00:02 +0200158 * file_open() - open a file handle
159 *
160 * @fs: file system
161 * @parent: directory relative to which the file is to be opened
162 * @file_name: path of the file to be opened. '\', '.', or '..' may
163 * be used as modifiers. A leading backslash indicates an
164 * absolute path.
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200165 * @open_mode: bit mask indicating the access mode (read, write,
Heinrich Schuchardt050cea72018-09-12 19:00:02 +0200166 * create)
167 * @attributes: attributes for newly created file
168 * Returns: handle to the opened file or NULL
Rob Clark2a920802017-09-13 18:05:34 -0400169 */
170static struct efi_file_handle *file_open(struct file_system *fs,
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200171 struct file_handle *parent, u16 *file_name, u64 open_mode,
AKASHI Takahiro5bc84a12018-09-11 15:59:12 +0900172 u64 attributes)
Rob Clark2a920802017-09-13 18:05:34 -0400173{
174 struct file_handle *fh;
175 char f0[MAX_UTF8_PER_UTF16] = {0};
176 int plen = 0;
177 int flen = 0;
178
179 if (file_name) {
Heinrich Schuchardtc82f8f62019-01-12 12:02:33 +0100180 utf16_to_utf8((u8 *)f0, file_name, 1);
181 flen = u16_strlen(file_name);
Rob Clark2a920802017-09-13 18:05:34 -0400182 }
183
184 /* we could have a parent, but also an absolute path: */
185 if (f0[0] == '\\') {
186 plen = 0;
187 } else if (parent) {
188 plen = strlen(parent->path) + 1;
189 }
190
191 /* +2 is for null and '/' */
192 fh = calloc(1, sizeof(*fh) + plen + (flen * MAX_UTF8_PER_UTF16) + 2);
193
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200194 fh->open_mode = open_mode;
Rob Clark2a920802017-09-13 18:05:34 -0400195 fh->base = efi_file_handle_protocol;
196 fh->fs = fs;
197
198 if (parent) {
199 char *p = fh->path;
Heinrich Schuchardtcb0c2a72019-04-06 16:27:34 +0200200 int exists;
Rob Clark2a920802017-09-13 18:05:34 -0400201
202 if (plen > 0) {
203 strcpy(p, parent->path);
204 p += plen - 1;
205 *p++ = '/';
206 }
207
Heinrich Schuchardtc82f8f62019-01-12 12:02:33 +0100208 utf16_to_utf8((u8 *)p, file_name, flen);
Rob Clark2a920802017-09-13 18:05:34 -0400209
210 if (sanitize_path(fh->path))
211 goto error;
212
213 /* check if file exists: */
214 if (set_blk_dev(fh))
215 goto error;
216
Heinrich Schuchardtcb0c2a72019-04-06 16:27:34 +0200217 exists = fs_exists(fh->path);
Heinrich Schuchardt823c2332019-02-09 22:23:48 +0100218 /* fs_exists() calls fs_close(), so open file system again */
219 if (set_blk_dev(fh))
220 goto error;
221
Heinrich Schuchardtcb0c2a72019-04-06 16:27:34 +0200222 if (!exists) {
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200223 if (!(open_mode & EFI_FILE_MODE_CREATE) ||
Heinrich Schuchardtcb0c2a72019-04-06 16:27:34 +0200224 efi_create_file(fh, attributes))
225 goto error;
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200226 if (set_blk_dev(fh))
227 goto error;
Heinrich Schuchardtcb0c2a72019-04-06 16:27:34 +0200228 }
229
Rob Clark2a920802017-09-13 18:05:34 -0400230 /* figure out if file is a directory: */
231 fh->isdir = is_dir(fh);
232 } else {
233 fh->isdir = 1;
234 strcpy(fh->path, "");
235 }
236
237 return &fh->base;
238
239error:
240 free(fh);
241 return NULL;
242}
243
244static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
245 struct efi_file_handle **new_handle,
Heinrich Schuchardtc82f8f62019-01-12 12:02:33 +0100246 u16 *file_name, u64 open_mode, u64 attributes)
Rob Clark2a920802017-09-13 18:05:34 -0400247{
248 struct file_handle *fh = to_fh(file);
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200249 efi_status_t ret;
Rob Clark2a920802017-09-13 18:05:34 -0400250
Simon Glass0c89a312019-01-07 16:44:18 -0700251 EFI_ENTRY("%p, %p, \"%ls\", %llx, %llu", file, new_handle,
Heinrich Schuchardt1646e092019-03-19 19:16:23 +0100252 file_name, open_mode, attributes);
Rob Clark2a920802017-09-13 18:05:34 -0400253
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200254 /* Check parameters */
Heinrich Schuchardtd3dce352018-09-15 20:43:46 +0200255 if (!file || !new_handle || !file_name) {
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200256 ret = EFI_INVALID_PARAMETER;
257 goto out;
258 }
259 if (open_mode != EFI_FILE_MODE_READ &&
260 open_mode != (EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE) &&
261 open_mode != (EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE |
262 EFI_FILE_MODE_CREATE)) {
263 ret = EFI_INVALID_PARAMETER;
264 goto out;
265 }
Heinrich Schuchardtbd665882018-09-13 21:31:49 +0200266 /*
267 * The UEFI spec requires that attributes are only set in create mode.
268 * The SCT does not care about this and sets EFI_FILE_DIRECTORY in
269 * read mode. EDK2 does not check that attributes are zero if not in
270 * create mode.
271 *
272 * So here we only check attributes in create mode and do not check
273 * that they are zero otherwise.
274 */
275 if ((open_mode & EFI_FILE_MODE_CREATE) &&
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200276 (attributes & (EFI_FILE_READ_ONLY | ~EFI_FILE_VALID_ATTR))) {
277 ret = EFI_INVALID_PARAMETER;
278 goto out;
279 }
Rob Clark2a920802017-09-13 18:05:34 -0400280
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200281 /* Open file */
282 *new_handle = file_open(fh->fs, fh, file_name, open_mode, attributes);
Heinrich Schuchardt19b2d892019-04-06 16:36:16 +0200283 if (*new_handle) {
284 EFI_PRINT("file handle %p\n", *new_handle);
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200285 ret = EFI_SUCCESS;
Heinrich Schuchardt19b2d892019-04-06 16:36:16 +0200286 } else {
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200287 ret = EFI_NOT_FOUND;
Heinrich Schuchardt19b2d892019-04-06 16:36:16 +0200288 }
Heinrich Schuchardt143acd12018-09-12 18:43:58 +0200289out:
290 return EFI_EXIT(ret);
Rob Clark2a920802017-09-13 18:05:34 -0400291}
292
293static efi_status_t file_close(struct file_handle *fh)
294{
295 fs_closedir(fh->dirs);
296 free(fh);
297 return EFI_SUCCESS;
298}
299
300static efi_status_t EFIAPI efi_file_close(struct efi_file_handle *file)
301{
302 struct file_handle *fh = to_fh(file);
303 EFI_ENTRY("%p", file);
304 return EFI_EXIT(file_close(fh));
305}
306
307static efi_status_t EFIAPI efi_file_delete(struct efi_file_handle *file)
308{
309 struct file_handle *fh = to_fh(file);
AKASHI Takahirod39f6a62018-09-11 15:59:16 +0900310 efi_status_t ret = EFI_SUCCESS;
311
Rob Clark2a920802017-09-13 18:05:34 -0400312 EFI_ENTRY("%p", file);
AKASHI Takahirod39f6a62018-09-11 15:59:16 +0900313
Heinrich Schuchardtfa390812019-06-17 22:00:13 +0200314 if (set_blk_dev(fh) || fs_unlink(fh->path))
315 ret = EFI_WARN_DELETE_FAILURE;
AKASHI Takahirod39f6a62018-09-11 15:59:16 +0900316
Rob Clark2a920802017-09-13 18:05:34 -0400317 file_close(fh);
AKASHI Takahirod39f6a62018-09-11 15:59:16 +0900318 return EFI_EXIT(ret);
Rob Clark2a920802017-09-13 18:05:34 -0400319}
320
321static efi_status_t file_read(struct file_handle *fh, u64 *buffer_size,
322 void *buffer)
323{
324 loff_t actread;
325
Simon Glass2ae843f2018-09-15 00:51:00 -0600326 if (fs_read(fh->path, map_to_sysmem(buffer), fh->offset,
Rob Clark2a920802017-09-13 18:05:34 -0400327 *buffer_size, &actread))
328 return EFI_DEVICE_ERROR;
329
330 *buffer_size = actread;
331 fh->offset += actread;
332
333 return EFI_SUCCESS;
334}
335
336static efi_status_t dir_read(struct file_handle *fh, u64 *buffer_size,
337 void *buffer)
338{
339 struct efi_file_info *info = buffer;
340 struct fs_dirent *dent;
341 unsigned int required_size;
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200342 u16 *dst;
Rob Clark2a920802017-09-13 18:05:34 -0400343
344 if (!fh->dirs) {
345 assert(fh->offset == 0);
346 fh->dirs = fs_opendir(fh->path);
347 if (!fh->dirs)
348 return EFI_DEVICE_ERROR;
349 }
350
351 /*
352 * So this is a bit awkward. Since fs layer is stateful and we
353 * can't rewind an entry, in the EFI_BUFFER_TOO_SMALL case below
354 * we might have to return without consuming the dent.. so we
355 * have to stash it for next call.
356 */
357 if (fh->dent) {
358 dent = fh->dent;
359 fh->dent = NULL;
360 } else {
361 dent = fs_readdir(fh->dirs);
362 }
363
364
365 if (!dent) {
366 /* no more files in directory: */
367 /* workaround shim.efi bug/quirk.. as find_boot_csv()
368 * loops through directory contents, it initially calls
369 * read w/ zero length buffer to find out how much mem
370 * to allocate for the EFI_FILE_INFO, then allocates,
371 * and then calls a 2nd time. If we return size of
372 * zero the first time, it happily passes that to
373 * AllocateZeroPool(), and when that returns NULL it
374 * thinks it is EFI_OUT_OF_RESOURCES. So on first
375 * call return a non-zero size:
376 */
377 if (*buffer_size == 0)
378 *buffer_size = sizeof(*info);
379 else
380 *buffer_size = 0;
381 return EFI_SUCCESS;
382 }
383
384 /* check buffer size: */
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200385 required_size = sizeof(*info) +
386 2 * (utf8_utf16_strlen(dent->name) + 1);
Rob Clark2a920802017-09-13 18:05:34 -0400387 if (*buffer_size < required_size) {
388 *buffer_size = required_size;
389 fh->dent = dent;
390 return EFI_BUFFER_TOO_SMALL;
391 }
392
393 *buffer_size = required_size;
394 memset(info, 0, required_size);
395
396 info->size = required_size;
397 info->file_size = dent->size;
398 info->physical_size = dent->size;
399
400 if (dent->type == FS_DT_DIR)
401 info->attribute |= EFI_FILE_DIRECTORY;
402
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200403 dst = info->file_name;
404 utf8_utf16_strcpy(&dst, dent->name);
Rob Clark2a920802017-09-13 18:05:34 -0400405
406 fh->offset++;
407
408 return EFI_SUCCESS;
409}
410
411static efi_status_t EFIAPI efi_file_read(struct efi_file_handle *file,
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200412 efi_uintn_t *buffer_size, void *buffer)
Rob Clark2a920802017-09-13 18:05:34 -0400413{
414 struct file_handle *fh = to_fh(file);
415 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200416 u64 bs;
Rob Clark2a920802017-09-13 18:05:34 -0400417
418 EFI_ENTRY("%p, %p, %p", file, buffer_size, buffer);
419
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200420 if (!buffer_size || !buffer) {
421 ret = EFI_INVALID_PARAMETER;
422 goto error;
423 }
424
Rob Clark2a920802017-09-13 18:05:34 -0400425 if (set_blk_dev(fh)) {
426 ret = EFI_DEVICE_ERROR;
427 goto error;
428 }
429
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200430 bs = *buffer_size;
Rob Clark2a920802017-09-13 18:05:34 -0400431 if (fh->isdir)
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200432 ret = dir_read(fh, &bs, buffer);
Rob Clark2a920802017-09-13 18:05:34 -0400433 else
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200434 ret = file_read(fh, &bs, buffer);
435 if (bs <= SIZE_MAX)
436 *buffer_size = bs;
437 else
438 *buffer_size = SIZE_MAX;
Rob Clark2a920802017-09-13 18:05:34 -0400439
440error:
441 return EFI_EXIT(ret);
442}
443
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200444/**
445 * efi_file_write() - write to file
446 *
447 * This function implements the Write() service of the EFI_FILE_PROTOCOL.
448 *
449 * See the Unified Extensible Firmware Interface (UEFI) specification for
450 * details.
451 *
452 * @file: file handle
453 * @buffer_size: number of bytes to write
454 * @buffer: buffer with the bytes to write
455 * Return: status code
456 */
Rob Clark2a920802017-09-13 18:05:34 -0400457static efi_status_t EFIAPI efi_file_write(struct efi_file_handle *file,
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200458 efi_uintn_t *buffer_size,
459 void *buffer)
Rob Clark2a920802017-09-13 18:05:34 -0400460{
461 struct file_handle *fh = to_fh(file);
462 efi_status_t ret = EFI_SUCCESS;
463 loff_t actwrite;
464
465 EFI_ENTRY("%p, %p, %p", file, buffer_size, buffer);
466
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200467 if (!file || !buffer_size || !buffer) {
468 ret = EFI_INVALID_PARAMETER;
469 goto out;
470 }
471 if (fh->isdir) {
472 ret = EFI_UNSUPPORTED;
473 goto out;
474 }
475 if (!(fh->open_mode & EFI_FILE_MODE_WRITE)) {
476 ret = EFI_ACCESS_DENIED;
477 goto out;
Rob Clark2a920802017-09-13 18:05:34 -0400478 }
479
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200480 if (!*buffer_size)
481 goto out;
482
483 if (set_blk_dev(fh)) {
484 ret = EFI_DEVICE_ERROR;
485 goto out;
486 }
Simon Glass2ae843f2018-09-15 00:51:00 -0600487 if (fs_write(fh->path, map_to_sysmem(buffer), fh->offset, *buffer_size,
Rob Clark2a920802017-09-13 18:05:34 -0400488 &actwrite)) {
489 ret = EFI_DEVICE_ERROR;
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200490 goto out;
Rob Clark2a920802017-09-13 18:05:34 -0400491 }
Rob Clark2a920802017-09-13 18:05:34 -0400492 *buffer_size = actwrite;
493 fh->offset += actwrite;
494
Heinrich Schuchardtb0f1c722019-09-06 21:37:21 +0200495out:
Rob Clark2a920802017-09-13 18:05:34 -0400496 return EFI_EXIT(ret);
497}
498
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200499/**
500 * efi_file_getpos() - get current position in file
501 *
502 * This function implements the GetPosition service of the EFI file protocol.
503 * See the UEFI spec for details.
504 *
505 * @file: file handle
506 * @pos: pointer to file position
507 * Return: status code
508 */
Rob Clark2a920802017-09-13 18:05:34 -0400509static efi_status_t EFIAPI efi_file_getpos(struct efi_file_handle *file,
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200510 u64 *pos)
Rob Clark2a920802017-09-13 18:05:34 -0400511{
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200512 efi_status_t ret = EFI_SUCCESS;
Rob Clark2a920802017-09-13 18:05:34 -0400513 struct file_handle *fh = to_fh(file);
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200514
Rob Clark2a920802017-09-13 18:05:34 -0400515 EFI_ENTRY("%p, %p", file, pos);
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200516
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200517 if (fh->isdir) {
518 ret = EFI_UNSUPPORTED;
519 goto out;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200520 }
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200521
522 *pos = fh->offset;
523out:
524 return EFI_EXIT(ret);
Rob Clark2a920802017-09-13 18:05:34 -0400525}
526
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200527/**
528 * efi_file_setpos() - set current position in file
529 *
530 * This function implements the SetPosition service of the EFI file protocol.
531 * See the UEFI spec for details.
532 *
533 * @file: file handle
534 * @pos: new file position
535 * Return: status code
536 */
Rob Clark2a920802017-09-13 18:05:34 -0400537static efi_status_t EFIAPI efi_file_setpos(struct efi_file_handle *file,
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200538 u64 pos)
Rob Clark2a920802017-09-13 18:05:34 -0400539{
540 struct file_handle *fh = to_fh(file);
541 efi_status_t ret = EFI_SUCCESS;
542
Heinrich Schuchardt0801d4d2018-10-07 05:26:26 +0200543 EFI_ENTRY("%p, %llu", file, pos);
Rob Clark2a920802017-09-13 18:05:34 -0400544
545 if (fh->isdir) {
546 if (pos != 0) {
547 ret = EFI_UNSUPPORTED;
548 goto error;
549 }
550 fs_closedir(fh->dirs);
551 fh->dirs = NULL;
552 }
553
554 if (pos == ~0ULL) {
555 loff_t file_size;
556
557 if (set_blk_dev(fh)) {
558 ret = EFI_DEVICE_ERROR;
559 goto error;
560 }
561
562 if (fs_size(fh->path, &file_size)) {
563 ret = EFI_DEVICE_ERROR;
564 goto error;
565 }
566
567 pos = file_size;
568 }
569
570 fh->offset = pos;
571
572error:
573 return EFI_EXIT(ret);
574}
575
576static efi_status_t EFIAPI efi_file_getinfo(struct efi_file_handle *file,
Heinrich Schuchardt9c9021e2018-04-04 15:42:09 +0200577 const efi_guid_t *info_type,
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200578 efi_uintn_t *buffer_size,
579 void *buffer)
Rob Clark2a920802017-09-13 18:05:34 -0400580{
581 struct file_handle *fh = to_fh(file);
582 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200583 u16 *dst;
Rob Clark2a920802017-09-13 18:05:34 -0400584
Heinrich Schuchardt008fb482018-09-14 22:46:34 +0200585 EFI_ENTRY("%p, %pUl, %p, %p", file, info_type, buffer_size, buffer);
Rob Clark2a920802017-09-13 18:05:34 -0400586
587 if (!guidcmp(info_type, &efi_file_info_guid)) {
588 struct efi_file_info *info = buffer;
589 char *filename = basename(fh);
590 unsigned int required_size;
591 loff_t file_size;
592
593 /* check buffer size: */
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200594 required_size = sizeof(*info) +
595 2 * (utf8_utf16_strlen(filename) + 1);
Rob Clark2a920802017-09-13 18:05:34 -0400596 if (*buffer_size < required_size) {
597 *buffer_size = required_size;
598 ret = EFI_BUFFER_TOO_SMALL;
599 goto error;
600 }
601
602 if (set_blk_dev(fh)) {
603 ret = EFI_DEVICE_ERROR;
604 goto error;
605 }
606
607 if (fs_size(fh->path, &file_size)) {
608 ret = EFI_DEVICE_ERROR;
609 goto error;
610 }
611
612 memset(info, 0, required_size);
613
614 info->size = required_size;
615 info->file_size = file_size;
616 info->physical_size = file_size;
617
618 if (fh->isdir)
619 info->attribute |= EFI_FILE_DIRECTORY;
620
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200621 dst = info->file_name;
622 utf8_utf16_strcpy(&dst, filename);
Heinrich Schuchardt9e6835e2018-04-04 15:42:11 +0200623 } else if (!guidcmp(info_type, &efi_file_system_info_guid)) {
624 struct efi_file_system_info *info = buffer;
625 disk_partition_t part;
626 efi_uintn_t required_size;
627 int r;
628
629 if (fh->fs->part >= 1)
630 r = part_get_info(fh->fs->desc, fh->fs->part, &part);
631 else
632 r = part_get_info_whole_disk(fh->fs->desc, &part);
633 if (r < 0) {
634 ret = EFI_DEVICE_ERROR;
635 goto error;
636 }
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200637 required_size = sizeof(*info) + 2 *
638 (utf8_utf16_strlen((const char *)part.name) +
639 1);
Heinrich Schuchardt9e6835e2018-04-04 15:42:11 +0200640 if (*buffer_size < required_size) {
641 *buffer_size = required_size;
642 ret = EFI_BUFFER_TOO_SMALL;
643 goto error;
644 }
645
646 memset(info, 0, required_size);
647
648 info->size = required_size;
649 info->read_only = true;
650 info->volume_size = part.size * part.blksz;
651 info->free_space = 0;
652 info->block_size = part.blksz;
653 /*
654 * TODO: The volume label is not available in U-Boot.
655 * Use the partition name as substitute.
656 */
Heinrich Schuchardt87c48402019-09-07 21:05:45 +0200657 dst = info->volume_label;
658 utf8_utf16_strcpy(&dst, (const char *)part.name);
Rob Clark2a920802017-09-13 18:05:34 -0400659 } else {
660 ret = EFI_UNSUPPORTED;
661 }
662
663error:
664 return EFI_EXIT(ret);
665}
666
667static efi_status_t EFIAPI efi_file_setinfo(struct efi_file_handle *file,
Heinrich Schuchardt9c9021e2018-04-04 15:42:09 +0200668 const efi_guid_t *info_type,
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200669 efi_uintn_t buffer_size,
670 void *buffer)
Rob Clark2a920802017-09-13 18:05:34 -0400671{
Heinrich Schuchardtfbe4c7d2019-04-06 18:17:39 +0200672 struct file_handle *fh = to_fh(file);
673 efi_status_t ret = EFI_UNSUPPORTED;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +0200674
Heinrich Schuchardtfbe4c7d2019-04-06 18:17:39 +0200675 EFI_ENTRY("%p, %pUl, %zu, %p", file, info_type, buffer_size, buffer);
676
677 if (!guidcmp(info_type, &efi_file_info_guid)) {
678 struct efi_file_info *info = (struct efi_file_info *)buffer;
679 char *filename = basename(fh);
680 char *new_file_name, *pos;
681 loff_t file_size;
682
683 if (buffer_size < sizeof(struct efi_file_info)) {
684 ret = EFI_BAD_BUFFER_SIZE;
685 goto out;
686 }
687 /* We cannot change the directory attribute */
688 if (!fh->isdir != !(info->attribute & EFI_FILE_DIRECTORY)) {
689 ret = EFI_ACCESS_DENIED;
690 goto out;
691 }
692 /* Check for renaming */
693 new_file_name = malloc(utf16_utf8_strlen(info->file_name));
694 if (!new_file_name) {
695 ret = EFI_OUT_OF_RESOURCES;
696 goto out;
697 }
698 pos = new_file_name;
699 utf16_utf8_strcpy(&pos, info->file_name);
700 if (strcmp(new_file_name, filename)) {
701 /* TODO: we do not support renaming */
702 EFI_PRINT("Renaming not supported\n");
703 free(new_file_name);
704 ret = EFI_ACCESS_DENIED;
705 goto out;
706 }
707 free(new_file_name);
708 /* Check for truncation */
709 if (set_blk_dev(fh)) {
710 ret = EFI_DEVICE_ERROR;
711 goto out;
712 }
713 if (fs_size(fh->path, &file_size)) {
714 ret = EFI_DEVICE_ERROR;
715 goto out;
716 }
717 if (file_size != info->file_size) {
718 /* TODO: we do not support truncation */
719 EFI_PRINT("Truncation not supported\n");
720 ret = EFI_ACCESS_DENIED;
721 goto out;
722 }
723 /*
724 * We do not care for the other attributes
725 * TODO: Support read only
726 */
727 ret = EFI_SUCCESS;
728 } else if (!guidcmp(info_type, &efi_file_system_info_guid)) {
729 if (buffer_size < sizeof(struct efi_file_system_info)) {
730 ret = EFI_BAD_BUFFER_SIZE;
731 goto out;
732 }
733 } else {
734 ret = EFI_UNSUPPORTED;
735 }
736out:
737 return EFI_EXIT(ret);
Rob Clark2a920802017-09-13 18:05:34 -0400738}
739
740static efi_status_t EFIAPI efi_file_flush(struct efi_file_handle *file)
741{
742 EFI_ENTRY("%p", file);
743 return EFI_EXIT(EFI_SUCCESS);
744}
745
746static const struct efi_file_handle efi_file_handle_protocol = {
Heinrich Schuchardt17394f92019-03-27 21:41:04 +0100747 /*
748 * TODO: We currently only support EFI file protocol revision 0x00010000
749 * while UEFI specs 2.4 - 2.7 prescribe revision 0x00020000.
750 */
Rob Clark2a920802017-09-13 18:05:34 -0400751 .rev = EFI_FILE_PROTOCOL_REVISION,
752 .open = efi_file_open,
753 .close = efi_file_close,
754 .delete = efi_file_delete,
755 .read = efi_file_read,
756 .write = efi_file_write,
757 .getpos = efi_file_getpos,
758 .setpos = efi_file_setpos,
759 .getinfo = efi_file_getinfo,
760 .setinfo = efi_file_setinfo,
761 .flush = efi_file_flush,
762};
763
Heinrich Schuchardt95288b12019-02-04 21:24:35 +0100764/**
765 * efi_file_from_path() - open file via device path
766 *
767 * @fp: device path
768 * @return: EFI_FILE_PROTOCOL for the file or NULL
769 */
Rob Clark2a920802017-09-13 18:05:34 -0400770struct efi_file_handle *efi_file_from_path(struct efi_device_path *fp)
771{
772 struct efi_simple_file_system_protocol *v;
773 struct efi_file_handle *f;
774 efi_status_t ret;
775
776 v = efi_fs_from_path(fp);
777 if (!v)
778 return NULL;
779
780 EFI_CALL(ret = v->open_volume(v, &f));
781 if (ret != EFI_SUCCESS)
782 return NULL;
783
Heinrich Schuchardt95288b12019-02-04 21:24:35 +0100784 /* Skip over device-path nodes before the file path. */
Rob Clark2a920802017-09-13 18:05:34 -0400785 while (fp && !EFI_DP_TYPE(fp, MEDIA_DEVICE, FILE_PATH))
786 fp = efi_dp_next(fp);
787
Heinrich Schuchardt95288b12019-02-04 21:24:35 +0100788 /*
789 * Step through the nodes of the directory path until the actual file
790 * node is reached which is the final node in the device path.
791 */
Rob Clark2a920802017-09-13 18:05:34 -0400792 while (fp) {
793 struct efi_device_path_file_path *fdp =
794 container_of(fp, struct efi_device_path_file_path, dp);
795 struct efi_file_handle *f2;
Heinrich Schuchardtf62be162019-07-14 20:14:46 +0200796 u16 *filename;
Rob Clark2a920802017-09-13 18:05:34 -0400797
798 if (!EFI_DP_TYPE(fp, MEDIA_DEVICE, FILE_PATH)) {
799 printf("bad file path!\n");
800 f->close(f);
801 return NULL;
802 }
803
Heinrich Schuchardtf62be162019-07-14 20:14:46 +0200804 filename = u16_strdup(fdp->str);
805 if (!filename)
806 return NULL;
807 EFI_CALL(ret = f->open(f, &f2, filename,
Rob Clark2a920802017-09-13 18:05:34 -0400808 EFI_FILE_MODE_READ, 0));
Heinrich Schuchardtf62be162019-07-14 20:14:46 +0200809 free(filename);
Rob Clark2a920802017-09-13 18:05:34 -0400810 if (ret != EFI_SUCCESS)
811 return NULL;
812
813 fp = efi_dp_next(fp);
814
815 EFI_CALL(f->close(f));
816 f = f2;
817 }
818
819 return f;
820}
821
822static efi_status_t EFIAPI
823efi_open_volume(struct efi_simple_file_system_protocol *this,
824 struct efi_file_handle **root)
825{
826 struct file_system *fs = to_fs(this);
827
828 EFI_ENTRY("%p, %p", this, root);
829
AKASHI Takahiro5bc84a12018-09-11 15:59:12 +0900830 *root = file_open(fs, NULL, NULL, 0, 0);
Rob Clark2a920802017-09-13 18:05:34 -0400831
832 return EFI_EXIT(EFI_SUCCESS);
833}
834
835struct efi_simple_file_system_protocol *
836efi_simple_file_system(struct blk_desc *desc, int part,
837 struct efi_device_path *dp)
838{
839 struct file_system *fs;
840
841 fs = calloc(1, sizeof(*fs));
842 fs->base.rev = EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION;
843 fs->base.open_volume = efi_open_volume;
844 fs->desc = desc;
845 fs->part = part;
846 fs->dp = dp;
847
848 return &fs->base;
849}