2019-02-11 20:51:25 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2019-10-23 16:50:36 +00:00
|
|
|
import argparse
|
2023-07-18 21:41:25 +00:00
|
|
|
import functools
|
|
|
|
import itertools
|
|
|
|
import os.path
|
2019-02-11 20:51:25 +00:00
|
|
|
import subprocess
|
2023-07-18 21:41:25 +00:00
|
|
|
import sys
|
2019-02-11 20:51:25 +00:00
|
|
|
import tempfile
|
2022-05-24 21:34:22 +00:00
|
|
|
import urllib.request
|
2023-07-18 21:41:25 +00:00
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
from binascii import unhexlify
|
2019-02-11 20:51:25 +00:00
|
|
|
|
|
|
|
CRLF = b"\x0d\x0a"
|
|
|
|
HEADER_FORMAT = b">%s"
|
|
|
|
LINE_FORMAT = CRLF + b"%016X:%02X->%02X"
|
|
|
|
OFFSET_ADJUSTMENT = 0xC00 # shift specific to x64dbg .1337 format
|
|
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="Generates .1337 patch for Nvidia drivers for Windows",
|
|
|
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
|
|
|
parser.add_argument("installer_file",
|
2019-09-04 15:20:51 +00:00
|
|
|
nargs="+",
|
|
|
|
help="location of installer executable(s)")
|
2019-02-11 20:51:25 +00:00
|
|
|
parser.add_argument("-7", "--7zip",
|
|
|
|
default="7z",
|
|
|
|
dest="sevenzip",
|
|
|
|
help="location of 7-zip `7z` executable")
|
|
|
|
parser.add_argument("-T", "--target",
|
2019-10-23 16:50:36 +00:00
|
|
|
nargs="+",
|
|
|
|
default=[
|
2023-06-15 06:17:14 +00:00
|
|
|
"Display.Driver/nvencodeapi64.dll",
|
|
|
|
"Display.Driver/nvencodeapi.dll",
|
2019-10-23 16:50:36 +00:00
|
|
|
],
|
|
|
|
help="target location(s) in archive")
|
2019-02-11 20:51:25 +00:00
|
|
|
parser.add_argument("-N", "--target-name",
|
2019-10-23 16:50:36 +00:00
|
|
|
nargs="+",
|
|
|
|
default=[
|
2019-11-21 20:51:09 +00:00
|
|
|
"nvencodeapi64.dll",
|
2019-11-22 13:10:43 +00:00
|
|
|
"nvencodeapi.dll",
|
2019-10-23 16:50:36 +00:00
|
|
|
],
|
|
|
|
help="name(s) of installed target file. Used for patch "
|
2023-07-18 21:41:25 +00:00
|
|
|
"header")
|
2019-10-23 16:50:36 +00:00
|
|
|
parser.add_argument("-P", "--patch-name",
|
|
|
|
nargs="+",
|
|
|
|
default=[
|
2019-11-21 20:51:09 +00:00
|
|
|
"nvencodeapi64.1337",
|
2019-11-22 13:10:43 +00:00
|
|
|
"nvencodeapi.1337",
|
2019-10-23 16:50:36 +00:00
|
|
|
],
|
|
|
|
help="relative filename(s) of generated patch(es)")
|
2019-02-11 20:51:25 +00:00
|
|
|
parser.add_argument("-S", "--search",
|
2019-10-23 16:50:36 +00:00
|
|
|
nargs="+",
|
|
|
|
default=[
|
2022-06-29 16:39:56 +00:00
|
|
|
"8BF085C0750549892FEB",
|
2022-02-17 18:32:58 +00:00
|
|
|
"89450885C08B450C75048938EB",
|
2019-10-23 16:50:36 +00:00
|
|
|
],
|
|
|
|
help="representation of search pattern(s) binary string")
|
2019-02-11 20:51:25 +00:00
|
|
|
parser.add_argument("-R", "--replacement",
|
2019-10-23 16:50:36 +00:00
|
|
|
nargs="+",
|
|
|
|
default=[
|
2022-06-29 16:39:56 +00:00
|
|
|
"33C08BF0750549892FEB",
|
2022-02-17 18:32:58 +00:00
|
|
|
"33C08945088B450C75048938EB",
|
2019-10-23 16:50:36 +00:00
|
|
|
],
|
|
|
|
help="representation of replacement(s) binary string")
|
2019-02-11 20:51:25 +00:00
|
|
|
parser.add_argument("-o", "--stdout",
|
|
|
|
action="store_true",
|
|
|
|
help="output into stdout")
|
2019-09-14 13:10:28 +00:00
|
|
|
parser.add_argument("-D", "--direct",
|
|
|
|
action="store_true",
|
|
|
|
help="supply patched library directly instead of "
|
2023-07-18 21:41:25 +00:00
|
|
|
"installer file")
|
2019-02-11 20:51:25 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
return args
|
|
|
|
|
|
|
|
|
|
|
|
class ExtractException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class PatternNotFoundException(Exception):
|
|
|
|
pass
|
|
|
|
|
2023-07-18 21:41:25 +00:00
|
|
|
|
2019-10-22 16:00:25 +00:00
|
|
|
class MultipleOccurencesException(Exception):
|
|
|
|
pass
|
|
|
|
|
2023-07-18 21:41:25 +00:00
|
|
|
|
2019-06-09 18:34:57 +00:00
|
|
|
class UnknownPlatformException(Exception):
|
|
|
|
pass
|
|
|
|
|
2019-02-11 20:51:25 +00:00
|
|
|
|
|
|
|
class ExtractedTarget:
|
|
|
|
name = None
|
|
|
|
|
|
|
|
def __init__(self, archive, dst_dir, arch_tgt, *, sevenzip="7z"):
|
|
|
|
self._archive = archive
|
|
|
|
self._dst_dir = dst_dir
|
|
|
|
self._sevenzip = sevenzip
|
|
|
|
self._arch_tgt = arch_tgt
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
ret = subprocess.call([self._sevenzip,
|
|
|
|
"e",
|
|
|
|
"-o" + self._dst_dir,
|
|
|
|
self._archive,
|
|
|
|
self._arch_tgt],
|
|
|
|
stdout=sys.stderr)
|
|
|
|
if ret != 0:
|
|
|
|
raise ExtractException("Subprocess returned non-zero exit code.")
|
|
|
|
name = os.path.join(self._dst_dir, os.path.basename(self._arch_tgt))
|
|
|
|
self.name = name
|
|
|
|
return name
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
|
|
if self.name is not None:
|
|
|
|
os.remove(self.name)
|
|
|
|
|
|
|
|
|
|
|
|
def expand(filename, *, sevenzip="7z"):
|
|
|
|
proc = subprocess.Popen([sevenzip,
|
|
|
|
"x",
|
|
|
|
"-so",
|
|
|
|
filename], stdout=subprocess.PIPE)
|
|
|
|
result = proc.communicate()[0]
|
|
|
|
if proc.returncode != 0:
|
|
|
|
raise ExtractException("Subprocess returned non-zero exit code.")
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def extract_single_file(archive, filename, *, sevenzip="7z"):
|
|
|
|
proc = subprocess.Popen([sevenzip,
|
|
|
|
"e",
|
|
|
|
"-so",
|
|
|
|
archive,
|
|
|
|
filename], stdout=subprocess.PIPE)
|
|
|
|
result = proc.communicate()[0]
|
|
|
|
if proc.returncode != 0:
|
|
|
|
raise ExtractException("Subprocess returned non-zero exit code.")
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def make_patch(archive, *,
|
|
|
|
arch_tgt,
|
|
|
|
search,
|
|
|
|
replacement,
|
2023-07-18 21:41:25 +00:00
|
|
|
tmpdir,
|
2019-09-14 13:10:28 +00:00
|
|
|
sevenzip="7z",
|
|
|
|
direct=False):
|
|
|
|
if direct:
|
|
|
|
with open(archive, 'rb') as fo:
|
|
|
|
f = fo.read()
|
|
|
|
else:
|
2023-07-18 21:41:25 +00:00
|
|
|
with ExtractedTarget(archive,
|
|
|
|
tmpdir,
|
|
|
|
arch_tgt,
|
|
|
|
sevenzip=sevenzip) as tgt:
|
|
|
|
if tgt.endswith(".dll"):
|
|
|
|
with open(tgt, 'rb') as fo:
|
|
|
|
f = fo.read()
|
|
|
|
else:
|
|
|
|
f = expand(tgt, sevenzip=sevenzip)
|
2019-02-11 20:51:25 +00:00
|
|
|
offset = f.find(search)
|
|
|
|
if offset == -1:
|
|
|
|
raise PatternNotFoundException("Pattern not found.")
|
2023-07-18 21:41:25 +00:00
|
|
|
if f[offset + len(search):].find(search) != -1:
|
2019-10-22 16:00:25 +00:00
|
|
|
raise MultipleOccurencesException("Multiple occurences of pattern found!")
|
|
|
|
del f
|
2019-02-11 20:51:25 +00:00
|
|
|
print("Pattern found @ %016X" % (offset,), file=sys.stderr)
|
|
|
|
|
|
|
|
res = []
|
|
|
|
for (i, (left, right)) in enumerate(zip(search, replacement)):
|
|
|
|
if left != right:
|
|
|
|
res.append((offset + i, left, right))
|
|
|
|
return res
|
|
|
|
|
|
|
|
|
2019-10-23 17:00:32 +00:00
|
|
|
@functools.lru_cache(maxsize=None)
|
2019-02-11 20:51:25 +00:00
|
|
|
def identify_driver(archive, *, sevenzip="7z"):
|
|
|
|
manifest = extract_single_file(archive, "setup.cfg", sevenzip=sevenzip)
|
|
|
|
root = ET.fromstring(manifest)
|
|
|
|
version = root.attrib['version']
|
2023-07-18 21:41:25 +00:00
|
|
|
product_type = root.find('./properties/string[@name="ProductType"]') \
|
2019-02-11 20:51:25 +00:00
|
|
|
.attrib['value']
|
|
|
|
return version, product_type
|
|
|
|
|
|
|
|
|
|
|
|
def format_patch(diff, filename):
|
|
|
|
res = HEADER_FORMAT % filename.encode('utf-8')
|
|
|
|
for offset, left, right in diff:
|
|
|
|
res += LINE_FORMAT % (offset + OFFSET_ADJUSTMENT, left, right)
|
|
|
|
return res
|
|
|
|
|
2023-07-18 21:41:25 +00:00
|
|
|
|
2019-10-23 16:50:36 +00:00
|
|
|
def patch_flow(installer_file, search, replacement, target, target_name, patch_name, *,
|
2023-07-18 21:41:25 +00:00
|
|
|
tempdir, direct=False, stdout=False, sevenzip="7z"):
|
2019-10-23 16:50:36 +00:00
|
|
|
search = unhexlify(search)
|
|
|
|
replacement = unhexlify(replacement)
|
2023-07-18 21:41:25 +00:00
|
|
|
assert len(search) == len(replacement), "len() of search and replacement is not equal"
|
|
|
|
|
|
|
|
# Check if installer file exists or try to download
|
|
|
|
|
|
|
|
print(f"Search for installer file `{installer_file}`...")
|
|
|
|
if not os.path.isfile(installer_file):
|
|
|
|
print("Installer file is not a file...")
|
|
|
|
if not installer_file.startswith("http"):
|
|
|
|
print("Installer file is not a URL...")
|
|
|
|
|
|
|
|
# Construct URL from version
|
|
|
|
print("Installer file is a version!")
|
|
|
|
filename = installer_file + "-desktop-win10-win11-64bit-international-dch-whql.exe"
|
|
|
|
installer_url = f"https://international.download.nvidia.com/Windows/{installer_file}/{filename}"
|
2022-12-09 07:59:56 +00:00
|
|
|
else:
|
2023-07-18 21:41:25 +00:00
|
|
|
print("Installer file is a URL!")
|
|
|
|
installer_url = installer_file
|
|
|
|
|
|
|
|
if installer_url:
|
|
|
|
try:
|
|
|
|
file_path = os.path.join(tempdir, os.path.basename(installer_url))
|
|
|
|
if not os.path.isfile(file_path):
|
|
|
|
with urllib.request.urlopen(installer_url) as response, open(file_path, 'wb') as out_file:
|
|
|
|
print(f"Downloading... ({installer_url} TO {file_path})")
|
|
|
|
print("This may take a while (~800MB)")
|
|
|
|
out_file.write(response.read())
|
|
|
|
print("Download completed successfully!")
|
|
|
|
installer_file = file_path
|
|
|
|
else:
|
|
|
|
print(f"Using downloaded file in '{file_path}'")
|
|
|
|
installer_file = file_path
|
|
|
|
except (urllib.error.URLError, Exception) as e:
|
|
|
|
print(f"Failed to download the file: {e}")
|
|
|
|
return
|
|
|
|
except Exception as e:
|
|
|
|
print(f"An error occurred during download: {str(e)}")
|
|
|
|
return
|
2019-06-09 18:34:57 +00:00
|
|
|
else:
|
2023-07-18 21:41:25 +00:00
|
|
|
print(f"Invalid installer file or version: {installer_file}")
|
|
|
|
return
|
|
|
|
|
|
|
|
# Rest of the code remains the same...
|
|
|
|
patch = make_patch(installer_file,
|
|
|
|
arch_tgt=target,
|
|
|
|
search=search,
|
|
|
|
replacement=replacement,
|
|
|
|
tmpdir=tempdir,
|
|
|
|
sevenzip=sevenzip,
|
|
|
|
direct=direct)
|
|
|
|
patch_content = format_patch(patch, target_name)
|
|
|
|
|
|
|
|
if stdout:
|
|
|
|
sys.stdout.buffer.write(patch_content)
|
|
|
|
elif direct:
|
|
|
|
with open(patch_name, mode='wb') as out:
|
|
|
|
out.write(patch_content)
|
|
|
|
else:
|
|
|
|
version, product_type = identify_driver(installer_file, sevenzip=sevenzip)
|
|
|
|
drv_prefix = {
|
|
|
|
"100": "quadro_",
|
|
|
|
"103": "quadro_",
|
|
|
|
"300": "",
|
|
|
|
"301": "nsd_",
|
|
|
|
"303": "", # DCH
|
|
|
|
"304": "nsd_",
|
|
|
|
}
|
|
|
|
installer_name = os.path.basename(installer_file).lower()
|
|
|
|
if 'winserv2008' in installer_name or 'winserv-2012' in installer_name:
|
|
|
|
os_prefix = 'ws2012_x64'
|
|
|
|
elif 'winserv-2016' in installer_name or 'win10' in installer_name:
|
|
|
|
os_prefix = 'win10_x64'
|
|
|
|
elif 'win7' in installer_name:
|
|
|
|
os_prefix = 'win7_x64'
|
|
|
|
else:
|
|
|
|
raise UnknownPlatformException(f"Can't infer platform from filename {installer_name}")
|
|
|
|
|
|
|
|
driver_name = drv_prefix.get(product_type, "") + version
|
|
|
|
out_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..', os_prefix, driver_name)
|
|
|
|
os.makedirs(out_dir, 0o755, exist_ok=True)
|
|
|
|
out_filename = os.path.join(out_dir, patch_name)
|
|
|
|
with open(out_filename, 'wb') as out:
|
|
|
|
out.write(patch_content)
|
2019-10-23 16:50:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
args = parse_args()
|
2023-07-18 21:41:25 +00:00
|
|
|
|
2019-10-23 16:50:36 +00:00
|
|
|
if args.direct:
|
|
|
|
combinations = zip(args.installer_file, args.search, args.replacement,
|
|
|
|
args.target, args.target_name, args.patch_name)
|
|
|
|
else:
|
|
|
|
base_params = zip(args.search, args.replacement, args.target, args.target_name, args.patch_name)
|
|
|
|
combinations = ((l,) + r for l, r in itertools.product(args.installer_file, base_params))
|
2023-07-18 21:41:25 +00:00
|
|
|
|
|
|
|
with tempfile.TemporaryDirectory() as tempdir:
|
|
|
|
print(f"Using tempdir `{tempdir}`")
|
|
|
|
for params in combinations:
|
|
|
|
patch_flow(*params, tempdir=tempdir, direct=args.direct, stdout=args.stdout)
|
2019-02-11 20:51:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|