1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
#############################################################################
##
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: https://www.qt.io/licensing/
##
## This file is part of Qt for Python.
##
## $QT_BEGIN_LICENSE:LGPL$
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see https://www.qt.io/terms-conditions. For further
## information use the contact form at https://www.qt.io/contact-us.
##
## GNU Lesser General Public License Usage
## Alternatively, this file may be used under the terms of the GNU Lesser
## General Public License version 3 as published by the Free Software
## Foundation and appearing in the file LICENSE.LGPL3 included in the
## packaging of this file. Please review the following information to
## ensure the GNU Lesser General Public License version 3 requirements
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
##
## GNU General Public License Usage
## Alternatively, this file may be used under the terms of the GNU
## General Public License version 2.0 or (at your option) the GNU General
## Public license version 3 or any later version approved by the KDE Free
## Qt Foundation. The licenses are as published by the Free Software
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
## included in the packaging of this file. Please review the following
## information to ensure the GNU General Public License requirements will
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
## https://www.gnu.org/licenses/gpl-3.0.html.
##
## $QT_END_LICENSE$
##
###############
"""
This is a troubleshooting script that assists finding out which DLLs or
which symbols in a DLL are missing when executing a PySide2 python
script.
It can also be used with any other non Python executable.
Usage: python debug_windows.py
When no arguments are given the script will try to import
PySide2.QtCore.
Usage: python debug_windows.py python -c "import PySide2.QtWebEngine"
python debug_windows.py my_executable.exe arg1 arg2 --arg3=4
Any arguments given after the script name will be considered
as the target executable and the arguments passed to that
executable.
The script requires administrator privileges.
The script uses cdb.exe and gflags.exe under the hood, which are
installed together with the Windows Kit found at:
https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
"""
from __future__ import print_function
import sys
import re
import subprocess
import ctypes
import logging
import argparse
from os import path
from textwrap import dedent
is_win = sys.platform == "win32"
is_py_3 = sys.version_info[0] == 3
if is_win:
if is_py_3:
import winreg
else:
import _winreg as winreg
import exceptions
def get_parser_args():
desc_msg = "Run an executable under cdb with loader snaps set."
help_msg = "Pass the executable and the arguments passed to it as a list."
parser = argparse.ArgumentParser(description=desc_msg)
parser.add_argument('args', nargs='*', help=help_msg)
# Prepend -- so that python options like '-c' are ignored by
# argparse.
massaged_args = ['--'] + sys.argv[1:]
return parser.parse_args(massaged_args)
parser_args = get_parser_args()
verbose_log_file_name = path.join(path.dirname(path.abspath(__file__)),
'log_debug_windows.txt')
def is_admin():
try:
return ctypes.windll.shell32.IsUserAnAdmin()
except Exception as e:
log.error("is_admin: Exception error: {}".format(e))
return False
def get_verbose_logger():
handler = logging.FileHandler(verbose_log_file_name, mode='w')
main_logger = logging.getLogger('main')
main_logger.setLevel(logging.INFO)
main_logger.addHandler(handler)
return main_logger
def get_non_verbose_logger():
handler = logging.StreamHandler()
main_logger = logging.getLogger('main.non_verbose')
main_logger.setLevel(logging.INFO)
main_logger.addHandler(handler)
return main_logger
big_log = get_verbose_logger()
log = get_non_verbose_logger()
def sub_keys(key):
i = 0
while True:
try:
sub_key = winreg.EnumKey(key, i)
yield sub_key
i += 1
except WindowsError as e:
log.error(e)
break
def sub_values(key):
i = 0
while True:
try:
v = winreg.EnumValue(key, i)
yield v
i += 1
except WindowsError as e:
log.error(e)
break
def get_installed_windows_kits():
roots_key = r"SOFTWARE\Microsoft\Windows Kits\Installed Roots"
log.info("Searching for Windows kits in registry path: "
"{}".format(roots_key))
kits = []
pattern = re.compile(r'KitsRoot(\d+)')
try:
roots = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, roots_key, 0,
winreg.KEY_READ)
for (name, value, value_type) in sub_values(roots):
if value_type == winreg.REG_SZ and name.startswith('KitsRoot'):
match = pattern.search(name)
if match:
version = match.group(1)
kits.append({'version': version, 'value': value})
except WindowsError as e:
log.exception(e)
if not kits:
log.error(dedent("""
No windows kits found in the registry.
Consider downloading and installing the latest kit, either from
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools
or from
https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
"""))
exit(1)
return kits
def get_appropriate_kit(kits):
# Fixme, figure out if there is a more special way to choose a kit
# and not just latest version.
log.info("Found Windows kits are: {}".format(kits))
chosen_kit = {'version': "0", 'value': None}
for kit in kits:
if (kit['version'] > chosen_kit['version'] and
# version 8.1 is actually '81', so consider everything
# above version 20, as '2.0', etc.
kit['version'] < "20"):
chosen_kit = kit
first_kit = kits[0]
return first_kit
def get_cdb_and_gflags_path(kits):
first_kit = get_appropriate_kit(kits)
first_path_path = first_kit['value']
log.info('Using kit found at {}'.format(first_path_path))
bits = 'x64' if (sys.maxsize > 2 ** 32) else 'x32'
debuggers_path = path.join(first_path_path, 'Debuggers', bits)
cdb_path = path.join(debuggers_path, 'cdb.exe')
if not path.exists(cdb_path): # Try for older "Debugging Tools" packages
debuggers_path = "C:\\Program Files\\Debugging Tools for Windows (x64)"
cdb_path = path.join(debuggers_path, 'cdb.exe')
if not path.exists(cdb_path):
log.error("Couldn't find cdb.exe at: {}.".format(cdb_path))
exit(1)
else:
log.info("Found cdb.exe at: {}.".format(cdb_path))
gflags_path = path.join(debuggers_path, 'gflags.exe')
if not path.exists(gflags_path):
log.error('Couldn\'t find gflags.exe at: {}.'.format(gflags_path))
exit(1)
else:
log.info('Found gflags.exe at: {}.'.format(cdb_path))
return cdb_path, gflags_path
def toggle_loader_snaps(executable_name, gflags_path, enable=True):
arg = '+sls' if enable else '-sls'
gflags_args = [gflags_path, '-i', executable_name, arg]
try:
log.info('Invoking gflags: {}'.format(gflags_args))
output = subprocess.check_output(gflags_args, stderr=subprocess.STDOUT,
universal_newlines=True)
log.info(output)
except exceptions.WindowsError as e:
log.error("\nRunning {} exited with exception: "
"\n{}".format(gflags_args, e))
exit(1)
except subprocess.CalledProcessError as e:
log.error("\nRunning {} exited with: {} and stdout was: "
"{}".format(gflags_args, e.returncode, e.output))
exit(1)
def find_error_like_snippets(content):
snippets = []
lines = content.splitlines()
context_lines = 4
def error_predicate(l):
# A list of mostly false positives are filtered out.
# For deeper inspection, the full log exists.
errors = {'errorhandling',
'windowserrorreporting',
'core-winrt-error',
'RtlSetLastWin32Error',
'RaiseInvalid16BitExeError',
'BaseWriteErrorElevationRequiredEvent',
'for DLL "Unknown"',
'LdrpGetProcedureAddress',
'X509_STORE_CTX_get_error',
'ERR_clear_error',
'ERR_peek_last_error',
'ERR_error_string',
'ERR_get_error',
('ERROR: Module load completed but symbols could '
'not be loaded')}
return (re.search('error', l, re.IGNORECASE)
and all(e not in l for e in errors))
for i in range(1, len(lines)):
line = lines[i]
if error_predicate(line):
snippets.append(lines[i - context_lines:i + context_lines + 1])
return snippets
def print_error_snippets(snippets):
if len(snippets) > 0:
log.info("\nThe following possible errors were found:\n")
for i in range(1, len(snippets)):
log.info("Snippet {}:".format(i))
for line in snippets[i]:
log.info(line)
log.info("")
def call_command_under_cdb_with_gflags(executable_path, args):
executable_name = path.basename(executable_path)
invocation = [executable_path] + args
kits = get_installed_windows_kits()
cdb_path, gflags_path = get_cdb_and_gflags_path(kits)
toggle_loader_snaps(executable_name, gflags_path, enable=True)
log.info("Debugging the following command invocation: "
"{}".format(invocation))
cdb_args = [cdb_path] + invocation
log.info('Invoking cdb: {}'.format(cdb_args))
p = subprocess.Popen(cdb_args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
shell=False)
# Symbol fix, start process, print all thread stack traces, exit.
cdb_commands = ['.symfix', 'g', '!uniqstack', 'q']
cdb_commands_text = '\n'.join(cdb_commands)
out, err = p.communicate(input=cdb_commands_text.encode('utf-8'))
out_decoded = out.decode('utf-8')
big_log.info('stdout: {}'.format(out_decoded))
if err:
big_log.info('stderr: {}'.format(err.decode('utf-8')))
log.info('Finished execution of process under cdb.')
toggle_loader_snaps(executable_name, gflags_path, enable=False)
snippets = find_error_like_snippets(out_decoded)
print_error_snippets(snippets)
log.info("Finished processing.\n !!! Full log can be found at:\n"
"{}".format(verbose_log_file_name))
def test_run_import_qt_core_under_cdb_with_gflags():
# The weird characters are there for faster grepping of the output
# because there is a lot of content in the full log.
# The 2+2 is just ensure that Python itself works.
python_code = """
print(">>>>>>>>>>>>>>>>>>>>>>> Test computation of 2+2 is: {}".format(2+2))
import PySide2.QtCore
print(">>>>>>>>>>>>>>>>>>>>>>> QtCore object instance: {}".format(PySide2.QtCore))
"""
call_command_under_cdb_with_gflags(sys.executable, ["-c", python_code])
def handle_args():
if not parser_args.args:
test_run_import_qt_core_under_cdb_with_gflags()
else:
call_command_under_cdb_with_gflags(parser_args.args[0],
parser_args.args[1:])
if __name__ == '__main__':
if not is_win:
log.error("This script only works on Windows.")
exit(1)
if is_admin():
handle_args()
else:
log.error("Please rerun the script with administrator privileges. "
"It is required for gflags.exe to work. ")
exit(1)
|