Example: RingBuffer¶
module RingBuffer
This module demonstrates how to implement a ringbuffer in Low*. It uses the new LowStar.Buffer abstraction, and demonstrates how to separate functional predicates from their low-level stateful counterparts.
We define the canonical abbreviations, taking care to shadow ST to make sure we don’t end up referring to FStar.ST by accident.
module B = LowStar.Buffer
module U32 = FStar.UInt32
module HS = FStar.HyperStack
module M = LowStar.Modifies
module ST = FStar.HyperStack.ST
module S = FStar.Seq
module L = FStar.List.Tot
This brings into scope the !*
and *=
operators, which are
specifically designed to operate on buffers of size 1, i.e. on pointers.
open LowStar.BufferOps
open FStar.HyperStack.ST
A ringbuffer is a view over a buffer, with a start index, a length (i.e. how
many elements are currently being stored) and a total length (i.e. the size
of the underlying b
). We chose this style, as opposed to a pair of
first
and last
indices, because it avoids modular arithmetic which
would be difficult to reason about.
There are different ways to go about this; the FiniteList example, instead of a buffer and two pointers, uses a single reference to a record instead.
noeq
type t a = {
b: B.buffer a;
first: B.pointer U32.t;
length: B.pointer U32.t;
total_length: U32.t
}
To facilitate writing predicates, we define a handy shortcut that is the
reflection of the !*
operator at the proof level.
unfold
let deref #a (h: HS.mem) (x: B.pointer a) = B.get h x 0
A first version of the well-formedness predicate for ring buffers. This predicate refers to a sequence, not a buffer, and therefore does not need the memory. It is useful in this module to have two versions of predicates: one that takes into account the memory, disjointness, etc. and another one that only focuses on index arithmetic. Nothing surprising here. Note that zero-sized ringbuffers are not allowed.
let well_formed_f #a (b: S.seq a) (first length total_length: U32.t) =
let open U32 in
S.length b = v total_length /\
length <=^ total_length /\
first <^ total_length /\
total_length >^ 0ul
Same predicate as above, but this time operating on a memory state and using a stateful ringbuffer.
let well_formed #a (h: HS.mem) (x: t a) =
B.live h x.b /\ B.live h x.first /\ B.live h x.length /\
M.(loc_disjoint (loc_buffer x.b) (loc_buffer x.first)) /\
M.(loc_disjoint (loc_buffer x.b) (loc_buffer x.length)) /\
M.(loc_disjoint (loc_buffer x.first) (loc_buffer x.length)) /\
well_formed_f (B.as_seq h x.b) (deref h x.first) (deref h x.length) x.total_length
We next define operators for moving around the ringbuffer with wraparound semantics. Defining this using a modulo operator is not a good idea, because:
- writing
i +^ 1ul %^ total_length
may overflow - Z3 is notoriously bad at reasoning with modular arithmetic.
So, instead, we just do a simple branch.
let next (i total_length: U32.t): Pure U32.t
(requires U32.(total_length >^ 0ul /\ i <^ total_length))
(ensures fun r -> U32.( r <^ total_length ))
=
let open U32 in
if i =^ total_length -^ 1ul then
0ul
else
i +^ 1ul
let prev (i total_length: U32.t): Pure U32.t
(requires U32.(total_length >^ 0ul /\ i <^ total_length))
(ensures fun r -> U32.( r <^ total_length ))
=
let open U32 in
if i >^ 0ul then
i -^ 1ul
else
total_length -^ 1ul
These two are useful from the client’s perspective, to capture how many slots are left in the buffer.
let remaining_space #a (h: HS.mem) (x: t a { well_formed h x }) =
U32.( x.total_length -^ (deref h x.length) )
let space_left #a (h: HS.mem) (x: t a { well_formed h x }) =
U32.( remaining_space h x >^ 0ul )
A predicate over indices that captures whether a given entry in the buffer is occupied. Once again, we avoid modular arithmetic by branching.
let used_slot_f (first length total_length i: U32.t) =
let first = U32.v first in
let length = U32.v length in
let total_length = U32.v total_length in
let i = U32.v i in
first <= i /\ i < first + length \/
first <= i + total_length /\ i + total_length < first + length
Same thing, but over a memory and the actual references.
let used_slot #a (h: HS.mem) (x: t a { well_formed h x }) (i: U32.t) =
let first = deref h x.first in
let length = deref h x.length in
let total_length = x.total_length in
used_slot_f first length total_length i
We reflect a ringbuffer as a list. This is the functional version that operates over a sequence.
let rec as_list_f #a
(b: S.seq a)
(first length total_length: U32.t): Ghost (list a)
(requires well_formed_f b first length total_length)
(ensures fun l -> L.length l = U32.v length)
(decreases (U32.v length))
=
if U32.( length =^ 0ul ) then
[]
else
S.index b (U32.v first) ::
as_list_f b (next first total_length) U32.( length -^ 1ul ) total_length
The one central lemma of this module: assigning something in the unused parts of the buffer does not affect the contents of the list.
let rec seq_update_unused_preserves_list (#a: eqtype)
(b: S.seq a)
(i: U32.t)
(e: a)
(first length total_length: U32.t): Lemma
(requires
U32.v i < S.length b /\
well_formed_f b first length total_length /\
~(used_slot_f first length total_length i))
(ensures
well_formed_f b first length total_length /\ (
let b' = S.upd b (U32.v i) e in
as_list_f b first length total_length = as_list_f b' first length total_length
))
(decreases (U32.v length))
=
if U32.(length =^ 0ul) then
()
else begin
seq_update_unused_preserves_list b i e (next first total_length)
U32.(length -^ 1ul) total_length
end
This version is more convenient and refers to the current memory and buffer, as opposed to as sequence.
let as_list #a (h: HS.mem) (x: t a): Ghost (list a)
(requires well_formed h x)
(ensures fun l -> L.length l = U32.(v (deref h x.length)))
=
as_list_f (B.as_seq h x.b) (deref h x.first) (deref h x.length) x.total_length
#reset-options "--z3rlimit 50"
pop
is easy to prove, and requires no particular call to a lemma,
because we don’t modify the underlying buffer. Since the buffer contents
doesn’t change, the total predicate as_list_f
is preserved, and F* is able
to prove automatically the functional specification.
let pop (#a: eqtype) (x: t a): Stack a
(requires fun h ->
well_formed h x /\ U32.(deref h x.length >^ 0ul))
(ensures fun h0 r h1 ->
well_formed h1 x /\
M.(modifies (loc_union (loc_buffer x.length) (loc_buffer x.first)) h0 h1) /\
U32.(remaining_space h1 x = remaining_space h0 x +^ 1ul) /\ (
let hd :: tl = as_list h0 x in
r = hd /\ as_list h1 x = tl))
=
let e = x.b.(!*x.first) in
let h0 = ST.get () in
x.first *= next !*x.first x.total_length;
x.length *= U32.(!*x.length -^ 1ul);
let h1 = ST.get () in
e
push
is slightly more involved and crucially relies on the lemma above.
let push (#a: eqtype) (x: t a) (e: a): Stack unit
(requires fun h ->
well_formed h x /\ space_left h x)
(ensures fun h0 _ h1 ->
well_formed h1 x /\
U32.(remaining_space h1 x =^ remaining_space h0 x -^ 1ul) /\
M.(modifies (loc_union
(loc_buffer x.length)
(loc_union (loc_buffer x.first) (loc_buffer x.b))) h0 h1) /\
as_list h1 x = e :: as_list h0 x)
=
let dest_slot = prev !*x.first x.total_length in
let h0 = ST.get () in
x.b.(dest_slot) <- e;
seq_update_unused_preserves_list (B.as_seq h0 x.b) dest_slot e
(deref h0 x.first) (deref h0 x.length) x.total_length;
x.first *= dest_slot;
x.length *= U32.(!*x.length +^ 1ul)
We are reaching the point of diminishing returns for this example. The function below is only moderately interesting; the gist of it is that the natural equalities one would write (in comments) are slightly massaged to avoid integer overflow.
let one_past_last (i length total_length: U32.t): Pure U32.t
(requires U32.(total_length >^ 0ul /\ i <^ total_length /\ length <=^ total_length))
(ensures fun r -> U32.( r <^ total_length ))
=
let open U32 in
if length = total_length then
i
// i + length >= total_length
else if i >=^ total_length -^ length then
// i + length - total_length, carefully crafted to avoid overflow
length -^ (total_length -^ i)
else
i +^ length
A highly specialized lemma geared towards our post-condition. This could probably be proven with more automation if we had a more robust library of list-based lemmas, but well.
let rec as_list_append_one (#a: eqtype)
(b: S.seq a)
(e: a)
(first length total_length: U32.t): Lemma
(requires
well_formed_f b first length total_length /\
U32.(length <^ total_length) /\
S.index b (U32.v (one_past_last first length total_length)) = e)
(ensures
as_list_f b first U32.(length +^ 1ul) total_length =
L.append (as_list_f b first length total_length) [ e ])
(decreases (U32.v length))
=
if U32.(length =^ 0ul) then
()
else
as_list_append_one b e (next first total_length) U32.(length -^ 1ul) total_length
Pushing one element at the back is morally equivalent to appending a singleton list at the end. This function crucially relies on the custom lemma above.
let push_back (#a: eqtype) (x: t a) (e: a): Stack unit
(requires (fun h ->
well_formed h x /\ space_left h x))
(ensures (fun h0 r h1 ->
M.(modifies (loc_union (loc_buffer x.length) (loc_buffer x.b)) h0 h1) /\
well_formed h1 x /\
U32.(remaining_space h1 x =^ remaining_space h0 x -^ 1ul) /\
as_list h1 x = L.append (as_list h0 x) [ e ]
))
=
let h0 = ST.get () in
let dest_slot = one_past_last !*x.first !*x.length x.total_length in
assert (~ (used_slot h0 x dest_slot));
x.b.(dest_slot) <- e;
seq_update_unused_preserves_list (B.as_seq h0 x.b) dest_slot e
(deref h0 x.first) (deref h0 x.length) x.total_length;
let h1 = ST.get () in
as_list_append_one (B.as_seq h1 x.b) e
(deref h1 x.first) (deref h1 x.length) x.total_length;
x.length *= U32.(!*x.length +^ 1ul)
Similarly, we prove by induction a custom lemma that captures what it means to split a list at the last element.
let rec as_list_minus_one (#a: eqtype)
(b: S.seq a)
(e: a)
(first length total_length: U32.t): Lemma
(requires
well_formed_f b first length total_length /\
U32.(length >^ 0ul) /\
S.index b (U32.v (prev (one_past_last first length total_length) total_length)) = e)
(ensures (
let l = as_list_f b first length total_length in
let l1, l2 = L.splitAt (L.length l - 1) l in
l1 = as_list_f b first U32.(length -^ 1ul) total_length /\
l2 = [ e ]))
(decreases (U32.v length))
=
if U32.(length =^ 1ul) then
()
else
as_list_minus_one b e (next first total_length) U32.(length -^ 1ul) total_length
Then, we use the lemma above to specify what it means to pop an element from the back: it is equivalent to splitting the list at the last element.
let pop_back (#a: eqtype) (x: t a): Stack a
(requires fun h ->
well_formed h x /\ U32.(deref h x.length >^ 0ul))
(ensures fun h0 e h1 ->
well_formed h1 x /\
M.(modifies (loc_union (loc_buffer x.length) (loc_buffer x.length)) h0 h1) /\
U32.(remaining_space h1 x = remaining_space h0 x +^ 1ul) /\ (
let l1, l2 = L.splitAt (L.length (as_list h0 x) - 1) (as_list h0 x) in
l1 = as_list h1 x /\ l2 = [ e ]))
=
let i = one_past_last !*x.first !*x.length x.total_length in
let e = x.b.(prev i x.total_length) in
let h0 = ST.get () in
x.length *= U32.(!*x.length -^ 1ul);
as_list_minus_one (B.as_seq h0 x.b) e
(deref h0 x.first) (deref h0 x.length) x.total_length;
e
create
leverages the StackInline
effect, and allocates three buffers
– we encapsulate stack allocation in a separate function, which facilitates
verification. Relying on KaRaMeL’s support, create
will be textually
inlined at call-site so that the allocations are effectively in the caller’s
stack frame.
let create (#a: eqtype) (init: a) (len: U32.t): StackInline (t a)
(requires (fun _ -> U32.v len > 0))
(ensures (fun h0 x h1 ->
well_formed h1 x /\ remaining_space h1 x = len))
=
let b = B.alloca init len in
{ b = b; first = B.alloca 0ul 1ul; length = B.alloca 0ul 1ul; total_length = len }
This test is crafted for continuous integration, so that the return value is 0l, indicating success.
let main (): St Int32.t =
push_frame ();
let rb = create 1l 32ul in
push rb 0l;
let r = pop rb in
pop_frame ();
r