mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-12-22 03:26:17 +00:00
* added the Uzbek language * Potential fix for code scanning alert no. 1: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 2: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 3: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 13: Time-of-check time-of-use filesystem race condition Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 12: Time-of-check time-of-use filesystem race condition Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 4: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 11: Time-of-check time-of-use filesystem race condition Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 5: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 7: Unsafe jQuery plugin Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 8: Unsafe jQuery plugin Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 14: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 10: Time-of-check time-of-use filesystem race condition Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 15: Time-of-check time-of-use filesystem race condition Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 9: Call to `memset` may be deleted Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Update bootstrap.js * Update ci.yml * Potential fix for code scanning alert no. 17: Workflow does not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Potential fix for code scanning alert no. 16: Workflow does not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Update ci.yml * Update ci.yml --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
177 lines
4.3 KiB
C
177 lines
4.3 KiB
C
/*
|
|
* Copyright (c) 2010, 2013
|
|
* Phillip Lougher <phillip@squashfs.org.uk>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2,
|
|
* or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* lzma_xz_wrapper.c
|
|
*
|
|
* Support for LZMA1 compression using XZ Utils liblzma http://tukaani.org/xz/
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <lzma.h>
|
|
|
|
#if defined(__STDC_LIB_EXT1__)
|
|
/* Use memset_s if available */
|
|
#define secure_memset(dest, value, len) memset_s((dest), (len), (value), (len))
|
|
#else
|
|
/* Fallback secure_memset implementation */
|
|
static void secure_memset(void *v, int c, size_t n) {
|
|
volatile unsigned char *p = (volatile unsigned char *)v;
|
|
while (n--) {
|
|
*p++ = (unsigned char)c;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#include "squashfs_fs.h"
|
|
#include "compressor.h"
|
|
|
|
#define LZMA_PROPS_SIZE 5
|
|
#define LZMA_UNCOMP_SIZE 8
|
|
#define LZMA_HEADER_SIZE (LZMA_PROPS_SIZE + LZMA_UNCOMP_SIZE)
|
|
|
|
#define LZMA_OPTIONS 5
|
|
#define MEMLIMIT (32 * 1024 * 1024)
|
|
|
|
static int lzma_compress(void *dummy, void *dest, void *src, int size,
|
|
int block_size, int *error)
|
|
{
|
|
unsigned char *d = (unsigned char *) dest;
|
|
lzma_options_lzma opt;
|
|
lzma_stream strm = LZMA_STREAM_INIT;
|
|
int res;
|
|
|
|
lzma_lzma_preset(&opt, LZMA_OPTIONS);
|
|
opt.dict_size = block_size;
|
|
|
|
res = lzma_alone_encoder(&strm, &opt);
|
|
if(res != LZMA_OK) {
|
|
lzma_end(&strm);
|
|
goto failed;
|
|
}
|
|
|
|
strm.next_out = dest;
|
|
strm.avail_out = block_size;
|
|
strm.next_in = src;
|
|
strm.avail_in = size;
|
|
|
|
res = lzma_code(&strm, LZMA_FINISH);
|
|
lzma_end(&strm);
|
|
|
|
if(res == LZMA_STREAM_END) {
|
|
/*
|
|
* Fill in the 8 byte little endian uncompressed size field in
|
|
* the LZMA header. 8 bytes is excessively large for squashfs
|
|
* but this is the standard LZMA header and which is expected by
|
|
* the kernel code
|
|
*/
|
|
|
|
d[LZMA_PROPS_SIZE] = size & 255;
|
|
d[LZMA_PROPS_SIZE + 1] = (size >> 8) & 255;
|
|
d[LZMA_PROPS_SIZE + 2] = (size >> 16) & 255;
|
|
d[LZMA_PROPS_SIZE + 3] = (size >> 24) & 255;
|
|
d[LZMA_PROPS_SIZE + 4] = 0;
|
|
d[LZMA_PROPS_SIZE + 5] = 0;
|
|
d[LZMA_PROPS_SIZE + 6] = 0;
|
|
d[LZMA_PROPS_SIZE + 7] = 0;
|
|
|
|
return (int) strm.total_out;
|
|
}
|
|
|
|
if(res == LZMA_OK)
|
|
/*
|
|
* Output buffer overflow. Return out of buffer space
|
|
*/
|
|
return 0;
|
|
|
|
failed:
|
|
/*
|
|
* All other errors return failure, with the compressor
|
|
* specific error code in *error
|
|
*/
|
|
*error = res;
|
|
return -1;
|
|
}
|
|
|
|
|
|
static int lzma_uncompress(void *dest, void *src, int size, int outsize,
|
|
int *error)
|
|
{
|
|
lzma_stream strm = LZMA_STREAM_INIT;
|
|
int uncompressed_size = 0, res;
|
|
unsigned char lzma_header[LZMA_HEADER_SIZE];
|
|
|
|
res = lzma_alone_decoder(&strm, MEMLIMIT);
|
|
if(res != LZMA_OK) {
|
|
lzma_end(&strm);
|
|
goto failed;
|
|
}
|
|
|
|
memcpy(lzma_header, src, LZMA_HEADER_SIZE);
|
|
uncompressed_size = lzma_header[LZMA_PROPS_SIZE] |
|
|
(lzma_header[LZMA_PROPS_SIZE + 1] << 8) |
|
|
(lzma_header[LZMA_PROPS_SIZE + 2] << 16) |
|
|
(lzma_header[LZMA_PROPS_SIZE + 3] << 24);
|
|
|
|
if(uncompressed_size > outsize) {
|
|
res = 0;
|
|
goto failed;
|
|
}
|
|
|
|
secure_memset(lzma_header + LZMA_PROPS_SIZE, 255, LZMA_UNCOMP_SIZE);
|
|
|
|
strm.next_out = dest;
|
|
strm.avail_out = outsize;
|
|
strm.next_in = lzma_header;
|
|
strm.avail_in = LZMA_HEADER_SIZE;
|
|
|
|
res = lzma_code(&strm, LZMA_RUN);
|
|
|
|
if(res != LZMA_OK || strm.avail_in != 0) {
|
|
lzma_end(&strm);
|
|
goto failed;
|
|
}
|
|
|
|
strm.next_in = src + LZMA_HEADER_SIZE;
|
|
strm.avail_in = size - LZMA_HEADER_SIZE;
|
|
|
|
res = lzma_code(&strm, LZMA_FINISH);
|
|
lzma_end(&strm);
|
|
|
|
if(res == LZMA_STREAM_END || (res == LZMA_OK &&
|
|
strm.total_out >= uncompressed_size && strm.avail_in == 0))
|
|
return uncompressed_size;
|
|
|
|
failed:
|
|
*error = res;
|
|
return -1;
|
|
}
|
|
|
|
|
|
struct compressor lzma_comp_ops = {
|
|
.init = NULL,
|
|
.compress = lzma_compress,
|
|
.uncompress = lzma_uncompress,
|
|
.options = NULL,
|
|
.usage = NULL,
|
|
.id = LZMA_COMPRESSION,
|
|
.name = "lzma",
|
|
.supported = 1
|
|
};
|
|
|