OSCRMay 12, 2013

Practical Fine-grained Privilege Separation in Multithreaded Applications

arXiv:1305.2553v1
Originality Highly original
AI Analysis

This addresses security vulnerabilities in multi-principal multithreaded applications, such as databases, by providing a practical retrofit solution with minimal performance impact.

The paper tackled the security limitation in multithreaded applications where threads share an address space, proposing ARBITER to enable fine-grained, data-centric privilege separation while preserving the programming paradigm, resulting in only a 5.6% average runtime overhead when porting memcached.

An inherent security limitation with the classic multithreaded programming model is that all the threads share the same address space and, therefore, are implicitly assumed to be mutually trusted. This assumption, however, does not take into consideration of many modern multithreaded applications that involve multiple principals which do not fully trust each other. It remains challenging to retrofit the classic multithreaded programming model so that the security and privilege separation in multi-principal applications can be resolved. This paper proposes ARBITER, a run-time system and a set of security primitives, aimed at fine-grained and data-centric privilege separation in multithreaded applications. While enforcing effective isolation among principals, ARBITER still allows flexible sharing and communication between threads so that the multithreaded programming paradigm can be preserved. To realize controlled sharing in a fine-grained manner, we created a novel abstraction named ARBITER Secure Memory Segment (ASMS) and corresponding OS support. Programmers express security policies by labeling data and principals via ARBITER's API following a unified model. We ported a widely-used, in-memory database application (memcached) to ARBITER system, changing only around 100 LOC. Experiments indicate that only an average runtime overhead of 5.6% is induced to this security enhanced version of application.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes