In computer science, an oblivious data structure is a data structure that gives no information about the sequence or pattern of the operations that have been applied except for the final result of the operations. In most conditions, even if the data is encrypted, the access pattern can be achieved, and this pattern can leak some important information such as encryption keys. And in the outsourcing of cloud data, this leakage of access pattern is still very serious. An access pattern is a specification of an access mode for every attribute of a relation schema. For example, the sequences of user read or write the data in the cloud are access patterns. We say a machine is oblivious if the sequence in which it accesses is equivalent for any two inputs with the same running time. So the data access pattern is independent from the input. Applications:
Cloud data outsourcing: When writing or reading data from a cloud server, oblivious data structures are useful. And modern databases rely on data structures heavily, so oblivious data structures come in handy. Secure processor: Tamper-resilient secure processors are used for defense against physical attacks or the malicious intruders access the users’ computer platforms. The existing secure processors designed in academia and industry include AEGIS and Intel SGX. But the memory addresses are still transferred in the clear on the memory bus. So the research finds that this memory buses can give out the information about encryption keys. With the Oblivious data structure comes in practical, the secure processor can obfuscate memory access pattern in a provably secure manner. Secure computation: Traditionally people used circuit-model to do the secure computation, but the model is not enough for the security when the amount of data is getting big. RAM-model secure computation was proposed as an alternative to the traditional circuit model, and oblivious data structure is used to prevent information access behavioral being stolen.
Oblivious data structures
Oblivious RAM Goldreich and Ostrovsky proposed this term on software protection. The memory access of oblivious RAM is probabilistic and the probabilistic distribution is independent of the input. In the paper composed by Goldreich and Ostrovsky have theorem to oblivious RAM: Let RAM(m) denote a RAM with m memory locations and access to a random oracle machine. Then t steps of an arbitrary RAM(m) program can be simulated by less than O ( t ( log 2 t ) 3 ) {\displaystyle O(t(\log _{2}t)^{3})} steps of an oblivious R A M ( m ( log 2 m ) 2 ) {\displaystyle \mathrm {RAM} (m(\log _{2}m)^{2})} . Every oblivious simulation of RAM(m) must make at least max { m , ( t − 1 ) log 2 m } {\displaystyle \max\{m,(t-1)\log _{2}m\}} accesses in order to simulate t steps. Now we have the square-root algorithm to simulate the oblivious ram working.
For each m {\displaystyle {\sqrt {m}}} accesses, randomly permute first m + m {\displaystyle m+{\sqrt {m}}} memory. Check the shelter words first if we want to access a word. If the word is there, access one of the dummy words. And if the word is not there, find the permuted location. To access original RAM in t steps we need to simulate it with t + m {\displaystyle t+{\sqrt {m}}} steps for the oblivious RAM. For each access, the cost would be O( m ⋅ log m {\displaystyle {\sqrt {m}}\cdot \log m} ). Another way to simulate is hierarchical algorithm. The basic idea is to consider the shelter memory as a buffer, and extend it to the multiple levels of buffers. For level I, there are 4 i {\displaystyle 4^{i}} buckets and for each bucket has log t items. For each level there is a random selected hash function. The operation is like the following: At first load program to the last level, which can be say has 4 t {\displaystyle 4^{t}} buckets. For reading, check the bucket h i ( V ) {\displaystyle h_{i}(V)} from each level, If (V,X) is already found, pick a bucket randomly to access, and if it is not found, check the bucket h i ( V ) {\displaystyle h_{i}(V)} , there is only one real match and remaining are dummy entries . For writing, put (V,X) to the first level, and if the first I levels are full, move all I levels to I + 1 {\displaystyle I+1} levels and empty the first I levels. The time cost for each level cost O(log t); cost for every access is O ( ( log t ) 2 ) {\displaystyle O((\log t)^{2})} ; The cost of Hashing is O ( t ( log t ) 3 ) {\displaystyle O(t(\log t)^{3})} .
Oblivious tree An Oblivious Tree is a rooted tree with the following property:
… excerpt ends here. Continue reading the full article.

