/* * Copyright (C) 2012-2014 Arctium Emulation * Copyright (C) 2008-2016 TrinityCore * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "Helper.hpp" #include "Patcher.hpp" #include "Patches/Common.hpp" #include "Patches/Mac.hpp" #include "Patches/Windows.hpp" #include "Patterns/Common.hpp" #include "Patterns/Mac.hpp" #include "Patterns/Windows.hpp" #include #include #include #if PLATFORM == PLATFORM_WINDOWS #include #elif PLATFORM == PLATFORM_UNIX #include #endif namespace po = boost::program_options; namespace Connection_Patcher { po::variables_map GetConsoleArguments(int argc, char** argv); namespace { template void do_patches(Patcher* patcher, boost::filesystem::path output, uint32_t buildNumber) { std::cout << "patching Portal\n"; // '.actual.battle.net' -> '' to allow for set portal 'host' patcher->Patch(Patches::Common::Portal(), Patterns::Common::Portal()); std::cout << "patching redirect RSA Modulus\n"; // public component of connection signing key to use known key pair patcher->Patch(Patches::Common::Modulus(), Patterns::Common::Modulus()); std::cout << "patching BNet certificate file location\n"; // replace name of the file with certificates patcher->Patch(Patches::Common::CertFileName(), Patterns::Common::CertFileName()); std::cout << "patching BNet certificate file to load from local path instead of CASC\n"; // force loading tc_bundle.txt from local directory instead of CASC patcher->Patch(PATCH::CertBundleCASCLocalFile(), PATTERN::CertBundleCASCLocalFile()); std::cout << "patching BNet certificate file signature check\n"; // remove signature check from certificate bundle patcher->Patch(PATCH::CertBundleSignatureCheck(), PATTERN::CertBundleSignatureCheck()); std::cout << "patching Versions\n"; // sever the connection to blizzard's versions file to stop it from updating and replace with custom version // this is good practice with or without the retail version, just to stop the exe from auto-patching randomly // hardcode %s.patch.battle.net:1119/%s/versions to trinity6.github.io/%s/%s/build/versi std::string verPatch(Patches::Common::VersionsFile()); std::string buildPattern = "build"; boost::algorithm::replace_all(verPatch, buildPattern, std::to_string(buildNumber)); std::vector verVec(verPatch.begin(), verPatch.end()); patcher->Patch(verVec, Patterns::Common::VersionsFile()); patcher->Finish(output); std::cout << "Patching done.\n"; } void WriteCertificateBundle(boost::filesystem::path const& dest) { std::ofstream ofs(dest.string(), std::ofstream::binary); if (!ofs) throw std::runtime_error("could not open " + dest.string()); ofs << std::noskipws << Patches::Common::CertificateBundle(); } } po::variables_map GetConsoleArguments(int argc, char** argv) { po::options_description all("Allowed options"); all.add_options() ("help,h", "print usage message") ("path", po::value()->required(), "Path to the Wow.exe") ; po::positional_options_description pos; pos.add("path", 1); po::variables_map vm; try { po::store(po::command_line_parser(argc, argv).options(all).positional(pos).run(), vm); po::notify(vm); } catch (std::exception& e) { std::cerr << e.what() << "\n"; } if (vm.count("help")) std::cout << all << "\n"; if (!vm.count("path")) throw std::invalid_argument("Wrong number of arguments: Missing client file."); return vm; } } int main(int argc, char** argv) { using namespace Connection_Patcher; try { auto vm = GetConsoleArguments(argc, argv); // exit if help is enabled if (vm.count("help")) { std::cin.get(); return 0; } std::string const binary_path(std::move(vm["path"].as())); std::string renamed_binary_path(binary_path); std::cout << "Creating patched binary..." << std::endl; Patcher patcher(binary_path); // always set wowBuild to current build of the .exe files int wowBuild = Helper::GetBuildNumber(patcher.GetBinary()); // define logical limits in case the exe was tinkered with and the build number was changed if (wowBuild == 0 || wowBuild < 10000 || wowBuild > 65535) // Build number has to be exactly 5 characters long throw std::runtime_error("Build number was out of range. Build: " + std::to_string(wowBuild)); std::cout << "Determined build number: " << std::to_string(wowBuild) << std::endl; switch (patcher.GetType()) { case Constants::BinaryTypes::Pe32: std::cout << "Win32 client...\n"; boost::algorithm::replace_all(renamed_binary_path, ".exe", "_Patched.exe"); do_patches (&patcher, renamed_binary_path, wowBuild); WriteCertificateBundle(boost::filesystem::path(binary_path).remove_filename() / "tc_bundle.txt"); break; case Constants::BinaryTypes::Pe64: std::cout << "Win64 client...\n"; boost::algorithm::replace_all(renamed_binary_path, ".exe", "_Patched.exe"); do_patches (&patcher, renamed_binary_path, wowBuild); WriteCertificateBundle(boost::filesystem::path(binary_path).remove_filename() / "tc_bundle.txt"); break; case Constants::BinaryTypes::Mach64: std::cout << "Mac client...\n"; boost::algorithm::replace_all(renamed_binary_path, ".app", " Patched.app"); Helper::CopyDir(boost::filesystem::path(binary_path).parent_path()/*MacOS*/.parent_path()/*Contents*/.parent_path() , boost::filesystem::path(renamed_binary_path).parent_path()/*MacOS*/.parent_path()/*Contents*/.parent_path() ); do_patches (&patcher, renamed_binary_path, wowBuild); { namespace fs = boost::filesystem; fs::permissions(renamed_binary_path, fs::add_perms | fs::others_exe | fs::group_exe | fs::owner_exe); } WriteCertificateBundle(boost::filesystem::path(binary_path).parent_path()/*MacOS*/.parent_path()/*Contents*/.parent_path()/*World of Warcraft.app*/.parent_path() / "tc_bundle.txt"); break; default: throw std::runtime_error("Type: " + std::to_string(static_cast(patcher.GetType())) + " not supported!"); } std::cout << "Successfully created your patched binaries.\n"; return 0; } catch (std::exception const& ex) { std::cerr << "EX: " << ex.what() << std::endl; std::cerr << "An error occurred. Press ENTER to continue..."; std::cin.get(); return 1; } }