mirror of https://github.com/ventoy/Ventoy.git
Add support for EasyOS 4.0
This commit is contained in:
parent
5e607b7f9f
commit
45122b59c0
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,285 @@
|
||||||
|
/*
|
||||||
|
* LZ4 - Fast LZ compression algorithm
|
||||||
|
* Header File
|
||||||
|
* Copyright (C) 2011-2013, Yann Collet.
|
||||||
|
* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above
|
||||||
|
* copyright notice, this list of conditions and the following disclaimer
|
||||||
|
* in the documentation and/or other materials provided with the
|
||||||
|
* distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* You can contact the author at :
|
||||||
|
* - LZ4 homepage : http://fastcompression.blogspot.com/p/lz4.html
|
||||||
|
* - LZ4 source repository : http://code.google.com/p/lz4/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <grub/err.h>
|
||||||
|
#include <grub/mm.h>
|
||||||
|
#include <grub/misc.h>
|
||||||
|
#include <grub/types.h>
|
||||||
|
|
||||||
|
int LZ4_uncompress_unknownOutputSize(const char *source, char *dest,
|
||||||
|
int isize, int maxOutputSize);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* CPU Feature Detection
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* 32 or 64 bits ? */
|
||||||
|
#if (GRUB_CPU_SIZEOF_VOID_P == 8)
|
||||||
|
#define LZ4_ARCH64 1
|
||||||
|
#else
|
||||||
|
#define LZ4_ARCH64 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Compiler Options
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
|
||||||
|
|
||||||
|
#if (GCC_VERSION >= 302) || (defined (__INTEL_COMPILER) && __INTEL_COMPILER >= 800) || defined(__clang__)
|
||||||
|
#define expect(expr, value) (__builtin_expect((expr), (value)))
|
||||||
|
#else
|
||||||
|
#define expect(expr, value) (expr)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define likely(expr) expect((expr) != 0, 1)
|
||||||
|
#define unlikely(expr) expect((expr) != 0, 0)
|
||||||
|
|
||||||
|
/* Basic types */
|
||||||
|
#define BYTE grub_uint8_t
|
||||||
|
#define U16 grub_uint16_t
|
||||||
|
#define U32 grub_uint32_t
|
||||||
|
#define S32 grub_int32_t
|
||||||
|
#define U64 grub_uint64_t
|
||||||
|
|
||||||
|
typedef struct _U16_S {
|
||||||
|
U16 v;
|
||||||
|
} GRUB_PACKED U16_S;
|
||||||
|
typedef struct _U32_S {
|
||||||
|
U32 v;
|
||||||
|
} GRUB_PACKED U32_S;
|
||||||
|
typedef struct _U64_S {
|
||||||
|
U64 v;
|
||||||
|
} GRUB_PACKED U64_S;
|
||||||
|
|
||||||
|
#define A64(x) (((U64_S *)(x))->v)
|
||||||
|
#define A32(x) (((U32_S *)(x))->v)
|
||||||
|
#define A16(x) (((U16_S *)(x))->v)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Constants
|
||||||
|
*/
|
||||||
|
#define MINMATCH 4
|
||||||
|
|
||||||
|
#define COPYLENGTH 8
|
||||||
|
#define LASTLITERALS 5
|
||||||
|
|
||||||
|
#define ML_BITS 4
|
||||||
|
#define ML_MASK ((1U<<ML_BITS)-1)
|
||||||
|
#define RUN_BITS (8-ML_BITS)
|
||||||
|
#define RUN_MASK ((1U<<RUN_BITS)-1)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Architecture-specific macros
|
||||||
|
*/
|
||||||
|
#if LZ4_ARCH64
|
||||||
|
#define STEPSIZE 8
|
||||||
|
#define UARCH U64
|
||||||
|
#define AARCH A64
|
||||||
|
#define LZ4_COPYSTEP(s, d) A64(d) = A64(s); d += 8; s += 8;
|
||||||
|
#define LZ4_COPYPACKET(s, d) LZ4_COPYSTEP(s, d)
|
||||||
|
#define LZ4_SECURECOPY(s, d, e) if (d < e) LZ4_WILDCOPY(s, d, e)
|
||||||
|
#define HTYPE U32
|
||||||
|
#define INITBASE(base) const BYTE* const base = ip
|
||||||
|
#else
|
||||||
|
#define STEPSIZE 4
|
||||||
|
#define UARCH U32
|
||||||
|
#define AARCH A32
|
||||||
|
#define LZ4_COPYSTEP(s, d) A32(d) = A32(s); d += 4; s += 4;
|
||||||
|
#define LZ4_COPYPACKET(s, d) LZ4_COPYSTEP(s, d); LZ4_COPYSTEP(s, d);
|
||||||
|
#define LZ4_SECURECOPY LZ4_WILDCOPY
|
||||||
|
#define HTYPE const BYTE*
|
||||||
|
#define INITBASE(base) const int base = 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define LZ4_READ_LITTLEENDIAN_16(d, s, p) { d = (s) - grub_le_to_cpu16 (A16 (p)); }
|
||||||
|
#define LZ4_WRITE_LITTLEENDIAN_16(p, v) { A16(p) = grub_cpu_to_le16 (v); p += 2; }
|
||||||
|
|
||||||
|
/* Macros */
|
||||||
|
#define LZ4_WILDCOPY(s, d, e) do { LZ4_COPYPACKET(s, d) } while (d < e);
|
||||||
|
|
||||||
|
/* Decompression functions */
|
||||||
|
grub_err_t
|
||||||
|
lz4_decompress(void *s_start, void *d_start, grub_size_t s_len, grub_size_t d_len);
|
||||||
|
|
||||||
|
grub_err_t
|
||||||
|
lz4_decompress(void *s_start, void *d_start, grub_size_t s_len, grub_size_t d_len)
|
||||||
|
{
|
||||||
|
const BYTE *src = s_start;
|
||||||
|
U32 bufsiz = (src[0] << 24) | (src[1] << 16) | (src[2] << 8) |
|
||||||
|
src[3];
|
||||||
|
|
||||||
|
/* invalid compressed buffer size encoded at start */
|
||||||
|
if (bufsiz + 4 > s_len)
|
||||||
|
return grub_error(GRUB_ERR_BAD_FS,"lz4 decompression failed.");
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Returns 0 on success (decompression function returned non-negative)
|
||||||
|
* and appropriate error on failure (decompression function returned negative).
|
||||||
|
*/
|
||||||
|
return (LZ4_uncompress_unknownOutputSize((char*)s_start + 4, d_start, bufsiz,
|
||||||
|
d_len) < 0)?grub_error(GRUB_ERR_BAD_FS,"lz4 decompression failed."):0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
LZ4_uncompress_unknownOutputSize(const char *source,
|
||||||
|
char *dest, int isize, int maxOutputSize)
|
||||||
|
{
|
||||||
|
/* Local Variables */
|
||||||
|
const BYTE * ip = (const BYTE *) source;
|
||||||
|
const BYTE *const iend = ip + isize;
|
||||||
|
const BYTE * ref;
|
||||||
|
|
||||||
|
BYTE * op = (BYTE *) dest;
|
||||||
|
BYTE *const oend = op + maxOutputSize;
|
||||||
|
BYTE *cpy;
|
||||||
|
|
||||||
|
grub_size_t dec[] = { 0, 3, 2, 3, 0, 0, 0, 0 };
|
||||||
|
|
||||||
|
/* Main Loop */
|
||||||
|
while (ip < iend) {
|
||||||
|
BYTE token;
|
||||||
|
int length;
|
||||||
|
|
||||||
|
/* get runlength */
|
||||||
|
token = *ip++;
|
||||||
|
if ((length = (token >> ML_BITS)) == RUN_MASK) {
|
||||||
|
int s = 255;
|
||||||
|
while ((ip < iend) && (s == 255)) {
|
||||||
|
s = *ip++;
|
||||||
|
length += s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* copy literals */
|
||||||
|
if ((grub_addr_t) length > ~(grub_addr_t)op)
|
||||||
|
goto _output_error;
|
||||||
|
cpy = op + length;
|
||||||
|
if ((cpy > oend - COPYLENGTH) ||
|
||||||
|
(ip + length > iend - COPYLENGTH)) {
|
||||||
|
if (cpy > oend)
|
||||||
|
/*
|
||||||
|
* Error: request to write beyond destination
|
||||||
|
* buffer.
|
||||||
|
*/
|
||||||
|
goto _output_error;
|
||||||
|
if (ip + length > iend)
|
||||||
|
/*
|
||||||
|
* Error : request to read beyond source
|
||||||
|
* buffer.
|
||||||
|
*/
|
||||||
|
goto _output_error;
|
||||||
|
grub_memcpy(op, ip, length);
|
||||||
|
op += length;
|
||||||
|
ip += length;
|
||||||
|
if (ip < iend)
|
||||||
|
/* Error : LZ4 format violation */
|
||||||
|
goto _output_error;
|
||||||
|
/* Necessarily EOF, due to parsing restrictions. */
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
LZ4_WILDCOPY(ip, op, cpy);
|
||||||
|
ip -= (op - cpy);
|
||||||
|
op = cpy;
|
||||||
|
|
||||||
|
/* get offset */
|
||||||
|
LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip);
|
||||||
|
ip += 2;
|
||||||
|
if (ref < (BYTE * const) dest)
|
||||||
|
/*
|
||||||
|
* Error: offset creates reference outside of
|
||||||
|
* destination buffer.
|
||||||
|
*/
|
||||||
|
goto _output_error;
|
||||||
|
|
||||||
|
/* get matchlength */
|
||||||
|
if ((length = (token & ML_MASK)) == ML_MASK) {
|
||||||
|
while (ip < iend) {
|
||||||
|
int s = *ip++;
|
||||||
|
length += s;
|
||||||
|
if (s == 255)
|
||||||
|
continue;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* copy repeated sequence */
|
||||||
|
if unlikely(op - ref < STEPSIZE) {
|
||||||
|
#if LZ4_ARCH64
|
||||||
|
grub_size_t dec2table[] = { 0, 0, 0, -1, 0, 1, 2, 3 };
|
||||||
|
grub_size_t dec2 = dec2table[op - ref];
|
||||||
|
#else
|
||||||
|
const int dec2 = 0;
|
||||||
|
#endif
|
||||||
|
*op++ = *ref++;
|
||||||
|
*op++ = *ref++;
|
||||||
|
*op++ = *ref++;
|
||||||
|
*op++ = *ref++;
|
||||||
|
ref -= dec[op - ref];
|
||||||
|
A32(op) = A32(ref);
|
||||||
|
op += STEPSIZE - 4;
|
||||||
|
ref -= dec2;
|
||||||
|
} else {
|
||||||
|
LZ4_COPYSTEP(ref, op);
|
||||||
|
}
|
||||||
|
cpy = op + length - (STEPSIZE - 4);
|
||||||
|
if (cpy > oend - COPYLENGTH) {
|
||||||
|
if (cpy > oend)
|
||||||
|
/*
|
||||||
|
* Error: request to write outside of
|
||||||
|
* destination buffer.
|
||||||
|
*/
|
||||||
|
goto _output_error;
|
||||||
|
LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH));
|
||||||
|
while (op < cpy)
|
||||||
|
*op++ = *ref++;
|
||||||
|
op = cpy;
|
||||||
|
if (op == oend)
|
||||||
|
/*
|
||||||
|
* Check EOF (should never happen, since last
|
||||||
|
* 5 bytes are supposed to be literals).
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
LZ4_SECURECOPY(ref, op, cpy);
|
||||||
|
op = cpy; /* correction */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* end of decoding */
|
||||||
|
return (int)(((char *)op) - dest);
|
||||||
|
|
||||||
|
/* write overflow error detected */
|
||||||
|
_output_error:
|
||||||
|
return (int)(-(((char *)ip) - source));
|
||||||
|
}
|
|
@ -12,14 +12,14 @@ make install
|
||||||
PATH=$VT_DIR/GRUB2/INSTALL/bin/:$VT_DIR/GRUB2/INSTALL/sbin/:$PATH
|
PATH=$VT_DIR/GRUB2/INSTALL/bin/:$VT_DIR/GRUB2/INSTALL/sbin/:$PATH
|
||||||
|
|
||||||
net_modules_legacy="net tftp http"
|
net_modules_legacy="net tftp http"
|
||||||
all_modules_legacy="file setkey date drivemap blocklist regexp newc vga_text ntldr search at_keyboard usb_keyboard gcry_md5 hashsum gzio xzio lzopio lspci pci ext2 xfs ventoy chain read halt iso9660 linux16 test true sleep reboot echo videotest videoinfo videotest_checksum video_colors video_cirrus video_bochs vga vbe video_fb font video gettext extcmd terminal linux minicmd help configfile tr trig boot biosdisk disk ls tar squash4 password_pbkdf2 all_video png jpeg part_gpt part_msdos fat exfat ntfs loopback gzio normal udf gfxmenu gfxterm gfxterm_background gfxterm_menu smbios"
|
all_modules_legacy="file setkey date drivemap blocklist regexp newc vga_text ntldr search at_keyboard usb_keyboard gcry_md5 hashsum gzio xzio lzopio lspci pci ext2 xfs ventoy chain read halt iso9660 linux16 test true sleep reboot echo videotest videoinfo videotest_checksum video_colors video_cirrus video_bochs vga vbe video_fb font video gettext extcmd terminal linux minicmd help configfile tr trig boot biosdisk disk ls tar squash4 password_pbkdf2 all_video png jpeg part_gpt part_msdos fat exfat ntfs loopback gzio normal udf gfxmenu gfxterm gfxterm_background gfxterm_menu smbios zfs"
|
||||||
|
|
||||||
net_modules_uefi="efinet net tftp http"
|
net_modules_uefi="efinet net tftp http"
|
||||||
all_modules_uefi="file setkey blocklist ventoy test true regexp newc search at_keyboard usb_keyboard gcry_md5 hashsum gzio xzio lzopio ext2 xfs read halt sleep serial terminfo png password_pbkdf2 gcry_sha512 pbkdf2 part_gpt part_msdos ls tar squash4 loopback part_apple minicmd diskfilter linux relocator jpeg iso9660 udf hfsplus halt acpi mmap gfxmenu video_colors trig bitmap_scale gfxterm bitmap font fat exfat ntfs fshelp efifwsetup reboot echo configfile normal terminal gettext chain priority_queue bufio datetime cat extcmd crypto gzio boot all_video efi_gop efi_uga video_bochs video_cirrus video video_fb gfxterm_background gfxterm_menu mouse fwload smbios"
|
all_modules_uefi="file setkey blocklist ventoy test true regexp newc search at_keyboard usb_keyboard gcry_md5 hashsum gzio xzio lzopio ext2 xfs read halt sleep serial terminfo png password_pbkdf2 gcry_sha512 pbkdf2 part_gpt part_msdos ls tar squash4 loopback part_apple minicmd diskfilter linux relocator jpeg iso9660 udf hfsplus halt acpi mmap gfxmenu video_colors trig bitmap_scale gfxterm bitmap font fat exfat ntfs fshelp efifwsetup reboot echo configfile normal terminal gettext chain priority_queue bufio datetime cat extcmd crypto gzio boot all_video efi_gop efi_uga video_bochs video_cirrus video video_fb gfxterm_background gfxterm_menu mouse fwload smbios zfs"
|
||||||
|
|
||||||
all_modules_arm64_uefi="file setkey blocklist ventoy test true regexp newc search gcry_md5 hashsum gzio xzio lzopio ext2 xfs read halt sleep serial terminfo png password_pbkdf2 gcry_sha512 pbkdf2 part_gpt part_msdos ls tar squash4 loopback part_apple minicmd diskfilter linux jpeg iso9660 udf hfsplus halt acpi mmap gfxmenu video_colors trig bitmap_scale gfxterm bitmap font fat exfat ntfs fshelp efifwsetup reboot echo configfile normal terminal gettext chain priority_queue bufio datetime cat extcmd crypto gzio boot all_video efi_gop video video_fb gfxterm_background gfxterm_menu"
|
all_modules_arm64_uefi="file setkey blocklist ventoy test true regexp newc search gcry_md5 hashsum gzio xzio lzopio ext2 xfs read halt sleep serial terminfo png password_pbkdf2 gcry_sha512 pbkdf2 part_gpt part_msdos ls tar squash4 loopback part_apple minicmd diskfilter linux jpeg iso9660 udf hfsplus halt acpi mmap gfxmenu video_colors trig bitmap_scale gfxterm bitmap font fat exfat ntfs fshelp efifwsetup reboot echo configfile normal terminal gettext chain priority_queue bufio datetime cat extcmd crypto gzio boot all_video efi_gop video video_fb gfxterm_background gfxterm_menu zfs"
|
||||||
|
|
||||||
all_modules_mips64el_uefi="file setkey blocklist ventoy test true regexp newc search gcry_md5 hashsum gzio xzio lzopio ext2 xfs read halt sleep serial terminfo png password_pbkdf2 gcry_sha512 pbkdf2 part_gpt part_msdos ls tar squash4 loopback part_apple minicmd diskfilter linux jpeg iso9660 udf hfsplus halt acpi mmap gfxmenu video_colors trig bitmap_scale gfxterm bitmap font fat exfat ntfs fshelp efifwsetup reboot echo configfile normal terminal gettext chain priority_queue bufio datetime cat extcmd crypto gzio boot all_video efi_gop video video_fb gfxterm_background gfxterm_menu"
|
all_modules_mips64el_uefi="file setkey blocklist ventoy test true regexp newc search gcry_md5 hashsum gzio xzio lzopio ext2 xfs read halt sleep serial terminfo png password_pbkdf2 gcry_sha512 pbkdf2 part_gpt part_msdos ls tar squash4 loopback part_apple minicmd diskfilter linux jpeg iso9660 udf hfsplus halt acpi mmap gfxmenu video_colors trig bitmap_scale gfxterm bitmap font fat exfat ntfs fshelp efifwsetup reboot echo configfile normal terminal gettext chain priority_queue bufio datetime cat extcmd crypto gzio boot all_video efi_gop video video_fb gfxterm_background gfxterm_menu zfs"
|
||||||
|
|
||||||
|
|
||||||
if [ "$1" = "uefi" ]; then
|
if [ "$1" = "uefi" ]; then
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -201,7 +201,7 @@ cbmemc: cbtable normal terminfo
|
||||||
hfsplus: fshelp
|
hfsplus: fshelp
|
||||||
gcry_cast5: crypto
|
gcry_cast5: crypto
|
||||||
extcmd:
|
extcmd:
|
||||||
squash4: fshelp lzopio xzio gzio
|
squash4: fshelp lzopio zfs xzio gzio
|
||||||
part_plan:
|
part_plan:
|
||||||
minix_be:
|
minix_be:
|
||||||
gcry_whirlpool: crypto
|
gcry_whirlpool: crypto
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -208,7 +208,7 @@ cmosdump:
|
||||||
hfsplus: fshelp
|
hfsplus: fshelp
|
||||||
gcry_cast5: crypto
|
gcry_cast5: crypto
|
||||||
extcmd:
|
extcmd:
|
||||||
squash4: fshelp lzopio xzio gzio
|
squash4: fshelp lzopio zfs xzio gzio
|
||||||
part_plan:
|
part_plan:
|
||||||
minix_be:
|
minix_be:
|
||||||
gcry_whirlpool: crypto
|
gcry_whirlpool: crypto
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -202,7 +202,7 @@ cbmemc: cbtable normal terminfo
|
||||||
hfsplus: fshelp
|
hfsplus: fshelp
|
||||||
gcry_cast5: crypto
|
gcry_cast5: crypto
|
||||||
extcmd:
|
extcmd:
|
||||||
squash4: fshelp lzopio xzio gzio
|
squash4: fshelp lzopio zfs xzio gzio
|
||||||
part_plan:
|
part_plan:
|
||||||
minix_be:
|
minix_be:
|
||||||
gcry_whirlpool: crypto
|
gcry_whirlpool: crypto
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue