summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/losing_mro_ref.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-03-06 20:33:24 (GMT)
committerBrett Cannon <brett@python.org>2012-03-06 20:33:24 (GMT)
commitf67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24 (patch)
treeceed84488164142e5884411566de19f66702c3e7 /Lib/test/crashers/losing_mro_ref.py
parent0d4d410b2d6891520b1772a85f5ebdf926a0c77e (diff)
parent0119e4753eec50f671ee716af202b4a1ca28deef (diff)
downloadcpython-f67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24.zip
cpython-f67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24.tar.gz
cpython-f67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24.tar.bz2
merge
Diffstat (limited to 'Lib/test/crashers/losing_mro_ref.py')
-rw-r--r--Lib/test/crashers/losing_mro_ref.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/Lib/test/crashers/losing_mro_ref.py b/Lib/test/crashers/losing_mro_ref.py
new file mode 100644
index 0000000..b3bcd32
--- /dev/null
+++ b/Lib/test/crashers/losing_mro_ref.py
@@ -0,0 +1,35 @@
+"""
+There is a way to put keys of any type in a type's dictionary.
+I think this allows various kinds of crashes, but so far I have only
+found a convoluted attack of _PyType_Lookup(), which uses the mro of the
+type without holding a strong reference to it. Probably works with
+super.__getattribute__() too, which uses the same kind of code.
+"""
+
+class MyKey(object):
+ def __hash__(self):
+ return hash('mykey')
+
+ def __eq__(self, other):
+ # the following line decrefs the previous X.__mro__
+ X.__bases__ = (Base2,)
+ # trash all tuples of length 3, to make sure that the items of
+ # the previous X.__mro__ are really garbage
+ z = []
+ for i in range(1000):
+ z.append((i, None, None))
+ return 0
+
+
+class Base(object):
+ mykey = 'from Base'
+
+class Base2(object):
+ mykey = 'from Base2'
+
+# you can't add a non-string key to X.__dict__, but it can be
+# there from the beginning :-)
+X = type('X', (Base,), {MyKey(): 5})
+
+print(X.mykey)
+# I get a segfault, or a slightly wrong assertion error in a debug build.