17
S POILER: Speculative Load Hazards Boost Rowhammer and Cache Attacks Saad Islam 1 , Ahmad Moghimi 1 , Ida Bruhns 2 , Moritz Krebbel 2 , Berk Gulmezoglu 1 , Thomas Eisenbarth 1, 2 , and Berk Sunar 1 1 Worcester Polytechnic Institute, Worcester, MA, USA 2 University of Lübeck, Lübeck, Germany Abstract Modern microarchitectures incorporate optimization tech- niques such as speculative loads and store forwarding to improve the memory bottleneck. The processor executes the load speculatively before the stores, and forwards the data of a preceding store to the load if there is a potential depen- dency. This enhances performance since the load does not have to wait for preceding stores to complete. However, the dependency prediction relies on partial address information, which may lead to false dependencies and stall hazards. In this work, we are the first to show that the dependency resolution logic that serves the speculative load can be ex- ploited to gain information about the physical page mappings. Microarchitectural side-channel attacks such as Rowhammer and cache attacks like Prime+Probe rely on the reverse engi- neering of the virtual-to-physical address mapping. We pro- pose the SPOILER attack which exploits this leakage to speed up this reverse engineering by a factor of 256. Then, we show how this can improve the Prime+Probe attack by a 4096 factor speed up of the eviction set search, even from sand- boxed environments like JavaScript. Finally, we improve the Rowhammer attack by showing how SPOILER helps to con- duct DRAM row conflicts deterministically with up to 100% chance, and by demonstrating a double-sided Rowhammer attack with normal user’s privilege. The later is due to the possibility of detecting contiguous memory pages using the SPOILER leakage. 1 Introduction Microarchitectural attacks have evolved over the past decade from attacks on weak cryptographic implementations [5] to devastating attacks breaking through layers of defenses pro- vided by the hardware and the Operating System (OS) [52]. These attacks can steal secrets such as cryptographic keys [4, 44] or keystrokes [33]. More advanced attacks can entirely subvert the OS memory isolation to read the memory content from more privileged security domains [35], and to bypass defense mechanisms such as Kernel Address Space Layout Randomization (KASLR) [11, 17]. Rowhammer attacks can further break the data and code integrity by tampering with memory contents [29, 47]. While most of these attacks require local access and native code execution, various efforts have been successful in conducting them remotely [50] or from within a remotely accessible sandbox such as JavaScript [42]. Memory components such as DRAM [29] and cache [43] are not the only microarchitectural attack surfaces. Spectre attacks on the branch prediction unit [30, 38] imply that side channels such as caches can be used as a primitive for more advanced attacks on speculative engines. Speculative engines predict the outcome of an operation before its completion, and they enable execution of the following dependent instruc- tions ahead of time based on the prediction. As a result, the pipeline can maximize the instruction level parallelism and re- source usage. In rare cases where the prediction is wrong, the pipeline needs to be flushed resulting in performance penal- ties. However, this approach suffers from a security weakness, in which an adversary can fool the predictor and introduce ar- bitrary mispredictions that leave microarchitectural footprints in the cache. These footprints can be collected through the cache side channel to steal secrets. Modern processors feature further speculative behavior such as memory disambiguation and speculative loads [10]. A load operation can be executed speculatively before preced- ing store operations. During the speculative execution of the load, false dependencies may occur due to the unavailability of physical address information. These false dependencies need to be resolved to avoid computation on invalid data. The occurrence of false dependencies and their resolution depend on the actual implementation of the memory subsystem. Intel uses a proprietary memory disambiguation and dependency resolution logic in the processors to predict and resolve false dependencies that are related to the speculative load. In this work, we discover that the dependency resolution logic suffers from an unknown false dependency independent of the 4K aliasing [40, 49]. The discovered false dependency happens during the 1 MB aliasing of speculative memory accesses arXiv:1903.00446v2 [cs.CR] 1 Jun 2019

arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

  • Upload
    others

  • View
    4

  • Download
    0

Embed Size (px)

Citation preview

Page 1: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

SPOILER: Speculative Load Hazards Boost Rowhammer and Cache Attacks

Saad Islam1, Ahmad Moghimi1, Ida Bruhns2, Moritz Krebbel2, Berk Gulmezoglu1, Thomas Eisenbarth1, 2,and Berk Sunar1

1Worcester Polytechnic Institute, Worcester, MA, USA2 University of Lübeck, Lübeck, Germany

AbstractModern microarchitectures incorporate optimization tech-niques such as speculative loads and store forwarding toimprove the memory bottleneck. The processor executes theload speculatively before the stores, and forwards the dataof a preceding store to the load if there is a potential depen-dency. This enhances performance since the load does nothave to wait for preceding stores to complete. However, thedependency prediction relies on partial address information,which may lead to false dependencies and stall hazards.

In this work, we are the first to show that the dependencyresolution logic that serves the speculative load can be ex-ploited to gain information about the physical page mappings.Microarchitectural side-channel attacks such as Rowhammerand cache attacks like Prime+Probe rely on the reverse engi-neering of the virtual-to-physical address mapping. We pro-pose the SPOILER attack which exploits this leakage to speedup this reverse engineering by a factor of 256. Then, we showhow this can improve the Prime+Probe attack by a 4096factor speed up of the eviction set search, even from sand-boxed environments like JavaScript. Finally, we improve theRowhammer attack by showing how SPOILER helps to con-duct DRAM row conflicts deterministically with up to 100%chance, and by demonstrating a double-sided Rowhammerattack with normal user’s privilege. The later is due to thepossibility of detecting contiguous memory pages using theSPOILER leakage.

1 Introduction

Microarchitectural attacks have evolved over the past decadefrom attacks on weak cryptographic implementations [5] todevastating attacks breaking through layers of defenses pro-vided by the hardware and the Operating System (OS) [52].These attacks can steal secrets such as cryptographic keys [4,44] or keystrokes [33]. More advanced attacks can entirelysubvert the OS memory isolation to read the memory contentfrom more privileged security domains [35], and to bypass

defense mechanisms such as Kernel Address Space LayoutRandomization (KASLR) [11, 17]. Rowhammer attacks canfurther break the data and code integrity by tampering withmemory contents [29,47]. While most of these attacks requirelocal access and native code execution, various efforts havebeen successful in conducting them remotely [50] or fromwithin a remotely accessible sandbox such as JavaScript [42].

Memory components such as DRAM [29] and cache [43]are not the only microarchitectural attack surfaces. Spectreattacks on the branch prediction unit [30, 38] imply that sidechannels such as caches can be used as a primitive for moreadvanced attacks on speculative engines. Speculative enginespredict the outcome of an operation before its completion,and they enable execution of the following dependent instruc-tions ahead of time based on the prediction. As a result, thepipeline can maximize the instruction level parallelism and re-source usage. In rare cases where the prediction is wrong, thepipeline needs to be flushed resulting in performance penal-ties. However, this approach suffers from a security weakness,in which an adversary can fool the predictor and introduce ar-bitrary mispredictions that leave microarchitectural footprintsin the cache. These footprints can be collected through thecache side channel to steal secrets.

Modern processors feature further speculative behaviorsuch as memory disambiguation and speculative loads [10]. Aload operation can be executed speculatively before preced-ing store operations. During the speculative execution of theload, false dependencies may occur due to the unavailabilityof physical address information. These false dependenciesneed to be resolved to avoid computation on invalid data. Theoccurrence of false dependencies and their resolution dependon the actual implementation of the memory subsystem. Inteluses a proprietary memory disambiguation and dependencyresolution logic in the processors to predict and resolve falsedependencies that are related to the speculative load. In thiswork, we discover that the dependency resolution logic suffersfrom an unknown false dependency independent of the 4Kaliasing [40, 49]. The discovered false dependency happensduring the 1 MB aliasing of speculative memory accesses

arX

iv:1

903.

0044

6v2

[cs

.CR

] 1

Jun

201

9

Page 2: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

which is exploited to leak information about physical pagemappings.

The state-of-the-art microarchitectural attacks [25, 45] ei-ther rely on knowledge of physical addresses or are signifi-cantly eased by that knowledge. Yet, knowledge of the physi-cal address space is only granted with root privileges. Cacheattacks such as Prime+Probe on the Last-Level Cache (LLC)are challenging due to the unknown mapping of virtual ad-dresses to cache sets and slices. Knowledge about the physicalpage mappings enables more attack opportunities using thePrime+Probe technique. Rowhammer [29] attacks requireefficient access to rows within the same bank to induce fastrow conflicts. To achieve this, an adversary needs to reverseengineer layers of abstraction from the virtual address spaceto DRAM cells. Availability of physical address informationfacilitates this reverse engineering process. In sandboxed en-vironments, attacks are more limited, since in addition to thelimited access to the address space, low-level instructionsare also inaccessible [18]. Previous attacks assume specialaccess privileges only granted through weak software config-urations [25,34,55] to overcome some of these challenges. Incontrast, SPOILER only relies on simple operations, load andstore, to recover crucial physical address information, whichin turn enables Rowhammer and cache attacks, by leakinginformation about physical pages without assuming any weakconfiguration or special privileges.

1.1 Our Contribution

We have discovered a novel microarchitectural leakage whichreveals critical information about physical page mappingsto user space processes. The leakage can be exploited by alimited set of instructions, which is visible in all Intel genera-tions starting from the 1st generation of Intel Core processors,independent of the OS and also works from within virtual ma-chines and sandboxed environments. In summary, this work:

1. exposes a previously unknown microarchitectural leak-age stemming from the false dependency hazards duringspeculative load operations.

2. proposes an attack, SPOILER, to efficiently exploit thisleakage to speed up the reverse engineering of virtual-to-physical mappings by a factor of 256 from both nativeand JavaScript environments.

3. demonstrates a novel eviction set search technique fromJavaScript and compares its reliability and efficiency toexisting approaches.

4. achieves efficient DRAM row conflicts and the firstdouble-sided Rowhammer attack with normal user-levelprivilege using the contiguous memory detection capa-bility of SPOILER.

5. explores how SPOILER can track nearby load operationsfrom a more privileged security domain right after acontext switch.

1.2 Related Work

Kosher et al. [30] and Maisuradze et al. [38] have exploitedvulnerabilities in the speculative branch prediction unit. Tran-sient execution of instructions after a fault, as exploited byLipp et al. [35] and Bulck et al. [52], can leak memory con-tent of protected environments. Similarly, transient behaviordue to the lazy store/restore of the FPU and SIMD registerscan leak register contents from other contexts [48]. New vari-ants of both Meltdown and Spectre have been systematicallyanalyzed [7]. The Speculative Store Bypass (SSB) vulnera-bility [21] is a variant of the Spectre attack and relies on thestale sensitive data in registers to be used as an address forspeculative loads which may then allow the attacker to readthis sensitive data. In contrast to previous attacks on specu-lative and transient behaviors, we discover a new leakage onthe undocumented memory disambiguation and dependencyresolution logic. SPOILER is not a Spectre attack. The rootcause for SPOILER is a weakness in the address speculation ofIntel’s proprietary implementation of the memory subsystemwhich directly leaks timing behavior due to physical addressconflicts. Existing spectre mitigations would therefore notinterfere with SPOILER.

The timing behavior of the 4K aliasing false dependencyon Intel processors have been studied [12, 61]. MemJam [40]uses this behavior to perform a side-channel attack, and Sul-livan et al. [49] demonstrate a covert channel. These worksonly mention the 4K aliasing as documented by Intel [24],and the authors conclude that the address aliasing check is atwo stage approach: Firstly, it uses page offset for the initialguess. Secondly, it performs the final resolution based on theexact physical address. On the contrary, we discover that theundocumented address resolution logic performs additionalpartial address checks that lead to an unknown, but observablealiasing behavior based on the physical address.

Several microarchitectural attacks have been discovered torecover virtual address information and break KASLR by ex-ploiting the Translation Lookaside Buffer (TLB) [22], BranchTarget Buffer (BTB) [11] and Transactional SynchronizationExtensions (TSX) [27]. Additionally, Gruss et al. [17] ex-ploit the timing information obtained from the prefetchinstruction to leak the physical address information. The mainobstacle to this approach is that the prefetch instruction isnot accessible in JavaScript, and it can be disabled in nativesandboxed environments [62], whereas SPOILER is applicableto sandboxed environments including JavaScript.

Knowledge of the physical address enables adversaries tobypass OS protections [28] and ease other microarchitecturalattacks [34]. For instance, the procfs filesystem exposesphysical addresses [34], and Huge pages allocate contiguous

Page 3: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

physical memory [25, 36]. Drammer [55] exploits the An-droid ION memory allocator to access contiguous memory.However, access to the aforementioned primitives is restrictedon most environments by default. We do not have any assump-tion about the OS and software configuration, and we exploita hardware leakage with minimum access rights to find virtualpages that have the same least significant 20 physical addressbits. GLitch [13] detects contiguous physical pages by ex-ploiting row conflicts through the GPU interface. In contrast,our attack does not rely on a specific integrated GPU configu-ration, and it is widely applicable to any system running onan Intel CPU. We use SPOILER to find contiguous physicalpages with a high probability and verify it by producing rowconflicts. SPOILER is particularly helpful for attacks in sand-boxed low-privilege environments such as JavaScript, whereprevious methods require a time-consuming brute forcing ofthe memory addresses [18, 42, 47].

2 Background

2.1 Memory ManagementThe virtual memory manager shares the DRAM across allrunning tasks by assigning isolated virtual address spaces toeach task. The assigned memory is allocated in pages, whichare typically 4 kB each, and each virtual page will be stored asa physical page in DRAM through a virtual-to-physical pagemapping. Memory instructions operate on virtual addresses,which are translated within the processor to the correspond-ing physical addresses. The page offset comprising the leastsignificant 12 bits of the virtual address is not translated. Theprocessor only translates the bits in the rest of the virtualaddress, the virtual page number. The OS is the reference forthis translation, and the processor stores the translation resultsinside the TLB. As a result, repeated translations of the sameaddress are performed more efficiently.

2.2 Cache HierarchyModern processors incorporate multiple levels of caches toavoid the DRAM access latency. The cache memory on Intelprocessors is organized into sets and slices. Each set can storea certain number of lines, where the line size is 64 bytes. The6 Least Significant Bits (LSBs) of the physical address areused to determine the offset within a line and the remainingbits are used to determine which set to store the cache line in.The number of physical address bits that are used for mappingis higher for the LLC, since it has a large number of sets, e.g.,8192 sets. Hence, the untranslated part of the virtual addressbits which is the page offset, cannot be used to index the LLCsets. Instead, higher physical address bits are used. Further,each set of LLC is divided into multiple slices, one slice foreach logical processor. The mapping of the physical addressesto the slices uses an undocumented function [26]. When the

processor accesses a memory address, a cache hit or missoccurs. If a miss occurs in all cache levels, the memory linehas to be fetched from DRAM. Accesses to the same memoryaddress would be served from the cache unless other memoryaccesses evict that cache line. In addition, we can use theclflush instruction, which follows the same memory accesscheck as other memory operations, to evict our own cachelines from the entire cache hierarchy.

2.3 Prime+Probe AttackIn the Prime+Probe attack, the attacker first fills an entirecache set by accessing memory addresses that are mappedto the same set, an eviction set. Later, the attacker checkswhether the victim program has displaced any entry in thecache set by accessing the eviction set again and measuringthe execution time. If this is the case, the attacker can de-tect congruent addresses, since the displaced entries cause anincreased access time. However, finding the eviction sets isdifficult due to the unknown translation of virtual addressesto physical addresses. Since an unprivileged attacker has noaccess to hugepages [23] or the virtual-to-physical page map-ping such as the pagemap file [34], knowledge about the phys-ical address bits greatly speeds up the eviction set search.

2.4 Rowhammer AttackDRAM consists of multiple memory banks, and each bank issubdivided into rows. When the processor accesses a memorylocation, the corresponding row needs to be activated andloaded into the row buffer. If the processor accesses the samerow again, it is called a row hit, and the request will be servedfrom the row buffer. Otherwise, it is called a row conflict, andthe previous row will be deactivated and copied back to theoriginal row location, after which the new row is activated.DRAM cells leak charge over time and need to be refreshedperiodically to maintain the data. A Rowhammer [29] at-tack causes cells of a victim row to leak faster by activatingthe neighboring rows repeatedly. If the refresh cycle failsto refresh the victim row fast enough, that leads to bit flips.Once bit flips are found, they can be exploited by placing anysecurity-critical data structure or code page at that particu-lar location and triggering the bit flip again [16, 47, 60]. TheRowhammer attack requires fast access to the same DRAMcells by bypassing the CPU cache, e.g., using clflush [29].Additionally, cache eviction based on an eviction set canalso result in access to DRAM cells when clflush is notavailable [3, 18]. Efficiently building eviction sets may thusalso enhance Rowhammer attacks. For a successful Rowham-mer attack, it is essential to collocate multiple memory pageswithin the same bank and adjacent to each other. A numberof physical address bits, depending on the hardware configu-ration, are used to map memory pages to banks [45]. Sincethe rows are generally placed sequentially within the banks,

Page 4: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

PA [:0]

VA [11:0]PA [19:12]VA [:12]...VA [11:0]PA [19:12]VA [:12]...

VA [11:0]PA [19:12]VA [:12]...

...

...PA [:0]...

PA [:0]...

DATA...DATA...

DATA...

... ...

LB

SABSDB

MOB

DATAVA[:0]PA[:0]......

PAB

TLB

PMH

index 0

index n

index 0

index n

index 0

index k

Stored Data μOp Store Address μOp

DCACHE

Figure 1: The Memory Order Buffer includes circular buffersSDB, SAB and LB. SDB, SAB and PAB of the DCACHEhave the same number of entries. SAB may initially hold thevirtual address and the partial physical address. MOB requeststhe TLB to translate the virtual address and update the PABwith the translated physical address.

access to adjacent rows within the same bank can be achievedif we have access to contiguous physical pages.

2.5 Memory Order Buffer

The processor manages memory operations using the MemoryOrder Buffer (MOB). MOB is tightly coupled with the datacache. The MOB assures that memory operations are executedefficiently by following the Intel memory ordering rule [39]in which memory stores are executed in-order and memoryloads can be executed out-of-order. These rules have beenenforced to improve the efficiency of memory accesses, whileguaranteeing their correct commitment. Figure 1 shows theMOB schematic according to Intel [1, 2]. The MOB includescircular buffers, store buffer1 and load buffer (LB). A storewill be decoded into two micro ops to store the address anddata, respectively, to the store buffer. The store buffer enablesthe processor to continue executing other instructions beforecommitment of the stores. As a result, the pipeline does nothave to stall for the stores to complete. This further enablesthe MOB to support out-of-order execution of the load.

Store forwarding is an optimization mechanism that sendsthe store data to a load if the load address matches any ofthe store buffer entries. This is a speculative process, sincethe MOB cannot determine the true dependency of the loadon stores based on the store buffer. Intel’s implementationof the store buffer is undocumented, but a potential designsuggests that it will only hold the virtual address, and it mayinclude part of the physical address [1, 2, 31]. As a result, theprocessor may falsely forward the data, although the physicaladdresses do not match. The complete resolution will be de-layed until the load commitment, since the MOB needs to ask

1Store buffer consists of Store Address Buffer (SAB) and Store Data Buffer(SDB). For simplicity, we use Store Buffer to mention the logically combinedSAB and SDB units.

the TLB for the complete physical address information, whichis time consuming. Additionally, the data cache (DCACHE)may hold the translated store addresses in a Physical AddressBuffer (PAB) with equal number of entries as the store buffer.

3 Speculative Load Hazards

As we mentioned earlier, memory loads can be executedout-of-order and before the preceding memory stores. Ifone of the preceding stores modifies the content of a lo-cation in memory, the memory load address is referring to,out-of-order execution of the load will operate on stale data,which results in invalid execution of a program. This out-of-order execution of the memory load is a speculative behavior,since there is no guarantee during the execution time of theload that the virtual addresses corresponding to the memorystores do not conflict with the load address after translationto physical addresses. Figure 2 demonstrates this effect ona hypothetical processor with 7 pipeline stages. As multiplestores may be blocked due to limited resources, the execu-tion of the load and dependent instructions in the pipeline, theload block, will bypass the stores since the MOB assumesthe load block to be independent of the stores. This specula-tive behavior improves the memory bottleneck by letting otherinstructions continue their execution. However, if the depen-dency of the load and preceding stores is not verified, theload block may be computed on incorrect data which is eitherfalsely forwarded by store forwarding (false dependency), orloaded from a stale cache line (unresolved true dependency).If the processor detects a false dependency before committingthe load, it has to flush the pipeline and re-execute the loadblock. This will cause observable performance penalties andtiming behavior.

3.1 Dependency ResolutionDependency checks and resolution occur in multiple stagesdepending on the availability of the address information in thestore buffer. A load instruction needs to be checked againstall preceding stores in the store buffer to avoid false depen-dencies and to ensure the correctness of the data. A potentialdesign [20, 31],2 suggests the following stages for the depen-dency check and resolution, as shown in Figure 3:

1. Loosenet: The first stage is the loosenet check wherethe page offsets of the load and stores are compared3.In case of a loosenet hit, the compared load and storemay be dependent and the processor will proceed to thenext check stage.

2The implementation of the MOB used in Intel processors is unpublishedand therefore we cannot be certain about the precise architecture. Our resultsagree with some of the possible designs that are described in the Intel patents.

3According to Ld_Blocks_Partial:Address_Alias Hardware Perfor-mance Counter (HPC) event [24], loosenet is defined by Intel as the mecha-nism that only compare the page offsets.

Page 5: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

Hazard 

store a → X store b → Y store c → Z load  d← W inc    d

F D X1 X2 X3 X4 C

BusyResource 

Load BlockBypasses Stores

Dependency CheckBefore Commit

(State 1) (State 2) (State 3) (State 4)

Flush The Pipeline

Figure 2: The speculative load is demonstrated on a hypothetical processor with 7 pipeline stages: F = Fetch, D = Decode, X1−4 =Executions, and C = Commit. When the memory stores are blocked competing for resources (State 1), the load will bypass thestores (State 2). The load block including the dependent instructions will not be committed until the dependency of the addressW versus X ,Y ,Z are resolved (State 3). In case of a dependency hazard (State 4), the pipeline is flushed and the load is restarted.

Yes

No

Loosenet  Hit? No

Yes No

Finenet  Hit?

Yes

NoPhysicalAddress Match?

Block Load / Forward Store

Proceed withLoad

RedispatchLoad 

Yes

NoPartial

Physical  Addr Hit?

Figure 3: The dependency check logic: loosenet initiallychecks the least 12 significant bits (page offset) and the finenetchecks the upper address bits, related to the page number. Thefinal dependency using the physical address matching mightstill fail due to partial physical address checks.

2. Finenet: The next stage, called finenet, uses upper ad-dress bits. The finenet can be implemented to check theupper virtual address bits [20], or the physical addresstag [31]. Either way, it is an intermediate stage, and it isnot the final dependency resolution. In case of a finenethit, the processor blocks the load and/or forwards thestore data, otherwise, the dependency resolution will gointo the final stage.

3. Physical Address Matching: At the final stage, thephysical addresses will be checked. Since this stage isthe final chance to resolve potential false dependencies,we expect the full physical address to be checked. How-ever, one possible design suggests that if the physical ad-dresses are not available, the physical address matchingreturns true and continues with the store forwarding [20].

Since the page offset is identical between the virtual and phys-ical address, loosenet can be performed as soon as the storeis decoded. [2] suggests that the store buffer only holds bit19 to 12 of the physical address. Although the PAB holds thefull translated physical address, it is not clear in which stagethis information can be available to the MOB. As a result,

the finenet check may be implemented based on checking thepartial physical address bits. As we verify later, the depen-dency resolution logic may fail to resolve the dependency atmultiple intermediate stages due to unavailability of the fullphysical address.

4 The SPOILER Attack

The attack model for SPOILER is the same as Rowhammerand cache attacks where the attacker’s code is needed to beexecuted on the same underlying hardware as of the victim.As described in Section 3, speculative loads may face otheraliasing conditions in addition to the 4K aliasing, due to thepartial checks on the higher address bits. To confirm this, wedesign an experiment to observe timing behavior of a specu-lative load based on higher address bits. For this purpose, wepropose Algorithm 1 that executes a speculative load aftermultiple stores and further make sure to fill the store bufferwith addresses that cause 4K aliasing during the execution ofthe load. Having w as the window size, the algorithm iteratesover a number of different memory pages, and for each page, itperforms stores to that page and all previous w pages withina window. Since the size of the store buffer varies betweendifferent processor generations, we choose a big enough win-dow (w = 64) to ensure that the load has 4K aliasing withthe maximum number of entries in the store buffer and hencemaximum potential conflicts. Following the stores, we mea-sure the timing of a load operation from a different memorypage, as defined by x. Since we want the load to be executedspeculatively, we can not use a store fence such as mfence be-fore the load. As a result, our measurements are an estimateof execution time for the speculatively load and nearby mi-croarchitectural events. This may include a negligible portionof overhead for the execution of stores, and/or any delay dueto the dependency resolution. If we iterate over a diverse setof addresses with different virtual and physical page numbers,but the same page offset, we should be able to monitor anydiscrepancy.

Page 6: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

Algorithm 1 Address Aliasingfor p from w to PAGE_COUNT do

for i from w to 0 dodata store−−→ bu f f er[(p− i)×PAGE_SIZE]

end fort1 = rdtscp()

data load←−− bu f f er[x×PAGE_SIZE]t2 = rdtscp()measure[p]← t2− t1

end forreturn measure

0 100 200 300 400 500 600 700 800 900 10000

200

400

600

Cycle

s

rdtsc

(a) Step-wise peaks with a very high latency can be observed on some of thevirtual pages

0 100 200 300 400 500 600 700 800 900 10000

500

1000

Cycle

s

Stalls_Ldm_Pending

(b) Affected HPC event: Cycle_Activity:Stalls_Ldm_Pending

0 100 200 300 400 500 600 700 800 900 10000

10

20

De

pe

nd

en

cy

Address_Alias

(c) Affected HPC event: Ld_Blocks_Partial:Address_Alias

Figure 4: SPOILER’s timing measurements and hardware per-formance counters recorded simultaneously.

4.1 Speculative Dependency AnalysisIn this section, we use Algorithm 1 and Hardware Perfor-mance Counters (HPC) to perform an empirical analysis ofthe dependency resolution logic. HPCs can keep track oflow-level hardware-related events in the CPU. The countersare accessible via special purpose registers and can be usedto analyze the performance of a program. They provide apowerful tool to detect microarchitectural components thatcause bottlenecks. Software libraries such as PerformanceApplication Programming Interface (PAPI) [51] simplifiesprogramming and reading low-level HPC on Intel processors.Initially, we execute Algorithm 1 for 1000 different virtualpages. Figure 4(a) shows the cycle count for each iterationwith a set of 4 kB aliased store addresses. Interestingly, weobserve multiple step-wise peaks with a very high latency.Then, we use PAPI to monitor 30 different performance coun-ters listed in Table 5 in the appendix while running the same

-1

-0.5

0

0.5

1

Co

rre

latio

n C

oe

ffic

ien

t

0 5 10 15 20 25 30

Counter Number

Figure 5: Correlation with HPCs listed in Table 5 inthe appendix. Ld_Blocks_Partial:Address_Alias andCycle_Activity:Stalls_Ldm_Pending (both dotted red)have strong positive and negative correlations, respectively.

experiment. At each iteration, only one performance counteris monitored alongside the aforementioned timing measure-ment. After each speculative load, the performance countervalue and the load time are both recorded. Finally, we obtainthe timings and performance counter value pairs as depictedin Figure 4.

To find any relation between the observed high latencyand a particular event, we compute correlation coefficientsbetween counters and the timing measurements. Since thelatency only occurs in the small region of the trace where thetiming increases, we only need to compute the correlation onthese regions. When an increase of at least 200 clock cyclesis detected, the next s values from timing and the HPC tracesare used to calculate the correlations, where s is the numberof steps from Table 1 and 200 is the average execution timefor a load.

As shown in Figure 5, two events have a high correla-tion with the leakage: Cycle_Activity:Stalls_Ldm_Pendinghas the highest correlation of 0.985. This event showsthe number of cycles for which the execution is stalledand no instructions are executed due to a pending load.Ld_Blocks_Partial:Address_Alias has an inverse correla-tion with the leakage. This event counts the number of false de-pendencies in the MOB when loosenet resolves the 4K alias-ing condition. Separately, Exe_Activity:Bound_on_Storesincreases with more number of stores within the innerwindow loop in Algorithm 1, but it does not have a cor-relation with the leakage. The reason behind this behav-ior is that the store buffer is full, and additional store op-erations are pending. However, since there is no correla-tion with the leakage, this shows that the timing behavioris not due to the stores delay. We also attempt to profileany existing counters related to the memory disambigua-tion. However, the events Memory_Disambiguation.Success

and Memory_Disambiguation.Reset are not available on themodern architectures that are tested.

Page 7: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

CPU Model Architecture Steps SB Size

Intel Core i7-8650U Kaby Lake R 22 56Intel Core i7-7700 Kaby Lake 22 56

Intel Core i5-6440HQ Skylake 22 56Intel Xeon E5-2640v3 Haswell 17 42Intel Xeon E5-2670v2 Ivy Bridge EP 14 36

Intel Core i7-3770 Ivy Bridge 12 36Intel Core i7-2670QM Sandy Bridge 12 36

Intel Core i5-2400 Sandy Bridge 12 36Intel Core i5 650 Nehalem 11 32

Intel Core2Duo T9400 Core N/A 20Qualcomm Kryo 280 ARMv8-A N/A *

AMD A6-4455M Bulldozer N/A *

Table 1: 1 MB aliasing on various architectures: The testedAMD and ARM architectures, and Intel Core generation donot show similar effects. The Store Buffer (SB) sizes aregathered from Intel Manual [24] and wikichip.org [57–59].

4.2 Leakage of the Physical Address Mapping

In this experiment, we evaluate whether the observed step-wise latency has any relationship with the physical page num-bers by observing the pagemap file. As shown in Figure 6,we observe step-wise peaks with a very high latency whichappear once in every 256 pages on average.The 20 least sig-nificant bits of physical address for the load matches withthe physical addresses of the stores where high peaks forvirtual pages are observed. In our experiments, we alwaysdetect peaks with different virtual addresses, which have thematching least 20 bits of physical address. This observationclearly discovers the existence of 1 MB aliasing effect basedon the physical addresses. This 1 MB aliasing leaks informa-tion about 8 bits of mapping that were unknown to the userspace processes.

Matching this observation with the previously observedCycle_Activity:Stalls_Ldm_Pending with a high correla-tion, the speculative load has been stalled to resolve the depen-dency with conflicting store buffer entries after the occurrenceof a 1 MB aliased address. This observation verifies that thelatency is due to the pending load. When the latency is atthe highest point, Ld_Blocks_Partial:Address_Alias dropsto zero, and it increments at each down step of the peak. Thisimplies that the loosenet check does not resolve the rest of thestore dependencies whenever there is a 1 MB aliased addressin the store buffer.

4.3 Evaluation

In the previous experiment, the execution time of the loadoperation that is delayed by 1 MB aliasing decreases graduallyin each iteration (Figure 6). The number of steps to reach thenormal execution time is consistent on the same processor.When the first store in the window loop accesses a memory

address with the matching 1 MB aliased address, the latency isat its highest point, marked as “1” in Figure 6. As the windowloop accesses this address later in the loop, it appears closerto the load with a lower latency like the steps marked as 5, 15and 22. This observation matches the carry chain algorithmdescribed by Intel [20] where the aliasing check starts fromthe most recent store. As shown in Table 1, experimentingwith various processor generations shows that the number ofsteps has a linear correlation with the size of the store bufferwhich is architecture dependent. While the leakage exists onall Intel Core processors starting from the first generation,the timing effect is higher for the more recent generationswith a bigger store buffer size. The analyzed ARM and AMDprocessors do not show similar behavior4.

As our time measurement for speculative load suggests, itis not possible to reason whether the high timing is due to avery slow load or commitment of store operations. If the step-wise delay matches the store buffer entries, this delay may beeither due to the the dependency resolution logic performinga pipeline flush and restart of the load for each 4 kB aliasedentry starting from the 1 MB aliased entry, or due to the loadwaiting for all the remaining stores to commit because ofan unresolved hazard. To explore this further, we perform anadditional experiment with all store addresses replaced withnon-aliased addresses except for one. This experiment showsthat the peak disappears if there is only a single 4 kB and1 MB aliased address in the store buffer.

Lastly, we run the same experiments on a shuffled set of vir-tual addresses to assure that the contiguous virtual addressesmay not affect the observed leakage. Our experiment with theshuffled virtual addresses exactly match the same step-wisebehavior suggesting that the upper bits in virtual addresses donot affect the leakage behavior, and the leakage is solely dueto the aliasing on physical address bits.

4.3.1 Comparison of Address Aliasing Scenarios

We further test other address combinations to compare ad-ditional address aliasing scenarios using Algorithm 1. Asshown by Figure 7, when stores and the load access dif-ferent cache sets without aliasing, the load is executed in30 cycles, which is the typical timing for an L1 data cacheload including the rdtscp overhead. When the stores havedifferent memory addresses with the same page offset, butthe load has a different offset, the load takes 100 cycles toexecute. This shows that even memory addresses in the storebuffer having 4K Aliasing conditions with each other thatare totally unrelated to the speculative load create a memorybottleneck for the load. In the next scenario, 4K aliasing be-tween the load and all stores, the average load time is about200 cycles. While the aforementioned 4K aliasing scenariosmay leak cross domain information about memory accesses

4We use rdtscp for Intel and AMD processors and the clock_gettimefor ARM processors to perform the time measurements.

Page 8: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

0 100 200 300 400 500 600 700 800 900 1000

Page Number

0

500

1000

1500

Cycle

5

1

22

15

Figure 6: Step-wise peaks with 22 steps and a high latency can be observed on some of the pages (Core i7-8650U processor).

Figure 7: Histogram of the measurement for the speculativeload with various store addresses. Load will be fast, 30 cy-cles, without any dependency. If there exists 4K aliasing onlybetween the stores, the average is 100. The average is 200when there is 4K aliasing of load and stores. The 1 MBaliasing has a distinctive high latency.

( Section 7), the most interesting scenario is the 1 MB aliasingwhich takes more than 1200 cycles for the highest point inthe peak. For simplicity, we refer to the 1 MB aliased addressas aliased address, in the rest of the paper.

4.4 Discussion

4.4.1 The Curious Case of Memory Disambiguation

The processor uses an additional speculative engine, calledthe memory disambiguator [10, 32], to predict memory falsedependencies and reduce the chance of their occurrences. Themain idea is to predict if a load is independent of precedingstores and proceed with the execution of the load by ignor-ing the store buffer. The predictor uses a hash table that isindexed with the address of the load, and each entry of thehash table has a saturating counter. If the pre-commitmentdependency resolution does not detect false dependencies,the counter is incremented, otherwise it will be reset to zero.After multiple successful executions of the same load instruc-tion, the predictor assumes that the load is safe to execute.

Every time the counter resets to zero, the next iteration of theload will be blocked to be checked against the store bufferentries. Mispredictions result in performance overhead due topipeline flushes. To avoid repeated mispredictions, a watch-dog mechanism monitors the success rate of the prediction,and it can temporarily disable the memory disambiguator.

The predictor of the memory disambiguator should go intoa stable state after the first few iterations, since the mem-ory load is always truly independent of any aliased store.Hence the saturating counter for the target speculative loadaddress passes the threshold, and it never resets due to a falseprediction. As a result, the memory disambiguator shouldalways fetch the data into the cache without any access to thestore buffer. However, since the memory disambiguation per-forms speculation, the dependency resolution at some pointverifies the prediction. The misprediction watchdog is alsosupposed to only disable the memory disambiguator whenthe misprediction rate is high, but in this case we should havea high prediction rate. Accordingly, the observed leakage oc-curs after the disambiguation and during the last stages ofdependency resolution, i.e., the memory disambiguator onlyperforms prediction on the 4K aliasing at the initial loosenetcheck, and it cannot protect the pipeline from 1 MB aliasingthat appears at a later stage.

4.4.2 Hyperthreading Effect

Similar to the 4K Aliasing [40, 49], we empirically testwhether the 1 MB aliasing can be used as a covert/side chan-nel through logical processors. Our observation shows thatwhen we run our experiments on two logical processors onthe same physical core, the number of steps in the peaks isexactly halved. This matches the description by Intel [24]where it is stated that the store buffer is split between thelogical processors. As a result, the 1 MB aliasing effect is notvisible and exploitable across logical cores. [31] suggeststhat loosenet checks mask out the stores on the oppositethread.

Page 9: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

0 50 100 150 200

Page Number

25

30

35

40

45

50

Tim

er

Valu

e

Figure 8: Reverse engineering physical page mappings inJavaScript. The markers point to addresses having same 20bits of physical addresses being part of the same eviction set.

5 SPOILER from JavaScript

Microarchitectural attacks from JavaScript have a high impactas drive-by attacks in the browser can be accomplished with-out any privilege or physical proximity. In such attacks, co-location is automatically granted by the fact that the browserloads a website with malicious embedded JavaScript code.The browsers provide a sandbox where some instructions likeclflush and prefetch and file systems such as procfs areinaccessible, limiting the opportunity for attack. Genkin etal. [14] showed that side-channel attacks inside a browsercan be performed more efficiently and with greater porta-bility through the use of WebAssembly.Yet, WebAssemblyintroduces an additional abstraction layer, i.e. it emulatesa 32-bit environment that translates the internal addressesto virtual addresses of the host process (the browser). We-bAssembly only uses addresses of the emulated environmentand similar to JavaScript, it does not have direct access tothe virtual addresses. Using SPOILER from JavaScript opensthe opportunity to puncture these abstraction layers and toobtain physical address information directly. Figure 8 showsthe address search in JavaScript using SPOILER. Comparedto native implementations, we replace the rdtscp measure-ment with a timer based on a shared array buffer [19]. Wecannot use any fence instruction such as lfence, and as aresult, there remains some negligible noise in the JavaScriptimplementation. However, the aliased addresses can still beclearly seen, and we can use this information to improve thestate-of-the art eviction set creation for both Rowhammer andcache attacks.

5.1 Efficient Eviction Set FindingWe use the algorithm proposed in [14]. It is a slight improve-ment to the former state-of-the-art brute force method [42]and consists of three phases:

• expand: A large pool of addresses P is allocated with thelast twelve bits of all addresses being zero. A random

address is picked as a witness t and tested against acandidate set C. If t is not evicted by C, it is added toC and a new witness will be picked. As soon as t getsevicted by C, C forms an eviction set for t.

• contract: Addresses are subsequently removed from theeviction set. If the set still evicts t, the next address isremoved. If it does not evict t anymore, the removedaddress is added back to the eviction set. At the end ofthis phase, we have a minimal eviction set of the size ofthe set associativity.

• collect: All addresses mapping to the already found evic-tion set are removed from P by testing if they are evictedby the found set. After finding 128 initial cache sets, thisapproach utilizes the linearity property of the cache: Foreach found eviction set, the bits 6-11 are enumeratedinstead. This provides 63 more eviction sets for eachfound set, leading to full cache coverage.

We test this approach on an Intel Core i7-4770 with fourphysical cores and a shared 8MB 16-way L3 cache withChromium 68.0.3440.106, Firefox 62 and Firefox DeveloperEdition 63. The approach yields an 80% accuracy rate to findall 8192 eviction sets when starting with a pool of 4096 pages.The entire eviction set creation process takes an average of46s. We improve the algorithm by 1) using the addressesremoved from the eviction set in the contract phase as a newcandidate set and 2) removing more than one address at a timefrom the eviction set during the contract phase. The improvedeviction set creation process takes 35s on average.

5.1.1 Evaluation

The probability of finding a congruent address is P(C) =2γ−c−s, where c is the number of bits determining the cacheset, γ is the number of bits attackers know, and s is the num-ber of slices [56]. Since SPOILER allows us to control γ≥ cbits, we are only left with uncertainty about a few addressbits that influence the slice selection algorithm [26]. In the-ory, the eviction set search is sped up by a factor of 4096by using aliased addresses in the pool, since on average oneof 28 instead of one of 220 addresses is an aliased address.Additionally, the address pool is much smaller, where 115addresses are enough to find all the eviction sets. In nativecode, the overhead involved in finding the aliased addressesis negligible, less than a second in our experiments. However,in JavaScript, due to the noise, it takes 9s for finding aliasedaddresses and then 3s for eviction set as compared to the base-line of 46s for classic method in Table 2. Success rate howeveris 100% with SPOILER as compared to 80% for the classicmethod. Besides, success rate of the classical method can beaffected by the availability and consumption of memory onthe system.

From each aliased address pool, 4 eviction sets can be found(corresponding to the 4 slices which are the only unknown

Page 10: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

Algorithm R ttotal tAAS tESS SuccessClassic [42] 3 46s - 100% 80%

Improved [14] 3 35s - 100% 80%AA (ours) 10 10s 54% 46% 67%AA (ours) 20 12s 75% 25% 100%

Table 2: Comparison of different eviction set finding algo-rithms on an Intel Core i7-4770. Classic is the method from[42], improved is the same method with slight improvement,Aliased Address (AA) uses SPOILER. tAAS is the time percent-age used for finding aliased addresses. tESS is the time per-centage for finding eviction sets. R is the number of Rounds.

part in the mapping). These can be enumerated again to form63 more eviction sets since we still kept the bits 6-11 fixed. Toaccomplish full cache coverage, the aliased address pool hasto be constructed 32 times. The SPOILER variant for findingeviction sets is more susceptible to system noise, which is whyit needs more repetitions i.e. R rounds to get reliable values.On the other hand, it is less prone to values deviating largelyfrom the mean, which is a problem in the classic evictionset creation algorithm. The classic method does not succeedabout one out of five times in our experiments, as shown inTable 2. The unsuccessful attempts occur due to aborts if thealgorithm takes much longer than statistically expected. As aresult, SPOILER can be incorporated in an end-to-end attacksuch as drive-by key-extraction cache attacks by Genkin etal. [14]. SPOILER increases both speed and reliability of theeviction set finding and therefore the entire attack.

6 Rowhammer Attack using SPOILER

To perform a Rowhammer attack, the adversary needs to ef-ficiently access DRAM rows adjacent to a victim row. In asingle-sided Rowhammer attack, only one row is activatedrepeatedly to induce bit flips on one of the nearby rows. Forthis purpose, the attacker needs to make sure that multiplevirtual pages co-locate on the same bank. The probability ofco-locating on the same bank is low without the knowledge ofphysical addresses and their mapping to memory banks. In adouble-sided Rowhammer attack, the attacker tries to accesstwo different rows n+ 1 an n− 1 to induce bit flips in therow n placed between them. While double-sided Rowham-mer attacks induce bit flips faster due to the extra charge onthe nearby cells of the victim row n, they further require ac-cess to contiguous memory pages. In this section, we showthat SPOILER can help boosting both single and double-sidedRowhammer attacks by its additional 8-bit physical addressinformation and resulting detection of contiguous memory.

System Model DRAM Configuration # of Bits

Dell XPS-L702x 1 x (4GB 2Rx8) 21(Sandy Bridge) 2 x (4GB 2Rx8) 22

Dell Inspiron-580 1 x (2GB 2Rx8) (b) 21(Nehalem) 2 x (2GB 2Rx8) (c) 22

4 x (2GB 2Rx8) (d) 23Dell Optiplex-7010 1 x (2GB 1Rx8) (a) 19

(Ivy Bridge) 2 x (2GB 1Rx8) 201 x (4GB 2Rx8) (e) 21

2 x (4GB 2Rx8) 22

Table 3: Reverse engineering the DRAM memory mappingsusing DRAMA tool, # of Bits represents the number of physi-cal address bits used for the bank, rank and channel [45].

6.1 DRAM Bank Co-location

DRAMA [45] reverse engineered the memory controller map-ping. This requires elevated privileges to access physical ad-dresses from the pagemap file. The authors have suggestedthat prefetch side-channel attacks [17] may be used to gainphysical address information instead. SPOILER is an alterna-tive way to obtain partial address information and is still fea-sible when the prefetch instruction is not available, e.g. inJavaScript. In our approach, we use SPOILER to detect aliasedvirtual memory addresses where the 20 LSBs of the physicaladdresses match. The memory controller uses these bits formapping the physical addresses to the DRAM banks [45].Even though the memory controller may use additional bits,the majority of the bits are known using SPOILER. An at-tacker can directly hammer such aliased addresses to performa more efficient single-sided Rowhammer attack with a sig-nificantly increased probability of hitting the same bank. Asshown in Table 3, we reverse engineer the DRAM mappingsfor different hardware configurations using the DRAMA tool,and only a few bits of physical address entropy beyond the 20bits will remain unknown.

To verify if our aliased virtual addresses co-locate on thesame bank, we use the row conflict side channel as proposedin [13] (timings in the appendix, Section 10.2). We observethat whenever the number of physical address bits used bythe memory controller to map data to physical memory isequal to or less than 20, we always hit the same bank. Foreach additional bit the memory controller uses, the probabil-ity of hitting the same bank is divided by 2 as there is onemore bit of entropy. In general, we can formulate that ourprobability p to hit the same bank is p = 1/2n, where n isthe number of unknown physical address bits in the mapping.We experimentally verify the success rate for the setups listedin Table 3, as depicted in Figure 9. In summary, SPOILERdrastically improves the efficiency of finding addresses map-ping to the same bank without administrative privilege orreverse engineering the memory controller mapping.

Page 11: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

200

400

600

Cycle

s

(a) 19 bits used by memory controller, no unknown bits

200

400

600

Cycle

s

(b) 21 bits used by memory controller, 1 unknown bit

200

400

600

Cycle

s

(c) 22 bits used by memory controller, 2 unknown bits

200

400

600

Cycle

s

0 20 40 60 80 100

Peak Number

(d) 23 bits used by memory controller, 3 unknown bits

Figure 9: Bank co-location for various DRAM configurations(a), (b), (c) & (d) from Table 3. The regularity of the peaksshows that the allocated memory was contiguous, which iscoincidental.

6.2 Contiguous Memory

For a double-sided Rowhammer attack, we need to hammerrows adjacent to the victim row in the same bank. This re-quires detecting contiguous memory pages in the allocatedmemory, since the rows are written to the banks sequentially.Without contiguous memory, the banks will be filled randomlyand we will not be able to locate neighboring rows. We showthat an attacker can use SPOILER to detect contiguous memoryusing 1 MB aliasing peaks. For this purpose, we compare thephysical frame numbers to the SPOILER leakage for 10000different virtual pages allocated using malloc. Figure 10shows the relation between 1 MB aliasing peaks and physicalpage frame numbers. When the distance between the peaksis random, the trend of frame numbers also change randomly.After around 5000 pages, we observe that the frame numbersincrease sequentially. The number of pages between the peaksremains constant at 256 where this distance comes from the 8bits of physical address leakage due to 1 MB aliasing.

We also compare the accuracy of obtaining contiguousmemory detected by SPOILER by analyzing the actual physi-cal addresses from the pagemap file. By checking the differ-ence between physical page numbers for each detected virtualpage, we can determine the accuracy of our detection method:the success rate for finding contiguous memory is above 99%disregarding the availability of the contiguous pages. For de-tailed experiment on the availability of the contiguous pages,see Section 10.3 in the appendix.

0

500

1000

Cycle

s

0 2000 4000 6000 8000 10000

Page Numbers

1.5

2

Fra

me

Nu

mb

ers 10

6

5641 5642 5643 5644 56451.982464

1.982466

1.982468106

Figure 10: Relation between leakage peaks and the physicalpage numbers. The dotted plot shows the leakage peaks fromSPOILER. The solid plot shows the decimal values of the phys-ical frame numbers from the pagemap file. Once the peaksin the dotted plot become regular, the solid plot is linearlyincreasing, which shows contiguous memory allocation.

6.3 Double-Sided Rowhammer with SPOILER

As double-sided Rowhammer attacks are based on the as-sumption that rows within a bank are contiguous, we mount apractical double-sided Rowhammer attack on several DRAMmodules using SPOILER without any root privileges. First,we use SPOILER to detect a suitable amount of contiguousmemory. If enough contiguous memory is available in thesystem, SPOILER finds it, otherwise a double-sided Rowham-mer attack is not feasible. In our experiments, we empiricallyconfigure SPOILER to detect 10 MB of contiguous memory.Second, we apply the row conflict side channel only to thelocated contiguous memory, and get a list of virtual addresseswhich are contiguously mapped within a bank. Finally, westart performing a double-sided Rowhammer attack by se-lecting 3 consecutive addresses from our list. While we havedemonstrated the bit flips in our own process, we can free thatmemory which can then be assigned to a victim process byusing previously known techniques like spraying and memorywaylaying [16]. As the bit flips are highly reproducible, wecan again flip the same bits in the victim process to demon-strate a full attack. Table 4 shows some of the DRAM modulessusceptible to Rowhammer attack.

The native version of Rowhammer in this work is also ap-plicable in JavaScript. The JavaScript-only variant implemen-tation of Rowhammer by Gruss et al. [18], named rowham-mer.js5, can be combined with SPOILER to implement anend-to-end attack. In the original rowhammer.js, 2MB hugepages were assumed to get a contiguous chunk of physicalmemory. With SPOILER, this assumption is no longer requiredas explained in Section 6.3.

Figure 11 shows the number of hammers compared to thethe amount of bit flips for configuration (e) in Table 3. We

5https://github.com/IAIK/rowhammerjs

Page 12: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

DRAM Model Architecture Flippy

M378B5273DH0-CK0 Ivy Bridge XM378B5273DH0-CK0 Sandy Bridge XM378B5773DH0-CH9 Sandy Bridge XM378B5173EB0-CK0 Sandy Bridge ×

NT2GC64B88G0NF-CG Sandy Bridge ×KY996D-ELD Sandy Bridge ×

M378B5773DH0-CH9 Nehalem XNT4GC64B8HG0NS-CG Sandy Bridge ×HMA41GS6AFR8N-TF Skylake ×

Table 4: DRAM modules susceptible to double-sidedRowhammer attack using SPOILER.

0 1 2 3 4 5 6

Number of Hammers 108

0

5

10

15

20

25

Am

ount of B

it F

lips

1h, 5m

10h, 50m

21hr, 40m

1d, 9h

1d, 19h

2d, 6h 2d, 17h

Figure 11: Amount of bit flips increases with the increase innumber of hammerings. The timings do not include the timetaken for reboots and 1 minute sleep time.

repeat this experiment 30 times for every measurement andthe results are then averaged out. On every experiment, thesystem is rebooted using a script because once the memorybecomes fragmented, no more contiguous memory is avail-able. The number of bit flips increases with more number ofhammerings. Hammering for 500 million times is found tobe an optimal number for this DRAM configuration, as thecontinuation of hammering is not increasing bit flips.

7 Tracking Speculative Loads With SPOILER

Single-threaded attacks can be used to steal information fromother security contexts running before/after the attacker codeon the same thread [8, 41]. Example scenarios are I) contextswitches between processes of different users, or II) betweena user process and a kernel thread, and III) Intel SoftwareGuard eXtensions (SGX) secure enclaves [41, 54]. In such at-tacks, the adversary puts the microarchitecture to a particularstate, waits for the context switch and execution of the victimthread, and then tries to observe the microarchitectural stateafter the victim’s execution. We propose an attack where theadversary 1) fills the store buffer with arbitrary addresses, 2)issues the victim context switch and lets the victim perform asecret-dependent memory access, and 3) measures the execu-tion time of the victim. Any correlation between the victim’s

0 500 1000 1500 2000 2500 3000 3500 40000

10

20 nop

0 100 200 300 400 500 600 700 800 900 10000

10

20 add

0 200 400 600 800 1000 1200 1400 1600 1800 2000

Number of Operations

0

10

20

Nu

mb

er

of

Ste

ps

leal

Figure 12: The depth of SPOILER leakage with respect todifferent instructions and execution units.

timing and the load address can leak secrets [61]. Due tothe nature of SPOILER, the victim should access the memorywhile there are aliased addresses in the store buffer, i.e. if thestores are committed before the victim’s speculative load,there will be no dependency resolution hazard.

We first perform an analysis of the depth of the operationsthat can be executed between the stores and the load toinvestigate the viability of SPOILER. In this experiment, werepeat a number of instructions between stores and the loadthat are free from memory operations. Figure 12 shows thenumber of stall steps due to the dependency hazard with theadded instructions. Although nop is not supposed to take anycycle, adding 4000 nop will diffuse the timing latency. Then,we test add and leal, which use the Arithmetic Logic Unit(ALU) and the Address Generation Unit (AGU), respectively.Figure 12 shows that only 1000 adds can be executed be-tween the stores and load before the SPOILER effect is lost.Since each add typically takes about 1 cycle to execute, thisroughly gives a 1000 cycle depth for SPOILER. Consideringthe observed depth, we discuss potential attacks that can trackthe speculative load in the following two scenarios.

7.1 SPOILER Context Switch

In this attack, we are interested in tracking a memory access inthe privileged kernel environment after a context switch. First,we fill the store buffer with addresses that have the same pageoffset, and then execute a system call. During the executionof the system call, we expect to observe a delayed executionif a secret load address has aliasing with the stores. Weutilize SPOILER to iterate over various virtual pages, thussome of the pages have more noticeable latency due to the1 MB aliasing. We analyze multiple syscalls with variousexecution times. For instance, Figure 13 shows the executiontime for mincore. In the first experiment (red/1 MB Conflict),we fill the store buffer with addresses that have aliasing witha memory load operation in the kernel code space. The 1 MBaliasing delay with 7 steps suggests that we can track the

Page 13: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

0 50 100 150 200 250 300

Page Number

200

400

600

800

1000

1200

1400

Cycle

1 MB Conflict

No Conflict

No Store

Figure 13: Execution time of mincore system call. When akernel load address has aliasing with the attacker’s stores(red/1MB Conflict), the step-wise delay will appear. Thesetimings are measured with Kernel Page Table Isolation dis-abled.

address of a kernel memory load by the knowledge of ourarbitrary filled store addresses. The blue (No Conflict) lineshows the timing when there is no aliasing between the targetmemory load and the attackers store. Surprisingly, only byfilling the store buffer, the system call executes much slower:the normal execution time for mincore should be around250 cycles (cyan/No Store). This proof of concept showsthat SPOILER can be used to leak information from moreprivileged contexts, however this is limited only to loads thatappear at the beginning of the next context.

7.2 Negative Result: SPOILER SGXIn this experiment, we try to combine SPOILER with theCacheZoom [41] approach to create a novel single-threadedside-channel attack against SGX enclaves with high temporaland spatial resolution (4-byte) [40]. We use SGX-STEP [53]to precisely interrupt every single instruction. Nemesis [54]shows that the interrupt handler context switch time is depen-dent on the execution time of the currently running instruction.On our test platform, Core i7-8650U, each context switch onan enclave takes about 12000 cycles to execute. If we fillthe store buffer with memory addresses that match the pageoffset of a load inside the enclave in the interrupt handler,the context switch timing is increased to about 13500 cycles.While we cannot observe any correlation between the matched4 kB or 1 MB aliased addresses, we do see unexpected peri-odic downward peaks with a similar step-wise behavior asSPOILER(Figure 14). We later reproduce a similar behaviorby running SPOILER before an ioctl routine that flushesthe TLB on each call. Intel SGX also performs an implicitTLB flush during each context switch. We can thus infer thatthe downward peaks occur due to the TLB flush, especiallysince the addresses for the downward peaks do not have anyaddress correlation with the load address. This suggests thatthe TLB flush operation itself is affected by SPOILER. Thiseffect eliminates the opportunity to observe any potential cor-

200 300 400 500 600 700 800 900 1000

Page Number

800

1000

1200

1400

1600

1800

2000

Cycle

Figure 14: The effect of SPOILER on TLB flush. The execu-tion cycle always increases for 4 kB aliased addresses, exceptfor some of the virtual pages inside in the store buffer wherewe observe step-wise hills.

relation due to the speculative load. As a result, we can notuse SPOILER to track memory accesses inside an enclave.Further exploration of the root cause of the TLB flush effectcan be carried out as a future work.

8 Mitigations

Software Mitigations The attack exploits the fact that whenthere is a load instruction after a number of store instruc-tions, the physical address conflict causes a high timing be-havior. This happens because of the speculatively executedload before all the stores are finished executing. There isno software mitigation that can completely erase this prob-lem. While the timing behavior can be removed by insertingstore fences between the loads and stores, this cannot beenforced to the user’s code space, i.e., the user can alwaysleak the physical address information. Another yet less robustapproach is to execute other instructions between the loadsand stores to decrease the depth of the attack. However,both of the approaches are only applicable to defend againstattacks such as the one described in Section 7.

As for most attacks on JavaScript, removing accurate timersfrom the browser would be effective against SPOILER. Indeed,some timers have been removed or distorted by jitters as aresponse to attacks [35]. There is however a wide range oftimers with varying precision available, and removing all ofthem seems impractical [13, 46].

When it is not possible to mitigate the microarchitecturalattacks, developers can use dynamic tools to at least de-tect the presence of such leakage [6, 9, 63]. One of the dy-namic approaches is gained by monitoring hardware perfor-mance counters in real-time. As explained in Section 4.1, twoof the counters Ld_Blocks_Partial:Address_Alias andCycle_Activity:Stalls_Ldm_Pending have high correla-tions with the leakage.

Page 14: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

Hardware Mitigations The hardware design for the mem-ory disambiguator may be revised to prevent such physicaladdress leakage, but modifying the speculative behavior maycause performance impacts. For instance, partial address com-parison was a design choice for performance. Full addresscomparison may address this vulnerability, but will also im-pact performance. Moreover, hardware patches are difficult tobe applied to legacy systems and take years to be deployed.

9 Conclusion

We introduced SPOILER, a novel approach for gaining phys-ical address information by exploiting a new informationleakage due to speculative execution. To exploit the leakage,we used the speculative load behavior after jamming the storebuffer. SPOILER can be executed from user space and requiresno special privileges. We exploited the leakage to reveal in-formation on the 8 least significant bits of the physical pagenumber, which are critical for many microarchitectural at-tacks such as Rowhammer and cache attacks. We analyzedthe causes of the discovered leakage in detail and showed howto exploit it to extract physical address information.

Further, we showed the impact of SPOILER by performinga highly targeted Rowhammer attack in a native user-levelenvironment. We further demonstrated the applicability ofSPOILER in sandboxed environments by constructing effi-cient eviction sets from JavaScript, an extremely restrictiveenvironment that usually does not grant any access to physicaladdresses. Gaining even partial knowledge of the physicaladdress will make new attack targets feasible in browsers eventhough JavaScript-enabled attacks are known to be difficult torealize in practice due to the limited nature of the JavaScriptenvironment. Broadly put, the leakage described in this paperwill enable attackers to perform existing attacks more effi-ciently, or to devise new attacks using the novel knowledge.The source code for SPOILER is available on GitHub6.

Responsible Disclosure We informed the Intel Product Secu-rity Incident Response Team (iPSIRT) of our findings. iPSIRTthanked for reporting the issue and for the coordinated dis-closure. iPSIRT then released the public advisory and CVE.Here is the time line for the responsible disclosure:

• 12/01/2018: We informed our findings to iPSIRT.• 12/03/2018: iPSIRT acknowledged the receipt.• 04/09/2019: iPSIRT released public advisory (INTEL-

SA-00238) and assigned CVE (CVE-2019-0162).

Acknowledgments

We thank Yuval Yarom, our shepherd Eric Wustrow and theanonymous reviewers for their valuable comments for improv-ing the quality of this paper.

6https://github.com/UzL-ITS/Spoiler

This work is supported by U.S. Department of State, Bu-reau of Educational and Cultural Affairs’ Fulbright Programand National Science Foundation under grant CNS-1618837and CNS-1814406. We also thank Cloudflare for their gener-ous gift to support our research.

References[1] Jeffery M Abramson, Haitham Akkary, Andrew F Glew, Glenn J Hinton,

Kris G Konigsfeld, and Paul D Madland. Method and apparatus forperforming a store operation, April 23 2002. US Patent 6,378,062.

[2] Jeffrey M Abramson, Haitham Akkary, Andrew F Glew, Glenn J Hinton,Kris G Konigsfeld, Paul D Madland, David B Papworth, and Michael AFetterman. Method and apparatus for dispatching and executing a loadoperation to memory, February 10 1998. US Patent 5,717,882.

[3] Zelalem Birhanu Aweke, Salessawi Ferede Yitbarek, Rui Qiao, Reetu-parna Das, Matthew Hicks, Yossi Oren, and Todd Austin. Anvil:Software-based protection against next-generation rowhammer attacks.ACM SIGPLAN Notices, 51(4):743–755, 2016.

[4] Naomi Benger, Joop van de Pol, Nigel P. Smart, and Yuval Yarom.“ooh aah... just a little bit” : A small amount of side channel can go along way. In Cryptographic Hardware and Embedded Systems – CHES2014, pages 75–92, Berlin, Heidelberg, 2014. Springer.

[5] Daniel J Bernstein. Cache-timing attacks on aes, 2005.

[6] Samira Briongos, Gorka Irazoqui, Pedro Malagón, and Thomas Eisen-barth. Cacheshield: Detecting cache attacks through self-observation.In Proceedings of the Eighth ACM Conference on Data and ApplicationSecurity and Privacy, CODASPY ’18, pages 224–235, New York, NY,USA, 2018. ACM.

[7] Claudio Canella, Jo Van Bulck, Michael Schwarz, Moritz Lipp, Ben-jamin von Berg, Philipp Ortner, Frank Piessens, Dmitry Evtyushkin,and Daniel Gruss. A systematic evaluation of transient execution at-tacks and defenses. arXiv preprint arXiv:1811.05441, 2018.

[8] Guoxing Chen, Sanchuan Chen, Yuan Xiao, Yinqian Zhang, ZhiqiangLin, and Ten H Lai. Sgxpectre attacks: Stealing intel secrets from sgxenclaves via speculative execution. arXiv preprint arXiv:1802.09085,2018.

[9] Marco Chiappetta, Erkay Savas, and Cemal Yilmaz. Real time detec-tion of cache-based side-channel attacks using hardware performancecounters. Applied Soft Computing, 49:1162–1174, 2016.

[10] Jack Doweck. Inside intel R© core microarchitecture. In Hot Chips 18Symposium (HCS), 2006 IEEE, pages 1–35. IEEE, 2006.

[11] Dmitry Evtyushkin, Dmitry Ponomarev, and Nael Abu-Ghazaleh. Jumpover aslr: Attacking branch predictors to bypass aslr. In The 49thAnnual IEEE/ACM International Symposium on Microarchitecture,MICRO-49, pages 40:1–40:13, Piscataway, NJ, USA, 2016. IEEE Press.

[12] Agner Fog. The microarchitecture of intel, amd and via cpus: Anoptimization guide for assembly programmers and compiler makers.Copenhagen University College of Engineering, pages 02–29, 2012.

[13] Pietro Frigo, Cristiano Giuffrida, Herbert Bos, and Kaveh Razavi.Grand pwning unit: Accelerating microarchitectural attacks with thegpu. In Grand Pwning Unit: Accelerating Microarchitectural Attackswith the GPU, page 0, Washington, DC, USA, 2018. IEEE, IEEE Com-puter Society.

[14] Daniel Genkin, Lev Pachmanov, Eran Tromer, and Yuval Yarom. Drive-by key-extraction cache attacks from portable code. In InternationalConference on Applied Cryptography and Network Security, pages83–102. Springer, 2018.

[15] Mel Gorman. Understanding the Linux Virtual Memory Manager.Prentice Hall, London, 2004.

Page 15: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

[16] Daniel Gruss, Moritz Lipp, Michael Schwarz, Daniel Genkin, JonasJuffinger, Sioli O’Connell, Wolfgang Schoechl, and Yuval Yarom. An-other flip in the wall of rowhammer defenses. In 2018 IEEE Symposiumon Security and Privacy (SP), pages 245–261. IEEE, 2018.

[17] Daniel Gruss, Clémentine Maurice, Anders Fogh, Moritz Lipp, andStefan Mangard. Prefetch side-channel attacks: Bypassing smap andkernel aslr. In Proceedings of the 2016 ACM SIGSAC Conference onComputer and Communications Security, CCS ’16, pages 368–379,New York, NY, USA, 2016. ACM.

[18] Daniel Gruss, Clémentine Maurice, and Stefan Mangard. Rowham-mer.js: A remote software-induced fault attack in javascript. In Detec-tion of Intrusions and Malware, and Vulnerability Assessment, pages300–321. Springer, 2016.

[19] Lars T Hansen. Shared memory: Side-channel information leaks, 2016.

[20] Sebastien Hily, Zhongying Zhang, and Per Hammarlund. Resolvingfalse dependencies of speculative load instructions, October 13 2009.US Patent 7,603,527.

[21] Jann Horn. speculative execution, variant 4: speculative store bypass,2018.

[22] Ralf Hund, Carsten Willems, and Thorsten Holz. Practical timing sidechannel attacks against kernel space aslr. In 2013 IEEE Symposium onSecurity and Privacy, pages 191–205. IEEE, 2013.

[23] Mehmet Sinan Inci, Berk Gulmezoglu, Gorka Irazoqui, Thomas Eisen-barth, and Berk Sunar. Cache attacks enable bulk key recovery on thecloud. In Cryptographic Hardware and Embedded Systems – CHES2016, pages 368–388, Berlin, Heidelberg, 2016. Springer.

[24] Intel. Intel R© 64 and IA-32 Architectures Optimization ReferenceManual.

[25] Gorka Irazoqui, Thomas Eisenbarth, and Berk Sunar. S$a: A sharedcache attack that works across cores and defies vm sandboxing – andits application to aes. In Proceedings of the 2015 IEEE Symposium onSecurity and Privacy, SP ’15, pages 591–604, Washington, DC, USA,2015. IEEE Computer Society.

[26] Gorka Irazoqui, Thomas Eisenbarth, and Berk Sunar. Systematic re-verse engineering of cache slice selection in intel processors. In 2015Euromicro Conference on Digital System Design (DSD), pages 629–636. IEEE, 2015.

[27] Yeongjin Jang, Sangho Lee, and Taesoo Kim. Breaking kernel addressspace layout randomization with intel tsx. In Proceedings of the 2016ACM SIGSAC Conference on Computer and Communications Security,pages 380–392. ACM, 2016.

[28] Vasileios P Kemerlis, Michalis Polychronakis, and Angelos DKeromytis. ret2dir: Rethinking kernel isolation. In USENIX Secu-rity Symposium, pages 957–972, 2014.

[29] Yoongu Kim, Ross Daly, Jeremie Kim, Chris Fallin, Ji Hye Lee,Donghyuk Lee, Chris Wilkerson, Konrad Lai, and Onur Mutlu. Flip-ping bits in memory without accessing them: An experimental study ofdram disturbance errors. In ACM SIGARCH Computer ArchitectureNews, volume 42, pages 361–372. IEEE Press, 2014.

[30] Paul Kocher, Daniel Genkin, Daniel Gruss, Werner Haas, MikeHamburg, Moritz Lipp, Stefan Mangard, Thomas Prescher, MichaelSchwarz, and Yuval Yarom. Spectre attacks: Exploiting speculativeexecution. ArXiv e-prints, January 2018.

[31] Steffen Kosinski, Fernando Latorre, Niranjan Cooray, StanislavShwartsman, Ethan Kalifon, Varun Mohandru, Pedro Lopez, TomAviram-Rosenfeld, Jaroslav Topp, Li-Gao Zei, et al. Store forwardingfor data caches, November 29 2016. US Patent 9,507,725.

[32] Evgeni Krimer, Guillermo Savransky, Idan Mondjak, and JacobDoweck. Counter-based memory disambiguation techniques for se-lectively predicting load/store conflicts, October 1 2013. US Patent8,549,263.

[33] Moritz Lipp, Daniel Gruss, Michael Schwarz, David Bidner, Clémen-tine Maurice, and Stefan Mangard. Practical keystroke timing attacksin sandboxed javascript. In Computer Security – ESORICS 2017, pages191–209. Springer, 2017.

[34] Moritz Lipp, Daniel Gruss, Raphael Spreitzer, Clémentine Maurice,and Stefan Mangard. Armageddon: Cache attacks on mobile devices.In 25th USENIX Security Symposium (USENIX Security 16), pages549–564, Austin, TX, 2016. USENIX Association.

[35] Moritz Lipp, Michael Schwarz, Daniel Gruss, Thomas Prescher, WernerHaas, Anders Fogh, Jann Horn, Stefan Mangard, Paul Kocher, DanielGenkin, Yuval Yarom, and Mike Hamburg. Meltdown: Reading ker-nel memory from user space. In 27th USENIX Security Symposium(USENIX Security 18), Baltimore, MD, 2018. USENIX Association.

[36] Fangfei Liu, Yuval Yarom, Qian Ge, Gernot Heiser, and Ruby B. Lee.Last-level cache side-channel attacks are practical. In Proceedingsof the 2015 IEEE Symposium on Security and Privacy, SP ’15, pages605–622, Washington, DC, USA, 2015. IEEE Computer Society.

[37] Errol L. Lloyd and Michael C. Loui. On the worst case performance ofbuddy systems. Acta Informatica, 22(4):451–473, Oct 1985.

[38] Giorgi Maisuradze and Christian Rossow. ret2spec: Speculative ex-ecution using return stack buffers. In Proceedings of the 2018 ACMSIGSAC Conference on Computer and Communications Security, pages2109–2122. ACM, 2018.

[39] Intel 64 Architecture Memory Ordering White Paper. http://www.cs.cmu.edu/~410-f10/doc/Intel_Reordering_318147.pdf, 2008.Accessed: 2018-11-26.

[40] Ahmad Moghimi, Thomas Eisenbarth, and Berk Sunar. Memjam: Afalse dependency attack against constant-time crypto implementationsin SGX. In Topics in Cryptology - CT-RSA 2018 - The Cryptographers’Track at the RSA Conference 2018, San Francisco, CA, USA, April16-20, 2018, Proceedings, pages 21–44, 2018.

[41] Ahmad Moghimi, Gorka Irazoqui, and Thomas Eisenbarth. Cachezoom:How sgx amplifies the power of cache attacks. In CryptographicHardware and Embedded Systems – CHES 2017, pages 69–90. Springer,2017.

[42] Yossef Oren, Vasileios P. Kemerlis, Simha Sethumadhavan, and An-gelos D. Keromytis. The spy in the sandbox: Practical cache attacksin javascript and their implications. In Proceedings of the 22Nd ACMSIGSAC Conference on Computer and Communications Security, CCS’15, pages 1406–1418, New York, NY, USA, 2015. ACM.

[43] Colin Percival. Cache missing for fun and profit, 2005.

[44] Cesar Pereida García, Billy Bob Brumley, and Yuval Yarom. "make suredsa signing exponentiations really are constant-time". In Proceedings ofthe 2016 ACM SIGSAC Conference on Computer and CommunicationsSecurity, CCS ’16, pages 1639–1650, New York, NY, USA, 2016. ACM.

[45] Peter Pessl, Daniel Gruss, Clémentine Maurice, Michael Schwarz, andStefan Mangard. Drama: Exploiting dram addressing for cross-cpuattacks. In USENIX Security Symposium, pages 565–581, 2016.

[46] Michael Schwarz, Clémentine Maurice, Daniel Gruss, and Stefan Man-gard. Fantastic timers and where to find them: high-resolution mi-croarchitectural attacks in javascript. In International Conference onFinancial Cryptography and Data Security, pages 247–267. Springer,2017.

[47] Mark Seaborn and Thomas Dullien. Exploiting the dram rowhammerbug to gain kernel privileges. Black Hat, 15, 2015.

[48] Julian Stecklina and Thomas Prescher. Lazyfp: Leaking fpu reg-ister state using microarchitectural side-channels. arXiv preprintarXiv:1806.07480, 2018.

[49] Dean Sullivan, Orlando Arias, Travis Meade, and Yier Jin. Microar-chitectural minefields: 4k-aliasing covert channel and multi-tenant de-tection in iaas clouds. In Network and Distributed Systems Security(NDSS) Symposium. The Internet Society, 2018.

Page 16: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

[50] Andrei Tatar, Radhesh Krishnan, Elias Athanasopoulos, Cristiano Giuf-frida, Herbert Bos, and Kaveh Razavi. Throwhammer: Rowhammerattacks over the network and defenses. In 2018 USENIX Annual Tech-nical Conference (USENIX ATC 18), Boston, MA, 2018. USENIXAssociation.

[51] Dan Terpstra, Heike Jagode, Haihang You, and Jack Dongarra. Col-lecting performance data with papi-c. In Tools for High PerformanceComputing 2009, pages 157–173. Springer, 2010.

[52] Jo Van Bulck, Marina Minkin, Ofir Weisse, Daniel Genkin, BarisKasikci, Frank Piessens, Mark Silberstein, Thomas F Wenisch, Yu-val Yarom, and Raoul Strackx. Foreshadow: Extracting the keys to theintel sgx kingdom with transient out-of-order execution. In Proceed-ings of the 27th USENIX Security Symposium. USENIX Association,2018.

[53] Jo Van Bulck, Frank Piessens, and Raoul Strackx. Sgx-step: A practicalattack framework for precise enclave execution control. In Proceed-ings of the 2Nd Workshop on System Software for Trusted Execution,SysTEX’17, pages 4:1–4:6, New York, NY, USA, 2017. ACM.

[54] Jo Van Bulck, Frank Piessens, and Raoul Strackx. Nemesis: Studyingmicroarchitectural timing leaks in rudimentary cpu interrupt logic. InProceedings of the 2018 ACM SIGSAC Conference on Computer andCommunications Security, pages 178–195. ACM, 2018.

[55] Victor Van Der Veen, Yanick Fratantonio, Martina Lindorfer, DanielGruss, Clémentine Maurice, Giovanni Vigna, Herbert Bos, KavehRazavi, and Cristiano Giuffrida. Drammer: Deterministic rowham-mer attacks on mobile platforms. In Proceedings of the 2016 ACMSIGSAC conference on computer and communications security, pages1675–1689. ACM, 2016.

[56] Pepe Vila, Boris Köpf, and José Francisco Morales. Theory and practiceof finding eviction sets. arXiv preprint arXiv:1810.01497, 2018.

[57] WikiChip. Ivy Bridge - Microarchitectures - Intel. https://en.wikichip.org/wiki/intel/microarchitectures/ivy_bridge_(client). Accessed: 2019-02-05.

[58] WikiChip. Kaby Lake - Microarchitectures - Intel. https://en.wikichip.org/wiki/intel/microarchitectures/kaby_lake.Accessed: 2019-02-05.

[59] WikiChip. Skylake (client) - Microarchitectures - Intel.https://en.wikichip.org/wiki/intel/microarchitectures/skylake_(client). Accessed: 2019-02-05.

[60] Yuan Xiao, Xiaokuan Zhang, Yinqian Zhang, and Radu Teodorescu.One bit flips, one cloud flops: Cross-vm row hammer attacks and privi-lege escalation. In USENIX Security Symposium, pages 19–35, 2016.

[61] Yuval Yarom, Daniel Genkin, and Nadia Heninger. CacheBleed: a tim-ing attack on OpenSSL constant-time RSA. Journal of CryptographicEngineering, 7(2):99–112, 2017.

[62] Bennet Yee, David Sehr, Gregory Dardyk, J Bradley Chen, Robert Muth,Tavis Ormandy, Shiki Okasaka, Neha Narula, and Nicholas Fullagar.Native client: A sandbox for portable, untrusted x86 native code. InSecurity and Privacy, 2009 30th IEEE Symposium on, pages 79–93.IEEE, 2009.

[63] Tianwei Zhang, Yinqian Zhang, and Ruby B. Lee. Cloudradar: A real-time side-channel attack detection system in clouds. In Research inAttacks, Intrusions, and Defenses, pages 118–140. Springer, 2016.

10 Appendix

10.1 Tested Hardware Performance Counters

Counters CorrelationUNHALTED_CORE_CYCLES 0.3077

UNHALTED_REFERENCE_CYCLES 0.1527

INSTRUCTION_RETIRED 0.2718

INSTRUCTIONS_RETIRED 0.2827

BRANCH_INSTRUCTIONS_RETIRED 0.3143

MISPREDICTED_BRANCH_RETIRED 0.0872

CYCLE_ACTIVITY:CYCLES_L2_PENDING -0.0234

CYCLE_ACTIVITY:STALLS_LDM_PENDING 0.9819

CYCLE_ACTIVITY:CYCLES_NO_EXECUTE 0.2317

RESOURCE_STALLS:ROB 0

RESOURCE_STALLS:SB -0.0506

RESOURCE_STALLS:RS -0.0044

LD_BLOCKS_PARTIAL:ADDRESS_ALIAS -0.9511

IDQ_UOPS_NOT_DELIVERED -0.1455

IDQ:ALL_DSB_CYCLES_ANY_UOPS 0.0332

ILD_STALL:IQ_FULL 0.1021

ITLB_MISSES:MISS_CAUSES_A_WALK 0

TLB_FLUSH:STLB_THREAD 0

ICACHE:MISSES 0

ICACHE:IFETCH_STALL 0

L1D:REPLACEMENT 0.3801

L2_DEMAND_RQSTS:WB_HIT 0.2436

LONGEST_LAT_CACHE:MISS 0.0633

CYCLE_ACTIVITY:CYCLES_L1D_PENDING -0.0080

LOCK_CYCLES:CACHE_LOCK_DURATION 0

LOAD_HIT_PRE:SW_PF 0

LOAD_HIT_PRE:HW_PF 0

MACHINE_CLEARS:CYCLES 0

OFFCORE_REQUESTS_BUFFER:SQ_FULL 0

OFFCORE_REQUESTS:DEMAND_DATA_RD 0.1765

Table 5: Counters profiled for correlation test

10.2 Row conflict Side Channel

The row conflict side channel retrieves the timing informationof the CPU while doing direct accesses (using clflush) fromthe DRAM. A higher timing indicates that the two addressesare mapped to the same bank in the DRAM because readingan address from the same bank forces the row buffer to copythe previous contents back to the original row and then loadthe newly accessed data into the row buffer. Whereas, a lowtimings indicates that two addresses are not in the same bank(not sharing the same row buffer) and are loaded into separaterow buffers. Figure 15 shows a wide gap (around 100 cycles)between row hits and row conflicts.

Page 17: arXiv:1903.00446v2 [cs.CR] 1 Jun 2019 · and JavaScript environments. 3. demonstrates a novel eviction set search technique from JavaScript and compares its reliability and efficiency

Figure 15: Timings for accessing the aliased virtual addresses(random addresses where 20 LSB of the physical addressmatch). Row hits (orange/low timings) are clearly distinguish-able from row conflicts (blue/high timings).

10.3 Memory Utilization and ContiguityThe probability of obtaining contiguous memory depends onmemory utilization of the system. We conduct an experimentto examine the effect of memory utilization on availabilityof contiguous memory. In this experiment, 1 GB memoryis allocated. During the experiment, the memory utilizationof the system is increased gradually from 20% to 90%. Wemeasure the probability of getting the contiguous memorywith two methods. The first one is checking the physical framenumbers from pagemap file to look for 520 kB of contiguousmemory. The second method is using SPOILER to find the 520kB of contiguous memory. This 520 kB is required to get threeconsecutive rows within a bank for a DRAM configurationhaving 256 kB row offset and 8 kB row size.

Figure 16 and Figure 17 show that when the memory hasbeen fragmented after intense memory usage, it gets moredifficult to allocate a contiguous chunk of memory. Even de-creasing the memory usage does not help to get a contiguousblock of memory. Figure 17 depicts that after the memoryutilization has been decreased from 70% to 60% and so on,there is not enough contiguous memory to mount a success-ful double-sided Rowhammer attack. Until the machine isrestarted, the memory remains fragmented which makes adouble-sided Rowhammer attack difficult, especially on tar-

gets like high-end servers where restarting is impractical.The observed behavior can be explained by the binary

buddy allocator which is responsible for the physical addressallocation in the Linux OS [15]. This type of allocator isknown to fragment memory significantly under certain cir-cumstances [37]. The Linux OS uses a SLAB/SLOB allocatorin order to circumvent the fragmentation problems. How-ever, the allocator only serves the kernel directly. User spacememory therefore still suffers from the fragmentation that thebuddy allocator introduces. This also means that getting thecontiguous memory required for a double-sided Rowhammerattack becomes more difficult if the system under attack hasbeen active for a while.

20 30 40 50 60 70 80 90

System Memory Consumption (%)

0

20

40

60

80

100

Contiguous M

em

ory

(%

)

520KB Contiguous Memory from pagemap File

520KB Contiguous Memory from Leakage Peaks

Figure 16: Finding contiguous memory of 520 kB with in-creasing memory utilization. The overlap between the redand blue plot indicates the high accuracy of the contiguousmemory detection capability of SPOILER as verified by thepagemap file.

2030405060708090

System Memory Consumption (%)

0

5

10

15

20

25

Contiguous M

em

ory

(%

) 520KB Contiguous Memory from pagemap File

520KB Contiguous Memory from Leakage Peaks

Figure 17: Finding contiguous memory of 520 kB with de-creasing memory utilization.