1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (c) 2017 Rob Clark
10 #include <efi_loader.h>
15 /* GUID for file system information */
16 const efi_guid_t efi_file_system_info_guid = EFI_FILE_SYSTEM_INFO_GUID;
19 struct efi_simple_file_system_protocol base;
20 struct efi_device_path *dp;
21 struct blk_desc *desc;
24 #define to_fs(x) container_of(x, struct file_system, base)
27 struct efi_file_handle base;
28 struct file_system *fs;
29 loff_t offset; /* current file position/cursor */
32 /* for reading a directory: */
33 struct fs_dir_stream *dirs;
34 struct fs_dirent *dent;
38 #define to_fh(x) container_of(x, struct file_handle, base)
40 static const struct efi_file_handle efi_file_handle_protocol;
42 static char *basename(struct file_handle *fh)
44 char *s = strrchr(fh->path, '/');
50 static int set_blk_dev(struct file_handle *fh)
52 return fs_set_blk_dev_with_part(fh->fs->desc, fh->fs->part);
56 * is_dir() - check if file handle points to directory
58 * We assume that set_blk_dev(fh) has been called already.
61 * Return: true if file handle points to a directory
63 static int is_dir(struct file_handle *fh)
65 struct fs_dir_stream *dirs;
67 dirs = fs_opendir(fh->path);
77 * Normalize a path which may include either back or fwd slashes,
78 * double slashes, . or .. entries in the path, etc.
80 static int sanitize_path(char *path)
84 /* backslash to slash: */
86 while ((p = strchr(p, '\\')))
89 /* handle double-slashes: */
91 while ((p = strstr(p, "//"))) {
93 memmove(p, src, strlen(src) + 1);
96 /* handle extra /.'s */
98 while ((p = strstr(p, "/."))) {
100 * You'd be tempted to do this *after* handling ".."s
101 * below to avoid having to check if "/." is start of
102 * a "/..", but that won't have the correct results..
103 * for example, "/foo/./../bar" would get resolved to
104 * "/foo/bar" if you did these two passes in the other
112 memmove(p, src, strlen(src) + 1);
115 /* handle extra /..'s: */
117 while ((p = strstr(p, "/.."))) {
122 /* find beginning of previous path entry: */
131 memmove(p, src, strlen(src) + 1);
138 * file_open() - open a file handle
141 * @parent: directory relative to which the file is to be opened
142 * @file_name: path of the file to be opened. '\', '.', or '..' may
143 * be used as modifiers. A leading backslash indicates an
145 * @mode: bit mask indicating the access mode (read, write,
147 * @attributes: attributes for newly created file
148 * Returns: handle to the opened file or NULL
150 static struct efi_file_handle *file_open(struct file_system *fs,
151 struct file_handle *parent, u16 *file_name, u64 mode,
154 struct file_handle *fh;
155 char f0[MAX_UTF8_PER_UTF16] = {0};
160 utf16_to_utf8((u8 *)f0, file_name, 1);
161 flen = u16_strlen(file_name);
164 /* we could have a parent, but also an absolute path: */
168 plen = strlen(parent->path) + 1;
171 /* +2 is for null and '/' */
172 fh = calloc(1, sizeof(*fh) + plen + (flen * MAX_UTF8_PER_UTF16) + 2);
174 fh->base = efi_file_handle_protocol;
181 strcpy(p, parent->path);
186 utf16_to_utf8((u8 *)p, file_name, flen);
188 if (sanitize_path(fh->path))
191 /* check if file exists: */
195 if ((mode & EFI_FILE_MODE_CREATE) &&
196 (attributes & EFI_FILE_DIRECTORY)) {
197 if (fs_mkdir(fh->path))
199 } else if (!((mode & EFI_FILE_MODE_CREATE) ||
200 fs_exists(fh->path)))
203 /* fs_exists() calls fs_close(), so open file system again */
207 /* figure out if file is a directory: */
208 fh->isdir = is_dir(fh);
211 strcpy(fh->path, "");
221 static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
222 struct efi_file_handle **new_handle,
223 u16 *file_name, u64 open_mode, u64 attributes)
225 struct file_handle *fh = to_fh(file);
228 EFI_ENTRY("%p, %p, \"%ls\", %llx, %llu", file, new_handle,
229 (wchar_t *)file_name, open_mode, attributes);
231 /* Check parameters */
232 if (!file || !new_handle || !file_name) {
233 ret = EFI_INVALID_PARAMETER;
236 if (open_mode != EFI_FILE_MODE_READ &&
237 open_mode != (EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE) &&
238 open_mode != (EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE |
239 EFI_FILE_MODE_CREATE)) {
240 ret = EFI_INVALID_PARAMETER;
244 * The UEFI spec requires that attributes are only set in create mode.
245 * The SCT does not care about this and sets EFI_FILE_DIRECTORY in
246 * read mode. EDK2 does not check that attributes are zero if not in
249 * So here we only check attributes in create mode and do not check
250 * that they are zero otherwise.
252 if ((open_mode & EFI_FILE_MODE_CREATE) &&
253 (attributes & (EFI_FILE_READ_ONLY | ~EFI_FILE_VALID_ATTR))) {
254 ret = EFI_INVALID_PARAMETER;
259 *new_handle = file_open(fh->fs, fh, file_name, open_mode, attributes);
265 return EFI_EXIT(ret);
268 static efi_status_t file_close(struct file_handle *fh)
270 fs_closedir(fh->dirs);
275 static efi_status_t EFIAPI efi_file_close(struct efi_file_handle *file)
277 struct file_handle *fh = to_fh(file);
278 EFI_ENTRY("%p", file);
279 return EFI_EXIT(file_close(fh));
282 static efi_status_t EFIAPI efi_file_delete(struct efi_file_handle *file)
284 struct file_handle *fh = to_fh(file);
285 efi_status_t ret = EFI_SUCCESS;
287 EFI_ENTRY("%p", file);
289 if (set_blk_dev(fh)) {
290 ret = EFI_DEVICE_ERROR;
294 if (fs_unlink(fh->path))
295 ret = EFI_DEVICE_ERROR;
299 return EFI_EXIT(ret);
302 static efi_status_t file_read(struct file_handle *fh, u64 *buffer_size,
307 if (fs_read(fh->path, map_to_sysmem(buffer), fh->offset,
308 *buffer_size, &actread))
309 return EFI_DEVICE_ERROR;
311 *buffer_size = actread;
312 fh->offset += actread;
317 static efi_status_t dir_read(struct file_handle *fh, u64 *buffer_size,
320 struct efi_file_info *info = buffer;
321 struct fs_dirent *dent;
322 unsigned int required_size;
325 assert(fh->offset == 0);
326 fh->dirs = fs_opendir(fh->path);
328 return EFI_DEVICE_ERROR;
332 * So this is a bit awkward. Since fs layer is stateful and we
333 * can't rewind an entry, in the EFI_BUFFER_TOO_SMALL case below
334 * we might have to return without consuming the dent.. so we
335 * have to stash it for next call.
341 dent = fs_readdir(fh->dirs);
346 /* no more files in directory: */
347 /* workaround shim.efi bug/quirk.. as find_boot_csv()
348 * loops through directory contents, it initially calls
349 * read w/ zero length buffer to find out how much mem
350 * to allocate for the EFI_FILE_INFO, then allocates,
351 * and then calls a 2nd time. If we return size of
352 * zero the first time, it happily passes that to
353 * AllocateZeroPool(), and when that returns NULL it
354 * thinks it is EFI_OUT_OF_RESOURCES. So on first
355 * call return a non-zero size:
357 if (*buffer_size == 0)
358 *buffer_size = sizeof(*info);
364 /* check buffer size: */
365 required_size = sizeof(*info) + 2 * (strlen(dent->name) + 1);
366 if (*buffer_size < required_size) {
367 *buffer_size = required_size;
369 return EFI_BUFFER_TOO_SMALL;
372 *buffer_size = required_size;
373 memset(info, 0, required_size);
375 info->size = required_size;
376 info->file_size = dent->size;
377 info->physical_size = dent->size;
379 if (dent->type == FS_DT_DIR)
380 info->attribute |= EFI_FILE_DIRECTORY;
382 ascii2unicode(info->file_name, dent->name);
389 static efi_status_t EFIAPI efi_file_read(struct efi_file_handle *file,
390 efi_uintn_t *buffer_size, void *buffer)
392 struct file_handle *fh = to_fh(file);
393 efi_status_t ret = EFI_SUCCESS;
396 EFI_ENTRY("%p, %p, %p", file, buffer_size, buffer);
398 if (!buffer_size || !buffer) {
399 ret = EFI_INVALID_PARAMETER;
403 if (set_blk_dev(fh)) {
404 ret = EFI_DEVICE_ERROR;
410 ret = dir_read(fh, &bs, buffer);
412 ret = file_read(fh, &bs, buffer);
416 *buffer_size = SIZE_MAX;
419 return EFI_EXIT(ret);
422 static efi_status_t EFIAPI efi_file_write(struct efi_file_handle *file,
423 efi_uintn_t *buffer_size,
426 struct file_handle *fh = to_fh(file);
427 efi_status_t ret = EFI_SUCCESS;
430 EFI_ENTRY("%p, %p, %p", file, buffer_size, buffer);
432 if (set_blk_dev(fh)) {
433 ret = EFI_DEVICE_ERROR;
437 if (fs_write(fh->path, map_to_sysmem(buffer), fh->offset, *buffer_size,
439 ret = EFI_DEVICE_ERROR;
443 *buffer_size = actwrite;
444 fh->offset += actwrite;
447 return EFI_EXIT(ret);
451 * efi_file_getpos() - get current position in file
453 * This function implements the GetPosition service of the EFI file protocol.
454 * See the UEFI spec for details.
457 * @pos: pointer to file position
458 * Return: status code
460 static efi_status_t EFIAPI efi_file_getpos(struct efi_file_handle *file,
463 efi_status_t ret = EFI_SUCCESS;
464 struct file_handle *fh = to_fh(file);
466 EFI_ENTRY("%p, %p", file, pos);
469 ret = EFI_UNSUPPORTED;
475 return EFI_EXIT(ret);
479 * efi_file_setpos() - set current position in file
481 * This function implements the SetPosition service of the EFI file protocol.
482 * See the UEFI spec for details.
485 * @pos: new file position
486 * Return: status code
488 static efi_status_t EFIAPI efi_file_setpos(struct efi_file_handle *file,
491 struct file_handle *fh = to_fh(file);
492 efi_status_t ret = EFI_SUCCESS;
494 EFI_ENTRY("%p, %llu", file, pos);
498 ret = EFI_UNSUPPORTED;
501 fs_closedir(fh->dirs);
508 if (set_blk_dev(fh)) {
509 ret = EFI_DEVICE_ERROR;
513 if (fs_size(fh->path, &file_size)) {
514 ret = EFI_DEVICE_ERROR;
524 return EFI_EXIT(ret);
527 static efi_status_t EFIAPI efi_file_getinfo(struct efi_file_handle *file,
528 const efi_guid_t *info_type,
529 efi_uintn_t *buffer_size,
532 struct file_handle *fh = to_fh(file);
533 efi_status_t ret = EFI_SUCCESS;
535 EFI_ENTRY("%p, %pUl, %p, %p", file, info_type, buffer_size, buffer);
537 if (!guidcmp(info_type, &efi_file_info_guid)) {
538 struct efi_file_info *info = buffer;
539 char *filename = basename(fh);
540 unsigned int required_size;
543 /* check buffer size: */
544 required_size = sizeof(*info) + 2 * (strlen(filename) + 1);
545 if (*buffer_size < required_size) {
546 *buffer_size = required_size;
547 ret = EFI_BUFFER_TOO_SMALL;
551 if (set_blk_dev(fh)) {
552 ret = EFI_DEVICE_ERROR;
556 if (fs_size(fh->path, &file_size)) {
557 ret = EFI_DEVICE_ERROR;
561 memset(info, 0, required_size);
563 info->size = required_size;
564 info->file_size = file_size;
565 info->physical_size = file_size;
568 info->attribute |= EFI_FILE_DIRECTORY;
570 ascii2unicode(info->file_name, filename);
571 } else if (!guidcmp(info_type, &efi_file_system_info_guid)) {
572 struct efi_file_system_info *info = buffer;
573 disk_partition_t part;
574 efi_uintn_t required_size;
577 if (fh->fs->part >= 1)
578 r = part_get_info(fh->fs->desc, fh->fs->part, &part);
580 r = part_get_info_whole_disk(fh->fs->desc, &part);
582 ret = EFI_DEVICE_ERROR;
585 required_size = sizeof(info) + 2 *
586 (strlen((const char *)part.name) + 1);
587 if (*buffer_size < required_size) {
588 *buffer_size = required_size;
589 ret = EFI_BUFFER_TOO_SMALL;
593 memset(info, 0, required_size);
595 info->size = required_size;
596 info->read_only = true;
597 info->volume_size = part.size * part.blksz;
598 info->free_space = 0;
599 info->block_size = part.blksz;
601 * TODO: The volume label is not available in U-Boot.
602 * Use the partition name as substitute.
604 ascii2unicode((u16 *)info->volume_label,
605 (const char *)part.name);
607 ret = EFI_UNSUPPORTED;
611 return EFI_EXIT(ret);
614 static efi_status_t EFIAPI efi_file_setinfo(struct efi_file_handle *file,
615 const efi_guid_t *info_type,
616 efi_uintn_t buffer_size,
619 EFI_ENTRY("%p, %p, %zu, %p", file, info_type, buffer_size, buffer);
621 return EFI_EXIT(EFI_UNSUPPORTED);
624 static efi_status_t EFIAPI efi_file_flush(struct efi_file_handle *file)
626 EFI_ENTRY("%p", file);
627 return EFI_EXIT(EFI_SUCCESS);
630 static const struct efi_file_handle efi_file_handle_protocol = {
631 .rev = EFI_FILE_PROTOCOL_REVISION,
632 .open = efi_file_open,
633 .close = efi_file_close,
634 .delete = efi_file_delete,
635 .read = efi_file_read,
636 .write = efi_file_write,
637 .getpos = efi_file_getpos,
638 .setpos = efi_file_setpos,
639 .getinfo = efi_file_getinfo,
640 .setinfo = efi_file_setinfo,
641 .flush = efi_file_flush,
644 struct efi_file_handle *efi_file_from_path(struct efi_device_path *fp)
646 struct efi_simple_file_system_protocol *v;
647 struct efi_file_handle *f;
650 v = efi_fs_from_path(fp);
654 EFI_CALL(ret = v->open_volume(v, &f));
655 if (ret != EFI_SUCCESS)
658 /* skip over device-path nodes before the file path: */
659 while (fp && !EFI_DP_TYPE(fp, MEDIA_DEVICE, FILE_PATH))
660 fp = efi_dp_next(fp);
663 struct efi_device_path_file_path *fdp =
664 container_of(fp, struct efi_device_path_file_path, dp);
665 struct efi_file_handle *f2;
667 if (!EFI_DP_TYPE(fp, MEDIA_DEVICE, FILE_PATH)) {
668 printf("bad file path!\n");
673 EFI_CALL(ret = f->open(f, &f2, fdp->str,
674 EFI_FILE_MODE_READ, 0));
675 if (ret != EFI_SUCCESS)
678 fp = efi_dp_next(fp);
680 EFI_CALL(f->close(f));
687 static efi_status_t EFIAPI
688 efi_open_volume(struct efi_simple_file_system_protocol *this,
689 struct efi_file_handle **root)
691 struct file_system *fs = to_fs(this);
693 EFI_ENTRY("%p, %p", this, root);
695 *root = file_open(fs, NULL, NULL, 0, 0);
697 return EFI_EXIT(EFI_SUCCESS);
700 struct efi_simple_file_system_protocol *
701 efi_simple_file_system(struct blk_desc *desc, int part,
702 struct efi_device_path *dp)
704 struct file_system *fs;
706 fs = calloc(1, sizeof(*fs));
707 fs->base.rev = EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION;
708 fs->base.open_volume = efi_open_volume;