2

我正在寻求在 Windows dll 中添加功能来检测调用 Python 脚本的名称。

我正在使用 ctypes 通过 Python 调用 dll,如如何从脚本语言调用 DLL?

在 dll 中,我能够使用 WINAPI GetModuleFileName() http://msdn.microsoft.com/en-us/library/windows/desktop/ms683197(v=vs.85).aspx成功确定调用过程。但是,由于这是一个 Python 脚本,它通过 Python 可执行文件运行,因此返回的模块文件名为“C:/Python33/Python.exe”。我需要执行调用的实际脚本文件的名称。这可能吗?

关于原因的一些背景知识:此 dll 用于身份验证。它使用共享密钥生成哈希,以便脚本用于验证 HTTP 请求。它嵌入在 dll 中,因此使用脚本的人不会看到密钥。我们要确保调用脚本的 python 文件是签名的,所以不仅仅是任何人都可以使用这个 dll 来生成签名,所以第一步是获取调用脚本的文件路径。

4

1 回答 1

3

通常,不使用 Python C-API,您可以获取进程命令行并argv使用 Win32 GetCommandLineCommandLineToArgvW将其解析为数组。然后检查是否argv[1]是 .py 文件。

Python 演示,使用 ctypes:

import ctypes
from ctypes import wintypes

GetCommandLine = ctypes.windll.kernel32.GetCommandLineW
GetCommandLine.restype = wintypes.LPWSTR
GetCommandLine.argtypes = []

CommandLineToArgvW = ctypes.windll.shell32.CommandLineToArgvW
CommandLineToArgvW.restype = ctypes.POINTER(wintypes.LPWSTR)
CommandLineToArgvW.argtypes = [
    wintypes.LPCWSTR,  # lpCmdLine,
    ctypes.POINTER(ctypes.c_int),  # pNumArgs
]

if __name__ == '__main__':
    cmdline = GetCommandLine()
    argc = ctypes.c_int()
    argv = CommandLineToArgvW(cmdline, ctypes.byref(argc))
    argc = argc.value
    argv = argv[:argc]
    print(argv)
于 2013-05-21T15:58:54.860 回答