Personal website https://benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

python-object-replacement.md 36 KiB

9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842
  1. ---
  2. layout: post
  3. title: Finding and Replacing Objects in Python
  4. tags: Python
  5. description: More reflection than you cared to ask for
  6. draft: true
  7. ---
  8. Today, we're going to demonstrate a fairly evil thing in Python, which I call
  9. _object replacement_.
  10. Say you have some program that's been running for a while, and a particular
  11. object has made its way throughout your code. It lives inside lists, class
  12. attributes, maybe even inside some closures. You want to completely replace
  13. this object with another one; that is to say, you want to find all references
  14. to object `A` and replace them with object `B`, enabling `A` to be garbage
  15. collected. This has some interesting implications for special object types. If
  16. you have methods that are bound to `A`, you want to rebind them to `B`. If `A`
  17. is a class, you want all instances of `A` to become instances of `B`. And so
  18. on.
  19. _But why on Earth would you want to do that?_ you ask. I'll focus on a concrete
  20. use case in a future post, but for now, I imagine this could be useful in some
  21. kind of advanted unit testing situation with mock objects. Still, it's fairly
  22. insane, so let's leave it as primarily an intellectual exercise.
  23. This article is written for [CPython](https://en.wikipedia.org/wiki/CPython)
  24. 2.7.<sup><a id="ref1" href="#fn1">[1]</a></sup>
  25. ## Review
  26. First, a recap on terminology here. You can skip this section if you know
  27. Python well.
  28. In Python, _names_ are what most languages call "variables". They reference
  29. _objects_. So when we do:
  30. {% highlight python %}
  31. a = [1, 2, 3, 4]
  32. {% endhighlight %}
  33. ...we are creating a list object with four integers, and binding it to the name
  34. `a`. In graph form:<sup><a id="ref2" href="#fn2">[2]</a></sup>
  35. <svg width="223pt" height="44pt" viewBox="0.00 0.00 223.01 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)"><title>%3</title><polygon fill="white" stroke="none" points="-4,4 -4,-40 219.012,-40 219.012,4 -4,4"/><g id="node1" class="node"><title>L</title><polygon fill="none" stroke="black" stroke-width="0.5" points="215.018,-36 126.994,-36 126.994,-0 215.018,-0 215.018,-36"/><text text-anchor="middle" x="171.006" y="-15" font-family="Courier,monospace" font-size="10.00">[1, 2, 3, 4]</text></g><g id="node2" class="node"><title>a</title><ellipse fill="none" stroke="black" stroke-width="0.5" cx="27" cy="-18" rx="27" ry="18"/><text text-anchor="middle" x="27" y="-13.8" font-family="Courier,monospace" font-size="14.00">a</text></g><g id="edge1" class="edge"><title>a&#45;&gt;L</title><path fill="none" stroke="black" stroke-width="0.5" d="M54.0461,-18C72.2389,-18 97.1211,-18 119.173,-18"/><polygon fill="black" stroke="black" stroke-width="0.5" points="119.339,-20.6251 126.839,-18 119.339,-15.3751 119.339,-20.6251"/></g></g></svg>
  36. In each of the following examples, we are creating new _references_ to the
  37. list object, but we are never duplicating it. Each reference points to the same
  38. memory address (which you can get using `id(a)`).
  39. {% highlight python %}
  40. b = a
  41. {% endhighlight %}
  42. {% highlight python %}
  43. c = SomeContainerClass()
  44. c.data = a
  45. {% endhighlight %}
  46. {% highlight python %}
  47. def wrapper(L):
  48. def inner():
  49. return L.pop()
  50. return inner
  51. d = wrapper(a)
  52. {% endhighlight %}
  53. <svg width="254pt" height="234pt" viewBox="0.00 0.00 253.96 234.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 238)"><title>%3</title><polygon fill="white" stroke="none" points="-4,4 -4,-238 249.96,-238 249.96,4 -4,4"/><g id="clust3" class="cluster"><title>cluster0</title><polygon fill="none" stroke="black" stroke-width="0.5" points="8,-8 8,-82 78,-82 78,-8 8,-8"/><text text-anchor="middle" x="43" y="-66.8" font-family="Courier,monospace" font-size="14.00">d</text></g><g id="node1" class="node"><title>obj</title><polygon fill="none" stroke="black" stroke-width="0.5" points="245.966,-153 157.943,-153 157.943,-117 245.966,-117 245.966,-153"/><text text-anchor="middle" x="201.954" y="-132" font-family="Courier,monospace" font-size="10.00">[1, 2, 3, 4]</text></g><g id="node2" class="node"><title>a</title><ellipse fill="none" stroke="black" stroke-width="0.5" cx="43" cy="-216" rx="27" ry="18"/><text text-anchor="middle" x="43" y="-211.8" font-family="Courier,monospace" font-size="14.00">a</text></g><g id="edge1" class="edge"><title>a&#45;&gt;obj</title><path fill="none" stroke="black" stroke-width="0.5" d="M64.8423,-205.244C88.7975,-192.881 128.721,-172.278 159.152,-156.573"/><polygon fill="black" stroke="black" stroke-width="0.5" points="160.422,-158.872 165.883,-153.1 158.014,-154.206 160.422,-158.872"/></g><g id="node3" class="node"><title>b</title><ellipse fill="none" stroke="black" stroke-width="0.5" cx="43" cy="-162" rx="27" ry="18"/><text text-anchor="middle" x="43" y="-157.8" font-family="Courier,monospace" font-size="14.00">b</text></g><g id="edge2" class="edge"><title>b&#45;&gt;obj</title><path fill="none" stroke="black" stroke-width="0.5" d="M69.2174,-157.662C90.9996,-153.915 123.147,-148.385 150.231,-143.726"/><polygon fill="black" stroke="black" stroke-width="0.5" points="150.777,-146.295 157.724,-142.437 149.887,-141.121 150.777,-146.295"/></g><g id="node4" class="node"><title>c</title><ellipse fill="none" stroke="black" stroke-width="0.5" cx="43" cy="-108" rx="41.897" ry="18"/><text text-anchor="middle" x="43" y="-103.8" font-family="Courier,monospace" font-size="14.00">c.data</text></g><g id="edge3" class="edge"><title>c&#45;&gt;obj</title><path fill="none" stroke="black" stroke-width="0.5" d="M82.3954,-114.605C102.772,-118.11 128.077,-122.463 150.069,-126.247"/><polygon fill="black" stroke="black" stroke-width="0.5" points="149.86,-128.874 157.697,-127.559 150.75,-123.7 149.86,-128.874"/></g><g id="node5" class="node"><title>L</title><ellipse fill="none" stroke="black" stroke-width="0.5" cx="43" cy="-34" rx="27" ry="18"/><text text-anchor="middle" x="43" y="-29.8" font-family="Courier,monospace" font-size="14.00">L</text></g><g id="edge4" class="edge"><title>L&#45;&gt;obj</title><path fill="none" stroke="black" stroke-width="0.5" d="M62.9324,-46.183C88.5083,-62.6411 134.554,-92.2712 166.386,-112.755"/><polygon fill="black" stroke="black" stroke-width="0.5" points="165.223,-115.128 172.951,-116.98 168.064,-110.714 165.223,-115.128"/></g></g></svg>
  54. Note that these references are all equal. `a` is no more valid a name for the
  55. list than `b`, `c.data`, or `L` (from the perspective of `d`, which is exposed
  56. to everyone else as `d.func_closure[0].cell_contents`, but that's cumbersome
  57. and you would never do that in practice). As a result, if you delete one of
  58. these references—explicitly with `del a`, or implicitly if a name goes out of
  59. scope—then the other references are still around, and object continues to
  60. exist. If all of an object's references disappear, then Python's garbage
  61. collector should eliminate it.
  62. ## Dead ends
  63. My first thought when approaching this problem was to physically write over the
  64. memory where our target object is stored. This can be done using
  65. [`ctypes.memmove()`](https://docs.python.org/2/library/ctypes.html#ctypes.memmove)
  66. from the Python standard library:
  67. {% highlight pycon %}
  68. >>> class A(object): pass
  69. ...
  70. >>> class B(object): pass
  71. ...
  72. >>> obj = A()
  73. >>> print obj
  74. <__main__.A object at 0x10e3e1190>
  75. >>> import ctypes
  76. >>> ctypes.memmove(id(A), id(B), object.__sizeof__(A))
  77. 140576340136752
  78. >>> print obj
  79. <__main__.B object at 0x10e3e1190>
  80. {% endhighlight %}
  81. What we are doing here is overwriting the fields of the `A` instance of the
  82. [`PyClassObject` C struct](https://github.com/python/cpython/blob/2.7/Include/classobject.h#L12)
  83. with fields from the `B` struct instance. As a result, they now share various
  84. properties, such as their attribute dictionaries
  85. ([`__dict__`](https://docs.python.org/2/reference/datamodel.html#the-standard-type-hierarchy)).
  86. So, we can do things like this:
  87. {% highlight pycon %}
  88. >>> B.foo = 123
  89. >>> obj.foo
  90. 123
  91. {% endhighlight %}
  92. However, there are clear issues. What we've done is create a
  93. [_shallow copy_](https://en.wikipedia.org/wiki/Object_copy#Shallow_copy).
  94. Therefore, `A` and `B` are still distinct objects, so certain changes made to
  95. one will not be replicated to the other:
  96. {% highlight pycon %}
  97. >>> A is B
  98. False
  99. >>> B.__name__ = "C"
  100. >>> A.__name__
  101. 'B'
  102. {% endhighlight %}
  103. Also, this won't work if `A` and `B` are different sizes, since we will be
  104. either reading from or writing to memory that we don't necessarily own:
  105. {% highlight pycon %}
  106. >>> A = ()
  107. >>> B = []
  108. >>> print A.__sizeof__(), B.__sizeof__()
  109. 24 40
  110. >>> import ctypes
  111. >>> ctypes.memmove(id(A), id(B), A.__sizeof__())
  112. 4321271888
  113. Python(33575,0x7fff76925300) malloc: *** error for object 0x6f: pointer being freed was not allocated
  114. *** set a breakpoint in malloc_error_break to debug
  115. Abort trap: 6
  116. {% endhighlight %}
  117. Oh, and there's a bit of a problem when we deallocate these objects, too...
  118. {% highlight pycon %}
  119. >>> A = []
  120. >>> B = range(8)
  121. >>> import ctypes
  122. >>> ctypes.memmove(id(A), id(B), A.__sizeof__())
  123. 4514685728
  124. >>> print A
  125. [0, 1, 2, 3, 4, 5, 6, 7]
  126. >>> del A
  127. >>> del B
  128. Segmentation fault: 11
  129. {% endhighlight %}
  130. ## Fishing for references with Guppy
  131. A more correct solution is finding all of the _references_ to the old object,
  132. and then updating them to point to the new object, rather than replacing the
  133. old object directly.
  134. But how do we track references? Fortunately, there's a library called
  135. [Guppy](http://guppy-pe.sourceforge.net/) that allows us to do this. Often used
  136. for diagnosing memory leaks, we can take advantage of its robust object
  137. tracking features here. Install it with [pip](https://pypi.python.org/pypi/pip)
  138. (`pip install guppy`).
  139. I've always found Guppy hard to use (as many debuggers are, though justified by
  140. the complexity of the task involved), so we'll begin with a feature demo before
  141. delving into the actual problem.
  142. ### Feature demonstration
  143. Guppy's interface is deceptively simple. We begin by calling
  144. [`guppy.hpy()`](http://guppy-pe.sourceforge.net/guppy.html#kindnames.guppy.hpy),
  145. to expose the Heapy interface, which is the component of Guppy that has the
  146. features we want:
  147. {% highlight pycon %}
  148. >>> import guppy
  149. >>> hp = guppy.hpy()
  150. >>> hp
  151. Top level interface to Heapy.
  152. Use eg: hp.doc for more info on hp.
  153. {% endhighlight %}
  154. Calling
  155. [`hp.heap()`](http://guppy-pe.sourceforge.net/heapy_Use.html#heapykinds.Use.heap)
  156. shows us a table of the objects known to Guppy, grouped together
  157. (mathematically speaking,
  158. [_partitioned_](https://en.wikipedia.org/wiki/Partition_of_a_set)) by
  159. type<sup><a id="ref3" href="#fn3">[3]</a></sup> and sorted by how much space
  160. they take up in memory:
  161. {% highlight pycon %}
  162. >>> heap = hp.heap()
  163. >>> heap
  164. Partition of a set of 45761 objects. Total size = 4699200 bytes.
  165. Index Count % Size % Cumulative % Kind (class / dict of class)
  166. 0 15547 34 1494736 32 1494736 32 str
  167. 1 8356 18 770272 16 2265008 48 tuple
  168. 2 346 1 452080 10 2717088 58 dict (no owner)
  169. 3 13685 30 328440 7 3045528 65 int
  170. 4 71 0 221096 5 3266624 70 dict of module
  171. 5 1652 4 211456 4 3478080 74 types.CodeType
  172. 6 199 0 210856 4 3688936 79 dict of type
  173. 7 1614 4 193680 4 3882616 83 function
  174. 8 199 0 177008 4 4059624 86 type
  175. 9 124 0 135328 3 4194952 89 dict of class
  176. <91 more rows. Type e.g. '_.more' to view.>
  177. {% endhighlight %}
  178. This object (called an
  179. [`IdentitySet`](http://guppy-pe.sourceforge.net/heapy_UniSet.html#heapykinds.IdentitySet))
  180. looks bizarre, but it can be treated roughly like a list. If we want to take a
  181. look at strings, we can do `heap[0]`:
  182. {% highlight pycon %}
  183. >>> heap[0]
  184. Partition of a set of 22606 objects. Total size = 2049896 bytes.
  185. Index Count % Size % Cumulative % Kind (class / dict of class)
  186. 0 22606 100 2049896 100 2049896 100 str
  187. {% endhighlight %}
  188. This isn't very useful, though. What we really want to do is re-partition this
  189. subset using another relationship. There are a number of options, such as:
  190. {% highlight pycon %}
  191. >>> heap[0].byid # Group by object ID; each subset therefore has one element
  192. Set of 22606 <str> objects. Total size = 2049896 bytes.
  193. Index Size % Cumulative % Representation (limited)
  194. 0 7480 0.4 7480 0.4 'The class Bi... copy of S.\n'
  195. 1 4872 0.2 12352 0.6 "Support for ... 'error'.\n\n"
  196. 2 4760 0.2 17112 0.8 'Heap queues\...at Art! :-)\n'
  197. 3 4760 0.2 21872 1.1 'Heap queues\...at Art! :-)\n'
  198. 4 3896 0.2 25768 1.3 'This module ...ng function\n'
  199. 5 3824 0.2 29592 1.4 'The type of ...call order.\n'
  200. 6 3088 0.2 32680 1.6 't\x00\x00|\x...x00|\x02\x00S'
  201. 7 2992 0.1 35672 1.7 'HeapView(roo... size, etc.\n'
  202. 8 2808 0.1 38480 1.9 'Directory tr...ories\n\n '
  203. 9 2640 0.1 41120 2.0 'The class No... otherwise.\n'
  204. <22596 more rows. Type e.g. '_.more' to view.>
  205. {% endhighlight %}
  206. {% highlight pycon %}
  207. >>> heap[0].byrcs # Group by what types of objects reference the strings
  208. Partition of a set of 22606 objects. Total size = 2049896 bytes.
  209. Index Count % Size % Cumulative % Referrers by Kind (class / dict of class)
  210. 0 6146 27 610752 30 610752 30 types.CodeType
  211. 1 5304 23 563984 28 1174736 57 tuple
  212. 2 4104 18 237536 12 1412272 69 dict (no owner)
  213. 3 1959 9 139880 7 1552152 76 list
  214. 4 564 2 136080 7 1688232 82 function, tuple
  215. 5 809 4 97896 5 1786128 87 dict of module
  216. 6 346 2 71760 4 1857888 91 dict of type
  217. 7 365 2 19408 1 1877296 92 dict of module, tuple
  218. 8 192 1 16176 1 1893472 92 dict (no owner), list
  219. 9 232 1 11784 1 1905256 93 dict of class, function, tuple, types.CodeType
  220. <229 more rows. Type e.g. '_.more' to view.>
  221. {% endhighlight %}
  222. {% highlight pycon %}
  223. >>> heap[0].byvia # Group by how the strings are related to their referrers
  224. Partition of a set of 22606 objects. Total size = 2049896 bytes.
  225. Index Count % Size % Cumulative % Referred Via:
  226. 0 2656 12 420456 21 420456 21 '[0]'
  227. 1 2095 9 259008 13 679464 33 '.co_code'
  228. 2 2095 9 249912 12 929376 45 '.co_filename'
  229. 3 564 2 136080 7 1065456 52 '.func_doc', '[0]'
  230. 4 243 1 103528 5 1168984 57 "['__doc__']"
  231. 5 1930 9 100584 5 1269568 62 '.co_lnotab'
  232. 6 502 2 31128 2 1300696 63 '[1]'
  233. 7 306 1 16272 1 1316968 64 '[2]'
  234. 8 242 1 12960 1 1329928 65 '[3]'
  235. 9 184 1 9872 0 1339800 65 '[4]'
  236. <7323 more rows. Type e.g. '_.more' to view.>
  237. {% endhighlight %}
  238. From this, we can see that the plurality of memory devoted to strings is taken
  239. up by those referenced by code objects (`types.CodeType` represents
  240. Python code—accessible from a non-C-defined function through
  241. `func.func_code`—and contains things like the names of its local variables and
  242. the actual sequence of opcodes that make it up).
  243. For fun, let's pick a random string.
  244. {% highlight pycon %}
  245. >>> import random
  246. >>> obj = heap[0].byid[random.randrange(0, heap[0].count)]
  247. >>> obj
  248. Set of 1 <str> object. Total size = 176 bytes.
  249. Index Size % Cumulative % Representation (limited)
  250. 0 176 100.0 176 100.0 'Define names...not listed.\n'
  251. {% endhighlight %}
  252. Interesting. Since this heap subset contains only one element, we can use
  253. [`.theone`](http://guppy-pe.sourceforge.net/heapy_UniSet.html#heapykinds.IdentitySetSingleton.theone)
  254. to get the actual object represented here:
  255. {% highlight pycon %}
  256. >>> obj.theone
  257. 'Define names for all type symbols known in the standard interpreter.\n\nTypes that are part of optional modules (e.g. array) are not listed.\n'
  258. {% endhighlight %}
  259. Looks like the docstring for the
  260. [`types`](https://docs.python.org/2/library/types.html) module. We can confirm
  261. by using
  262. [`.referrers`](http://guppy-pe.sourceforge.net/heapy_UniSet.html#heapykinds.IdentitySet.referrers)
  263. to get the set of objects that refer to objects in the given set:
  264. {% highlight pycon %}
  265. >>> obj.referrers
  266. Partition of a set of 1 object. Total size = 3352 bytes.
  267. Index Count % Size % Cumulative % Kind (class / dict of class)
  268. 0 1 100 3352 100 3352 100 dict of module
  269. {% endhighlight %}
  270. This is `types.__dict__` (since the docstring we got is actually stored as
  271. `types.__dict__["__doc__"]`), so if we use `.referrers` again:
  272. {% highlight pycon %}
  273. >>> obj.referrers.referrers
  274. Partition of a set of 1 object. Total size = 56 bytes.
  275. Index Count % Size % Cumulative % Kind (class / dict of class)
  276. 0 1 100 56 100 56 100 module
  277. >>> obj.referrers.referrers.theone
  278. <module 'types' from '/usr/local/Cellar/python/2.7.8_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.pyc'>
  279. >>> import types
  280. >>> types.__doc__ is obj.theone
  281. True
  282. {% endhighlight %}
  283. _But why did we find an object in the `types` module if we never imported it?_
  284. Well, let's see. We can use
  285. [`hp.iso()`](http://guppy-pe.sourceforge.net/heapy_Use.html#heapykinds.Use.iso)
  286. to get the Heapy set consisting of a single given object:
  287. {% highlight pycon %}
  288. >>> hp.iso(types)
  289. Partition of a set of 1 object. Total size = 56 bytes.
  290. Index Count % Size % Cumulative % Kind (class / dict of class)
  291. 0 1 100 56 100 56 100 module
  292. {% endhighlight %}
  293. Using a similar procedure as before, we see that `types` is imported by the
  294. [`traceback`](https://docs.python.org/2/library/traceback.html) module:
  295. {% highlight pycon %}
  296. >>> hp.iso(types).referrers
  297. Partition of a set of 10 objects. Total size = 25632 bytes.
  298. Index Count % Size % Cumulative % Kind (class / dict of class)
  299. 0 2 20 13616 53 13616 53 dict (no owner)
  300. 1 5 50 9848 38 23464 92 dict of module
  301. 2 1 10 1048 4 24512 96 dict of guppy.etc.Glue.Interface
  302. 3 1 10 1048 4 25560 100 dict of guppy.etc.Glue.Share
  303. 4 1 10 72 0 25632 100 tuple
  304. >>> hp.iso(types).referrers[1].byid
  305. Set of 5 <dict of module> objects. Total size = 9848 bytes.
  306. Index Size % Cumulative % Owner Name
  307. 0 3352 34.0 3352 34.0 traceback
  308. 1 3352 34.0 6704 68.1 warnings
  309. 2 1048 10.6 7752 78.7 __main__
  310. 3 1048 10.6 8800 89.4 abc
  311. 4 1048 10.6 9848 100.0 guppy.etc.Glue
  312. {% endhighlight %}
  313. ...and that is imported by
  314. [`site`](https://docs.python.org/2/library/site.html):
  315. {% highlight pycon %}
  316. >>> import traceback
  317. >>> hp.iso(traceback).referrers
  318. Partition of a set of 3 objects. Total size = 15992 bytes.
  319. Index Count % Size % Cumulative % Kind (class / dict of class)
  320. 0 1 33 12568 79 12568 79 dict (no owner)
  321. 1 1 33 3352 21 15920 100 dict of module
  322. 2 1 33 72 0 15992 100 tuple
  323. >>> hp.iso(traceback).referrers[1].byid
  324. Set of 1 <dict of module> object. Total size = 3352 bytes.
  325. Index Size % Cumulative % Owner Name
  326. 0 3352 100.0 3352 100.0 site
  327. {% endhighlight %}
  328. Since `site` is imported by Python on startup, we've figured out why objects
  329. from `types` exist, even though we've never used them.
  330. We've learned something important, too. When objects are stored as ordinary
  331. attributes of a parent object (like `types.__doc__`, `traceback.types`, and
  332. `site.traceback` from above), they are not referenced directly by the parent
  333. object, but by that object's `__dict__` attribute. Therefore, if we want to
  334. replace `A` with `B` and `A` is an attribute of `C`, we (probably) don't need
  335. to know anything special about `C`—just how to modify dictionaries.
  336. A good Guppy/Heapy tutorial, while a bit old and incomplete, can be found on
  337. [Andrey Smirnov's website](http://smira.ru/wp-content/uploads/2011/08/heapy.html).
  338. ## Examining paths
  339. Let's set up an example replacement using class instances:
  340. {% highlight python %}
  341. class A(object):
  342. pass
  343. class B(object):
  344. pass
  345. a = A()
  346. b = B()
  347. {% endhighlight %}
  348. Suppose we want to replace `a` with `b`. From the demo above, we know that we
  349. can get the Heapy set of a single object using `hp.iso()`. We also know we can
  350. use `.referrers` to get the set of objects that reference the given object:
  351. {% highlight pycon %}
  352. >>> import guppy
  353. >>> hp = guppy.hpy()
  354. >>> print hp.iso(a).referrers
  355. Partition of a set of 1 object. Total size = 1048 bytes.
  356. Index Count % Size % Cumulative % Kind (class / dict of class)
  357. 0 1 100 1048 100 1048 100 dict of module
  358. {% endhighlight %}
  359. `a` is only referenced by one object, which makes sense, since we've only used
  360. it in one place—as a local variable—meaning `hp.iso(a).referrers.theone` must
  361. be [`locals()`](https://docs.python.org/2/library/functions.html#locals):
  362. {% highlight pycon %}
  363. >>> hp.iso(a).referrers.theone is locals()
  364. True
  365. {% endhighlight %}
  366. However, there is a more useful feature available to us:
  367. [`.pathsin`](http://guppy-pe.sourceforge.net/heapy_UniSet.html#heapykinds.IdentitySet.pathsin).
  368. This also returns references to the given object, but instead of a Heapy set,
  369. it is a list of `Path` objects. These are more useful since they tell us not
  370. only _what_ objects are related to the given object, but _how_ they are
  371. related.
  372. {% highlight pycon %}
  373. >>> print hp.iso(a).pathsin
  374. 0: Src['a']
  375. {% endhighlight %}
  376. This looks very ambiguous. However, we find that we can extract the source of
  377. the reference using `.src`:
  378. {% highlight pycon %}
  379. >>> path = hp.iso(a).pathsin[0]
  380. >>> print path.src
  381. Partition of a set of 1 object. Total size = 1048 bytes.
  382. Index Count % Size % Cumulative % Kind (class / dict of class)
  383. 0 1 100 1048 100 1048 100 dict of module
  384. >>> path.src.theone is locals()
  385. True
  386. {% endhighlight %}
  387. ...and, we can examine the type of relation by looking at `.path[1]` (the
  388. actual reason for this isn't worth getting into, due to Guppy's lack of
  389. documentation on the subject):
  390. {% highlight pycon %}
  391. >>> relation = path.path[1]
  392. >>> relation
  393. <guppy.heapy.Path.Based_R_INDEXVAL object at 0x100f38230>
  394. {% endhighlight %}
  395. We notice that `relation` is a `Based_R_INDEXVAL` object. Sounds bizarre, but
  396. this tells us that `a` is a particular indexed value of `path.src`. What index?
  397. We can get this using `relation.r`:
  398. {% highlight pycon %}
  399. >>> rel = relation.r
  400. >>> print rel
  401. a
  402. {% endhighlight %}
  403. Ah ha! So now we know that `a` is equal to the reference source (i.e.,
  404. `path.src.theone`) indexed by `rel`:
  405. {% highlight pycon %}
  406. >>> path.src.theone[rel] is a
  407. True
  408. {% endhighlight %}
  409. But `path.src.theone` is just a dictionary, meaning we know how to modify it
  410. very easily:<sup><a id="ref4" href="#fn4">[4]</a></sup>
  411. {% highlight pycon %}
  412. >>> path.src.theone[rel] = b
  413. >>> a
  414. <__main__.B object at 0x100dae090>
  415. >>> a is b
  416. True
  417. {% endhighlight %}
  418. Bingo. We've successfully replaced `a` with `b`, using a general method that
  419. should work for any case where `a` is in a dictionary-like object.
  420. ## Handling different reference types
  421. We'll continue by wrapping this code up in a nice function, which we will
  422. expand as we go:
  423. {% highlight python %}
  424. import guppy
  425. from guppy.heapy import Path
  426. hp = guppy.hpy()
  427. def replace(old, new):
  428. for path in hp.iso(old).pathsin:
  429. relation = path.path[1]
  430. if isinstance(relation, Path.R_INDEXVAL):
  431. path.src.theone[relation.r] = new
  432. {% endhighlight %}
  433. ### Dictionaries, lists, and tuples
  434. As noted above, this is versatile to handle many dictionary-like situations,
  435. including `__dict__`, which means we already know how to replace object
  436. attributes:
  437. {% highlight pycon %}
  438. >>> a, b = A(), B()
  439. >>>
  440. >>> class X(object):
  441. ... pass
  442. ...
  443. >>> X.cattr = a
  444. >>> x = X()
  445. >>> x.iattr = a
  446. >>> d1 = {1: a}
  447. >>> d2 = [{1: {0: ("foo", "bar", {"a": a, "b": b})}}]
  448. >>>
  449. >>> replace(a, b)
  450. >>>
  451. >>> print a
  452. <__main__.B object at 0x1042b9910>
  453. >>> print X.cattr
  454. <__main__.B object at 0x1042b9910>
  455. >>> print x.iattr
  456. <__main__.B object at 0x1042b9910>
  457. >>> print d1[1]
  458. <__main__.B object at 0x1042b9910>
  459. >>> print d2[0][1][0][2]["a"]
  460. <__main__.B object at 0x1042b9910>
  461. {% endhighlight %}
  462. Lists can be handled exactly the same as dictionaries, although the keys in
  463. this case (i.e., `relation.r`) will always be integers.
  464. {% highlight pycon %}
  465. >>> a, b = A(), B()
  466. >>> L = [0, 1, 2, a, b]
  467. >>> print L
  468. [0, 1, 2, <__main__.A object at 0x104598950>, <__main__.B object at 0x104598910>]
  469. >>> replace(a, b)
  470. >>> print L
  471. [0, 1, 2, <__main__.B object at 0x104598910>, <__main__.B object at 0x104598910>]
  472. {% endhighlight %}
  473. Tuples are interesting. We can't modify them directly because they're
  474. immutable, but we _can_ create a new tuple with the new value, and then replace
  475. that tuple just like we replaced our original object:
  476. {% highlight python %}
  477. # Meanwhile, in replace()...
  478. if isinstance(relation, Path.R_INDEXVAL):
  479. source = path.src.theone
  480. if isinstance(source, tuple):
  481. temp = list(source)
  482. temp[relation.r] = new
  483. replace(source, tuple(temp))
  484. else:
  485. source[relation.r] = new
  486. {% endhighlight %}
  487. As a result:
  488. {% highlight pycon %}
  489. >>> a, b = A(), B()
  490. >>> t1 = (0, 1, 2, a)
  491. >>> t2 = (0, (1, (2, (3, (4, (5, (a,)))))))
  492. >>> replace(a, b)
  493. >>> print t1
  494. (0, 1, 2, <__main__.B object at 0x104598e50>)
  495. >>> print t2
  496. (0, (1, (2, (3, (4, (5, (<__main__.B object at 0x104598e50>,)))))))
  497. {% endhighlight %}
  498. ### Bound methods
  499. Here's a fun one. Let's upgrade our definitions of `A` and `B`:
  500. {% highlight python %}
  501. class A(object):
  502. def func(self):
  503. return self
  504. class B(object):
  505. pass
  506. {% endhighlight %}
  507. After replacing `a` with `b`, `a.func` no longer exists, as we'd expect:
  508. {% highlight pycon %}
  509. >>> a, b = A(), B()
  510. >>> a.func()
  511. <__main__.A object at 0x10c4a5b10>
  512. >>> replace(a, b)
  513. >>> a.func()
  514. Traceback (most recent call last):
  515. File "<stdin>", line 1, in <module>
  516. AttributeError: 'B' object has no attribute 'func'
  517. {% endhighlight %}
  518. But what if we save a reference to `a.func` before the replacement?
  519. {% highlight pycon %}
  520. >>> a, b = A(), B()
  521. >>> f = a.func
  522. >>> replace(a, b)
  523. >>> f()
  524. <__main__.A object at 0x10c4b6090>
  525. {% endhighlight %}
  526. Hmm. So `f` has kept a reference to `a` somehow, but not in a dictionary-like
  527. object. So where is it?
  528. Well, we can reveal it with the attribute `f.__self__`:
  529. {% highlight pycon %}
  530. >>> f.__self__
  531. <__main__.A object at 0x10c4b6090>
  532. {% endhighlight %}
  533. Unfortunately, this attribute is magical and we can't write to it directly:
  534. {% highlight pycon %}
  535. >>> f.__self__ = b
  536. Traceback (most recent call last):
  537. File "<stdin>", line 1, in <module>
  538. TypeError: readonly attribute
  539. {% endhighlight %}
  540. Python clearly doesn't want us to re-bind bound methods, and a reasonable
  541. person would give up here, but we still have a few tricks up our sleeve. Let's
  542. examine the internal C structure of bound methods,
  543. [`PyMethodObject`](https://github.com/python/cpython/blob/2.7/Include/classobject.h#L31).
  544. <svg width="559pt" height="200pt" viewBox="0.00 18.00 559.03 200.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 226)"><title>%3</title><polygon fill="white" stroke="none" points="-4,4 -4,-226 555.032,-226 555.032,4 -4,4"/><g id="clust2" class="cluster"><title>cluster</title><polygon fill="none" stroke="black" stroke-width="0" points="8,-8 8,-214 272,-214 272,-8 8,-8"/><text text-anchor="middle" x="140" y="-14.8" font-family="Courier,monospace" font-size="14.00">PyMethodObject</text></g><g id="node1" class="node"><title>obj</title><polygon fill="none" stroke="black" stroke-width="0.5" points="551.048,-110 336.984,-110 336.984,-74 551.048,-74 551.048,-110"/><text text-anchor="middle" x="444.016" y="-89" font-family="Courier,monospace" font-size="10.00">&lt;__main__.A object at 0xdeadbeef&gt;</text></g><g id="node2" class="node"><title>struct</title><polygon fill="#eeeeee" stroke="none" points="24,-182 24,-202 256,-202 256,-182 24,-182"/><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-182 24,-202 256,-202 256,-182 24,-182"/><text text-anchor="start" x="27" y="-188.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">struct _object* </text><text text-anchor="start" x="161.422" y="-188.8" font-family="Courier,monospace" font-style="oblique" font-size="14.00" fill="#666666">_ob_next</text><polygon fill="#eeeeee" stroke="none" points="24,-162 24,-182 256,-182 256,-162 24,-162"/><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-162 24,-182 256,-182 256,-162 24,-162"/><text text-anchor="start" x="27" y="-168.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">struct _object* </text><text text-anchor="start" x="161.422" y="-168.8" font-family="Courier,monospace" font-style="oblique" font-size="14.00" fill="#666666">_ob_prev</text><polygon fill="#eeeeee" stroke="none" points="24,-142 24,-162 256,-162 256,-142 24,-142"/><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-142 24,-162 256,-162 256,-142 24,-142"/><text text-anchor="start" x="27" y="-148.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">Py_ssize_t </text><text text-anchor="start" x="119.415" y="-148.8" font-family="Courier,monospace" font-size="14.00">ob_refcnt</text><polygon fill="#eeeeee" stroke="none" points="24,-122 24,-142 256,-142 256,-122 24,-122"/><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-122 24,-142 256,-142 256,-122 24,-122"/><text text-anchor="start" x="26.5815" y="-128.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">struct _typeobject* </text><text text-anchor="start" x="194.609" y="-128.8" font-family="Courier,monospace" font-size="14.00">ob_type</text><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-102 24,-122 256,-122 256,-102 24,-102"/><text text-anchor="start" x="27" y="-108.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">PyObject* </text><text text-anchor="start" x="111.014" y="-108.8" font-family="Courier,monospace" font-size="14.00">im_func</text><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-82 24,-102 256,-102 256,-82 24,-82"/><text text-anchor="start" x="27" y="-88.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">PyObject* </text><text text-anchor="start" x="111.014" y="-88.8" font-family="Courier,monospace" font-size="14.00">im_self</text><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-62 24,-82 256,-82 256,-62 24,-62"/><text text-anchor="start" x="27" y="-68.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">PyObject* </text><text text-anchor="start" x="111.014" y="-68.8" font-family="Courier,monospace" font-size="14.00">im_class</text><polygon fill="none" stroke="black" stroke-width="0.5" points="24,-42 24,-62 256,-62 256,-42 24,-42"/><text text-anchor="start" x="27" y="-48.8" font-family="Courier,monospace" font-size="14.00" fill="#888888">PyObject* </text><text text-anchor="start" x="111.014" y="-48.8" font-family="Courier,monospace" font-size="14.00">im_weakreflist</text></g><g id="edge1" class="edge"><title>struct:f&#45;&gt;obj</title><path fill="none" stroke="black" stroke-width="0.5" d="M257,-92C280.313,-92 305.269,-92 329.087,-92"/><polygon fill="black" stroke="black" stroke-width="0.5" points="329.277,-94.6251 336.777,-92 329.277,-89.3751 329.277,-94.6251"/></g></g></svg>
  545. The four gray fields of the struct come from
  546. [`PyObject_HEAD`](https://github.com/python/cpython/blob/2.7/Include/object.h#L78),
  547. which exist in all Python objects. The first two fields are from
  548. [`_PyObject_HEAD_EXTRA`](https://github.com/python/cpython/blob/2.7/Include/object.h#L66),
  549. and only exist when the debugging macro `Py_TRACE_REFS` is defined, in order to
  550. support more advanced reference counting. We can see that the `im_self` field,
  551. which mantains the reference to our target object, is either forth or sixth in
  552. the struct depending on `Py_TRACE_REFS`. If we can figure out the size of the
  553. field and its offset from the start of the struct, then we can set its value
  554. directly using `ctypes.memmove()`:
  555. {% highlight python %}
  556. ctypes.memmove(id(f) + offset, ctypes.byref(ctypes.py_object(b)), field_size)
  557. {% endhighlight %}
  558. Here, `id(f)` is the memory location of our method, which refers to the start
  559. of the C struct from above. `offset` is the number of bytes between this memory
  560. location and the start of the `im_self` field. We use
  561. [`ctypes.byref()`](https://docs.python.org/2/library/ctypes.html#ctypes.byref)
  562. to create a reference to the replacement object, `b`, which will be copied over
  563. the existing reference to `a`. Finally, `field_size` is the number of bytes
  564. we're copying, equal to the size of the `im_self` field.
  565. Well, all but one of these fields are pointers to structure types, meaning they
  566. have the same size,<sup><a id="ref5" href="#fn5">[5]</a></sup> equal to
  567. [`ctypes.sizeof(ctypes.py_object)`](https://docs.python.org/2/library/ctypes.html#ctypes.sizeof).
  568. This is (probably) 4 or 8 bytes, depending on whether you're on a 32-bit or a
  569. 64-bit system. The other field is a `Py_ssize_t` object—possibly the same size
  570. as the pointers, but we can't be sure—which is equal to
  571. `ctypes.sizeof(ctypes.c_ssize_t)`.
  572. [`PyCFunctionObject`](https://github.com/python/cpython/blob/2.7/Include/methodobject.h#L81)
  573. ### Dictionary keys
  574. ...
  575. ### Closure cells
  576. ...
  577. ### Frames
  578. ...
  579. ### Slots
  580. ...
  581. ### Classes
  582. ...
  583. ### Other cases
  584. Certainly, not every case is handled above, but it seems to cover the vast
  585. majority of instances that I've found through testing. There are a number of
  586. reference relations in Guppy that I couldn't figure out how to replicate
  587. without doing something insane (`R_HASATTR`, `R_CELL`, and `R_STACK`), so some
  588. obscure replacements are likely unimplemented.
  589. Some other kinds of replacements are known, but impossible. For example,
  590. replacing a class object that uses `__slots__` with another class will not work
  591. if the replacement class has a different slot layout and instances of the old
  592. class exist. More generally, replacing a class with a non-class object won't
  593. work if instances of the class exist. Furthermore, references stored in data
  594. structures managed by C extensions cannot be changed, since there's no good way
  595. for us to track these.
  596. Remaining areas to explore include behavior when metaclasses and more complex
  597. descriptors are involved. Implementing a more complete version of `replace()`
  598. is left as an exercise for the reader.
  599. ## Footnotes
  600. 1. <a id="fn1" href="#ref1">^</a> This post relies _heavily_ on implementation
  601. details of CPython 2.7. While it could be adapted for Python 3 by examining
  602. changes to the internal structures of objects that we used above, that would
  603. be a lost cause if you wanted to replicate this on
  604. [Jython](http://www.jython.org/) or some other implementation. We are so
  605. dependent on concepts specific to CPython that you would need to start from
  606. scratch, beginning with a language-specific replacement for Guppy.
  607. 2. <a id="fn2" href="#ref2">^</a> The
  608. [DOT files](https://en.wikipedia.org/wiki/DOT_(graph_description_language))
  609. used to generate graphs in this post are
  610. [available on Gist](https://gist.github.com/earwig/edc13f04f871c110eea6).
  611. 3. <a id="fn3" href="#ref3">^</a> They're actually grouped together by _clodo_
  612. ("class or dict object"), which is similar to type, but groups `__dict__`s
  613. separately by their owner's type.
  614. 4. <a id="fn4" href="#ref4">^</a> Python's documentation tells us not to modify
  615. the locals dictionary, but screw that; we're gonna do it anyway.
  616. 5. <a id="fn5" href="#ref5">^</a> According to the
  617. [C99](http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf) and
  618. [C11 standards](http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf);
  619. section 6.2.5.27 in the former and 6.2.5.28 in the latter: "All pointers to
  620. structure types shall have the same representation and alignment
  621. requirements as each other."