我怎么能从壳内告诉壳处于什么模式?

我已经试着查看了平台模块,但它似乎只告诉您“用于可执行文件的位架构和链接格式”。我的二进制文件被编译为64位(我在OS X 10.6上运行),所以它似乎总是报告64位,即使我使用这里描述的方法强制32位模式。


当前回答

分组的一切……

考虑到:

这个问题是问OSX(我有一个旧的(和破解的)虚拟机与一个古老的Python版本) 我的“主要”环境是赢 我只在Win上安装了032bit (Python)版本(我在Linux (Ubuntu)上构建了一个“残缺的”版本)

我将使用Python 3和Python 2在所有3个平台上举例说明。

1. 检查(Python。文档:sys.maxsize

将值与0x100000000(4294967296或2 ** 32)比较:

大于064bit (pc064) 032位(pc032)

例子:

OSX 9 pc064: Python 2.7.10 pc064: >>> import sys >>> "Python {:s} on {:s}".format(sys.version, sys.platform) 'Python 2.7.10 (default, Oct 14 2015, 05:51:29) \n[GCC 4.8.2] on darwin' >>> hex(sys.maxsize), sys.maxsize > 0x100000000 ('0x7fffffffffffffff', True) Ubuntu 16 pc064: Python 3.5.2 pc064: >>> import sys >>> "Python {:s} on {:s}".format(sys.version, sys.platform) 'Python 3.5.2 (default, Nov 23 2017, 16:37:01) \n[GCC 5.4.0 20160609] on linux' >>> hex(sys.maxsize), sys.maxsize > 0x100000000 ('0x7fffffffffffffff', True) Python 3.6.4 pc032: >>> import sys >>> "Python {:s} on {:s}".format(sys.version, sys.platform) 'Python 3.6.4 (default, Apr 25 2018, 23:55:56) \n[GCC 5.4.0 20160609] on linux' >>> hex(sys.maxsize), sys.maxsize > 0x100000000 ('0x7fffffff', False) Win 10 pc064: Python 3.5.4 pc064: >>> import sys >>> "Python {:s} on {:s}".format(sys.version, sys.platform) 'Python 3.5.4 (v3.5.4:3f56838, Aug 8 2017, 02:17:05) [MSC v.1900 64 bit (AMD64)] on win32' >>> hex(sys.maxsize), sys.maxsize > 0x100000000 ('0x7fffffffffffffff', True) Python 3.6.2 pc032: >>> import sys >>> "Python {:s} on {:s}".format(sys.version, sys.platform) 'Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32' >>> hex(sys.maxsize), sys.maxsize > 0x100000000 ('0x7fffffff', False)

2. 使用Python。文档:struct.calcsize(格式)

确定由(指针)格式产生的对象大小。换句话说,决定指针的大小(sizeof(void*))。

例子:

osx9 pc064: Python 2.7.10 pc064: >>>导入结构 struct.calcsize("P") * 8 64 Ubuntu 16 pc064: Python 3.5.2 pc064: >>>导入结构 struct.calcsize("P") * 8 64 Python 3.6.4 pc032: >>>导入结构 struct.calcsize("P") * 8 32 Win 10 pc064: Python 3.5.4 pc064: >>>导入结构 struct.calcsize("P") * 8 64 Python 3.6.2 pc032: >>>导入结构 struct.calcsize("P") * 8 32

3.使用Python。ctypes - Python的外部函数库

它还可以归结为确定指针的大小(sizeof(void*))。

CTypes边注:

可以使用第二条。在某些情况下(通过[GitHub]: python/cpython - (main) cpython/Lib/ctypes/__init__.py) 检查[SO]:在使用Python通过ctypes调用的C函数时(在更复杂的情况下(例如调用函数)),对于常见的错误,返回不正确的值(@CristiFati的答案) [SO]:来自Python的C类型整数的最大值和最小值(@CristiFati的答案)可能也很有趣

例子:

osx9 pc064: Python 2.7.10 pc064: >>>导入ctypes >>> ctypes.sizeof(ctypes.c_void_p) * 8 64 Ubuntu 16 pc064: Python 3.5.2 pc064: >>>导入ctypes >>> ctypes.sizeof(ctypes.c_void_p) * 8 64 Python 3.6.4 pc032: >>>导入ctypes >>> ctypes.sizeof(ctypes.c_void_p) * 8 32 Win 10 pc064: Python 3.5.4 pc064: >>>导入ctypes >>> ctypes.sizeof(ctypes.c_void_p) * 8 64 Python 3.6.2 pc032: >>>导入ctypes >>> ctypes.sizeof(ctypes.c_void_p) * 8 32

4. 检查(Python。文档:platform.architecture(可执行=系统。可执行文件,bits= ", linkage= ")

! !在OSX上不可靠!!由于多arch可执行文件(或.dylib)格式(在某些情况下,使用#2.)。

例子:

OSX 9 pc064: Python 2.7.10 pc064: >>> import platform >>> platform.architecture() ('64bit', '') Ubuntu 16 pc064: Python 3.5.2 pc064: >>> import platform >>> platform.architecture() ('64bit', 'ELF') Python 3.6.4 pc032: >>> import platform >>> platform.architecture() ('32bit', 'ELF') Win 10 pc064: Python 3.5.4 pc064: >>> import platform >>> platform.architecture() ('64bit', 'WindowsPE') Python 3.6.2 pc032: >>> import platform >>> platform.architecture() ('32bit', 'WindowsPE')

5. 调用外部命令

[Man7]: FILE(1) via [Python.]文档:os.system(命令) 蹩脚的变通方案(gainarie) 第4条的局限性。应用(有时甚至可能不起作用):

例子:

OSX 9 pc064: Python 2.7.10 pc064: >>> import os >>> os.system("file {:s}".format(os.path.realpath(sys.executable))) /opt/OPSWbuildtools/2.0.6/bin/python2.7.global: Mach-O 64-bit executable x86_64 Ubuntu 16 pc064: Python 3.5.2 pc064: >>> import os >>> os.system("file {:s}".format(os.path.realpath(sys.executable))) /usr/bin/python3.5: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, BuildID[sha1]=59a8ef36ca241df24686952480966d7bc0d7c6ea, stripped Python 3.6.4 pc032: >>> import os >>> os.system("file {:s}".format(os.path.realpath(sys.executable))) /home/cfati/Work/Dev/Python-3.6.4/python: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.32, BuildID[sha1]=5c3d4eeadbd13cd91445d08f90722767b0747de2, not stripped Win 10 pc064: file utility is not present, there are other 3rd-party tools (Nix emulators: MSYS2, Cygwin, ...) that can be used, but I'm not going to insist on them

6. 检查环境变量

通过Python。文档:os.environ: 赢得具体: PROCESSOR_ARCHITECTURE%(或其他)

例子:

Win 10 pc064: Python 3.5.4 pc064: >>>导入操作系统 > > > os.environ(“PROCESSOR_ARCHITECTURE”) “AMD64” Python 3.6.2 pc032: >>>导入操作系统 > > > os.environ(“PROCESSOR_ARCHITECTURE”) “x86”

7. 检查(Python。文档:sys.version

在启动解释器时也显示在第一行 在某些平台上,它可能包含(文本的)体系结构信息 检查# 1。

其他回答

基本上是Matthew Marshall答案的变体(使用来自std.library的struct):

import struct
print struct.calcsize("P") * 8

根据abe32的回答,

import sys
n_bits = 32 << bool(sys.maxsize >> 32)

N_bits将有32或64位。

在我的Centos Linux系统上,我做了以下操作: 1)启动Python解释器(我使用2.6.6) 2)运行如下代码:

import platform
print(platform.architecture())

它给了我

(64bit, 'ELF')

平台架构不是可靠的方法。 相反,我们:

$ arch -i386 /usr/local/bin/python2.7
Python 2.7.9 (v2.7.9:648dcafa7e5f, Dec 10 2014, 10:10:46)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform, sys
>>> platform.architecture(), sys.maxsize
(('64bit', ''), 2147483647)
>>> ^D
$ arch -x86_64 /usr/local/bin/python2.7
Python 2.7.9 (v2.7.9:648dcafa7e5f, Dec 10 2014, 10:10:46)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform, sys
>>> platform.architecture(), sys.maxsize
(('64bit', ''), 9223372036854775807)

Platform.architecture()注释说:

注意: 在Mac OS X(也许还有其他平台)上,可执行文件可能是包含多种体系结构的通用文件。 为了获得当前解释器的“64位”,它更可靠 查询sys. xml文件。最大尺寸属性:

import sys
is_64bits = sys.maxsize > 2**32