summaryrefslogtreecommitdiff
path: root/src/cpuid.c
blob: 5b4b40522b0c2b00b9b8a49c449794e0ab61479a (plain)
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
/*
 *  cpuid.c: check CPU capabilities
 *
 * Written in 2013 by Sebastian Ramacher <sebastian@ramacher.at>
 *
 * ===================================================================
 * The contents of this file are dedicated to the public domain.  To
 * the extent that dedication to the public domain is not available,
 * everyone is granted a worldwide, perpetual, royalty-free,
 * non-exclusive license to exercise all rights associated with the
 * contents of this file for any purpose whatsoever.
 * No rights are reserved.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 * ===================================================================
 */
#include "Python.h"
#include <stdint.h>
#include "config.h"
#ifdef HAVE_CPUID_H
#include <cpuid.h>
#endif

#include "pycrypto_compat.h"

/*
 * The have_aes_ni Python function
 */

static char have_aes_ni__doc__[] =
"have_aes_ni() -> bool\n"
"\n"
"Return whether AES-NI instructions are available.\n";

static PyObject *
have_aes_ni(PyObject *self, PyObject *args)
{
    if (!PyArg_ParseTuple(args, ""))
        return NULL;

#ifndef HAVE_CPUID_H
    Py_INCREF(Py_False);
    return Py_False;
#else
    uint32_t eax, ebx, ecx, edx;
    /* call cpuid to check if AES-NI instructions are available */
    if (__get_cpuid(1, &eax, &ebx, &ecx, &edx)) {
        if (ecx & bit_AES) {
            Py_INCREF(Py_True);
            return Py_True;
        }
    }
    Py_INCREF(Py_False);
    return Py_False;
#endif
}

/*
 * Module-level method table and module initialization function
 */

static PyMethodDef cpuid_methods[] = {
    {"have_aes_ni", have_aes_ni, METH_VARARGS, have_aes_ni__doc__},
    {NULL, NULL, 0, NULL}   /* end-of-list sentinel value */
};

#ifdef IS_PY3K
static struct PyModuleDef moduledef = {
	PyModuleDef_HEAD_INIT,
	"cpuid",
	NULL,
	-1,
	cpuid_methods,
	NULL,
	NULL,
	NULL,
	NULL
};
#endif

PyMODINIT_FUNC
#ifdef IS_PY3K
PyInit_cpuid(void)
#else
initcpuid(void)
#endif
{
    /* Initialize the module */
#ifdef IS_PY3K
    return PyModule_Create(&moduledef);
#else
    Py_InitModule("cpuid", cpuid_methods);
#endif
}

/* vim:set ts=4 sw=4 sts=4 expandtab: */