87617ead0ca9740a18a3c70ed2ae746340babc1f
[web.git] / ralf / _posts / 2019-04-30-stacked-borrows-2.md
1 ---
2 title: "Stacked Borrows 2"
3 categories: rust research
4 ---
5
6 Recently, I have [significantly updated](https://github.com/rust-lang/miri/pull/695) Stacked Borrows in order to fix some issues with the handling of shared references that were uncovered in the previous version.
7 In this post, I will describe what the new version looks like and how it differs from [Stacked Borrows 1]({% post_url 2018-11-16-stacked-borrows-implementation %}).
8 I assume some familiarity with the prior version and will not explain everything from scratch.
9
10 <!-- MORE -->
11
12 ## The problem
13
14 The problem I wanted to solve was that the first version of Stacked Borrows only performed very little tracking of shared references.
15 My thinking was, if the location is read-only anyway, then it does not harm to grant anyone read access.
16 However, [as @arielby noted](https://github.com/rust-lang/unsafe-code-guidelines/issues/87), this leads to loss of optimization potential in cases where a function receives a mutable reference (which is supposed to have no aliases) and then creates a shared reference from it:
17 {% highlight rust %}
18 fn main() {
19     let x = &mut 0u32;
20     let p = x as *mut u32;
21     foo(x, p);
22 }
23
24 fn foo(a: &mut u32, y: *mut u32) -> u32 {
25     *a = 1;
26     let _b = &*a; // This freezes `x`. Frozen locations can be read by any raw pointer.
27     unsafe { *y = 2; } // Hence, this legal in Stacked Borrows.
28     return *a; // But we want to optimize this to always return 1!
29 }
30 {% endhighlight %}
31 Stacked Borrows 1 allowed any raw pointer to read a frozen location.
32 Basically, once a location is frozen we do not keep track of which pointer is allowed to read; we just allow all pointers to read.
33 However, that means that `&*a` above (reborrowing a mutable reference as a shared reference) has the unintended side-effect of permitting raw pointers to access `*a`!
34 This violates the idea that `a` is a unique pointer: we'd like to assume that `foo` can only ever return `1`, because `y` cannot possibly alias with `a`.
35 Hence calling `foo` like we do here with `a` and `y` pointing to the same thing must be undefined behavior---and yet, Stacked Borrows 1 considered the example above to be legal.
36
37 ## The solution
38
39 To fix this, I had to replace the mechanism of "freezing" by something else.
40 Remember that in Stacked Borrows 1, when a shared reference was created, we stored the timestamp at which that happened and also recorded in memory that the location this reference points to is frozen since now.
41 Whenever a shared reference gets used, we check that the location is frozen *at least* since our reference got created.
42 This is in contrast to mutable references, where we require the exact unique ID of that reference to be present in the borrow stack.
43
44 To rule out cases like the example above, instead of freezing a location and allowing *all* shared reference created henceforth to access this location, we keep track precisely of *which* shared references are allowed access.
45 The per-location borrow stack now consists of items that grant a particular *permission* to a pointer identified by a particular *tag*:
46 {% highlight rust %}
47 pub struct Item {
48     /// The pointers the permission is granted to.
49     tag: Tag,
50     /// The permission this item grants.
51     perm: Permission,
52 }
53
54 pub enum Permission {
55     /// Grants unique mutable access.
56     Unique,
57     /// Grants shared mutable access.
58     SharedReadWrite,
59     /// Greants shared read-only access.
60     SharedReadOnly,
61 }
62 {% endhighlight %}
63 There is no longer a separate "frozen" state; keeping shared references read-only is now handled by the borrow stack itself:
64 {% highlight rust %}
65 pub struct Stack {
66     borrows: Vec<Item>
67 }
68 {% endhighlight %}
69 The *tag* is also simpler than it was before: there are no longer separate tags for mutable and shared references.
70 {% highlight rust %}
71 pub type PtrId = NonZeroU64;
72 pub enum Tag {
73     Tagged(PtrId),
74     Untagged,
75 }
76 {% endhighlight %}
77 Just like before, a new `Tag` gets picked on every retagging; in particular whenever a reference gets created with `&mut <expr>`/`& <expr>` and when a reference gets cast to a raw pointer.
78 Other than that (like on pointer arithmetic), the tag just gets propagated to keep track of where this pointer comes from.
79 However, unlike before, the only difference between mutable and shared references is the permissions that are associated with that tag.
80
81 ### Memory accesses
82
83 But before we go into creation of new references, let us look at how permissions in the borrow stack affect what happens at a memory access is legal.
84 So assume that some pointer tagged `tag` is used to either read from or write to memory.
85 For each affected location, we go through two steps: first we try to find the *granting item*, then we remove *incompatible items*.
86
87 **Finding the granting item.**
88 To find the granting item, we traverse the borrow stack top-to-bottom and search for an item that has the same tag.
89 If this is a write access, we go on looking until we find an item with the right tag whose permission is `SharedReadWrite` or `Unique`---we do not consider items with `SharedReadOnly` permission to grant a write access.
90 Once we found the granting item, we remember its position in the stack; that will be important for the second step.
91 If no granting item can be found, the access causes undefined behavior.
92
93 For example, if the stack is
94 ```
95 [ Item { tag: Tagged(0), perm: Unique },
96   Item { tag: Tagged(1), perm: SharedReadOnly} ]
97 ```
98 then a read access with tag `Tagged(1)` is granted by the item at index 1; a read/write access with tag `Tagged(0)` is granted by the item at index 0, but a write access with tag `Tagged(1)` is not granted by any item (and thus not allowed).
99 Just to keep things shorter and easier to read, in the following I will use a short-hand syntax for writing down items, so the above stack would look as follows:
100 ```
101 [ (0: Unique), (1: SharedReadOnly) ]
102 ```
103
104 To consider a second example, if the stack is
105 ```
106 [ (0: Unique), (Untagged: SharedReadWrite), (Untagged: SharedReadOnly) ]
107 ```
108 then a read access with an `Untagged` pointer is granted by the item at index 2, but a write access with an `Untagged` pointer is only granted by the item at index 1.
109
110 **Removing incompatible items.**
111 In the second step, we traverse all the items *above* the granting item in the stack, and see if they are compatible with this access.
112 This realizes the idea (already present in the original Stacked Borrows) that using one pointer disallows future uses of another pointer.
113 For example, if the current stack is
114 ```
115 [ (0: Unique), (1: Unique) ]
116 ```
117 then doing any kind of access with a `Tagged(0)` pointer should remove the `1: Unique` item from the stack.
118 This matches the part of Stacked Borrows 1 where items got popped off the stack until the granting item is at the top.
119 We say that the granting `Unique` permission is *incompatible* with the `Unique` permission of the item higher up the stack, and hence the latter must be removed.
120
121 However, in the new model, we don't always remove *all* items that are above the granting item:
122 ```
123 [ (0: Unique), (1: SharedReadOnly), (2: SharedReadOnly) ]
124 ```
125 In a situation like this, there are two pointers that may be used for reading, `Tagged(1)` and `Tagged(2)`.
126 Using either of them should not have an impact on the other one, and the fact that their items are in a particular order on the stack has no impact.
127 In other words, a granting `SharedReadOnly` permission is *compatible* with other `SharedReadOnly` permissions, and hence when using a `SharedReadOnly` permission to grant an access, other `SharedReadOnly` permissions above it are maintained.
128
129 Sometimes, being compatible depends on the kind of access that was performed:
130 in our last example stack, if we *write* with a `Tagged(0)` pointer, that should remove the `SharedReadOnly` tags because writing to a unique pointer should make sure that that pointer is at the top of the stack.
131 In other words, on a write, a `Unique` permission is incompatible with everything.
132 However, if we just *read* with a `Tagged(0)` pointer, that's fine!
133 This is to allow [safe code like this](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=d9aa504b1be72a0f55fb5a744cba69ff) that interleaves reads from aliasing mutable and shared references.
134 To enable this, on a read, a `Unique` permission is only incompatible with other `Unique` permissions.
135
136 The following table fully documents which permissions are compatible with which other permissions on a read or write access, respectively:
137
138 |↓ **Granting item** \ **Compatible with** → | `Unique`  | `SharedReadWrite`   | `SharedReadOnly`  |
139 |---:|---|---|---|
140 |`Unique`                                    | no | only reads | only reads  |
141 |`SharedReadWrite`                           | no | yes  | only reads |
142 |`SharedReadOnly`                            | no | no  | only reads |
143
144 So, for example, if the granting item has `SharedReadWrite` permissions, then all `Unique` above it in the stack will be removed, and moreover on a write, all `SharedReadOnly` above it will be removed.
145 This makes sure that the pointers for which those `SharedReadOnly` permission grants read access cannot be used any more: those pointers assumed the location was read-only, so we must make sure that after a write, they become invalid.
146
147 The name "stack" is a bit of a misnomer at this point, because we do *not* follow a stack discipline when removing items: just because some item got removed due to incompatibility, does not mean all items above it will also get removed.
148 I will discuss [later][no-stack] why a strict stack discipline does not work.
149 But I felt it would be even more confusing to rename the entire thing at this point, and the order of elements in the "stack" still *does* matter, so I kept the name.
150
151 In Stacked Borrows 2, there is no more action occurring when a pointer gets dereferenced: the tags only matter for the actual access.
152 This simplification is possible because the rules for accesses are now more complicated than before, so there is no need for extra checks on the dereference operation.
153 (In particular, previously the dereference checks relied on knowing the Rust type at which the access happens for proper handling of interior mutability; but now all that information is encoded using `SharedReadWrite`/`SharedReadOnly` tags as we will see. Not relying on types any more here also [fixed an annoying issue around `UnsafeCell`](https://github.com/rust-lang/miri/issues/615).)
154
155 ### Retagging: when permissions get added
156
157 The framework of permissions in a stack with a notion of (in)compatibility that we have seen so far allows us to express some ideas like:
158
159 * "A `Unique` pointer will get invalid when any of its parent pointers get used."<br> That is realized by having "no" in the entire first column of our table: every access removes all `Unique` permissions above the granting item.
160 * "A `SharedReadOnly` pointer will get invalid when the location gets written to."<br> This gets realized by having "only reads" in the entire last column of the table and not granting write accesses with a `SharedReadOnly` permission. In addition to that, however, we *also* need to ensure that in the stack we never have a `Unique` or `SharedReadWrite` *on top* of a `SharedReadOnly`! In a nonsense stack like `[ (0: SharedReadOnly), (1: SharedReadWrite) ]` we could write with a `Tagged(1)` pointer without invalidating the `Tagged(0)` pointers.
161
162 Now the question is, how to we *use* this "language"?
163 We have to define which items and permissions get added to the borrow stack.
164 Just like before, this happens during retagging.
165 Before we discuss retagging in general, let us look at our motivating example and see how retagging works there in Stacked Borrows 2, and how this program is defined to cause UB:
166 {% highlight rust %}
167 fn main() {
168     let x = &mut 0u32;
169     Retag(x); // Tagged(0)
170     // Stack: [ (0: Unique) ]
171
172     let p = x as *mut u32;
173     Retag([raw] p); // Untagged
174     // Stack: [ (0: Unique), (Untagged: SharedReadWrite) ]
175
176     foo(x, p);
177 }
178
179 fn foo(a: &mut u32, y: *mut u32) -> u32 {
180     Retag(a); // Tagged(1)
181     // Stack: [ (0: Unique), (1: Unique) ]
182
183     *a = 1;
184
185     let _b = &*a;
186     Retag(_b); // Tagged(2)
187     // Stack: [ (0: Unique), (1: Unique), (2: SharedReadOnly) ]
188
189     // UB: y is Untagged, and there is no granting item in the stack!
190     unsafe { *y = 2; }
191
192     return *a;
193 }
194 {% endhighlight %}
195 Initially, `x` with tag `Tagged(0)` is the only reference, and the stack says that this is the only pointer with any kind of permission.
196 Next, we cast `x` to a raw pointer.
197 The raw retagging of `p` turns `p` into an `Untagged` pointer, and adds a new item granting thusly tagged pointers `SharedReadWrite` permission.
198 (Really, in the MIR it will say `&mut *x as *mut u32`, so there will be an additional `Unique` permission for the temporary mutable reference, but that makes no difference and I hope [we will change that eventually](https://github.com/rust-lang/rfcs/pull/2582).)
199
200 Then `foo` gets called, which starts with the usual retagging of all reference arguments.
201 `a` is originally `Tagged(0)`, and retagging a mutable reference acts like an access (just like in Stacked Borrows 1), so the first thing that happens is that all items above the granting item that are incompatible with a write access for a `Unique` permission get removed from the stack.
202 In our case, this means that the `Untagged: SharedReadWrite` gets removed.
203 Then, `a` gets the new tag `Tagged(1)` and `1: Unique` gets pushed on top of the stack.
204 Nothing interesting happens when writing to `a`.
205 When `_b` gets created, it gets assigned the new tag `Tagged(2)`, and a new item `2: SharedReadOnly` is pushed to the stack.
206 As we can see, shared and mutable references no longer differ in the tag they carry; the only difference is what kind of permission they get granted.
207 (I think this is a nice improvement from Stacked Borrows 1, where shared references had a different kind of tag. In particular, transmutes between mutable references and shared pointers no longer need any kind of special treatment.)
208 Finally, we come to the interesting point: the program writes to `y`.
209 That pointer is `Untagged`, and there is no item granting any access to such pointers, and thus the access is UB!
210 This is in contrast to Stacked Borrows 1, where instead of `2: SharedReadOnly` we set a special "frozen" marker on this location that would, as a side-effect, also grant untagged pointers read-only access.
211
212 In general, during retagging, we start with some original tag used by our "parent" pointer, and we have a fresh tag `N` that will be used for the new pointer.
213 We have to decide which permission to grant so this tag, and where in the "stack" to insert it.
214 (We will not always insert new items at the top---again, as we will see following a strict stack discipline does not work.)
215 All of this happens for every location that the reference covers (as determined by its type).
216
217 **Retagging a mutable reference.**
218 The simplest case of retagging is handling mutable references:
219 just like in Stacked Borrows 1, this starts by performing the actions of a write access with the parent tag.
220 `Unique` permissions are incompatible with anything on a write, so all items above the granting item get removed.
221 Then we add `N: Unique` on top of the stack to grant the new tag unique access to this location.
222
223 This encodes the idea that mutable references must be used in a well-nested way---if you just consider mutable references, Stacked Borrows 2 still follows a stack discipline.
224
225 **Retagging a shared reference.**
226 When retagging a shared reference, we have to be mindful of `UnsafeCell`.
227
228 Outside of `UnsafeCell`, we start by performing the actions of a read access with the parent tag.
229 Then we push `N: SharedReadOnly` on top of the borrow stack.
230 This way, we grant the new pointer read-only access but make sure that it gets invalidated on the next write through any aliasing pointer (because all write-granting items are below us, and thus we test for compatibility when they get used).
231 There might be items left between the granting item and the one we just added, but that's okay: if any of them gets used for reading, that will be compatible with the `SharedReadOnly` according to our table above; and if any of them gets used for writing then it is important that our `SharedReadOnly` gets removed.
232
233 When we are inside an `UnsafeCell`, we will *not* perform the actions of a memory access!
234 Interior mutability allows all sorts of crazy aliasing, and in particular, one can call a function with signature
235 {% highlight rust %}
236 fn aliasing(refcell: &RefCell<i32>, inner: &mut i32)
237 {% endhighlight %}
238 such that `inner` points *into* `refcell`, i.e., the two pointers overlap!
239 Retagging `refcell` must not remove the `Unique` item associated with `inner`.
240
241 So, when retagging inside an `UnsafeCell`, we *find* the write-granting item for the parent's tag, and then we add `N: SharedReadWrite` just above it.
242 This grants write access, as is clearly needed for interior mutability.
243 We cannot add the new item at the top of the stack because that would add it *on top of* the item granting `inner`.
244 Any write to `inner` would remove our item from the stack!
245 Instead, we make our item sit just on top of its parent, reflecting the way one pointer got derived from the other.
246
247 **Retagging a raw pointer.**
248 Retagging for raw pointers happens only immediately after a reference-to-raw-pointer cast.
249 Unlike in Stacked Borrows 1, retagging depends on whether this is a `*const T` or `*mut T` pointer---this is a departure from the principle that these two types are basically the same (except for variance).
250 I have recently learned that the borrow checker actually handles `*mut` and `*const*` casts differently; also see [this long comment](https://github.com/rust-lang/rust/issues/56604#issuecomment-477954315).
251 Given that the idea of Stacked Borrows is to start with what the borrow checker does and extrapolate to a dynamic model that also encompasses raw pointers, I felt that it makes sense for now to mirror this behavior in Stacked Borrows.
252 This is certainly not a final decision though, and I feel we should eventually have a discussion whether we should make the borrow checker and Stacked Borrows both treat `*const T` and `*mut T` the same.
253
254 When casting to a `*mut T`, we basically behave like in the above case for inside an `UnsafeCell` behind a shared reference: we find the write-granting item for our parent's tag, and we add `Untagged: SharedReadWrite` just on top of it.
255 The way compatibility is defined for `SharedReadWrite`, there can be many such items next to each other on the stack, and using any one of them will not affect the others.
256 However, writing with a `Unique` permission further up the stack *will* invalidate all of them, reflecting the idea that when writing to a mutable reference, all raw pointers previously created from this reference become invalid.
257
258 When casting to a `*const T`, we behave just like retagging for a shared reference `&T` (including being mindful of `UnsafeCell`).
259 There isn't really anything that a `*const T` can do that a shared reference cannot (both in terms of aliasing and mutation), so modeling them the same way makes sense.
260
261 ### Two-phase borrows
262
263 Stacked Borrows 1 [had some support for two-phase borrows]({% post_url 2018-12-26-stacked-borrows-barriers %}), but some advanced forms of two-phase borrows that used to be allowed by the borrow checker [could not be handled](https://github.com/rust-lang/rust/issues/56254).
264 With the additional flexibility of Stacked Borrows 2 and its departure from a strict stack discipline, it is possible to accept at least the known examples of this pattern that were previously rejected:
265 {% highlight rust %}
266 fn two_phase_overlapping1() {
267     let mut x = vec![];
268     let p = &x;
269     x.push(p.len());
270 }
271 {% endhighlight %}
272 Previously, when the implicit reborrow of `x` in `x.push` got executed, that would remove the item for `p` from the stack.
273 This happens as part of the implicit write access that occurs when a mutable reference gets retagged.
274 With Stacked Borrows 2, we can do something else:
275 when retagging a two-phase mutable borrow, we do *not* perform the actions of a write access.
276 Instead, we just find the write-granting item for our parent's tag, and then add `N: Unique` just above it.
277 This has the consequence that on the first write access to this new pointer, everything on top of it will be removed, but until then the existing item for `p` remains on the stack and can be used just as before.
278
279 Just like with Stacked Borrows 1, we then proceed by doing a *shared* reborrow of the parent's tag from `N`.
280 This way, the parent pointer can be used in the ways a shared reference can (including writes, if there is interior mutability) without invalidating `N`.
281 This is somewhat strange because we then have "parent tag - new tag - parent tag" on the stack in that order, so we no longer properly reflect the way pointers got derived from each other.
282 More analysis will be needed to figure out the consequences of this.
283
284 We should also try to fully understand the effect this "weak" form of a mutable reborrow (without a virtual write access) has on the optimizations that can be performed.
285 Most of the cases of Stacked Borrows violations I found in the standard library are caused by the fact that even just *creating* a mutable reference asserts that it is unique and invalidates aliasing pointers, so if we could weaken that we would remove one of the most common causes of UB caused by Stacked Borrows.
286 On the other hand, this means that the compiler will have a harder time reordering uses of mutable references with function calls, because there are fewer cases where a mutable reference is actually assumed to be unique.
287
288 ### Barriers are dead, long live protectors
289
290 With the departure from a strict stack discipline, I also had to re-think the concept of [barriers]({% post_url 2018-12-26-stacked-borrows-barriers %}).
291 The name was anyway terrible, so I replaced barriers by *protectors*: an `Item` actually consists not only of a `Tag` and a `Permission`, but also optionally of a "protector" represented as a `CallId` referencing some function call (i.e., some stack frame).
292 As long as that function call is running, the item with the protector may not be removed from the stack (or else we have UB).
293 This has pretty much the same effects as barriers did in Stacked Borrows 1.
294
295 ## Why not a strict stack discipline?
296 [no-stack]: #why-not-a-strict-stack-discipline
297
298 The biggest surprise for me in designing Stacked Borrows 2 was that I was not able to enforce a strict stack discipline any more.
299 For retagging, that is only partially surprising; really in Stacked Borrows 1 we already added barriers below the "frozen" marker sitting next to a stack, and the `aliasing` example with the `RefCell` mentioned above only worked due to a hack that relied on reusing existing items in the middle of the stack instead of pushing a new one.
300 However, I had initially hoped that the rules for memory accesses would be slightly different:
301 my plan was that after finding the granting item, we would seek upwards through the stack and find the first incompatible item, and then remove everything starting there.
302 That would be a stack discipline; we would basically pop items until all items above the granting item are compatible.
303
304 Unfortunately, that would reject many reasonable programs, such as:
305 {% highlight rust %}
306 fn test(x: &mut [i32]) -> i32 { unsafe {
307   let raw = x.as_mut_ptr(); // implicitly: as_mut_ptr(&mut *x)
308   let _val = x[1];
309   return *raw;
310 } }
311 {% endhighlight %}
312 The issue with this example is that when calling `as_mut_ptr`, we reborrow `x`.
313 So after the first line the stack would look something like (using `x` as notation for `x`'s tag)
314 ```
315 [ ..., (x: Unique), (_: Unique), (Untagged: SharedReadWrite) ]
316 ```
317 In other words, there would be some `Unique` item *between* the items for `x` and `raw`.
318 When reading from `x` in the second line, we determine that this `Unique` tag is not compatible.
319 This is important; we have to ensure that any access from a parent pointer invalidates `Unique` pointers---that's what makes them unique!
320 However, if we follow a stack discipline, that means we have to pop the `Untagged: SharedReadWrite` *and* the `_: Unique` off the stack, making the third line UB because the raw pointer got invalidated.
321
322 `test` seems like a perfectly reasonable function, and in fact this pattern is used in the standard library.
323 So in order to allow such code, accesses in Stacked Borrows 2 do *not* follow a stack discipline:
324 we remove all incompatible items above the granting item and ignore any interleaved compatible items.
325 As a consequence, line 2 in the above program removes `_: Unique` but keeps `Untagged: SharedReadWrite`, so line 3 is okay.
326
327 However, this means we also accept the following, even if we eventually do fully precise tracking of raw pointers:
328 {% highlight rust %}
329 fn main() { unsafe {
330   let x = &mut 0;
331   let raw1 = x as *mut _;
332   // Stack: [ (x: Unique), (raw1: SharedReadWrite) ]
333
334   let tmp = &mut *raw1;
335   let raw2 = tmp as *mut _;
336   // Stack: [ (x: Unique), (raw1: SharedReadWrite), (tmp: Unique), (raw2: SharedReadWrite) ]
337
338   *raw1 = 1; // This will invalidate tmp, but not raw2.
339   // Stack: [ (x: Unique), (raw1: SharedReadWrite), (raw2: SharedReadWrite) ]
340
341   let _val = *raw2;
342 } }
343 {% endhighlight %}
344 Naively I would assume that if we tell LLVM that `tmp` is a unique pointer, it will conclude that `raw2` cannot alias with `raw1` as that was not derived from `tmp`, and hence LLVM might conclude that `_val` must be 0.
345 This means the program above would have to have UB.
346 However, in the current framework I do not see a way to make it UB without also making the reasonable example from the beginning of this section UB.
347 So maybe we can find a way to express to LLVM precisely what we mean, or maybe we can only exploit some of these properties in home-grown optimizations, or maybe we find a way to have UB in the second example but not in the first.
348 (Like, maybe we do the stack-like behavior on writes but keep the more lenient current behavior on reads? That seems annoying to implement though. Maybe a stack is just the wrong data structure, and we should use something more tree-like.)
349
350 ## Conclusion
351
352 Stacked Borrows 2 shares with Stacked Borrows 1 just the general structure: pointers are tagged, and there is a per-location stack indicating which tags are allowed to perform which kinds of operations on this location.
353 In the new version, shared references are tagged the same way as mutable references (just with an ID to distinguish multiple references pointing to the same location); the stack keeps track of which IDs are read-only (shared) pointers and which are unique (mutable) pointers.
354 The only operations affected by Stacked Borrows 2 are memory accesses and the `Retag` instructions explicitly represented in the MIR; there is no longer any action on a pointer dereference.
355 This balances the extra complexity of the new access rules (the new implementation is actually a dozen lines shorter than the old, despite long comments).
356 The "stack" is unfortunately not used in a completely stack-like fashion though.
357
358 I leave it as an exercise to the reader to convince yourself that the [key properties of Stacked Borrows 1]({% post_url 2018-11-16-stacked-borrows-implementation %}#5-key-properties) still hold, and that uniqueness of mutable references is maintained even if we do a shared reborrow, as long as we keep that shared reference to ourselves.
359
360 The new model gives some wiggle-room in both the notion of which permissions are compatible with others and where exactly which permissions are added in the "stack" in a reborrow.
361 We could use that wiggle-room to experiment with a bunch of closely related models to see how they affect which code gets accepted and analyze their impact on optimizations.
362
363 I am quite excited by this new model!
364 It puts us into a good position to do more precise tracking for raw pointers, similar to what already happens for shared references (and something I was worried about in the original model).
365 That will be needed for compatibility with LLVM.
366 However, [there are still some known issues](https://github.com/rust-lang/unsafe-code-guidelines/issues?q=is%3Aissue+is%3Aopen+label%3Atopic-stacked-borrows), and also the fact that we do not actually use the "stack" as a stack indicates that maybe we should use a different structure there (potentially something more like a tree).
367 This is definitely not the final word, but I think it is a step in the right direction, and I am curious to see how it works out.
368 As usual, if you have any questions or comments, please join the discussion in the forums!