Oblivious RAM: Difference between revisions
imported>Djkauffman Undid revision 1239234465 by B-rad1981clausy (talk) |
(No difference)
|
Latest revision as of 06:17, 16 August 2024
Template:Multiple issues An Oblivious RAM (ORAM) simulator is a compiler that transforms an algorithm in such a way that the resulting algorithm preserves the input-output behavior of the original algorithm but the distribution of the memory access patterns of the transformed algorithm is independent of the memory access pattern of the original algorithm.
The use of ORAMs is motivated by the fact that an adversary can obtain nontrivial information about the execution of a program and the data that the program is using just by observing the pattern in which the program accesses various memory locations during its execution. An adversary can get this information even if the data in memory is encrypted.
This definition is suited for settings like protected programs running on unprotected shared memory or clients running programs on their systems by accessing previously stored data on a remote server. The concept was formulated by Oded Goldreich and Rafail Ostrovsky in 1996.[1]
Definition
A Turing machine (TM), a mathematical abstraction of a real computer (program), is said to be oblivious if, for any two inputs of the same length, the motions of the tape heads remain the same. Pippenger and Fischer[2] proved that every TM with running time can be made oblivious and that the running time of the oblivious TM is . A more realistic model of computation is the RAM model. In the RAM model of computation, there is a CPU that can execute the basic mathematical, logical, and control instructions. The CPU is also associated with a few registers and a physical random access memory, where it stores the operands of its instructions. The CPU also has instructions to read the contents of a memory cell and write a specific value to a memory cell. The definition of ORAMs captures a similar notion of obliviousness for memory accesses in the RAM model.
Informally, an ORAM is an algorithm at the interface of a protected CPU and the physical RAM such that it acts like a RAM to the CPU by querying the physical RAM for the CPU while hiding information about the actual memory access pattern of the CPU from the physical RAM. In other words, the distribution of memory accesses of two programs that make the same number of memory accesses to the RAM is indistinguishable from each other. This description will still make sense if the CPU is replaced by a client with a small storage and the physical RAM is replaced with a remote server with a large storage capacity, where the data of the client resides.
The following is a formal definition of ORAMs. Let denote a program requiring memory of size when executing on an input . Suppose that has instructions for basic mathematical and control operations in addition to two special instructions and , where reads the value at location and writes the value to . The sequence of memory cells accessed by a program during its execution is called its memory access pattern and is denoted by .
A polynomial-time algorithm is an Oblivious RAM (ORAM) compiler with computational overhead and memory overhead , if given and a deterministic RAM program with memory-size outputs a program with memory-size such that for any input , the running-time of is bounded by where is the running-time of , and there exists a negligible function such that the following properties hold:
- Correctness: For any and any string , with probability at least , .
- Obliviousness: For any two programs , any and any two inputs, if , then is -close to in statistical distance, where and .
Note that the above definition uses the notion of statistical security. One can also have a similar definition for the notion of computational security.[3]
History of ORAMs
ORAMs were introduced by Goldreich and Ostrovsky,[4][5][1] where the key motivation was stated as providing software protection from an adversary who can observe a program's memory access pattern (but not the contents of the memory).
The main result in this work[1] is that there exists an ORAM compiler that uses server space and incurs a running time overhead of when making a program that uses memory cells oblivious. There are several attributes that need to be considered when comparing various ORAM constructions. The most important parameters of an ORAM construction's performance are the client-side space overhead, server-side space overhead, and the time overhead required to make one memory access. Based on these attributes, the construction of Asharov et al.,[6] called "OptORAMa", is the first optimal ORAM construction. It achieves client storage, server storage, and access overhead, matching the known lower bounds.
Another important attribute of an ORAM construction is whether the access overhead is amortized or worst-case. Several earlier ORAM constructions have good amortized access overhead guarantees but have worst-case access overheads. Some ORAM constructions with polylogarithmic worst-case computational overheads are.[7][8][9][10][11][12] The constructions of[4][5][1] were in the random oracle model, where the client assumes access to an oracle that behaves like a random function and returns consistent answers for repeated queries. Access to the oracle could be replaced by a pseudorandom function whose seed is a secret key stored by the client, if one assumes the existence of one-way functions. The papers[13][14] were aimed at removing this assumption completely. The authors of[14] also achieve an access overhead of
While most of the earlier works focus on proving security computationally, there are more recent works[3][10][13][14] that use the stronger statistical notion of security.
One of the only known lower bounds on the access overhead of ORAMs is due to Goldreich et al.[1] They show a lower bound for ORAM access overhead, where is the data size. Another lower bound is by Larsen and Nielsen.[15] There is also a conditional lower bound on the access overhead of ORAMs due to Boyle et al.[16] that relates this quantity with that of the size of sorting networks.
ORAM constructions
Trivial construction
A trivial ORAM simulator construction, for each read or write operation, reads from and writes to every single element in the array, only performing a meaningful action for the address specified in that single operation. The trivial solution thus, scans through the entire memory for each operation. This scheme incurs a time overhead of for each memory operation, where Template:Mvar is the size of the memory.
A simple ORAM scheme
A simple version of a statistically secure ORAM compiler constructed by Chung and Pass[3] is described in the following along with an overview of a proof of its correctness. The compiler on input Template:Mvar and a program Template:Math with its memory requirement Template:Mvar, outputs an equivalent oblivious program Template:Math.
If the input program Template:Math uses Template:Mvar registers, the output program Template:Math will need registers, where is a parameter of the construction. Template:Math uses memory and its (worst-case) access overhead is .
The ORAM compiler is very simple to describe. Suppose that the original program Template:Math has instructions for basic mathematical and control operations in addition to two special instructions and , where reads the value at location Template:Mvar and writes the value Template:Mvar to Template:Mvar. The ORAM compiler, when constructing Template:Math, simply replaces each Template:Sans-serif and Template:Sans-serif instructions with subroutines Template:Sans-serif and Template:Sans-serif and keeps the rest of the program the same. It may be noted that this construction can be made to work even for memory requests coming in an online fashion.

Memory organization of the oblivious program
The program Template:Math stores a complete binary tree Template:Mvar of depth in its memory. Each node in Template:Mvar is represented by a binary string of length at most Template:Mvar. The root is the empty string, denoted by Template:Mvar. The left and right children of a node represented by the string are and respectively. The program Template:Math thinks of the memory of Template:Math as being partitioned into blocks, where each block is a contiguous sequence of memory cells of size Template:Mvar. Thus, there are at most blocks in total. In other words, the memory cell Template:Mvar corresponds to block .

At any point in time, there is an association between the blocks and the leaves in Template:Mvar. To keep track of this association, Template:Math also stores a data structure called a position map, denoted by , using registers. This data structure, for each block Template:Mvar, stores the leaf of Template:Mvar associated with Template:Mvar in .
Each node in Template:Mvar contains an array with at most Template:Mvar triples. Each triple is of the form , where Template:Mvar is a block identifier and Template:Mvar is the contents of the block. Here, Template:Mvar is a security parameter and is .
Description of the oblivious program
The program Template:Math starts by initializing its memory as well as registers to Template:Math. Describing the procedures, Template:Sans-serif and Template:Sans-serif is enough to complete the description of Template:Math. The sub-routine Template:Sans-serif is given below. The inputs to the sub-routine are a memory location and the value Template:Mvar to be stored at the location Template:Mvar. It has three main phases, namely FETCH, PUT_BACK, and FLUSH.
input: a location Template:Mvar, a value Template:Mvar
Procedure FETCH // Search for the required block.
// Template:Mvar is the block containing Template:Mvar.
// Template:Mvar is Template:Mvar's component in block Template:Mvar.
if then . // Set Template:Mvar to a uniformly random leaf in Template:Mvar.
flag .
for each node Template:Mvar on the path from the root to Template:Mvar do
if Template:Mvar has a triple of the form then
Remove from Template:Mvar, store Template:Mvar in a register, and write back the updated Template:Mvar to Template:Mvar.
flag .
else
Write back Template:Mvar to Template:Mvar.
Procedure PUT_BACK // Add back the updated block at the root. . // Set Template:Mvar to a uniformly random leaf in Template:Mvar. if flag then Set Template:Mvar to be the same as Template:Mvar except for Template:Mvar at the Template:Mvar-th position. else Set Template:Mvar to be a block with Template:Mvar at Template:Mvar-th position and Template:Math's everywhere else. if there is space left in the root then Add the triple to the root of Template:Mvar. else Abort outputting overflow.
Procedure FLUSH // Push the blocks present in a random path as far down as possible. . // Set to a uniformly random leaf in Template:Mvar. for each triple in the nodes traversed the path from the root to Push down this triple to the node Template:Mvar that corresponds to the longest common prefix of and . if at any point some bucket is about to overflow then Abort outputting overflow.
The task of the FETCH phase is to look for the location Template:Mvar in the tree Template:Mvar. Suppose Template:Mvar is the leaf associated with the block containing location Template:Mvar. For each node Template:Mvar in Template:Mvar on the path from root to Template:Mvar, this procedure goes over all triples in Template:Mvar and looks for the triple corresponding to the block containing Template:Mvar. If it finds that triple in Template:Mvar, it removes the triple from Template:Mvar and writes back the updated state of Template:Mvar. Otherwise, it simply writes back the whole node Template:Mvar.
In the next phase, it updates the block containing Template:Mvar with the new value Template:Mvar, associates that block with a freshly sampled uniformly random leaf of the tree, and writes back the updated triple to the root of Template:Mvar.
The last phase, which is called FLUSH, is an additional operation to release the memory cells in the root and other higher internal nodes. Specifically, the algorithm chooses a uniformly random leaf and then tries to push down every node as much as possible along the path from root to . It aborts outputting an overflow if at any point some bucket is about to overflow its capacity.
The sub-routine Template:Sans-serif is similar to Template:Sans-serif. For the Template:Sans-serif sub-routine, the input is just a memory location and it is almost the same as Template:Sans-serif. In the FETCH stage, if it does not find a triple corresponding to location Template:Mvar, it returns Template:Math as the value at location Template:Mvar. In the PUT_BACK phase, it will write back the same block that it read to the root, after associating it with a freshly sampled uniformly random leaf.
Correctness of the simple ORAM scheme
Let Template:Mvar stand for the ORAM compiler that was described above. Given a program Template:Math, let Template:Math denote . Let denote the execution of the program Template:Math on an input Template:Mvar using Template:Mvar memory cells. Also, let denote the memory access pattern of . Let Template:Mvar denote a function such that for any , for any program Template:Math and for any input , the probability that outputs an overflow is at most . The following lemma is easy to see from the description of Template:Mvar.
- Equivalence Lemma
- Let and . Given a program Template:Math, with probability at least , the output of is identical to the output of .
It is easy to see that each Template:Sans-serif and Template:Sans-serif operation traverses root-to-leaf paths in Template:Mvar chosen uniformly and independently at random. This fact implies that the distribution of memory access patterns of any two programs that make the same number of memory accesses are indistinguishable if they both do not overflow.
- Obliviousness Lemma
- Given two programs Template:Tmath and Template:Tmath and two inputs such that , with probability at least , the access patterns and are identical.
The following lemma completes the proof of correctness of the ORAM scheme.
- Overflow Lemma
- There exists a negligible function Template:Mvar such that for every program Template:Math, every Template:Mvar and input Template:Mvar, the program outputs overflow with probability at most .
Computational and memory overheads
During each Template:Sans-serif and Template:Sans-serif operation, two random root-to-leaf paths of Template:Mvar are fully explored by Template:Math. This takes time. This is the same as the computational overhead and is since Template:Mvar is .
The total memory used up by Template:Math is equal to the size of Template:Mvar. Each triple stored in the tree has words in it and thus there are words per node of the tree. Since the total number of nodes in the tree is , the total memory size is words, which is . Hence, the memory overhead of the construction is .
References
See also
- ↑ 1.0 1.1 1.2 1.3 1.4 Template:Citation
- ↑ Template:Citation
- ↑ 3.0 3.1 3.2 Template:Citation
- ↑ 4.0 4.1 Template:Citation
- ↑ 5.0 5.1 Template:Citation
- ↑ Template:Citation
- ↑ Template:Citation
- ↑ Template:Citation
- ↑ Template:Citation
- ↑ 10.0 10.1 Template:Citation
- ↑ Template:Citation
- ↑ Template:Citation
- ↑ 13.0 13.1 Template:Citation
- ↑ 14.0 14.1 14.2 Template:Citation
- ↑ Template:Citation
- ↑ Template:Citation