shout out more people
[web.git] / ralf / _posts / 2022-08-08-minirust.md
1 ---
2 title: "Announcing: MiniRust"
3 categories: rust research
4 reddit: /rust/comments/wiwjch/announcing_minirust/
5 ---
6
7 I have been thinking about the semantics of Rust -- as in, the intended behavior of Rust programs when executed, in particular those containing unsafe code -- a lot.
8 Probably too much.
9 But all of these thoughts are just in my head, which is not very useful when someone else wants to try and figure out how some tricky bit of unsafe Rust code behaves.
10 As part of the [Unsafe Code Guidelines](https://github.com/rust-lang/unsafe-code-guidelines/) project, we often get questions asking whether a *concrete* piece of code is fine or whether it has Undefined Behavior.
11 But clearly, that doesn't scale: there are just too many questions to be asked, and figuring out the semantics by interacting with an oracle with many-day latency is rather frustrating.
12 We have [Miri](https://github.com/rust-lang/miri/), which is a much quicker oracle, but it's also not always right and even then, it can just answer questions of the form "is this particular program fine"; users have to do all the work of figuring out the model that *generates* those answers themselves.
13
14 <!-- MORE -->
15
16 So I have promised for a long time to find some more holistic way to write down my thoughts on unsafe Rust semantics.
17 I thought I could do it in 2021, but I, uh, "slightly" missed that deadline... but better late than never!
18 At long last, I can finally present to you: [**MiniRust**](https://github.com/RalfJung/minirust).
19
20 The purpose of MiniRust is to describe the semantics of an interesting fragment of Rust in a way that is both precise and understandable to as many people as possible.
21 These goals are somewhat at odds with each other -- the most precise definitions, e.g. carried out in the Coq Proof Assistant, tend to not be very accessible.
22 English language, on the other hand, is not very precise.
23 So my compromise solution is to write down the semantics in a format that is hopefully known to everyone who could be interested: in Rust code.
24 Specifically, MiniRust is specified by a *reference interpreter* that describes the step-by-step process of executing a MiniRust program, *including* checking at each step whether the program has Undefined Behavior.
25
26 "Hold on", I hear someone say, "you are defining Rust in Rust code? Isn't that cyclic?"[^bear]
27 Well, yes and no. It's not *really* Rust code.
28 It's what I call "pseudo Rust", uses only a tiny fragment of the language (in particular, no `unsafe`), and then extends the language with some conveniences to make things less verbose.
29 The idea is that anyone who knows Rust should immediately be able to understand what this code means, but also hopefully eventually if this idea pans out we can have tooling to translate pseudo Rust into "real" languages -- in particular, real Rust and Coq.
30 Translating it to real Rust means we can actually execute the reference interpreter and test it, and translating it to Coq means we can start proving theorems about it.
31 But I am getting waaaay ahead of myself, these are rather long-term plans.
32
33 [^bear]: Is that someone the [cool bear](https://fasterthanli.me/articles/) making an appearance on my blog? We'll never know... and also I'd have to ask fasterthanlime to ask them for permission and didn't plan this well enough. ;)
34
35 So, if you want to look into my brain to see how I see Rust programs, then please go check out [MiniRust](https://github.com/RalfJung/minirust).
36 The README explains the scope and goals, the general structure, and the details of pseudo Rust, as well as a comparison with some related efforts.
37
38 In particular I find that the concept of "places" and "values", which can be rather mysterious, becomes a lot clearer when spelled out like that, but that might just be me.
39 I hasten to add that this is *very early work-in-progress*, and it is *my own personal experiment*, not necessarily reflecting the views of anyone else.
40 It is also *far from feature-complete*, in fact it has just barely enough to be interesting.
41 There are lots of small things missing (like integers that aren't exactly 2 bytes in size, or tuples that don't have exactly 2 elements), but the biggest omission by far is the total lack of an aliasing model.
42 And unsized types. And concurrency. And probably other things.
43
44 On the other hand, there are many things that it *can* explain in full precision:
45 - validity invariants, and how they arise from the mapping between a high-level concept of "values" and a low-level concept of "sequences of bytes"
46 - the basic idea of provenance tracking the "allocation" a pointer points to, and how that interacts with pointer arithmetic (including `offset` and `wrapping_offset`)
47 - how pointer provenance behaves when doing transmutation between pointers and integers
48 - what happens when *casting* between pointers and integers
49 - padding (that's why tuples can have 2 elements, so there can be padding between them)
50
51 If you are not used to reading interpreter source code, then I guess this can be rather jarring, and there is certainly a *lot* of work that could and should be done to make this more accessible.
52 (Like, examples. I hear people like examples.)
53 But just being able to talk about these questions with precision *at all* has already lead to some interesting discussions in the UCG WG, some of which made me change my mind -- thanks in particular to @digama0, @JakobDegen, and @alercah for engaging deeply with my ideas.
54 So for now it is serving its purpose, and maybe some of you can find it useful, too.
55 Hopefully we can even use this as a starting place for seriously tackling the issue of an *official* specification of Rust.
56 More on that soon. :)