summaryrefslogtreecommitdiff
path: root/src/block_template.c
diff options
context:
space:
mode:
authorDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 11:34:50 -0700
committerDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 18:34:45 -0700
commit406158b882c5233575ae860aea662de148d2a8cc (patch)
tree4bde64da4d8412d6136bb4f2d9d59940436ade4d /src/block_template.c
parentb6ad2b47d9b7f3799c29097b4324dff2540fe77d (diff)
downloadpycrypto-406158b882c5233575ae860aea662de148d2a8cc.tar.gz
Add ABI check when importing _counter from block_template
Diffstat (limited to 'src/block_template.c')
-rw-r--r--src/block_template.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/block_template.c b/src/block_template.c
index c655509..e1f3f2f 100644
--- a/src/block_template.c
+++ b/src/block_template.c
@@ -70,6 +70,8 @@ typedef struct
#ifdef IS_PY3K
static PyTypeObject ALGtype;
#define is_ALGobject(v) (Py_TYPE(v) == &ALGtype)
+#define PyInt_CheckExact PyLong_CheckExact
+#define PyInt_AS_LONG PyLong_AS_LONG
#else
staticforward PyTypeObject ALGtype;
#define is_ALGobject(v) ((v)->ob_type == &ALGtype)
@@ -765,6 +767,7 @@ static struct PyModuleDef moduledef = {
#define PyModule_AddIntConstant(m,n,v) {PyObject *o=PyInt_FromLong(v); \
if (o!=NULL) \
{PyDict_SetItemString(PyModule_GetDict(m),n,o); Py_DECREF(o);}}
+#define PyInt_CheckExact PyInt_Check
#endif
@@ -807,6 +810,17 @@ _MODULE_NAME (void)
if (_counter_module) {
PCT_CounterBEType = (PyTypeObject *)PyObject_GetAttrString(_counter_module, "CounterBE");
PCT_CounterLEType = (PyTypeObject *)PyObject_GetAttrString(_counter_module, "CounterLE");
+
+ /* Simple ABI version check in case the user doesn't re-compile all of
+ * the modules during an upgrade. */
+ PyObject *abiver = PyObject_GetAttrString(_counter_module, "_PCT_CTR_ABI_VERSION");
+ if (PCT_CounterBEType == NULL || PyType_Check((PyObject *)PCT_CounterBEType) < 0 ||
+ PCT_CounterLEType == NULL || PyType_Check((PyObject *)PCT_CounterLEType) < 0 ||
+ abiver == NULL || PyInt_CheckExact(abiver) < 0 || PyInt_AS_LONG(abiver) != PCT_CTR_ABI_VERSION)
+ {
+ PyErr_SetString(PyExc_ImportError, "Crypto.Util._counter ABI mismatch. Was PyCrypto incorrectly compiled?");
+ }
+ Py_CLEAR(abiver);
}
/* Check for errors */