/* * Copyright (c) 2010-2022 OTClient * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include #include #include "resourcemanager.h" #include "filestream.h" #include #include #include #include ResourceManager g_resources; void ResourceManager::init(const char* argv0) { PHYSFS_init(argv0); PHYSFS_permitSymbolicLinks(1); } void ResourceManager::terminate() { PHYSFS_deinit(); } bool ResourceManager::discoverWorkDir(const std::string& existentFile) { // search for modules directory std::string possiblePaths[] = { g_platform.getCurrentDir(), g_resources.getBaseDir(), g_resources.getBaseDir() + "../", g_resources.getBaseDir() + "../share/" + g_app.getCompactName() + "/" }; bool found = false; for (const std::string& dir : possiblePaths) { if (!PHYSFS_mount(dir.c_str(), nullptr, 0)) continue; if (PHYSFS_exists(existentFile.c_str())) { g_logger.debug(stdext::format("Found work dir at '%s'", dir)); m_workDir = dir; found = true; break; } PHYSFS_unmount(dir.c_str()); } return found; } bool ResourceManager::setupUserWriteDir(const std::string& appWriteDirName) { const std::string userDir = getUserDir(); std::string dirName; #ifndef WIN32 dirName = stdext::format(".%s", appWriteDirName); #else dirName = appWriteDirName; #endif const std::string writeDir = userDir + dirName; if (!PHYSFS_setWriteDir(writeDir.c_str())) { if (!PHYSFS_setWriteDir(userDir.c_str()) || !PHYSFS_mkdir(dirName.c_str())) { g_logger.error(stdext::format("Unable to create write directory '%s': %s", writeDir, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); return false; } } return setWriteDir(writeDir); } bool ResourceManager::setWriteDir(const std::string& writeDir, bool) { if (!PHYSFS_setWriteDir(writeDir.c_str())) { g_logger.error(stdext::format("Unable to set write directory '%s': %s", writeDir, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); return false; } if (!m_writeDir.empty()) removeSearchPath(m_writeDir); m_writeDir = writeDir; if (!addSearchPath(writeDir)) g_logger.error(stdext::format("Unable to add write '%s' directory to search path", writeDir)); return true; } bool ResourceManager::addSearchPath(const std::string& path, bool pushFront) { std::string savePath = path; if (!PHYSFS_mount(path.c_str(), nullptr, pushFront ? 0 : 1)) { bool found = false; for (const std::string& searchPath : m_searchPaths) { std::string newPath = searchPath + path; if (PHYSFS_mount(newPath.c_str(), nullptr, pushFront ? 0 : 1)) { savePath = newPath; found = true; break; } } if (!found) { //g_logger.error(stdext::format("Could not add '%s' to directory search path. Reason %s", path, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); return false; } } if (pushFront) m_searchPaths.push_front(savePath); else m_searchPaths.push_back(savePath); return true; } bool ResourceManager::removeSearchPath(const std::string& path) { if (!PHYSFS_unmount(path.c_str())) return false; const auto it = std::find(m_searchPaths.begin(), m_searchPaths.end(), path); assert(it != m_searchPaths.end()); m_searchPaths.erase(it); return true; } void ResourceManager::searchAndAddPackages(const std::string& packagesDir, const std::string& packageExt) { auto files = listDirectoryFiles(packagesDir); for (const auto& file : files | std::views::reverse) { if (!file.ends_with(packageExt)) continue; std::string package = getRealDir(packagesDir) + "/" + file; if (!addSearchPath(package, true)) g_logger.error(stdext::format("Unable to read package '%s': %s", package, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); } } bool ResourceManager::fileExists(const std::string& fileName) { return (PHYSFS_exists(resolvePath(fileName).c_str()) && !directoryExists(fileName)); } bool ResourceManager::directoryExists(const std::string& directoryName) { PHYSFS_Stat stat = {}; if (!PHYSFS_stat(resolvePath(directoryName).c_str(), &stat)) { return false; } return stat.filetype == PHYSFS_FILETYPE_DIRECTORY; } void ResourceManager::readFileStream(const std::string& fileName, std::iostream& out) { const std::string buffer = readFileContents(fileName); if (buffer.length() == 0) { out.clear(std::ios::eofbit); return; } out.clear(std::ios::goodbit); out.write(&buffer[0], buffer.length()); out.seekg(0, std::ios::beg); } std::string ResourceManager::readFileContents(const std::string& fileName) { const std::string fullPath = resolvePath(fileName); PHYSFS_File* file = PHYSFS_openRead(fullPath.c_str()); if (!file) stdext::throw_exception(stdext::format("unable to open file '%s': %s", fullPath, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); const int fileSize = PHYSFS_fileLength(file); std::string buffer(fileSize, 0); PHYSFS_readBytes(file, &buffer[0], fileSize); PHYSFS_close(file); #if ENABLE_ENCRYPTION == 1 buffer = decrypt(buffer); #endif return buffer; } bool ResourceManager::writeFileBuffer(const std::string& fileName, const uchar* data, uint size) { PHYSFS_file* file = PHYSFS_openWrite(fileName.c_str()); if (!file) { g_logger.error(PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); return false; } PHYSFS_writeBytes(file, data, size); PHYSFS_close(file); return true; } bool ResourceManager::writeFileStream(const std::string& fileName, std::iostream& in) { const std::streampos oldPos = in.tellg(); in.seekg(0, std::ios::end); const std::streampos size = in.tellg(); in.seekg(0, std::ios::beg); std::vector buffer(size); in.read(&buffer[0], size); const bool ret = writeFileBuffer(fileName, (const uchar*)&buffer[0], size); in.seekg(oldPos, std::ios::beg); return ret; } bool ResourceManager::writeFileContents(const std::string& fileName, const std::string& data) { #if ENABLE_ENCRYPTION == 1 return writeFileBuffer(fileName, (const uchar*)encrypt(data, std::string(ENCRYPTION_PASSWORD)).c_str(), data.size()); #else return writeFileBuffer(fileName, (const uchar*)data.c_str(), data.size()); #endif } FileStreamPtr ResourceManager::openFile(const std::string& fileName) { const std::string fullPath = resolvePath(fileName); PHYSFS_File* file = PHYSFS_openRead(fullPath.c_str()); if (!file) stdext::throw_exception(stdext::format("unable to open file '%s': %s", fullPath, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); return { new FileStream(fullPath, file, false) }; } FileStreamPtr ResourceManager::appendFile(const std::string& fileName) { PHYSFS_File* file = PHYSFS_openAppend(fileName.c_str()); if (!file) stdext::throw_exception(stdext::format("failed to append file '%s': %s", fileName, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); return { new FileStream(fileName, file, true) }; } FileStreamPtr ResourceManager::createFile(const std::string& fileName) { PHYSFS_File* file = PHYSFS_openWrite(fileName.c_str()); if (!file) stdext::throw_exception(stdext::format("failed to create file '%s': %s", fileName, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); return { new FileStream(fileName, file, true) }; } bool ResourceManager::deleteFile(const std::string& fileName) { return PHYSFS_delete(resolvePath(fileName).c_str()) != 0; } bool ResourceManager::makeDir(const std::string& directory) { return PHYSFS_mkdir(directory.c_str()); } std::list ResourceManager::listDirectoryFiles(const std::string& directoryPath) { std::list files; auto* const rc = PHYSFS_enumerateFiles(resolvePath(directoryPath).c_str()); for (int i = 0; rc[i] != nullptr; ++i) files.emplace_back(rc[i]); PHYSFS_freeList(rc); return files; } std::vector ResourceManager::getDirectoryFiles(const std::string& path, bool filenameOnly, bool recursive) { if (!std::filesystem::exists(path)) return {}; const std::filesystem::path p(path); return discoverPath(p, filenameOnly, recursive); } std::vector ResourceManager::discoverPath(const std::filesystem::path& path, bool filenameOnly, bool recursive) { std::vector files; /* Before doing anything, we have to add this directory to search path, * this is needed so it works correctly when one wants to open a file. */ addSearchPath(path.generic_string(), true); for (std::filesystem::directory_iterator it(path), end; it != end; ++it) { if (std::filesystem::is_directory(it->path().generic_string()) && recursive) { std::vector subfiles = discoverPath(it->path(), filenameOnly, recursive); files.insert(files.end(), subfiles.begin(), subfiles.end()); } else { if (filenameOnly) files.push_back(it->path().filename().string()); else files.push_back(it->path().generic_string() + "/" + it->path().filename().string()); } } return files; } std::string ResourceManager::resolvePath(const std::string& path) { std::string fullPath; if (path.starts_with("/")) fullPath = path; else { const std::string scriptPath = "/" + g_lua.getCurrentSourcePath(); if (!scriptPath.empty()) fullPath += scriptPath + "/"; fullPath += path; } if (!(fullPath.starts_with("/"))) g_logger.traceWarning(stdext::format("the following file path is not fully resolved: %s", path)); stdext::replace_all(fullPath, "//", "/"); return fullPath; } std::string ResourceManager::getRealDir(const std::string& path) { std::string dir; const char* cdir = PHYSFS_getRealDir(resolvePath(path).c_str()); if (cdir) dir = cdir; return dir; } std::string ResourceManager::getRealPath(const std::string& path) { return getRealDir(path) + "/" + path; } std::string ResourceManager::getBaseDir() { return PHYSFS_getBaseDir(); } std::string ResourceManager::getUserDir() { return PHYSFS_getPrefDir("otclient", "otclient"); } std::string ResourceManager::guessFilePath(const std::string& filename, const std::string& type) { if (isFileType(filename, type)) return filename; return filename + "." + type; } bool ResourceManager::isFileType(const std::string& filename, const std::string& type) { if (filename.ends_with(std::string(".") + type)) return true; return false; } ticks_t ResourceManager::getFileTime(const std::string& filename) { return g_platform.getFileModificationTime(getRealPath(filename)); } std::string ResourceManager::encrypt(const std::string& data, const std::string& password) { const int len = data.length(), plen = password.length(); std::ostringstream ss; int j = 0; for (int i = -1; ++i < len;) { int ct = data[i]; if (i % 2) { ct = ct - password[j] + i; } else { ct = ct + password[j] - i; } ss << static_cast(ct); ++j; if (j >= plen) j = 0; } return ss.str(); } std::string ResourceManager::decrypt(const std::string& data) { const auto& password = std::string(ENCRYPTION_PASSWORD); const int len = data.length(), plen = password.length(); std::ostringstream ss; int j = 0; for (int i = -1; ++i < len;) { int ct = data[i]; if (i % 2) { ct = ct + password[j] - i; } else { ct = ct - password[j] + i; } ss << static_cast(ct); ++j; if (j >= plen) j = 0; } return ss.str(); } uint8_t* ResourceManager::decrypt(uint8_t* data, int32_t size) { const auto& password = std::string(ENCRYPTION_PASSWORD); const int plen = password.length(); auto* const new_Data = new uint8_t[size]; int j = 0; for (int i = -1; ++i < size;) { const int ct = data[i]; if (i % 2) { new_Data[i] = ct + password[j] - i; } else { new_Data[i] = ct - password[j] + i; } data[i] = new_Data[i]; ++j; if (j >= plen) j = 0; } return nullptr; } void ResourceManager::runEncryption(const std::string& password) { std::vector excludedExtensions = { ".rar",".ogg",".xml",".dll",".exe", ".log",".otb" }; for (const auto& entry : std::filesystem::recursive_directory_iterator("./")) { std::string ext = entry.path().extension().string(); if (std::find(excludedExtensions.begin(), excludedExtensions.end(), ext) != excludedExtensions.end()) continue; std::ifstream ifs(entry.path().string(), std::ios_base::binary); std::string data((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); ifs.close(); data = encrypt(data, password); save_string_into_file(data, entry.path().string()); } } void ResourceManager::save_string_into_file(const std::string& contents, const std::string& name) { std::ofstream datFile; datFile.open(name, std::ofstream::binary | std::ofstream::trunc | std::ofstream::out); datFile.write(contents.c_str(), contents.size()); datFile.close(); }