X-Git-Url: https://code.delx.au/refind/blobdiff_plain/e07b72471fa62945801b4a4e3bcac662a1b4888d..cc81100ca9d8e17fffcbffc85bd401fcbe445038:/filesystems/fsw_core.h diff --git a/filesystems/fsw_core.h b/filesystems/fsw_core.h index 654dbb3..6e76665 100644 --- a/filesystems/fsw_core.h +++ b/filesystems/fsw_core.h @@ -1,23 +1,9 @@ -/* $Id: fsw_core.h 33540 2010-10-28 09:27:05Z vboxsync $ */ -/** @file - * fsw_core.h - Core file system wrapper abstraction layer header. - */ - -/* - * Copyright (C) 2010 Oracle Corporation - * - * This file is part of VirtualBox Open Source Edition (OSE), as - * available from http://www.virtualbox.org. This file is free software; - * you can redistribute it and/or modify it under the terms of the GNU - * General Public License (GPL) as published by the Free Software - * Foundation, in version 2 as it comes in the "COPYING" file of the - * VirtualBox OSE distribution. VirtualBox OSE is distributed in the - * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. +/** + * \file fsw_core.h + * Core file system wrapper abstraction layer header. */ /*- - * This code is based on: - * * Copyright (c) 2006 Christoph Pfisterer * Portions Copyright (c) The Regents of the University of California. * Portions Copyright (c) UNIX System Laboratories, Inc. @@ -60,12 +46,7 @@ #endif /** Maximum size for a path, specifically symlink target paths. */ -#ifndef HOST_EFI_EDK2 #define FSW_PATH_MAX (4096) -#else -/* Too big allocations are handled with alloca() */ -#define FSW_PATH_MAX (2048) -#endif /** Helper macro for token concatenation. */ #define FSW_CONCAT3(a,b,c) a##b##c @@ -338,8 +319,6 @@ struct fsw_volume_stat { struct fsw_dnode_stat { fsw_u64 used_bytes; //!< Bytes actually used by the file on disk - void (*store_time_posix)(struct fsw_dnode_stat *sb, int which, fsw_u32 posix_time); //!< Callback for storing a Posix-style timestamp - void (*store_attr_posix)(struct fsw_dnode_stat *sb, fsw_u16 posix_mode); //!< Callback for storing a Posix-style file mode void *host_data; //!< Hook for a host-specific data structure }; @@ -360,10 +339,10 @@ struct fsw_host_table { int native_string_type; //!< String type used by the host environment - void (*change_blocksize)(struct fsw_volume *vol, + void EFIAPI (*change_blocksize)(struct fsw_volume *vol, fsw_u32 old_phys_blocksize, fsw_u32 old_log_blocksize, fsw_u32 new_phys_blocksize, fsw_u32 new_log_blocksize); - fsw_status_t (*read_block)(struct fsw_volume *vol, fsw_u64 phys_bno, void *buffer); + fsw_status_t EFIAPI (*read_block)(struct fsw_volume *vol, fsw_u64 phys_bno, void *buffer); }; /** @@ -441,6 +420,9 @@ fsw_status_t fsw_dnode_dir_read(struct fsw_shandle *shand, struct fsw_dnode **ch fsw_status_t fsw_dnode_readlink(struct fsw_dnode *dno, struct fsw_string *link_target); fsw_status_t fsw_dnode_readlink_data(struct DNODESTRUCTNAME *dno, struct fsw_string *link_target); fsw_status_t fsw_dnode_resolve(struct fsw_dnode *dno, struct fsw_dnode **target_dno_out); +void fsw_store_time_posix(struct fsw_dnode_stat *sb, int which, fsw_u32 posix_time); +void fsw_store_attr_posix(struct fsw_dnode_stat *sb, fsw_u16 posix_mode); +void fsw_store_attr_efi(struct fsw_dnode_stat *sb, fsw_u16 attr); /*@}*/ @@ -480,10 +462,10 @@ fsw_status_t fsw_strdup_coerce(struct fsw_string *dest, int type, struct fsw_str void fsw_strsplit(struct fsw_string *lookup_name, struct fsw_string *buffer, char separator); void fsw_strfree(struct fsw_string *s); -fsw_u16 fsw_to_lower(fsw_u16 ch); /*@}*/ + /** * \name Posix Mode Macros * These macros can be used globally to test fields and bits in