From e1d054fe721f66b08b5842dc5233c0c572eae646 Mon Sep 17 00:00:00 2001 From: dimok789 Date: Wed, 18 Nov 2015 22:54:12 +0100 Subject: [PATCH] - added automatic RPX fimport section parsing (big thanks to n1ghty for providing the code for it) - added automatic pre-loading of RPLs to memory that are required during RPX linking (fimport section) - fix in default XML struct to use the RPX name from SD card - added print of XML values used for game on launch - added print of RPX/RPLs on launch and the memory they are pre-loaded (if at all than size is > 0) --- installer/kernel_patches.S | 2 - src/common/common.h | 2 +- src/common/fs_defs.h | 9 + src/fs/fs.c | 88 +- src/fs/fs.h | 17 +- src/fs/fs_functions.h | 25 + src/kernel/kernel_functions.c | 5 +- src/link.ld | 1 + src/menu/menu.c | 187 +++- src/menu/menu.h | 17 - src/utils/rpx_sections.c | 229 +++++ src/utils/rpx_sections.h | 9 + src/utils/strings.c | 30 + src/utils/strings.h | 1 + src/utils/xml.c | 28 +- src/utils/xml.h | 2 +- src/utils/zconf.h | 428 +++++++++ src/utils/zlib.h | 1613 +++++++++++++++++++++++++++++++++ www/loadiine.elf | Bin 23872 -> 26892 bytes www/loadiine_dbg.elf | Bin 29900 -> 33110 bytes 20 files changed, 2558 insertions(+), 135 deletions(-) create mode 100644 src/fs/fs_functions.h create mode 100644 src/utils/rpx_sections.c create mode 100644 src/utils/rpx_sections.h create mode 100644 src/utils/zconf.h create mode 100644 src/utils/zlib.h diff --git a/installer/kernel_patches.S b/installer/kernel_patches.S index 950c411..35007e6 100644 --- a/installer/kernel_patches.S +++ b/installer/kernel_patches.S @@ -154,8 +154,6 @@ KernelPatches: lis r4, 0x48AE ori r4, r4, 0x105A stw r4, 0(r3) - eieio - isync # memory barrier eieio diff --git a/src/common/common.h b/src/common/common.h index 4bb3016..2ef301a 100644 --- a/src/common/common.h +++ b/src/common/common.h @@ -1,7 +1,7 @@ #ifndef COMMON_H #define COMMON_H -#define LOADIINE_VERSION "v3.0" +#define LOADIINE_VERSION "v4.0" #define IS_USING_MII_MAKER 1 /* Loadiine common paths */ diff --git a/src/common/fs_defs.h b/src/common/fs_defs.h index 95b3180..74632aa 100644 --- a/src/common/fs_defs.h +++ b/src/common/fs_defs.h @@ -75,5 +75,14 @@ typedef struct char name[FS_MAX_ENTNAME_SIZE]; } FSDirEntry; +/* Async callback definition */ +typedef void (*FSAsyncCallback)(void *pClient, void *pCmd, int result, void *context); +typedef struct +{ + FSAsyncCallback userCallback; + void *userContext; + void *ioMsgQueue; +} FSAsyncParams; + #endif /* FS_DEFS_H */ diff --git a/src/fs/fs.c b/src/fs/fs.c index edda3df..cad2a17 100644 --- a/src/fs/fs.c +++ b/src/fs/fs.c @@ -61,20 +61,10 @@ static int is_gamefile(const char *path) { } /* Note : no need to check everything, it is faster this way */ - if (new_path[0] != '/') return 0; - if (new_path[1] != 'v' && new_path[1] != 'V') return 0; -// if (new_path[2] != 'o') return 0; -// if (new_path[3] != 'l') return 0; -// if (new_path[4] != '/') return 0; - if (new_path[5] != 'c' && new_path[5] != 'C') return 0; -// if (new_path[6] != 'o') return 0; -// if (new_path[7] != 'n') return 0; -// if (new_path[8] != 't') return 0; -// if (new_path[9] != 'e') return 0; -// if (new_path[10] != 'n') return 0; - if (new_path[11] != 't' && new_path[11] != 'T') return 0; + if (strncasecmp(new_path, "/vol/content", 12) == 0) + return 1; - return 1; + return 0; } static int is_savefile(const char *path) { @@ -94,18 +84,10 @@ static int is_savefile(const char *path) { new_path[len++] = *path++; } - /* Note : no need to check everything, it is faster this way */ - if (new_path[0] != '/') return 0; -// if (new_path[1] != 'v' && new_path[1] != 'V') return 0; -// if (new_path[2] != 'o') return 0; -// if (new_path[3] != 'l') return 0; - if (new_path[4] != '/') return 0; - if (new_path[5] != 's' && new_path[5] != 'S') return 0; -// if (new_path[6] != 'a') return 0; -// if (new_path[7] != 'v') return 0; - if (new_path[8] != 'e' && new_path[8] != 'E') return 0; + if (strncasecmp(new_path, "/vol/save", 9) == 0) + return 1; - return 1; + return 0; } static void compute_new_path(char* new_path, const char* path, int len, int is_save) { @@ -119,6 +101,11 @@ static void compute_new_path(char* new_path, const char* path, int len, int is_s if(path[0] != '/') path_offset = -1; + // some games are doing /vol/content/./.... + if(path[13 + path_offset] == '.' && path[14 + path_offset] == '/') { + path_offset += 2; + } + if (!is_save) { n = strlcpy(new_path, bss.mount_base, sizeof(bss.mount_base)); @@ -273,7 +260,7 @@ DECL(int, FSDelClient, void *pClient) { /* ***************************************************************************** * Replacement functions * ****************************************************************************/ -DECL(int, FSGetStat, void *pClient, void *pCmd, const char *path, void *stats, int error) { +DECL(int, FSGetStat, FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSStat *stats, FSRetFlag error) { int client = GetCurClient(pClient); if (client != -1) { // log @@ -316,7 +303,7 @@ DECL(int, FSGetStatAsync, void *pClient, void *pCmd, const char *path, void *sta return real_FSGetStatAsync(pClient, pCmd, path, stats, error, asyncParams); } -DECL(int, FSOpenFile, void *pClient, void *pCmd, const char *path, const char *mode, int *handle, int error) { +DECL(FSStatus, FSOpenFile, FSClient *pClient, FSCmdBlock *pCmd, const char *path, const char *mode, int *handle, FSRetFlag error) { /* int client = GetCurClient(pClient); if (client != -1) { @@ -359,7 +346,7 @@ DECL(int, FSOpenFileAsync, void *pClient, void *pCmd, const char *path, const ch return real_FSOpenFileAsync(pClient, pCmd, path, mode, handle, error, asyncParams); } -DECL(int, FSOpenDir, void *pClient, void* pCmd, const char *path, int *handle, int error) { +DECL(int, FSOpenDir, FSClient *pClient, FSCmdBlock* pCmd, const char *path, int *handle, FSRetFlag error) { int client = GetCurClient(pClient); if (client != -1) { // log @@ -399,7 +386,7 @@ DECL(int, FSOpenDirAsync, void *pClient, void* pCmd, const char *path, int *hand return real_FSOpenDirAsync(pClient, pCmd, path, handle, error, asyncParams); } -DECL(int, FSChangeDir, void *pClient, void *pCmd, char *path, int error) { +DECL(FSStatus, FSChangeDir, FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSRetFlag error) { int client = GetCurClient(pClient); if (client != -1) { // log @@ -440,7 +427,7 @@ DECL(int, FSChangeDirAsync, void *pClient, void *pCmd, const char *path, int err } // only for saves on sdcard -DECL(int, FSMakeDir, void *pClient, void *pCmd, const char *path, int error) { +DECL(FSStatus, FSMakeDir, FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSRetFlag error) { int client = GetCurClient(pClient); if (client != -1) { // log @@ -1070,29 +1057,26 @@ const struct fs_magic_t { // Dynamic RPL loading functions MAKE_MAGIC(OSDynLoad_Acquire, 0x38A00000), #if (USE_EXTRA_LOG_FUNCTIONS == 1) - MAKE_MAGIC(OSDynLoad_GetModuleName), - MAKE_MAGIC(OSDynLoad_IsModuleLoaded), -#endif - - // Log functions -#if (USE_EXTRA_LOG_FUNCTIONS == 1) - MAKE_MAGIC(FSCloseFile_log), - MAKE_MAGIC(FSCloseDir_log), - MAKE_MAGIC(FSFlushFile_log), - MAKE_MAGIC(FSGetErrorCodeForViewer_log), - MAKE_MAGIC(FSGetLastError_log), - MAKE_MAGIC(FSGetPosFile_log), - MAKE_MAGIC(FSGetStatFile_log), - MAKE_MAGIC(FSIsEof_log), - MAKE_MAGIC(FSReadDir_log), - MAKE_MAGIC(FSReadFile_log), - MAKE_MAGIC(FSReadFileWithPos_log), - MAKE_MAGIC(FSSetPosFile_log), - MAKE_MAGIC(FSSetStateChangeNotification_log), - MAKE_MAGIC(FSTruncateFile_log), - MAKE_MAGIC(FSWriteFile_log), - MAKE_MAGIC(FSWriteFileWithPos_log), - MAKE_MAGIC(FSGetVolumeState_log), + MAKE_MAGIC(OSDynLoad_GetModuleName, 0x9421FFD0), + MAKE_MAGIC(OSDynLoad_IsModuleLoaded, 0x38A00001), + + MAKE_MAGIC(FSCloseFile_log, 0x7C0802A6), + MAKE_MAGIC(FSCloseDir_log, 0x7C0802A6), + MAKE_MAGIC(FSFlushFile_log, 0x7C0802A6), + MAKE_MAGIC(FSGetErrorCodeForViewer_log, 0x9421FEF8), + MAKE_MAGIC(FSGetLastError_log, 0x7C0802A6), + MAKE_MAGIC(FSGetPosFile_log, 0x9421FFD8), + MAKE_MAGIC(FSGetStatFile_log, 0x9421FFD8), + MAKE_MAGIC(FSIsEof_log, 0x7C0802A6), + MAKE_MAGIC(FSReadDir_log, 0x9421FFD8), + MAKE_MAGIC(FSReadFile_log, 0x9421FFC8), + MAKE_MAGIC(FSReadFileWithPos_log, 0x9421FFC0), + MAKE_MAGIC(FSSetPosFile_log, 0x9421FFD8), + MAKE_MAGIC(FSSetStateChangeNotification_log, 0x7C0802A6), + MAKE_MAGIC(FSTruncateFile_log, 0x7C0802A6), + MAKE_MAGIC(FSWriteFile_log, 0x9421FFC8), + MAKE_MAGIC(FSWriteFileWithPos_log, 0x9421FFC0), + MAKE_MAGIC(FSGetVolumeState_log, 0x7C0802A6), #endif }; diff --git a/src/fs/fs.h b/src/fs/fs.h index 876a7c2..e92b38a 100644 --- a/src/fs/fs.h +++ b/src/fs/fs.h @@ -2,28 +2,13 @@ #define _FS_H_ #include "../common/fs_defs.h" +#include "fs_functions.h" extern void GX2WaitForVsync(void); /* OS stuff */ extern void DCFlushRange(const void *p, unsigned int s); -/* SDCard functions */ -extern FSStatus FSGetMountSource(void *pClient, void *pCmd, FSSourceType type, FSMountSource *source, FSRetFlag errHandling); -extern FSStatus FSMount(void *pClient, void *pCmd, FSMountSource *source, char *target, uint bytes, FSRetFlag errHandling); -extern FSStatus FSReadFile(FSClient *pClient, FSCmdBlock *pCmd, void *buffer, int size, int count, int fd, FSFlag flag, FSRetFlag errHandling); -extern void FSInitCmdBlock(FSCmdBlock *pCmd); -extern FSStatus FSCloseFile(FSClient *pClient, FSCmdBlock *pCmd, int fd, int error); - -/* Async callback definition */ -typedef void (*FSAsyncCallback)(void *pClient, void *pCmd, int result, void *context); -typedef struct -{ - FSAsyncCallback userCallback; - void *userContext; - void *ioMsgQueue; -} FSAsyncParams; - /* Forward declarations */ #define MAX_CLIENT 32 diff --git a/src/fs/fs_functions.h b/src/fs/fs_functions.h new file mode 100644 index 0000000..1eb1d03 --- /dev/null +++ b/src/fs/fs_functions.h @@ -0,0 +1,25 @@ +#ifndef __FS_FUNCTIONS_H_ +#define __FS_FUNCTIONS_H_ + +#include "../common/fs_defs.h" + +/* FS Functions */ +extern FSStatus FSInit(void); +extern FSStatus FSAddClient(FSClient *pClient, FSRetFlag errHandling); +extern void FSInitCmdBlock(FSCmdBlock *pCmd); +extern FSStatus FSGetMountSource(FSClient *pClient, FSCmdBlock *pCmd, FSSourceType type, FSMountSource *source, FSRetFlag errHandling); +extern FSStatus FSMount(FSClient *pClient, FSCmdBlock *pCmd, FSMountSource *source, const char *target, uint32_t bytes, FSRetFlag errHandling); +extern FSStatus FSUnmount(FSClient *pClient, FSCmdBlock *pCmd, const char *target, FSRetFlag errHandling); +extern FSStatus FSOpenDir(FSClient *pClient, FSCmdBlock *pCmd, const char *path, int *dh, FSRetFlag errHandling); +extern FSStatus FSReadDir(FSClient *pClient, FSCmdBlock *pCmd, int dh, FSDirEntry *dir_entry, FSRetFlag errHandling); +extern FSStatus FSRewindDir(FSClient *pClient, FSCmdBlock *pCmd, int dh, FSRetFlag errHandling); +extern FSStatus FSOpenFile(FSClient *pClient, FSCmdBlock *pCmd, const char *path, const char *mode, int *fd, FSRetFlag errHandling); +extern FSStatus FSReadFile(FSClient *pClient, FSCmdBlock *pCmd, void *buffer, int size, int count, int fd, FSFlag flag, FSRetFlag errHandling); +extern FSStatus FSChangeDir(FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSRetFlag errHandling); +extern FSStatus FSMakeDir(FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSRetFlag errHandling); +extern FSStatus FSCloseDir(FSClient *pClient, FSCmdBlock *pCmd, int dh, FSRetFlag errHandling); +extern FSStatus FSCloseFile(FSClient *pClient, FSCmdBlock *pCmd, int fd, FSRetFlag errHandling); +extern FSStatus FSGetStat(FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSStat *stats, FSRetFlag errHandling); + + +#endif // __FS_FUNCTIONS_H_ diff --git a/src/kernel/kernel_functions.c b/src/kernel/kernel_functions.c index 5c997b4..fed7998 100644 --- a/src/kernel/kernel_functions.c +++ b/src/kernel/kernel_functions.c @@ -27,9 +27,8 @@ void my_PrepareTitle(CosAppXmlInfo *xmlKernelInfo) asm volatile("eieio; isync"); - //! TODO: add Smash Bros IDs for the check? - // check for Mii Maker ID (region independent check) - if(GAME_LAUNCHED && (xmlKernelInfo->title_id & 0xFFFFFFFFFFFFF0FF) == 0x000500101004A000) + // check for Mii Maker RPX or Smash Bros RPX when we started (region independent check) + if(GAME_LAUNCHED && ((strncasecmp("ffl_app.rpx", xmlKernelInfo->rpx_name, FS_MAX_ENTNAME_SIZE) == 0) || (strncasecmp("cross_f.rpx", xmlKernelInfo->rpx_name, FS_MAX_ENTNAME_SIZE) == 0))) { //! Copy all data from the parsed XML info strlcpy(xmlKernelInfo->rpx_name, cosAppXmlInfoStruct.rpx_name, sizeof(cosAppXmlInfoStruct.rpx_name)); diff --git a/src/link.ld b/src/link.ld index 0b36cd9..cd0a119 100644 --- a/src/link.ld +++ b/src/link.ld @@ -76,6 +76,7 @@ PROVIDE(FSRollbackQuotaAsync = 0x0106bb50); /* FS methods - not replaced */ PROVIDE(FSReadDir = 0x0106f780); +PROVIDE(FSRewindDir = 0x0106F7F0); PROVIDE(FSReadFile = 0x106f108); PROVIDE(FSCloseFile = 0x106f088); PROVIDE(FSCloseDir = 0x0106f700); diff --git a/src/menu/menu.c b/src/menu/menu.c index 0f1c07c..933b69e 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -1,5 +1,8 @@ #include "menu.h" +#include "../fs/fs.h" #include "../utils/strings.h" +#include "../utils/rpx_sections.h" +#include "../utils/logger.h" #include "../utils/utils.h" #include "../utils/xml.h" #include "../common/common.h" @@ -9,12 +12,9 @@ #define PRINT_TEXT2(x, y, _fmt, ...) { __os_snprintf(msg, 80, _fmt, __VA_ARGS__); OSScreenPutFontEx(1, x, y, msg); } #define BTN_PRESSED (BUTTON_LEFT | BUTTON_RIGHT | BUTTON_UP | BUTTON_DOWN | BUTTON_A | BUTTON_B | BUTTON_X) -/* Function prototype to patch FS methods */ -void PatchFsMethods(void); - /* Static function definitions */ -static int IsRPX(FSDirEntry *dir_entry); -static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_entry, char *path, int is_rpx, int entry_index); +static int IsRpxOrRpl(FSDirEntry *dir_entry); +static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_entry, char *path, int is_rpx, int entry_index, char **rpl_imports, int rpl_import_count); static void CreateGameSaveDir(FSClient *pClient, FSCmdBlock *pCmd, const char *dir_entry, char* mount_path); static void GenerateMemoryAreasTable(); static void AddMemoryArea(int start, int end, int cur_index); @@ -269,24 +269,60 @@ int Menu_Main(int argc, char *argv[]) { FSDirEntry dir_entry; int is_okay = 0; int cur_entry = 0; + int rpx_found = 0; + char **rpl_imports = NULL; + int rpl_import_count = 0; + char rpx_name[FS_MAX_MOUNTPATH_SIZE]; + memset(rpx_name, 0, sizeof(rpx_name)); + + // first find and pre-load RPX into memory while (FSReadDir(pClient, pCmd, game_dh, &dir_entry, FS_RET_ALL_ERROR) == FS_STATUS_OK) { - // Check if it is an rpx or rpl and copy it - int is_rpx = IsRPX(&dir_entry); - if (is_rpx == -1) + int is_rpx = IsRpxOrRpl(&dir_entry); + if (is_rpx != 1) continue; - if (is_rpx) + is_okay = Copy_RPX_RPL(pClient, pCmd, &dir_entry, path, 1, cur_entry, rpl_imports, rpl_import_count); + cur_entry++; + + CreateGameSaveDir(pClient, pCmd, game_dir[game_sel], mount_path); + rpx_found = 1; + break; + } + + // if the RPX is found rewind the whole DIR handler and start over loading all RPLs + if(rpx_found && is_okay) + { + // copy the RPX name + strlcpy(rpx_name, dir_entry.name, sizeof(rpx_name)); + // rewind dir handler + FSRewindDir(pClient, pCmd, game_dh, FS_RET_NO_ERROR); + // read out all RPL imports on the first entry which is the pre-loaded RPX + rpl_import_count = GetRpxImports((s_rpx_rpl *)(RPX_RPL_ARRAY), &rpl_imports); + + while (FSReadDir(pClient, pCmd, game_dh, &dir_entry, FS_RET_ALL_ERROR) == FS_STATUS_OK) { - is_okay = Copy_RPX_RPL(pClient, pCmd, &dir_entry, path, 1, cur_entry++); - CreateGameSaveDir(pClient, pCmd, game_dir[game_sel], mount_path); + // Check if it is an rpx or rpl and copy it + int is_rpx = IsRpxOrRpl(&dir_entry); + if (is_rpx != 0) + continue; + + is_okay = Copy_RPX_RPL(pClient, pCmd, &dir_entry, path, 0, cur_entry, rpl_imports, rpl_import_count); + if (is_okay == 0) + break; + + cur_entry++; } - else - { - is_okay = Copy_RPX_RPL(pClient, pCmd, &dir_entry, path, 0, cur_entry++); + } + + // free memory of RPL imports + if(rpl_imports) { + int i; + for(i = 0; i < rpl_import_count; i++) { + if(rpl_imports[i]) + free(rpl_imports[i]); } - if (is_okay == 0) - break; + free(rpl_imports); } // copy the game name to a place we know for later @@ -300,7 +336,39 @@ int Menu_Main(int argc, char *argv[]) { FSCloseDir(pClient, pCmd, game_dh, FS_RET_NO_ERROR); if(ready){ - LoadXmlParameters(&cosAppXmlInfoStruct, pClient, pCmd, path, path_index); + LoadXmlParameters(&cosAppXmlInfoStruct, pClient, pCmd, rpx_name, path, path_index); + + char acBuffer[200]; + __os_snprintf(acBuffer, sizeof(acBuffer), "XML Launching Parameters"); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "rpx_name: %s", cosAppXmlInfoStruct.rpx_name); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "version_cos_xml: %i", cosAppXmlInfoStruct.version_cos_xml); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "os_version: %08X%08X", (unsigned int)(cosAppXmlInfoStruct.os_version >> 32), (unsigned int)(cosAppXmlInfoStruct.os_version & 0xFFFFFFFF)); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "title_id: %08X%08X", (unsigned int)(cosAppXmlInfoStruct.title_id >> 32), (unsigned int)(cosAppXmlInfoStruct.title_id & 0xFFFFFFFF)); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "app_type: %08X", cosAppXmlInfoStruct.app_type); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "cmdFlags: %08X", cosAppXmlInfoStruct.cmdFlags); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "max_size: %08X", cosAppXmlInfoStruct.max_size); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "avail_size: %08X", cosAppXmlInfoStruct.avail_size); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "codegen_size: %08X", cosAppXmlInfoStruct.codegen_size); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "codegen_core: %08X", cosAppXmlInfoStruct.codegen_core); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "max_codesize: %08X", cosAppXmlInfoStruct.max_codesize); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "overlay_arena: %08X", cosAppXmlInfoStruct.overlay_arena); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "sdk_version: %i", cosAppXmlInfoStruct.sdk_version); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); + __os_snprintf(acBuffer, sizeof(acBuffer), "title_version: %08X", cosAppXmlInfoStruct.title_version); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); } } } @@ -378,8 +446,8 @@ int Menu_Main(int argc, char *argv[]) { return main(argc, argv); } -/* IsRPX */ -static int IsRPX(FSDirEntry *dir_entry) +/* IsRpxOrRpl */ +static int IsRpxOrRpl(FSDirEntry *dir_entry) { char *cPtr = dir_entry->name; int len = 0; @@ -399,7 +467,7 @@ static int IsRPX(FSDirEntry *dir_entry) return -1; } -static void Add_RPX_RPL_Entry(const char *name, int size, int is_rpx, int entry_index, s_mem_area* area){ +static void Add_RPX_RPL_Entry(const char *name, int offset, int size, int is_rpx, int entry_index, s_mem_area* area){ // fill rpx/rpl entry s_rpx_rpl * rpx_rpl_data = (s_rpx_rpl *)(RPX_RPL_ARRAY); // get to last entry @@ -416,16 +484,19 @@ static void Add_RPX_RPL_Entry(const char *name, int size, int is_rpx, int entry_ // setup current entry rpx_rpl_data->area = area; rpx_rpl_data->size = size; - rpx_rpl_data->offset = 0; + rpx_rpl_data->offset = offset; rpx_rpl_data->is_rpx = is_rpx; rpx_rpl_data->next = 0; // copy string length + 0 termination memcpy(rpx_rpl_data->name, name, strnlen(name, 0x1000) + 1); + char acBuffer[200]; + __os_snprintf(acBuffer, sizeof(acBuffer), "%s: loaded into 0x%08X, offset: 0x%08X, size: 0x%08X", name, area->address, offset, size); + log_string(bss.global_sock, acBuffer, BYTE_LOG_STR); } /* Copy_RPX_RPL */ -static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_entry, char *path, int is_rpx, int entry_index) +static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_entry, char *path, int is_rpx, int entry_index, char **rpl_imports, int rpl_import_count) { // Open rpl file int fd = 0; @@ -439,12 +510,27 @@ static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_ent // For RPLs : if(!is_rpx) { - // fill rpl entry - Add_RPX_RPL_Entry(dir_entry->name, 0, is_rpx, entry_index, (s_mem_area*)(MEM_AREA_ARRAY)); + int preload = 0; + int i; + for(i = 0; i < rpl_import_count; i++) + { + if(strncasecmp(dir_entry->name, rpl_imports[i], strlen(dir_entry->name) - 4) == 0) + { + // file is in the fimports section and therefore needs to be preloaded + preload = 1; + break; + } + } + // if we dont need to preload, just add it to the array + if(!preload) + { + // fill rpl entry + Add_RPX_RPL_Entry(dir_entry->name, 0, 0, is_rpx, entry_index, (s_mem_area*)(MEM_AREA_ARRAY)); - // free path - free(path_game); - return 1; + // free path + free(path_game); + return 1; + } } // For RPX : load file from sdcard and fill memory with the rpx data @@ -456,13 +542,53 @@ static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_ent // malloc mem for read file char* data = (char*)malloc(0x1000); - // Get current memory area limits + // this is the initial area s_mem_area* mem_area = (s_mem_area*)(MEM_AREA_ARRAY); - s_mem_area* mem_area_rpl = mem_area; int mem_area_addr_start = mem_area->address; int mem_area_addr_end = mem_area->address + mem_area->size; int mem_area_offset = 0; + // on RPLs we need to find the free area we can store data to (at least RPX was already loaded by this point) + if(!is_rpx) + { + s_rpx_rpl *rpl_struct = (s_rpx_rpl*)(RPX_RPL_ARRAY); + while(rpl_struct != 0) + { + // check if this entry was loaded into memory + if(rpl_struct->size == 0) { + // see if we find entries behind this one that was pre-loaded + rpl_struct = rpl_struct->next; + // entry was not loaded into memory -> skip it + continue; + } + + // this entry has been loaded to memory, remember it's area + mem_area = rpl_struct->area; + + int rpl_size = rpl_struct->size; + int rpl_offset = rpl_struct->offset; + // find the end of the entry and switch between areas if needed + while((rpl_offset + rpl_size) >= mem_area->size) + { + rpl_size -= mem_area->size - rpl_offset; + rpl_offset = 0; + mem_area = mem_area->next; + } + + // set new start, end and memory area offset + mem_area_addr_start = mem_area->address; + mem_area_addr_end = mem_area->address + mem_area->size; + mem_area_offset = rpl_offset + rpl_size; + + // see if we find entries behind this one that was pre-loaded + rpl_struct = rpl_struct->next; + } + } + + // Get current memory area limits + s_mem_area* mem_area_rpl_start = mem_area; + int mem_area_offset_rpl_start = mem_area_offset; + // Copy rpl in memory : 22 MB max while ((ret = FSReadFile(pClient, pCmd, data, 0x1, 0x1000, fd, 0, FS_RET_ALL_ERROR)) > 0) { @@ -483,12 +609,13 @@ static int Copy_RPX_RPL(FSClient *pClient, FSCmdBlock *pCmd, FSDirEntry *dir_ent cur_size += ret; } + // remember which RPX has to be checked for on loader for allowing the list compare if(is_rpx) { RPX_CHECK_NAME = *(unsigned int*)dir_entry->name; } // fill rpx entry - Add_RPX_RPL_Entry(dir_entry->name, cur_size, is_rpx, entry_index, mem_area_rpl); + Add_RPX_RPL_Entry(dir_entry->name, mem_area_offset_rpl_start, cur_size, is_rpx, entry_index, mem_area_rpl_start); // close file and free memory FSCloseFile(pClient, pCmd, fd, FS_RET_NO_ERROR); diff --git a/src/menu/menu.h b/src/menu/menu.h index 7a86320..e4912b3 100644 --- a/src/menu/menu.h +++ b/src/menu/menu.h @@ -35,21 +35,4 @@ extern uint OSScreenPutFontEx(uint bufferNum, uint posX, uint posY, const void * /* VPAD */ extern int VPADRead(int controller, VPADData *buffer, uint num, int *error); -/* FS Functions */ -extern FSStatus FSInit(void); -extern FSStatus FSAddClient(FSClient *pClient, FSRetFlag errHandling); -extern void FSInitCmdBlock(FSCmdBlock *pCmd); -extern FSStatus FSGetMountSource(FSClient *pClient, FSCmdBlock *pCmd, FSSourceType type, FSMountSource *source, FSRetFlag errHandling); -extern FSStatus FSMount(FSClient *pClient, FSCmdBlock *pCmd, FSMountSource *source, char *target, uint32_t bytes, FSRetFlag errHandling); -extern FSStatus FSUnmount(FSClient *pClient, FSCmdBlock *pCmd, const char *target, FSRetFlag errHandling); -extern FSStatus FSOpenDir(FSClient *pClient, FSCmdBlock *pCmd, const char *path, int *dh, FSRetFlag errHandling); -extern FSStatus FSReadDir(FSClient *pClient, FSCmdBlock *pCmd, int dh, FSDirEntry *dir_entry, FSRetFlag errHandling); -extern FSStatus FSOpenFile(FSClient *pClient, FSCmdBlock *pCmd, const char *path, const char *mode, int *fd, FSRetFlag errHandling); -extern FSStatus FSReadFile(FSClient *pClient, FSCmdBlock *pCmd, void *buffer, int size, int count, int fd, FSFlag flag, FSRetFlag errHandling); -extern FSStatus FSChangeDir(FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSRetFlag errHandling); -extern FSStatus FSMakeDir(FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSRetFlag errHandling); -extern FSStatus FSCloseDir(FSClient *pClient, FSCmdBlock *pCmd, int dh, FSRetFlag errHandling); -extern FSStatus FSCloseFile(FSClient *pClient, FSCmdBlock *pCmd, int fd, FSRetFlag errHandling); -extern FSStatus FSGetStat(FSClient *pClient, FSCmdBlock *pCmd, const char *path, FSStat *stats, FSRetFlag errHandling); - #endif diff --git a/src/utils/rpx_sections.c b/src/utils/rpx_sections.c new file mode 100644 index 0000000..a2bbf96 --- /dev/null +++ b/src/utils/rpx_sections.c @@ -0,0 +1,229 @@ +#include "../common/common.h" +#include "../menu/menu.h" +#include "strings.h" +#include "utils.h" +#include "zlib.h" + +/* RPX stuff */ +#define RPX_SH_STRNDX_OFFSET 0x0032 +#define RPX_SHT_START 0x0040 +#define RPX_SHT_ENTRY_SIZE 0x28 + +#define RPX_SHDR_FLAGS_OFFSET 0x08 +#define RPX_SHDR_OFFSET_OFFSET 0x10 +#define RPX_SHDR_SIZE_OFFSET 0x14 + +#define RPX_SHDR_ZLIB_FLAG 0x08000000 + +int GetMemorySegment(s_rpx_rpl * rpx_data, unsigned int offset, unsigned int size, unsigned char *buffer) +{ + s_mem_area *mem_area = rpx_data->area; + int mem_area_addr_start = mem_area->address; + int mem_area_addr_end = mem_area_addr_start + mem_area->size; + int mem_area_offset = rpx_data->offset; + + unsigned int buffer_position = 0; + + // Replace rpx/rpl data + for (unsigned int position = 0; position < rpx_data->size; position++) + { + if ((mem_area_addr_start + mem_area_offset) >= mem_area_addr_end) // TODO: maybe >, not >= + { + mem_area = mem_area->next; + if(!mem_area) { + return buffer_position; + } + mem_area_addr_start = mem_area->address; + mem_area_addr_end = mem_area_addr_start + mem_area->size; + mem_area_offset = 0; + } + if(position >= offset) { + buffer[buffer_position] = *(unsigned char *)(mem_area_addr_start + mem_area_offset); + buffer_position++; + } + if(buffer_position >= size) { + return buffer_position; + } + mem_area_offset++; + } + + return 0; +} + +int GetRpxImports(s_rpx_rpl * rpx_data, char ***rpl_import_list) +{ + unsigned char *buffer = (unsigned char *)malloc(0x1000); + if(!buffer) { + return 0; + } + + // get the header information of the RPX + if(!GetMemorySegment(rpx_data, 0, 0x1000, buffer)) + { + free(buffer); + return 0; + } + // Who needs error checks... + // Get section number + int shstrndx = *(unsigned short*)(&buffer[RPX_SH_STRNDX_OFFSET]); + // Get section offset + int section_offset = *(unsigned int*)(&buffer[RPX_SHT_START + (shstrndx * RPX_SHT_ENTRY_SIZE) + RPX_SHDR_OFFSET_OFFSET]); + // Get section size + int section_size = *(unsigned int*)(&buffer[RPX_SHT_START + (shstrndx * RPX_SHT_ENTRY_SIZE) + RPX_SHDR_SIZE_OFFSET]); + // Get section flags + int section_flags = *(unsigned int*)(&buffer[RPX_SHT_START + (shstrndx * RPX_SHT_ENTRY_SIZE) + RPX_SHDR_FLAGS_OFFSET]); + + // Align read to 64 for SD access (section offset already aligned to 64 @ elf/rpx?!) + int section_offset_aligned = (section_offset / 64) * 64; + int section_alignment = section_offset - section_offset_aligned; + int section_size_aligned = ((section_alignment + section_size) / 64) * 64 + 64; + + unsigned char *section_data = (unsigned char *)malloc(section_size_aligned); + if(!section_data) { + free(buffer); + return 0; + } + + // get the header information of the RPX + if(!GetMemorySegment(rpx_data, section_offset_aligned, section_size_aligned, section_data)) + { + free(buffer); + free(section_data); + return 0; + } + + unsigned char *section_data_inflated = NULL; + char *uncompressed_data = NULL; + int uncompressed_data_size = 0; + + //Check if inflate is needed (ZLIB flag) + if (section_flags & RPX_SHDR_ZLIB_FLAG) + { + // Section is compressed, inflate + int section_size_inflated = *(unsigned int*)(§ion_data[section_alignment]); + section_data_inflated = (unsigned char *)malloc(section_size_inflated); + if(!section_data_inflated) + { + free(buffer); + free(section_data); + return 0; + } + + unsigned int zlib_handle; + OSDynLoad_Acquire("zlib125", &zlib_handle); + + /* Zlib functions */ + int(*ZinflateInit_)(z_streamp strm, const char *version, int stream_size); + int(*Zinflate)(z_streamp strm, int flush); + int(*ZinflateEnd)(z_streamp strm); + + OSDynLoad_FindExport(zlib_handle, 0, "inflateInit_", &ZinflateInit_); + OSDynLoad_FindExport(zlib_handle, 0, "inflate", &Zinflate); + OSDynLoad_FindExport(zlib_handle, 0, "inflateEnd", &ZinflateEnd); + + int ret = 0; + z_stream s; + memset(&s, 0, sizeof(s)); + + s.zalloc = Z_NULL; + s.zfree = Z_NULL; + s.opaque = Z_NULL; + + ret = ZinflateInit_(&s, ZLIB_VERSION, sizeof(s)); + if (ret != Z_OK) + { + free(buffer); + free(section_data); + free(section_data_inflated); + return 0; + } + + s.avail_in = section_size - 0x04; + s.next_in = section_data + section_alignment + 0x04; + + s.avail_out = section_size_inflated; + s.next_out = section_data_inflated; + + ret = Zinflate(&s, Z_FINISH); + if (ret != Z_OK && ret != Z_STREAM_END) + { + // Inflate failed + free(buffer); + free(section_data); + free(section_data_inflated); + return 0; + } + + ZinflateEnd(&s); + uncompressed_data = (char *) section_data_inflated; + uncompressed_data_size = section_size_inflated; + } else { + uncompressed_data = (char *) section_data; + uncompressed_data_size = section_size; + } + + // Parse imports + int offset = 0; + int rpl_count = 0; + char **list = 0; + do + { + if (strncmp(&uncompressed_data[offset+1], ".fimport_", 9) == 0) + { + char **new_list = (char**)malloc(sizeof(char*) * (rpl_count + 1)); + if(!new_list) { + break; + } + else if(!list) { + // first entry + list = new_list; + } + else { + // reallocate the list + memcpy(new_list, list, sizeof(char*) * rpl_count); + free(list); + list = new_list; + } + + // Match, save import in list + int len = strlen(&uncompressed_data[offset+1+9]); + list[rpl_count] = (char *)malloc(len + 1); + + if(list[rpl_count]) { + memcpy(list[rpl_count], &uncompressed_data[offset+1+9], len + 1); + rpl_count++; + } + } + offset++; + while (uncompressed_data[offset] != 0) { + offset++; + } + } while(offset + 1 < uncompressed_data_size); + + // Free section data + if (section_data_inflated) { + free(section_data_inflated); + } + free(section_data); + free(buffer); + + // set pointer + if(rpl_count > 0) + { + // if we want to copy the list, then copy it + if(rpl_import_list) { + *rpl_import_list = list; + } + // otherwise free the memory of the list + else if(list) { + int j; + for(j = 0; j < rpl_count; j++) + if(list[j]) + free(list[j]); + + free(list); + } + } + + return rpl_count; +} diff --git a/src/utils/rpx_sections.h b/src/utils/rpx_sections.h new file mode 100644 index 0000000..c8e0cc1 --- /dev/null +++ b/src/utils/rpx_sections.h @@ -0,0 +1,9 @@ +#ifndef RPX_SECTIONS_H_ +#define RPX_SECTIONS_H_ + +#include "../common/common.h" + +int GetMemorySegment(s_rpx_rpl * rpx_data, unsigned int offset, unsigned int size, unsigned char *buffer); +int GetRpxImports(s_rpx_rpl * rpx_data, char ***rpl_import_list); + +#endif // RPX_SECTIONS_H_ diff --git a/src/utils/strings.c b/src/utils/strings.c index 3aba907..fcc2ced 100644 --- a/src/utils/strings.c +++ b/src/utils/strings.c @@ -110,6 +110,36 @@ int strncasecmp(const char *s1, const char *s2, unsigned int max_len) { } +int strncmp(const char *s1, const char *s2, unsigned int max_len) { + if(!s1 || !s2) { + return -1; + } + + unsigned int len = 0; + while(*s1 && *s2 && len < max_len) + { + int diff = *s1 - *s2; + if(diff != 0) { + return diff; + } + + s1++; + s2++; + len++; + } + + if(len == max_len) { + return 0; + } + + int diff = *s1 - *s2; + if(diff != 0) { + return diff; + } + return 0; +} + + const char *strcasestr(const char *str, const char *pattern) { if(!str || !pattern) { diff --git a/src/utils/strings.h b/src/utils/strings.h index de6f3f7..ac9a8ed 100644 --- a/src/utils/strings.h +++ b/src/utils/strings.h @@ -13,6 +13,7 @@ int memcmp (const void * ptr1, const void * ptr2, unsigned int num); /* string functions */ int strncasecmp(const char *s1, const char *s2, unsigned int max_len); +int strncmp(const char *s1, const char *s2, unsigned int max_len); int strncpy(char *dst, const char *src, unsigned int max_size); int strlcpy(char *s1, const char *s2, unsigned int max_size); int strnlen(const char* str, unsigned int max_size); diff --git a/src/utils/xml.c b/src/utils/xml.c index d06cd97..5e100ce 100644 --- a/src/utils/xml.c +++ b/src/utils/xml.c @@ -1,5 +1,6 @@ -#include "../Common/fs_defs.h" -#include "../Common/kernel_defs.h" +#include "../common/fs_defs.h" +#include "../common/kernel_defs.h" +#include "../fs/fs_functions.h" #include "../menu/menu.h" #include "utils.h" #include "strings.h" @@ -46,18 +47,18 @@ char * XML_GetNodeText(const char *xml_part, const char * nodename, char * outpu return output; } -int LoadXmlParameters(ReducedCosAppXmlInfo * xmlInfo, FSClient *pClient, FSCmdBlock *pCmd, const char *path, int path_index) +int LoadXmlParameters(ReducedCosAppXmlInfo * xmlInfo, FSClient *pClient, FSCmdBlock *pCmd, const char *rpx_name, const char *path, int path_index) { //-------------------------------------------------------------------------------------------- // setup default data //-------------------------------------------------------------------------------------------- memset(xmlInfo, 0, sizeof(ReducedCosAppXmlInfo)); - xmlInfo->version_cos_xml = 18; // default for most games - xmlInfo->os_version = 0x000500101000400A; // default for most games - xmlInfo->title_id = title_id; // use mii maker ID - xmlInfo->app_type = 0x80000000; // default for most games - xmlInfo->cmdFlags = 0; // default for most games - strlcpy(xmlInfo->rpx_name, "ffl_app.rpx", sizeof(xmlInfo->rpx_name)); + xmlInfo->version_cos_xml = 18; // default for most games + xmlInfo->os_version = 0x000500101000400A; // default for most games + xmlInfo->title_id = title_id; // use mii maker ID + xmlInfo->app_type = 0x80000000; // default for most games + xmlInfo->cmdFlags = 0; // default for most games + strlcpy(xmlInfo->rpx_name, rpx_name, sizeof(xmlInfo->rpx_name)); xmlInfo->max_size = 0x40000000; // default for most games xmlInfo->avail_size = 0; // default for most games xmlInfo->codegen_size = 0; // default for most games @@ -116,10 +117,11 @@ int LoadXmlParameters(ReducedCosAppXmlInfo * xmlInfo, FSClient *pClient, FSCmdBl unsigned int value = strtoll(xmlNodeData, 0, 10); xmlInfo->cmdFlags = value; } - if(XML_GetNodeText(xmlData, "argstr", xmlNodeData, XML_BUFFER_SIZE)) - { - strlcpy(xmlInfo->rpx_name, xmlNodeData, sizeof(xmlInfo->rpx_name)); - } + // always use RPX name from FS + //if(XML_GetNodeText(xmlData, "argstr", xmlNodeData, XML_BUFFER_SIZE)) + //{ + // strlcpy(xmlInfo->rpx_name, xmlNodeData, sizeof(xmlInfo->rpx_name)); + //} if(XML_GetNodeText(xmlData, "avail_size", xmlNodeData, XML_BUFFER_SIZE)) { unsigned int value = strtoll(xmlNodeData, 0, 16); diff --git a/src/utils/xml.h b/src/utils/xml.h index ae61620..bb4ddab 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -4,6 +4,6 @@ #include "../common/kernel_defs.h" char * XML_GetNodeText(const char *xml_part, const char * nodename, char * output, int output_size); -int LoadXmlParameters(ReducedCosAppXmlInfo * xmlInfo, FSClient *pClient, FSCmdBlock *pCmd, const char *path, int path_index); +int LoadXmlParameters(ReducedCosAppXmlInfo * xmlInfo, FSClient *pClient, FSCmdBlock *pCmd, const char *rpx_name, const char *path, int path_index); #endif // __XML_H_ diff --git a/src/utils/zconf.h b/src/utils/zconf.h new file mode 100644 index 0000000..45d9623 --- /dev/null +++ b/src/utils/zconf.h @@ -0,0 +1,428 @@ +/* zconf.h -- configuration of the zlib compression library + * Copyright (C) 1995-2010 Jean-loup Gailly. + * For conditions of distribution and use, see copyright notice in zlib.h + */ + +/* @(#) $Id$ */ + +#ifndef ZCONF_H +#define ZCONF_H + +/* + * If you *really* need a unique prefix for all types and library functions, + * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. + * Even better than compiling with -DZ_PREFIX would be to use configure to set + * this permanently in zconf.h using "./configure --zprefix". + */ +#ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ + +/* all linked symbols */ +# define _dist_code z__dist_code +# define _length_code z__length_code +# define _tr_align z__tr_align +# define _tr_flush_block z__tr_flush_block +# define _tr_init z__tr_init +# define _tr_stored_block z__tr_stored_block +# define _tr_tally z__tr_tally +# define adler32 z_adler32 +# define adler32_combine z_adler32_combine +# define adler32_combine64 z_adler32_combine64 +# define compress z_compress +# define compress2 z_compress2 +# define compressBound z_compressBound +# define crc32 z_crc32 +# define crc32_combine z_crc32_combine +# define crc32_combine64 z_crc32_combine64 +# define deflate z_deflate +# define deflateBound z_deflateBound +# define deflateCopy z_deflateCopy +# define deflateEnd z_deflateEnd +# define deflateInit2_ z_deflateInit2_ +# define deflateInit_ z_deflateInit_ +# define deflateParams z_deflateParams +# define deflatePrime z_deflatePrime +# define deflateReset z_deflateReset +# define deflateSetDictionary z_deflateSetDictionary +# define deflateSetHeader z_deflateSetHeader +# define deflateTune z_deflateTune +# define deflate_copyright z_deflate_copyright +# define get_crc_table z_get_crc_table +# define gz_error z_gz_error +# define gz_intmax z_gz_intmax +# define gz_strwinerror z_gz_strwinerror +# define gzbuffer z_gzbuffer +# define gzclearerr z_gzclearerr +# define gzclose z_gzclose +# define gzclose_r z_gzclose_r +# define gzclose_w z_gzclose_w +# define gzdirect z_gzdirect +# define gzdopen z_gzdopen +# define gzeof z_gzeof +# define gzerror z_gzerror +# define gzflush z_gzflush +# define gzgetc z_gzgetc +# define gzgets z_gzgets +# define gzoffset z_gzoffset +# define gzoffset64 z_gzoffset64 +# define gzopen z_gzopen +# define gzopen64 z_gzopen64 +# define gzprintf z_gzprintf +# define gzputc z_gzputc +# define gzputs z_gzputs +# define gzread z_gzread +# define gzrewind z_gzrewind +# define gzseek z_gzseek +# define gzseek64 z_gzseek64 +# define gzsetparams z_gzsetparams +# define gztell z_gztell +# define gztell64 z_gztell64 +# define gzungetc z_gzungetc +# define gzwrite z_gzwrite +# define inflate z_inflate +# define inflateBack z_inflateBack +# define inflateBackEnd z_inflateBackEnd +# define inflateBackInit_ z_inflateBackInit_ +# define inflateCopy z_inflateCopy +# define inflateEnd z_inflateEnd +# define inflateGetHeader z_inflateGetHeader +# define inflateInit2_ z_inflateInit2_ +# define inflateInit_ z_inflateInit_ +# define inflateMark z_inflateMark +# define inflatePrime z_inflatePrime +# define inflateReset z_inflateReset +# define inflateReset2 z_inflateReset2 +# define inflateSetDictionary z_inflateSetDictionary +# define inflateSync z_inflateSync +# define inflateSyncPoint z_inflateSyncPoint +# define inflateUndermine z_inflateUndermine +# define inflate_copyright z_inflate_copyright +# define inflate_fast z_inflate_fast +# define inflate_table z_inflate_table +# define uncompress z_uncompress +# define zError z_zError +# define zcalloc z_zcalloc +# define zcfree z_zcfree +# define zlibCompileFlags z_zlibCompileFlags +# define zlibVersion z_zlibVersion + +/* all zlib typedefs in zlib.h and zconf.h */ +# define Byte z_Byte +# define Bytef z_Bytef +# define alloc_func z_alloc_func +# define charf z_charf +# define free_func z_free_func +# define gzFile z_gzFile +# define gz_header z_gz_header +# define gz_headerp z_gz_headerp +# define in_func z_in_func +# define intf z_intf +# define out_func z_out_func +# define uInt z_uInt +# define uIntf z_uIntf +# define uLong z_uLong +# define uLongf z_uLongf +# define voidp z_voidp +# define voidpc z_voidpc +# define voidpf z_voidpf + +/* all zlib structs in zlib.h and zconf.h */ +# define gz_header_s z_gz_header_s +# define internal_state z_internal_state + +#endif + +#if defined(__MSDOS__) && !defined(MSDOS) +# define MSDOS +#endif +#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2) +# define OS2 +#endif +#if defined(_WINDOWS) && !defined(WINDOWS) +# define WINDOWS +#endif +#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__) +# ifndef WIN32 +# define WIN32 +# endif +#endif +#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32) +# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__) +# ifndef SYS16BIT +# define SYS16BIT +# endif +# endif +#endif + +/* + * Compile with -DMAXSEG_64K if the alloc function cannot allocate more + * than 64 KB at a time (needed on systems with 16-bit int). + */ +#ifdef SYS16BIT +# define MAXSEG_64K +#endif +#ifdef MSDOS +# define UNALIGNED_OK +#endif + +#ifdef __STDC_VERSION__ +# ifndef STDC +# define STDC +# endif +# if __STDC_VERSION__ >= 199901L +# ifndef STDC99 +# define STDC99 +# endif +# endif +#endif +#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus)) +# define STDC +#endif +#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__)) +# define STDC +#endif +#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32)) +# define STDC +#endif +#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__)) +# define STDC +#endif + +#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */ +# define STDC +#endif + +#ifndef STDC +# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */ +# define const /* note: need a more gentle solution here */ +# endif +#endif + +/* Some Mac compilers merge all .h files incorrectly: */ +#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__) +# define NO_DUMMY_DECL +#endif + +/* Maximum value for memLevel in deflateInit2 */ +#ifndef MAX_MEM_LEVEL +# ifdef MAXSEG_64K +# define MAX_MEM_LEVEL 8 +# else +# define MAX_MEM_LEVEL 9 +# endif +#endif + +/* Maximum value for windowBits in deflateInit2 and inflateInit2. + * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files + * created by gzip. (Files created by minigzip can still be extracted by + * gzip.) + */ +#ifndef MAX_WBITS +# define MAX_WBITS 15 /* 32 KB LZ77 window */ +#endif + +/* The memory requirements for deflate are (in bytes): + (1 << (windowBits+2)) + (1 << (memLevel+9)) + that is: 128 KB for windowBits=15 + 128 KB for memLevel = 8 (default values) + plus a few kilobytes for small objects. For example, if you want to reduce + the default memory requirements from 256 KB to 128 KB, compile with + make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" + Of course this will generally degrade compression. + + The memory requirements for inflate are (in bytes) 1 << windowBits + that is, 32 KB for windowBits=15 (default value) plus a few kilobytes + for small objects. +*/ + + /* Type declarations */ + +#ifndef OF /* function prototypes */ +# ifdef STDC +# define OF(args) args +# else +# define OF(args) () +# endif +#endif + +/* The following definitions for FAR are needed only for MSDOS mixed + * model programming (small or medium model with some far allocations). + * This was tested only with MSC; for other MSDOS compilers you may have + * to define NO_MEMCPY in zutil.h. If you do not need the mixed model, + * just define FAR to be empty. + */ +#ifdef SYS16BIT +# if defined(M_I86SM) || defined(M_I86MM) + /* MSC small or medium model */ +# define SMALL_MEDIUM +# ifdef _MSC_VER +# define FAR _far +# else +# define FAR far +# endif +# endif +# if (defined(__SMALL__) || defined(__MEDIUM__)) + /* Turbo C small or medium model */ +# define SMALL_MEDIUM +# ifdef __BORLANDC__ +# define FAR _far +# else +# define FAR far +# endif +# endif +#endif + +#if defined(WINDOWS) || defined(WIN32) + /* If building or using zlib as a DLL, define ZLIB_DLL. + * This is not mandatory, but it offers a little performance increase. + */ +# ifdef ZLIB_DLL +# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500)) +# ifdef ZLIB_INTERNAL +# define ZEXTERN extern __declspec(dllexport) +# else +# define ZEXTERN extern __declspec(dllimport) +# endif +# endif +# endif /* ZLIB_DLL */ + /* If building or using zlib with the WINAPI/WINAPIV calling convention, + * define ZLIB_WINAPI. + * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI. + */ +# ifdef ZLIB_WINAPI +# ifdef FAR +# undef FAR +# endif +# include + /* No need for _export, use ZLIB.DEF instead. */ + /* For complete Windows compatibility, use WINAPI, not __stdcall. */ +# define ZEXPORT WINAPI +# ifdef WIN32 +# define ZEXPORTVA WINAPIV +# else +# define ZEXPORTVA FAR CDECL +# endif +# endif +#endif + +#if defined (__BEOS__) +# ifdef ZLIB_DLL +# ifdef ZLIB_INTERNAL +# define ZEXPORT __declspec(dllexport) +# define ZEXPORTVA __declspec(dllexport) +# else +# define ZEXPORT __declspec(dllimport) +# define ZEXPORTVA __declspec(dllimport) +# endif +# endif +#endif + +#ifndef ZEXTERN +# define ZEXTERN extern +#endif +#ifndef ZEXPORT +# define ZEXPORT +#endif +#ifndef ZEXPORTVA +# define ZEXPORTVA +#endif + +#ifndef FAR +# define FAR +#endif + +#if !defined(__MACTYPES__) +typedef unsigned char Byte; /* 8 bits */ +#endif +typedef unsigned int uInt; /* 16 bits or more */ +typedef unsigned long uLong; /* 32 bits or more */ + +#ifdef SMALL_MEDIUM + /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */ +# define Bytef Byte FAR +#else + typedef Byte FAR Bytef; +#endif +typedef char FAR charf; +typedef int FAR intf; +typedef uInt FAR uIntf; +typedef uLong FAR uLongf; + +#ifdef STDC + typedef void const *voidpc; + typedef void FAR *voidpf; + typedef void *voidp; +#else + typedef Byte const *voidpc; + typedef Byte FAR *voidpf; + typedef Byte *voidp; +#endif + +#ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ +# define Z_HAVE_UNISTD_H +#endif + +//#ifdef STDC +//# include /* for off_t */ +//#endif + +/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and + * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even + * though the former does not conform to the LFS document), but considering + * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as + * equivalently requesting no 64-bit operations + */ +#if -_LARGEFILE64_SOURCE - -1 == 1 +# undef _LARGEFILE64_SOURCE +#endif + +#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) +# include /* for SEEK_* and off_t */ +# ifdef VMS +# include /* for off_t */ +# endif +# ifndef z_off_t +# define z_off_t off_t +# endif +#endif + +#ifndef SEEK_SET +# define SEEK_SET 0 /* Seek from beginning of file. */ +# define SEEK_CUR 1 /* Seek from current position. */ +# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ +#endif + +#ifndef z_off_t +# define z_off_t long +#endif + +#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 +# define z_off64_t off64_t +#else +# define z_off64_t z_off_t +#endif + +#if defined(__OS400__) +# define NO_vsnprintf +#endif + +#if defined(__MVS__) +# define NO_vsnprintf +#endif + +/* MVS linker does not support external names larger than 8 bytes */ +#if defined(__MVS__) + #pragma map(deflateInit_,"DEIN") + #pragma map(deflateInit2_,"DEIN2") + #pragma map(deflateEnd,"DEEND") + #pragma map(deflateBound,"DEBND") + #pragma map(inflateInit_,"ININ") + #pragma map(inflateInit2_,"ININ2") + #pragma map(inflateEnd,"INEND") + #pragma map(inflateSync,"INSY") + #pragma map(inflateSetDictionary,"INSEDI") + #pragma map(compressBound,"CMBND") + #pragma map(inflate_table,"INTABL") + #pragma map(inflate_fast,"INFA") + #pragma map(inflate_copyright,"INCOPY") +#endif + +#endif /* ZCONF_H */ diff --git a/src/utils/zlib.h b/src/utils/zlib.h new file mode 100644 index 0000000..2d27c9c --- /dev/null +++ b/src/utils/zlib.h @@ -0,0 +1,1613 @@ +/* zlib.h -- interface of the 'zlib' general purpose compression library + Version 1.2.5 (2010-04-19) + + Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + + + The data format used by the zlib library is described by RFCs (Request for + Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt + (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). +*/ + +#ifndef ZLIB_H +#define ZLIB_H + +#include "zconf.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#define ZLIB_VERSION "1.2.5" +#define ZLIB_VERNUM 0x1250 +#define ZLIB_VER_MAJOR 1 +#define ZLIB_VER_MINOR 2 +#define ZLIB_VER_REVISION 5 +#define ZLIB_VER_SUBREVISION 0 + +/* + The 'zlib' compression library provides in-memory compression and + decompression functions, including integrity checks of the uncompressed data. + This version of the library supports only one compression method (deflation) + but other algorithms will be added later and will have the same stream + interface. + + Compression can be done in a single step if the buffers are large enough, + or can be done by repeated calls of the compression function. In the latter + case, the application must provide more input and/or consume the output + (providing more output space) before each call. + + The compressed data format used by default by the in-memory functions is + the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped + around a deflate stream, which is itself documented in RFC 1951. + + The library also supports reading and writing files in gzip (.gz) format + with an interface similar to that of stdio using the functions that start + with "gz". The gzip format is different from the zlib format. gzip is a + gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. + + This library can optionally read and write gzip streams in memory as well. + + The zlib format was designed to be compact and fast for use in memory + and on communications channels. The gzip format was designed for single- + file compression on file systems, has a larger header than zlib to maintain + directory information, and uses a different, slower check method than zlib. + + The library does not install any signal handler. The decoder checks + the consistency of the compressed data, so the library should never crash + even for corrupted input. +*/ + +typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); +typedef void (*free_func) OF((voidpf opaque, voidpf address)); + +struct internal_state; + +typedef struct z_stream_s { + Bytef *next_in; /* next input byte */ + uInt avail_in; /* number of bytes available at next_in */ + uLong total_in; /* total nb of input bytes read so far */ + + Bytef *next_out; /* next output byte should be put there */ + uInt avail_out; /* remaining free space at next_out */ + uLong total_out; /* total nb of bytes output so far */ + + char *msg; /* last error message, NULL if no error */ + struct internal_state FAR *state; /* not visible by applications */ + + alloc_func zalloc; /* used to allocate the internal state */ + free_func zfree; /* used to free the internal state */ + voidpf opaque; /* private data object passed to zalloc and zfree */ + + int data_type; /* best guess about the data type: binary or text */ + uLong adler; /* adler32 value of the uncompressed data */ + uLong reserved; /* reserved for future use */ +} z_stream; + +typedef z_stream FAR *z_streamp; + +/* + gzip header information passed to and from zlib routines. See RFC 1952 + for more details on the meanings of these fields. +*/ +typedef struct gz_header_s { + int text; /* true if compressed data believed to be text */ + uLong time; /* modification time */ + int xflags; /* extra flags (not used when writing a gzip file) */ + int os; /* operating system */ + Bytef *extra; /* pointer to extra field or Z_NULL if none */ + uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ + uInt extra_max; /* space at extra (only when reading header) */ + Bytef *name; /* pointer to zero-terminated filename or Z_NULL */ + uInt name_max; /* space at name (only when reading header) */ + Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ + uInt comm_max; /* space at comment (only when reading header) */ + int hcrc; /* true if there was or will be a header crc */ + int done; /* true when done reading gzip header (not used + when writing a gzip file) */ +} gz_header; + +typedef gz_header FAR *gz_headerp; + +/* + The application must update next_in and avail_in when avail_in has dropped + to zero. It must update next_out and avail_out when avail_out has dropped + to zero. The application must initialize zalloc, zfree and opaque before + calling the init function. All other fields are set by the compression + library and must not be updated by the application. + + The opaque value provided by the application will be passed as the first + parameter for calls of zalloc and zfree. This can be useful for custom + memory management. The compression library attaches no meaning to the + opaque value. + + zalloc must return Z_NULL if there is not enough memory for the object. + If zlib is used in a multi-threaded application, zalloc and zfree must be + thread safe. + + On 16-bit systems, the functions zalloc and zfree must be able to allocate + exactly 65,536 bytes, but will not be required to allocate more than this if + the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, pointers + returned by zalloc for objects of exactly 65,536 bytes *must* have their + offset normalized to zero. The default allocation function provided by this + library ensures this (see zutil.c). To reduce memory requirements and avoid + any allocation of 64K objects, at the expense of compression ratio, compile + the library with -DMAX_WBITS=14 (see zconf.h). + + The fields total_in and total_out can be used for statistics or progress + reports. After compression, total_in holds the total size of the + uncompressed data and may be saved for use in the decompressor (particularly + if the decompressor wants to decompress everything in a single step). +*/ + + /* constants */ + +#define Z_NO_FLUSH 0 +#define Z_PARTIAL_FLUSH 1 +#define Z_SYNC_FLUSH 2 +#define Z_FULL_FLUSH 3 +#define Z_FINISH 4 +#define Z_BLOCK 5 +#define Z_TREES 6 +/* Allowed flush values; see deflate() and inflate() below for details */ + +#define Z_OK 0 +#define Z_STREAM_END 1 +#define Z_NEED_DICT 2 +#define Z_ERRNO (-1) +#define Z_STREAM_ERROR (-2) +#define Z_DATA_ERROR (-3) +#define Z_MEM_ERROR (-4) +#define Z_BUF_ERROR (-5) +#define Z_VERSION_ERROR (-6) +/* Return codes for the compression/decompression functions. Negative values + * are errors, positive values are used for special but normal events. + */ + +#define Z_NO_COMPRESSION 0 +#define Z_BEST_SPEED 1 +#define Z_BEST_COMPRESSION 9 +#define Z_DEFAULT_COMPRESSION (-1) +/* compression levels */ + +#define Z_FILTERED 1 +#define Z_HUFFMAN_ONLY 2 +#define Z_RLE 3 +#define Z_FIXED 4 +#define Z_DEFAULT_STRATEGY 0 +/* compression strategy; see deflateInit2() below for details */ + +#define Z_BINARY 0 +#define Z_TEXT 1 +#define Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ +#define Z_UNKNOWN 2 +/* Possible values of the data_type field (though see inflate()) */ + +#define Z_DEFLATED 8 +/* The deflate compression method (the only one supported in this version) */ + +#define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ + +#define zlib_version zlibVersion() +/* for compatibility with versions < 1.0.2 */ + + + /* basic functions */ + +ZEXTERN const char * ZEXPORT zlibVersion OF((void)); +/* The application can compare zlibVersion and ZLIB_VERSION for consistency. + If the first character differs, the library code actually used is not + compatible with the zlib.h header file used by the application. This check + is automatically made by deflateInit and inflateInit. + */ + +/* +ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); + + Initializes the internal stream state for compression. The fields + zalloc, zfree and opaque must be initialized before by the caller. If + zalloc and zfree are set to Z_NULL, deflateInit updates them to use default + allocation functions. + + The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: + 1 gives best speed, 9 gives best compression, 0 gives no compression at all + (the input data is simply copied a block at a time). Z_DEFAULT_COMPRESSION + requests a default compromise between speed and compression (currently + equivalent to level 6). + + deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_STREAM_ERROR if level is not a valid compression level, or + Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible + with the version assumed by the caller (ZLIB_VERSION). msg is set to null + if there is no error message. deflateInit does not perform any compression: + this will be done by deflate(). +*/ + + +ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); +/* + deflate compresses as much data as possible, and stops when the input + buffer becomes empty or the output buffer becomes full. It may introduce + some output latency (reading input without producing any output) except when + forced to flush. + + The detailed semantics are as follows. deflate performs one or both of the + following actions: + + - Compress more input starting at next_in and update next_in and avail_in + accordingly. If not all input can be processed (because there is not + enough room in the output buffer), next_in and avail_in are updated and + processing will resume at this point for the next call of deflate(). + + - Provide more output starting at next_out and update next_out and avail_out + accordingly. This action is forced if the parameter flush is nonzero. + Forcing flush frequently degrades the compression ratio, so this parameter + should be set only when necessary (in interactive applications). Some + output may be provided even if flush is not set. + + Before the call of deflate(), the application should ensure that at least + one of the actions is possible, by providing more input and consuming more + output, and updating avail_in or avail_out accordingly; avail_out should + never be zero before the call. The application can consume the compressed + output when it wants, for example when the output buffer is full (avail_out + == 0), or after each call of deflate(). If deflate returns Z_OK and with + zero avail_out, it must be called again after making room in the output + buffer because there might be more output pending. + + Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to + decide how much data to accumulate before producing output, which + maximizes compression. + + If the parameter flush is set to Z_SYNC_FLUSH, all pending output is + flushed to the output buffer and the output is aligned on a byte boundary, so + that the decompressor can get all input data available so far. (In + particular avail_in is zero after the call if enough output space has been + provided before the call.) Flushing may degrade compression for some + compression algorithms and so it should be used only when necessary. This + completes the current deflate block and follows it with an empty stored block + that is three bits plus filler bits to the next byte, followed by four bytes + (00 00 ff ff). + + If flush is set to Z_PARTIAL_FLUSH, all pending output is flushed to the + output buffer, but the output is not aligned to a byte boundary. All of the + input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. + This completes the current deflate block and follows it with an empty fixed + codes block that is 10 bits long. This assures that enough bytes are output + for the decompressor to finish the block before the empty fixed code + block. + + If flush is set to Z_BLOCK, a deflate block is completed and emitted, as + for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to + seven bits of the current block are held to be written as the next byte after + the next deflate block is completed. In this case, the decompressor may not + be provided enough bits at this point to complete decompression of + the data provided so far to the compressor. It may need to wait for the next + block to be emitted. This is for advanced applications that control + the emission of deflate blocks. + + If flush is set to Z_FULL_FLUSH, all output is flushed as with + Z_SYNC_FLUSH, and the compression state is reset so that decompression can + restart from this point if previous compressed data has been damaged or if + random access is desired. Using Z_FULL_FLUSH too often can seriously degrade + compression. + + If deflate returns with avail_out == 0, this function must be called again + with the same value of the flush parameter and more output space (updated + avail_out), until the flush is complete (deflate returns with nonzero + avail_out). For Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that + avail_out is greater than six to avoid repeated flush markers due to + avail_out == 0 on return. + + If the parameter flush is set to Z_FINISH, pending input is processed, + pending output is flushed and deflate returns with Z_STREAM_END if there was + enough output space; if deflate returns with Z_OK, this function must be + called again with Z_FINISH and more output space (updated avail_out) but no + more input data, until it returns with Z_STREAM_END or an error. After + deflate has returned Z_STREAM_END, the only possible operations on the stream + are deflateReset or deflateEnd. + + Z_FINISH can be used immediately after deflateInit if all the compression + is to be done in a single step. In this case, avail_out must be at least the + value returned by deflateBound (see below). If deflate does not return + Z_STREAM_END, then it must be called again as described above. + + deflate() sets strm->adler to the adler32 checksum of all input read + so far (that is, total_in bytes). + + deflate() may update strm->data_type if it can make a good guess about + the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered + binary. This field is only for information purposes and does not affect the + compression algorithm in any manner. + + deflate() returns Z_OK if some progress has been made (more input + processed or more output produced), Z_STREAM_END if all input has been + consumed and all output has been produced (only when flush is set to + Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example + if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible + (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not + fatal, and deflate() can be called again with more input and more output + space to continue compressing. +*/ + + +ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); +/* + All dynamically allocated data structures for this stream are freed. + This function discards any unprocessed input and does not flush any pending + output. + + deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the + stream state was inconsistent, Z_DATA_ERROR if the stream was freed + prematurely (some input or output was discarded). In the error case, msg + may be set but then points to a static string (which must not be + deallocated). +*/ + + +/* +ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); + + Initializes the internal stream state for decompression. The fields + next_in, avail_in, zalloc, zfree and opaque must be initialized before by + the caller. If next_in is not Z_NULL and avail_in is large enough (the + exact value depends on the compression method), inflateInit determines the + compression method from the zlib header and allocates all data structures + accordingly; otherwise the allocation will be deferred to the first call of + inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to + use default allocation functions. + + inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_VERSION_ERROR if the zlib library version is incompatible with the + version assumed by the caller, or Z_STREAM_ERROR if the parameters are + invalid, such as a null pointer to the structure. msg is set to null if + there is no error message. inflateInit does not perform any decompression + apart from possibly reading the zlib header if present: actual decompression + will be done by inflate(). (So next_in and avail_in may be modified, but + next_out and avail_out are unused and unchanged.) The current implementation + of inflateInit() does not process any header information -- that is deferred + until inflate() is called. +*/ + + +ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); +/* + inflate decompresses as much data as possible, and stops when the input + buffer becomes empty or the output buffer becomes full. It may introduce + some output latency (reading input without producing any output) except when + forced to flush. + + The detailed semantics are as follows. inflate performs one or both of the + following actions: + + - Decompress more input starting at next_in and update next_in and avail_in + accordingly. If not all input can be processed (because there is not + enough room in the output buffer), next_in is updated and processing will + resume at this point for the next call of inflate(). + + - Provide more output starting at next_out and update next_out and avail_out + accordingly. inflate() provides as much output as possible, until there is + no more input data or no more space in the output buffer (see below about + the flush parameter). + + Before the call of inflate(), the application should ensure that at least + one of the actions is possible, by providing more input and consuming more + output, and updating the next_* and avail_* values accordingly. The + application can consume the uncompressed output when it wants, for example + when the output buffer is full (avail_out == 0), or after each call of + inflate(). If inflate returns Z_OK and with zero avail_out, it must be + called again after making room in the output buffer because there might be + more output pending. + + The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, + Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much + output as possible to the output buffer. Z_BLOCK requests that inflate() + stop if and when it gets to the next deflate block boundary. When decoding + the zlib or gzip format, this will cause inflate() to return immediately + after the header and before the first block. When doing a raw inflate, + inflate() will go ahead and process the first block, and will return when it + gets to the end of that block, or when it runs out of data. + + The Z_BLOCK option assists in appending to or combining deflate streams. + Also to assist in this, on return inflate() will set strm->data_type to the + number of unused bits in the last byte taken from strm->next_in, plus 64 if + inflate() is currently decoding the last block in the deflate stream, plus + 128 if inflate() returned immediately after decoding an end-of-block code or + decoding the complete header up to just before the first byte of the deflate + stream. The end-of-block will not be indicated until all of the uncompressed + data from that block has been written to strm->next_out. The number of + unused bits may in general be greater than seven, except when bit 7 of + data_type is set, in which case the number of unused bits will be less than + eight. data_type is set as noted here every time inflate() returns for all + flush options, and so can be used to determine the amount of currently + consumed input in bits. + + The Z_TREES option behaves as Z_BLOCK does, but it also returns when the + end of each deflate block header is reached, before any actual data in that + block is decoded. This allows the caller to determine the length of the + deflate block header for later use in random access within a deflate block. + 256 is added to the value of strm->data_type when inflate() returns + immediately after reaching the end of the deflate block header. + + inflate() should normally be called until it returns Z_STREAM_END or an + error. However if all decompression is to be performed in a single step (a + single call of inflate), the parameter flush should be set to Z_FINISH. In + this case all pending input is processed and all pending output is flushed; + avail_out must be large enough to hold all the uncompressed data. (The size + of the uncompressed data may have been saved by the compressor for this + purpose.) The next operation on this stream must be inflateEnd to deallocate + the decompression state. The use of Z_FINISH is never required, but can be + used to inform inflate that a faster approach may be used for the single + inflate() call. + + In this implementation, inflate() always flushes as much output as + possible to the output buffer, and always uses the faster approach on the + first call. So the only effect of the flush parameter in this implementation + is on the return value of inflate(), as noted below, or when it returns early + because Z_BLOCK or Z_TREES is used. + + If a preset dictionary is needed after this call (see inflateSetDictionary + below), inflate sets strm->adler to the adler32 checksum of the dictionary + chosen by the compressor and returns Z_NEED_DICT; otherwise it sets + strm->adler to the adler32 checksum of all output produced so far (that is, + total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described + below. At the end of the stream, inflate() checks that its computed adler32 + checksum is equal to that saved by the compressor and returns Z_STREAM_END + only if the checksum is correct. + + inflate() can decompress and check either zlib-wrapped or gzip-wrapped + deflate data. The header type is detected automatically, if requested when + initializing with inflateInit2(). Any information contained in the gzip + header is not retained, so applications that need that information should + instead use raw inflate, see inflateInit2() below, or inflateBack() and + perform their own processing of the gzip header and trailer. + + inflate() returns Z_OK if some progress has been made (more input processed + or more output produced), Z_STREAM_END if the end of the compressed data has + been reached and all uncompressed output has been produced, Z_NEED_DICT if a + preset dictionary is needed at this point, Z_DATA_ERROR if the input data was + corrupted (input stream not conforming to the zlib format or incorrect check + value), Z_STREAM_ERROR if the stream structure was inconsistent (for example + next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory, + Z_BUF_ERROR if no progress is possible or if there was not enough room in the + output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and + inflate() can be called again with more input and more output space to + continue decompressing. If Z_DATA_ERROR is returned, the application may + then call inflateSync() to look for a good compression block if a partial + recovery of the data is desired. +*/ + + +ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); +/* + All dynamically allocated data structures for this stream are freed. + This function discards any unprocessed input and does not flush any pending + output. + + inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state + was inconsistent. In the error case, msg may be set but then points to a + static string (which must not be deallocated). +*/ + + + /* Advanced functions */ + +/* + The following functions are needed only in some special applications. +*/ + +/* +ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, + int level, + int method, + int windowBits, + int memLevel, + int strategy)); + + This is another version of deflateInit with more compression options. The + fields next_in, zalloc, zfree and opaque must be initialized before by the + caller. + + The method parameter is the compression method. It must be Z_DEFLATED in + this version of the library. + + The windowBits parameter is the base two logarithm of the window size + (the size of the history buffer). It should be in the range 8..15 for this + version of the library. Larger values of this parameter result in better + compression at the expense of memory usage. The default value is 15 if + deflateInit is used instead. + + windowBits can also be -8..-15 for raw deflate. In this case, -windowBits + determines the window size. deflate() will then generate raw deflate data + with no zlib header or trailer, and will not compute an adler32 check value. + + windowBits can also be greater than 15 for optional gzip encoding. Add + 16 to windowBits to write a simple gzip header and trailer around the + compressed data instead of a zlib wrapper. The gzip header will have no + filename, no extra data, no comment, no modification time (set to zero), no + header crc, and the operating system will be set to 255 (unknown). If a + gzip stream is being written, strm->adler is a crc32 instead of an adler32. + + The memLevel parameter specifies how much memory should be allocated + for the internal compression state. memLevel=1 uses minimum memory but is + slow and reduces compression ratio; memLevel=9 uses maximum memory for + optimal speed. The default value is 8. See zconf.h for total memory usage + as a function of windowBits and memLevel. + + The strategy parameter is used to tune the compression algorithm. Use the + value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a + filter (or predictor), Z_HUFFMAN_ONLY to force Huffman encoding only (no + string match), or Z_RLE to limit match distances to one (run-length + encoding). Filtered data consists mostly of small values with a somewhat + random distribution. In this case, the compression algorithm is tuned to + compress them better. The effect of Z_FILTERED is to force more Huffman + coding and less string matching; it is somewhat intermediate between + Z_DEFAULT_STRATEGY and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as + fast as Z_HUFFMAN_ONLY, but give better compression for PNG image data. The + strategy parameter only affects the compression ratio but not the + correctness of the compressed output even if it is not set appropriately. + Z_FIXED prevents the use of dynamic Huffman codes, allowing for a simpler + decoder for special applications. + + deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_STREAM_ERROR if any parameter is invalid (such as an invalid + method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is + incompatible with the version assumed by the caller (ZLIB_VERSION). msg is + set to null if there is no error message. deflateInit2 does not perform any + compression: this will be done by deflate(). +*/ + +ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, + const Bytef *dictionary, + uInt dictLength)); +/* + Initializes the compression dictionary from the specified byte sequence + without producing any compressed output. This function must be called + immediately after deflateInit, deflateInit2 or deflateReset, before any call + of deflate. The compressor and decompressor must use exactly the same + dictionary (see inflateSetDictionary). + + The dictionary should consist of strings (byte sequences) that are likely + to be encountered later in the data to be compressed, with the most commonly + used strings preferably placed toward the end of the dictionary. Using a + dictionary is most useful when the data to be compressed is short and can be + predicted with good accuracy; the data can then be compressed better than + with the default empty dictionary. + + Depending on the size of the compression data structures selected by + deflateInit or deflateInit2, a part of the dictionary may in effect be + discarded, for example, if the dictionary is larger than the window size + provided in deflateInit or deflateInit2. So the strings most likely to be + used should be put at the end of the dictionary, not at the front. In + addition, the current implementation of deflate will use, at most, the window + size minus 262 bytes of the provided dictionary. + + Upon return of this function, strm->adler is set to the adler32 value + of the dictionary; the decompressor may later use this value to determine + which dictionary has been used by the compressor. (The adler32 value + applies to the whole dictionary even if only a subset of the dictionary is + actually used by the compressor.) If a raw deflate was requested, then the + adler32 value is not computed and strm->adler is not set. + + deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a + parameter is invalid (for example, dictionary being Z_NULL) or the stream state is + inconsistent (for example if deflate has already been called for this stream + or if the compression method is bsort). deflateSetDictionary does not + perform any compression: this will be done by deflate(). +*/ + +ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, + z_streamp source)); +/* + Sets the destination stream as a complete copy of the source stream. + + This function can be useful when several compression strategies will be + tried, for example when there are several ways of pre-processing the input + data with a filter. The streams that will be discarded should then be freed + by calling deflateEnd. Note that deflateCopy duplicates the internal + compression state which can be quite large, so this strategy is slow and can + consume lots of memory. + + deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_STREAM_ERROR if the source stream state was inconsistent + (such as zalloc being Z_NULL). msg is left unchanged in both source and + destination. +*/ + +ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); +/* + This function is equivalent to deflateEnd followed by deflateInit, + but does not free and reallocate all the internal compression state. The + stream will keep the same compression level and any other attributes that + may have been set by deflateInit2. + + deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent (such as zalloc or state being Z_NULL). +*/ + +ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, + int level, + int strategy)); +/* + Dynamically update the compression level and compression strategy. The + interpretation of level and strategy is as in deflateInit2. This can be + used to switch between compression and straight copy of the input data, or + to switch to a different kind of input data requiring a different strategy. + If the compression level is changed, the input available so far is + compressed with the old level (and may be flushed); the new level will take + effect only at the next call of deflate(). + + Before the call of deflateParams, the stream state must be set as for + a call of deflate(), since the currently available input may have to be + compressed and flushed. In particular, strm->avail_out must be nonzero. + + deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source + stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR if + strm->avail_out was zero. +*/ + +ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm, + int good_length, + int max_lazy, + int nice_length, + int max_chain)); +/* + Fine-tune deflates internal compression parameters. This should only be + used by someone who understands the algorithm used by zlib's deflate for + searching for the best matching string, and even then only by the most + fanatic optimizer trying to squeeze out the last compressed bit for their + specific input data. Read the deflate.c source code for the meaning of the + max_lazy, good_length, nice_length, and max_chain parameters. + + deflateTune() can be called after deflateInit() or deflateInit2(), and + returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. + */ + +ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, + uLong sourceLen)); +/* + deflateBound() returns an upper bound on the compressed size after + deflation of sourceLen bytes. It must be called after deflateInit() or + deflateInit2(), and after deflateSetHeader(), if used. This would be used + to allocate an output buffer for deflation in a single pass, and so would be + called before deflate(). +*/ + +ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, + int bits, + int value)); +/* + deflatePrime() inserts bits in the deflate output stream. The intent + is that this function is used to start off the deflate output with the bits + leftover from a previous deflate stream when appending to it. As such, this + function can only be used for raw deflate, and must be used before the first + deflate() call after a deflateInit2() or deflateReset(). bits must be less + than or equal to 16, and that many of the least significant bits of value + will be inserted in the output. + + deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, + gz_headerp head)); +/* + deflateSetHeader() provides gzip header information for when a gzip + stream is requested by deflateInit2(). deflateSetHeader() may be called + after deflateInit2() or deflateReset() and before the first call of + deflate(). The text, time, os, extra field, name, and comment information + in the provided gz_header structure are written to the gzip header (xflag is + ignored -- the extra flags are set according to the compression level). The + caller must assure that, if not Z_NULL, name and comment are terminated with + a zero byte, and that if extra is not Z_NULL, that extra_len bytes are + available there. If hcrc is true, a gzip header crc is included. Note that + the current versions of the command-line version of gzip (up through version + 1.3.x) do not support header crc's, and will report that it is a "multi-part + gzip file" and give up. + + If deflateSetHeader is not used, the default gzip header has text false, + the time set to zero, and os set to 255, with no extra, name, or comment + fields. The gzip header is returned to the default state by deflateReset(). + + deflateSetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +/* +ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, + int windowBits)); + + This is another version of inflateInit with an extra parameter. The + fields next_in, avail_in, zalloc, zfree and opaque must be initialized + before by the caller. + + The windowBits parameter is the base two logarithm of the maximum window + size (the size of the history buffer). It should be in the range 8..15 for + this version of the library. The default value is 15 if inflateInit is used + instead. windowBits must be greater than or equal to the windowBits value + provided to deflateInit2() while compressing, or it must be equal to 15 if + deflateInit2() was not used. If a compressed stream with a larger window + size is given as input, inflate() will return with the error code + Z_DATA_ERROR instead of trying to allocate a larger window. + + windowBits can also be zero to request that inflate use the window size in + the zlib header of the compressed stream. + + windowBits can also be -8..-15 for raw inflate. In this case, -windowBits + determines the window size. inflate() will then process raw deflate data, + not looking for a zlib or gzip header, not generating a check value, and not + looking for any check values for comparison at the end of the stream. This + is for use with other formats that use the deflate compressed data format + such as zip. Those formats provide their own check values. If a custom + format is developed using the raw deflate format for compressed data, it is + recommended that a check value such as an adler32 or a crc32 be applied to + the uncompressed data as is done in the zlib, gzip, and zip formats. For + most applications, the zlib format should be used as is. Note that comments + above on the use in deflateInit2() applies to the magnitude of windowBits. + + windowBits can also be greater than 15 for optional gzip decoding. Add + 32 to windowBits to enable zlib and gzip decoding with automatic header + detection, or add 16 to decode only the gzip format (the zlib format will + return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a + crc32 instead of an adler32. + + inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_VERSION_ERROR if the zlib library version is incompatible with the + version assumed by the caller, or Z_STREAM_ERROR if the parameters are + invalid, such as a null pointer to the structure. msg is set to null if + there is no error message. inflateInit2 does not perform any decompression + apart from possibly reading the zlib header if present: actual decompression + will be done by inflate(). (So next_in and avail_in may be modified, but + next_out and avail_out are unused and unchanged.) The current implementation + of inflateInit2() does not process any header information -- that is + deferred until inflate() is called. +*/ + +ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, + const Bytef *dictionary, + uInt dictLength)); +/* + Initializes the decompression dictionary from the specified uncompressed byte + sequence. This function must be called immediately after a call of inflate, + if that call returned Z_NEED_DICT. The dictionary chosen by the compressor + can be determined from the adler32 value returned by that call of inflate. + The compressor and decompressor must use exactly the same dictionary (see + deflateSetDictionary). For raw inflate, this function can be called + immediately after inflateInit2() or inflateReset() and before any call of + inflate() to set the dictionary. The application must make sure that the + dictionary that was used for compression is provided. + + inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a + parameter is invalid (for example, dictionary being Z_NULL) or the stream state is + inconsistent, Z_DATA_ERROR if the specified dictionary does not match the + expected one (incorrect adler32 value). inflateSetDictionary does not + perform any decompression: this will be done by subsequent calls of + inflate(). +*/ + +ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); +/* + Skips invalid compressed data until a full flush point (see above the + description of deflate with Z_FULL_FLUSH) can be found, or until all + available input is skipped. No output is provided. + + inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR + if no more input was provided, Z_DATA_ERROR if no flush point has been + found, or Z_STREAM_ERROR if the stream structure was inconsistent. In the + success case, the application may save the current current value of total_in + which indicates where valid compressed data was found. In the error case, + the application may repeatedly call inflateSync, providing more input each + time, until success or end of the input data. +*/ + +ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, + z_streamp source)); +/* + Sets the destination stream as a complete copy of the source stream. + + This function can be useful when randomly accessing a large stream. The + first pass through the stream can periodically record the inflate state, + allowing restarting inflate at those points when randomly accessing the + stream. + + inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_STREAM_ERROR if the source stream state was inconsistent + (such as zalloc being Z_NULL). msg is left unchanged in both source and + destination. +*/ + +ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); +/* + This function is equivalent to inflateEnd followed by inflateInit, + but does not free and reallocate all the internal decompression state. The + stream will keep attributes that may have been set by inflateInit2. + + inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent (such as zalloc or state being Z_NULL). +*/ + +ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, + int windowBits)); +/* + This function is the same as inflateReset, but it also permits changing + the wrap and window size requests. The windowBits parameter is interpreted + the same as it is for inflateInit2. + + inflateReset2 returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent (such as zalloc or state being Z_NULL), or if + the windowBits parameter is invalid. +*/ + +ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm, + int bits, + int value)); +/* + This function inserts bits in the inflate input stream. The intent is + that this function is used to start inflating at a bit position in the + middle of a byte. The provided bits will be used before any bytes are used + from next_in. This function should only be used with raw inflate, and + should be used before the first inflate() call after inflateInit2() or + inflateReset(). bits must be less than or equal to 16, and that many of the + least significant bits of value will be inserted in the input. + + If bits is negative, then the input stream bit buffer is emptied. Then + inflatePrime() can be called again to put bits in the buffer. This is used + to clear out bits leftover after feeding inflate a block description prior + to feeding inflate codes. + + inflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm)); +/* + This function returns two values, one in the lower 16 bits of the return + value, and the other in the remaining upper bits, obtained by shifting the + return value down 16 bits. If the upper value is -1 and the lower value is + zero, then inflate() is currently decoding information outside of a block. + If the upper value is -1 and the lower value is nonzero, then inflate is in + the middle of a stored block, with the lower value equaling the number of + bytes from the input remaining to copy. If the upper value is not -1, then + it is the number of bits back from the current bit position in the input of + the code (literal or length/distance pair) currently being processed. In + that case the lower value is the number of bytes already emitted for that + code. + + A code is being processed if inflate is waiting for more input to complete + decoding of the code, or if it has completed decoding but is waiting for + more output space to write the literal or match data. + + inflateMark() is used to mark locations in the input data for random + access, which may be at bit positions, and to note those cases where the + output of a code may span boundaries of random access blocks. The current + location in the input stream can be determined from avail_in and data_type + as noted in the description for the Z_BLOCK flush parameter for inflate. + + inflateMark returns the value noted above or -1 << 16 if the provided + source stream state was inconsistent. +*/ + +ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm, + gz_headerp head)); +/* + inflateGetHeader() requests that gzip header information be stored in the + provided gz_header structure. inflateGetHeader() may be called after + inflateInit2() or inflateReset(), and before the first call of inflate(). + As inflate() processes the gzip stream, head->done is zero until the header + is completed, at which time head->done is set to one. If a zlib stream is + being decoded, then head->done is set to -1 to indicate that there will be + no gzip header information forthcoming. Note that Z_BLOCK or Z_TREES can be + used to force inflate() to return immediately after header processing is + complete and before any actual data is decompressed. + + The text, time, xflags, and os fields are filled in with the gzip header + contents. hcrc is set to true if there is a header CRC. (The header CRC + was valid if done is set to one.) If extra is not Z_NULL, then extra_max + contains the maximum number of bytes to write to extra. Once done is true, + extra_len contains the actual extra field length, and extra contains the + extra field, or that field truncated if extra_max is less than extra_len. + If name is not Z_NULL, then up to name_max characters are written there, + terminated with a zero unless the length is greater than name_max. If + comment is not Z_NULL, then up to comm_max characters are written there, + terminated with a zero unless the length is greater than comm_max. When any + of extra, name, or comment are not Z_NULL and the respective field is not + present in the header, then that field is set to Z_NULL to signal its + absence. This allows the use of deflateSetHeader() with the returned + structure to duplicate the header. However if those fields are set to + allocated memory, then the application must save those pointers + elsewhere so that they can be eventually freed. + + If inflateGetHeader is not used, then the header information is simply + discarded. The header is always checked for validity, including the header + CRC if present. inflateReset() will reset the process to discard the header + information. The application would need to call inflateGetHeader() again to + retrieve the header from the next gzip stream. + + inflateGetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +/* +ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits, + unsigned char FAR *window)); + + Initialize the internal stream state for decompression using inflateBack() + calls. The fields zalloc, zfree and opaque in strm must be initialized + before the call. If zalloc and zfree are Z_NULL, then the default library- + derived memory allocation routines are used. windowBits is the base two + logarithm of the window size, in the range 8..15. window is a caller + supplied buffer of that size. Except for special applications where it is + assured that deflate was used with small window sizes, windowBits must be 15 + and a 32 KB window must be supplied to be able to decompress general + deflate streams. + + See inflateBack() for the usage of these routines. + + inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of + the paramaters are invalid, Z_MEM_ERROR if the internal state could not be + allocated, or Z_VERSION_ERROR if the version of the library does not match + the version of the header file. +*/ + +typedef unsigned (*in_func) OF((void FAR *, unsigned char FAR * FAR *)); +typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); + +ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, + in_func in, void FAR *in_desc, + out_func out, void FAR *out_desc)); +/* + inflateBack() does a raw inflate with a single call using a call-back + interface for input and output. This is more efficient than inflate() for + file i/o applications in that it avoids copying between the output and the + sliding window by simply making the window itself the output buffer. This + function trusts the application to not change the output buffer passed by + the output function, at least until inflateBack() returns. + + inflateBackInit() must be called first to allocate the internal state + and to initialize the state with the user-provided window buffer. + inflateBack() may then be used multiple times to inflate a complete, raw + deflate stream with each call. inflateBackEnd() is then called to free the + allocated state. + + A raw deflate stream is one with no zlib or gzip header or trailer. + This routine would normally be used in a utility that reads zip or gzip + files and writes out uncompressed files. The utility would decode the + header and process the trailer on its own, hence this routine expects only + the raw deflate stream to decompress. This is different from the normal + behavior of inflate(), which expects either a zlib or gzip header and + trailer around the deflate stream. + + inflateBack() uses two subroutines supplied by the caller that are then + called by inflateBack() for input and output. inflateBack() calls those + routines until it reads a complete deflate stream and writes out all of the + uncompressed data, or until it encounters an error. The function's + parameters and return types are defined above in the in_func and out_func + typedefs. inflateBack() will call in(in_desc, &buf) which should return the + number of bytes of provided input, and a pointer to that input in buf. If + there is no input available, in() must return zero--buf is ignored in that + case--and inflateBack() will return a buffer error. inflateBack() will call + out(out_desc, buf, len) to write the uncompressed data buf[0..len-1]. out() + should return zero on success, or nonzero on failure. If out() returns + nonzero, inflateBack() will return with an error. Neither in() nor out() + are permitted to change the contents of the window provided to + inflateBackInit(), which is also the buffer that out() uses to write from. + The length written by out() will be at most the window size. Any nonzero + amount of input may be provided by in(). + + For convenience, inflateBack() can be provided input on the first call by + setting strm->next_in and strm->avail_in. If that input is exhausted, then + in() will be called. Therefore strm->next_in must be initialized before + calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called + immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in + must also be initialized, and then if strm->avail_in is not zero, input will + initially be taken from strm->next_in[0 .. strm->avail_in - 1]. + + The in_desc and out_desc parameters of inflateBack() are passed as the + first parameter of in() and out() respectively when they are called. These + descriptors can be optionally used to pass any information that the caller- + supplied in() and out() functions need to do their job. + + On return, inflateBack() will set strm->next_in and strm->avail_in to + pass back any unused input that was provided by the last in() call. The + return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR + if in() or out() returned an error, Z_DATA_ERROR if there was a format error + in the deflate stream (in which case strm->msg is set to indicate the nature + of the error), or Z_STREAM_ERROR if the stream was not properly initialized. + For Z_BUF_ERROR, an input or output error can be distinguished + using strm->next_in which will be Z_NULL only if in() returned an error. If + strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning + nonzero. (in() will always be called before out(), so strm->next_in is + assured to be defined if out() returns nonzero.) Note that inflateBack() + cannot return Z_OK. +*/ + +ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm)); +/* + All memory allocated by inflateBackInit() is freed. + + inflateBackEnd() returns Z_OK on success, or Z_STREAM_ERROR if the stream + state was inconsistent. +*/ + +ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void)); +/* Return flags indicating compile-time options. + + Type sizes, two bits each, 00 = 16 bits, 01 = 32, 10 = 64, 11 = other: + 1.0: size of uInt + 3.2: size of uLong + 5.4: size of voidpf (pointer) + 7.6: size of z_off_t + + Compiler, assembler, and debug options: + 8: DEBUG + 9: ASMV or ASMINF -- use ASM code + 10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention + 11: 0 (reserved) + + One-time table building (smaller code, but not thread-safe if true): + 12: BUILDFIXED -- build static block decoding tables when needed + 13: DYNAMIC_CRC_TABLE -- build CRC calculation tables when needed + 14,15: 0 (reserved) + + Library content (indicates missing functionality): + 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking + deflate code when not needed) + 17: NO_GZIP -- deflate cannot write gzip streams, and inflate cannot detect + and decode gzip streams (to avoid linking crc code) + 18-19: 0 (reserved) + + Operation variations (changes in library functionality): + 20: PKZIP_BUG_WORKAROUND -- slightly more permissive inflate + 21: FASTEST -- deflate algorithm with only one, lowest compression level + 22,23: 0 (reserved) + + The sprintf variant used by gzprintf (zero is best): + 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format + 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! + 26: 0 = returns value, 1 = void -- 1 means inferred string length returned + + Remainder: + 27-31: 0 (reserved) + */ + + + /* utility functions */ + +/* + The following utility functions are implemented on top of the basic + stream-oriented functions. To simplify the interface, some default options + are assumed (compression level and memory usage, standard memory allocation + functions). The source code of these utility functions can be modified if + you need special options. +*/ + +ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, + const Bytef *source, uLong sourceLen)); +/* + Compresses the source buffer into the destination buffer. sourceLen is + the byte length of the source buffer. Upon entry, destLen is the total size + of the destination buffer, which must be at least the value returned by + compressBound(sourceLen). Upon exit, destLen is the actual size of the + compressed buffer. + + compress returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_BUF_ERROR if there was not enough room in the output + buffer. +*/ + +ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, + const Bytef *source, uLong sourceLen, + int level)); +/* + Compresses the source buffer into the destination buffer. The level + parameter has the same meaning as in deflateInit. sourceLen is the byte + length of the source buffer. Upon entry, destLen is the total size of the + destination buffer, which must be at least the value returned by + compressBound(sourceLen). Upon exit, destLen is the actual size of the + compressed buffer. + + compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_BUF_ERROR if there was not enough room in the output buffer, + Z_STREAM_ERROR if the level parameter is invalid. +*/ + +ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); +/* + compressBound() returns an upper bound on the compressed size after + compress() or compress2() on sourceLen bytes. It would be used before a + compress() or compress2() call to allocate the destination buffer. +*/ + +ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, + const Bytef *source, uLong sourceLen)); +/* + Decompresses the source buffer into the destination buffer. sourceLen is + the byte length of the source buffer. Upon entry, destLen is the total size + of the destination buffer, which must be large enough to hold the entire + uncompressed data. (The size of the uncompressed data must have been saved + previously by the compressor and transmitted to the decompressor by some + mechanism outside the scope of this compression library.) Upon exit, destLen + is the actual size of the uncompressed buffer. + + uncompress returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_BUF_ERROR if there was not enough room in the output + buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. +*/ + + + /* gzip file access functions */ + +/* + This library supports reading and writing files in gzip (.gz) format with + an interface similar to that of stdio, using the functions that start with + "gz". The gzip format is different from the zlib format. gzip is a gzip + wrapper, documented in RFC 1952, wrapped around a deflate stream. +*/ + +typedef voidp gzFile; /* opaque gzip file descriptor */ + +/* +ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); + + Opens a gzip (.gz) file for reading or writing. The mode parameter is as + in fopen ("rb" or "wb") but can also include a compression level ("wb9") or + a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only + compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F' + for fixed code compression as in "wb9F". (See the description of + deflateInit2 for more information about the strategy parameter.) Also "a" + can be used instead of "w" to request that the gzip stream that will be + written be appended to the file. "+" will result in an error, since reading + and writing to the same gzip file is not supported. + + gzopen can be used to read a file which is not in gzip format; in this + case gzread will directly read from the file without decompression. + + gzopen returns NULL if the file could not be opened, if there was + insufficient memory to allocate the gzFile state, or if an invalid mode was + specified (an 'r', 'w', or 'a' was not provided, or '+' was provided). + errno can be checked to determine whether the reason gzopen failed was that the + file could not be opened. +*/ + +ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); +/* + gzdopen associates a gzFile with the file descriptor fd. File descriptors + are obtained from calls like open, dup, creat, pipe or fileno (if the file + has been previously opened with fopen). The mode parameter is as in gzopen. + + The next call of gzclose on the returned gzFile will also close the file + descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor + fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, + mode);. The duplicated descriptor should be saved to avoid a leak, since + gzdopen does not close fd if it fails. + + gzdopen returns NULL if there was insufficient memory to allocate the + gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not + provided, or '+' was provided), or if fd is -1. The file descriptor is not + used until the next gz* read, write, seek, or close operation, so gzdopen + will not detect if fd is invalid (unless fd is -1). +*/ + +ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size)); +/* + Set the internal buffer size used by this library's functions. The + default buffer size is 8192 bytes. This function must be called after + gzopen() or gzdopen(), and before any other calls that read or write the + file. The buffer memory allocation is always deferred to the first read or + write. Two buffers are allocated, either both of the specified size when + writing, or one of the specified size and the other twice that size when + reading. A larger buffer size of, for example, 64 KB or 128 KB will + noticeably increase the speed of decompression (reading). + + The new buffer size also affects the maximum length for gzprintf(). + + gzbuffer() returns 0 on success, or -1 on failure, such as being called + too late. +*/ + +ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); +/* + Dynamically update the compression level or strategy. See the description + of deflateInit2 for the meaning of these parameters. + + gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not + opened for writing. +*/ + +ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); +/* + Reads the specified number of uncompressed bytes from the compressed file. If + the input file was not in gzip format, gzread copies the specified number of + bytes into the buffer. + + After reaching the end of a gzip stream in the input, gzread will continue + to read, looking for another gzip stream, or failing that, reading the rest + of the input file directly without decompression. The entire input file + will be read if gzread is called until it returns less than the requested + len. + + gzread returns the number of uncompressed bytes actually read, less than + len for end of file, or -1 for error. +*/ + +ZEXTERN int ZEXPORT gzwrite OF((gzFile file, + voidpc buf, unsigned len)); +/* + Writes the specified number of uncompressed bytes into the compressed file. + gzwrite returns the number of uncompressed bytes written or 0 for an + error. +*/ + +ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); +/* + Converts, formats, and writes the arguments to the compressed file under + control of the format string, as in fprintf. gzprintf returns the number of + uncompressed bytes actually written, or 0 for an error. The number of + uncompressed bytes written is limited to 8191, or one less than the buffer + size given to gzbuffer(). The caller should assure that this limit is not + exceeded. If it is exceeded, then gzprintf() will return an error (0) with + nothing written. In this case, there may also be a buffer overflow with + unpredictable consequences, which is possible only if zlib was compiled with + the insecure functions sprintf() or vsprintf() because the secure snprintf() + or vsnprintf() functions were not available. This can be determined using + zlibCompileFlags(). +*/ + +ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); +/* + Writes the specified null-terminated string to the compressed file, excluding + the terminating null character. + + gzputs returns the number of characters written, or -1 for an error. +*/ + +ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); +/* + Reads bytes from the compressed file until len-1 characters are read, or a + newline character is read and transferred to buf, or an end-of-file + condition is encountered. If any characters are read or if len == 1, the + string is terminated with a null character. If no characters are read due + to an end-of-file or len < 1, then the buffer is left untouched. + + gzgets returns buf which is a null-terminated string, or it returns NULL + for end-of-file or for an error. If there was an error, the contents at + buf are indeterminate. +*/ + +ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); +/* + Writes c, converted to an unsigned char, into the compressed file. gzputc + returns the value that was written, or -1 for an error. +*/ + +ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); +/* + Reads one byte from the compressed file. gzgetc returns this byte or -1 + for an end of file or error. +*/ + +ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); +/* + Push one character back onto the stream to be read as the first character + on the next read. At least one character of push-back is allowed. + gzungetc() returns the character pushed, or -1 on failure. gzungetc() will + fail if c is -1, and may fail if a character has been pushed but not read + yet. If gzungetc is used immediately after gzopen or gzdopen, at least the + output buffer size of pushed characters is allowed. (See gzbuffer above.) + The pushed character will be discarded if the stream is repositioned with + gzseek() or gzrewind(). +*/ + +ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); +/* + Flushes all pending output into the compressed file. The parameter flush + is as in the deflate() function. The return value is the zlib error number + (see function gzerror below). gzflush is only permitted when writing. + + If the flush parameter is Z_FINISH, the remaining data is written and the + gzip stream is completed in the output. If gzwrite() is called again, a new + gzip stream will be started in the output. gzread() is able to read such + concatenated gzip streams. + + gzflush should be called only when strictly necessary because it will + degrade compression if called too often. +*/ + +/* +ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, + z_off_t offset, int whence)); + + Sets the starting position for the next gzread or gzwrite on the specified + compressed file. The offset represents a number of bytes in the + uncompressed data stream. The whence parameter is defined as in lseek(2); + the value SEEK_END is not supported. + + If the file is opened for reading, this function is emulated but can be + extremely slow. If the file is opened for writing, only forward seeks are + supported; gzseek then compresses a sequence of zeroes up to the new + starting position. + + gzseek returns the resulting offset location as measured in bytes from + the beginning of the uncompressed stream, or -1 for an error, in + particular if the file is opened for writing and the new starting position + would be before the current position. +*/ + +ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); +/* + Rewinds the specified file. This function is supported only for reading. + + gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) +*/ + +/* +ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); + + Returns the starting position for the next gzread or gzwrite on the specified + compressed file. This position represents a number of bytes in the + uncompressed data stream, and is zero when starting, even if appending or + reading a gzip stream from the middle of a file using gzdopen(). + + gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) +*/ + +/* +ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file)); + + Returns the current offset in the file being read or written. This offset + includes the count of bytes that precede the gzip stream, for example when + appending or when using gzdopen() for reading. When reading, the offset + does not include as yet unused buffered input. This information can be used + for a progress indicator. On error, gzoffset() returns -1. +*/ + +ZEXTERN int ZEXPORT gzeof OF((gzFile file)); +/* + Returns true (1) if the end-of-file indicator has been set while reading, + false (0) otherwise. Note that the end-of-file indicator is set only if the + read tried to go past the end of the input, but came up short. Therefore, + just like feof(), gzeof() may return false even if there is no more data to + read, in the event that the last read request was for the exact number of + bytes remaining in the input file. This will happen if the input file size + is an exact multiple of the buffer size. + + If gzeof() returns true, then the read functions will return no more data, + unless the end-of-file indicator is reset by gzclearerr() and the input file + has grown since the previous end of file was detected. +*/ + +ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); +/* + Returns true (1) if file is being copied directly while reading, or false + (0) if file is a gzip stream being decompressed. This state can change from + false to true while reading the input file if the end of a gzip stream is + reached, but is followed by data that is not another gzip stream. + + If the input file is empty, gzdirect() will return true, since the input + does not contain a gzip stream. + + If gzdirect() is used immediately after gzopen() or gzdopen() it will + cause buffers to be allocated to allow reading the file to determine whether it + is a gzip file. Therefore if gzbuffer() is used, it should be called before + gzdirect(). +*/ + +ZEXTERN int ZEXPORT gzclose OF((gzFile file)); +/* + Flushes all pending output if necessary, closes the compressed file and + deallocates the (de)compression state. Note that once file is closed, you + cannot call gzerror with file, since its structures have been deallocated. + gzclose must not be called more than once on the same file, just as free + must not be called more than once on the same allocation. + + gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a + file operation error, or Z_OK on success. +*/ + +ZEXTERN int ZEXPORT gzclose_r OF((gzFile file)); +ZEXTERN int ZEXPORT gzclose_w OF((gzFile file)); +/* + Same as gzclose(), but gzclose_r() is only for use when reading, and + gzclose_w() is only for use when writing or appending. The advantage to + using these instead of gzclose() is that they avoid linking in zlib + compression or decompression code that is not used when only reading or only + writing respectively. If gzclose() is used, then both compression and + decompression code will be included the application when linking to a static + zlib library. +*/ + +ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); +/* + Returns the error message for the last error which occurred on the specified + compressed file. errnum is set to zlib error number. If an error occurred + in the file system and not in the compression library, errnum is set to + Z_ERRNO and the application may consult errno to get the exact error code. + + The application must not modify the returned string. Future calls to + this function may invalidate the previously returned string. If file is + closed, then the string previously returned by gzerror will no longer be + available. + + gzerror() should be used to distinguish errors from end-of-file for those + functions above that do not distinguish those cases in their return values. +*/ + +ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); +/* + Clears the error and end-of-file flags for file. This is analogous to the + clearerr() function in stdio. This is useful for continuing to read a gzip + file that is being written concurrently. +*/ + + + /* checksum functions */ + +/* + These functions are not related to compression but are exported + anyway because they might be useful in applications using the compression + library. +*/ + +ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); +/* + Update a running Adler-32 checksum with the bytes buf[0..len-1] and + return the updated checksum. If buf is Z_NULL, this function returns the + required initial value for the checksum. + + An Adler-32 checksum is almost as reliable as a CRC32 but can be computed + much faster. + + Usage example: + + uLong adler = adler32(0L, Z_NULL, 0); + + while (read_buffer(buffer, length) != EOF) { + adler = adler32(adler, buffer, length); + } + if (adler != original_adler) error(); +*/ + +/* +ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, + z_off_t len2)); + + Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 + and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for + each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of + seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. +*/ + +ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); +/* + Update a running CRC-32 with the bytes buf[0..len-1] and return the + updated CRC-32. If buf is Z_NULL, this function returns the required + initial value for the crc. Pre- and post-conditioning (one's + complement) is performed within this function so it should not be done by the + application. + + Usage example: + + uLong crc = crc32(0L, Z_NULL, 0); + + while (read_buffer(buffer, length) != EOF) { + crc = crc32(crc, buffer, length); + } + if (crc != original_crc) error(); +*/ + +/* +ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2)); + + Combine two CRC-32 check values into one. For two sequences of bytes, + seq1 and seq2 with lengths len1 and len2, CRC-32 check values were + calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32 + check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and + len2. +*/ + + + /* various hacks */ + +/* deflateInit and inflateInit are macros to allow checking the zlib version + * and the compiler's view of z_stream: + */ +ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, + const char *version, int stream_size)); +ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, + const char *version, int stream_size)); +ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, + int windowBits, int memLevel, + int strategy, const char *version, + int stream_size)); +ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, + const char *version, int stream_size)); +ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, + unsigned char FAR *window, + const char *version, + int stream_size)); +#define deflateInit(strm, level) \ + deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) +#define inflateInit(strm) \ + inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) +#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ + deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ + (strategy), ZLIB_VERSION, sizeof(z_stream)) +#define inflateInit2(strm, windowBits) \ + inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) +#define inflateBackInit(strm, windowBits, window) \ + inflateBackInit_((strm), (windowBits), (window), \ + ZLIB_VERSION, sizeof(z_stream)) + +/* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or + * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if + * both are true, the application gets the *64 functions, and the regular + * functions are changed to 64 bits) -- in case these are set on systems + * without large file support, _LFS64_LARGEFILE must also be true + */ +#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 + ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); + ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); + ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); + ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile)); + ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t)); + ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t)); +#endif + +#if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0 +# define gzopen gzopen64 +# define gzseek gzseek64 +# define gztell gztell64 +# define gzoffset gzoffset64 +# define adler32_combine adler32_combine64 +# define crc32_combine crc32_combine64 +# ifdef _LARGEFILE64_SOURCE + ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); + ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); + ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); + ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); + ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); + ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); +# endif +#else + ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *)); + ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); + ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); + ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); + ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); + ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); +#endif + +/* hack for buggy compilers */ +#if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) + struct internal_state {int dummy;}; +#endif + +/* undocumented functions */ +ZEXTERN const char * ZEXPORT zError OF((int)); +ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); +ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); +ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); + +#ifdef __cplusplus +} +#endif + +#endif /* ZLIB_H */ diff --git a/www/loadiine.elf b/www/loadiine.elf index 5d73216025cc82bbc23212a6cb10a38384025700..e04d03fb80230a4f274d380743cec520ff27d216 100644 GIT binary patch delta 12041 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 delta 9124 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 diff --git a/www/loadiine_dbg.elf b/www/loadiine_dbg.elf index d9c6e6c6f32b322086ab6fd7af7be1db1462c827..c4cac3a31de5a4db62a5ceec24b1567cbb7ab840 100644 GIT binary patch delta 15330 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 delta 12171 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