fpga security and cryptographic application generating stream cyphers

51
FPGA SECURITY AND CRYPTOGRAPHIC APPLICATION GENERATING STREAM CYPHERS Shemal Shroff Shoaib Bhuria Yash Naik Peter Hall

Upload: orea

Post on 23-Feb-2016

71 views

Category:

Documents


0 download

DESCRIPTION

FPGA Security and Cryptographic Application Generating Stream Cyphers. Shemal Shroff Shoaib Bhuria Yash Naik Peter Hall. outline. Introduction to Security Relevance to FPGA Design and Manufacture flow for an FPGA Things to secure and why? Types of Attack Prevention PUFs. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

FPGA SECURITY AND CRYPTOGRAPHIC

APPLICATION GENERATING STREAM CYPHERS

Shemal ShroffShoaib Bhuria

Yash NaikPeter Hall

Page 2: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

OUTLINE Introduction to Security Relevance to FPGA Design and Manufacture flow for an FPGA Things to secure and why? Types of Attack Prevention PUFs

Page 3: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WHAT IS SECURITY (FROM A NETWORKING ASPECT)?

Provisions and policies adopted by a network administrator To prevent and monitor:

Unauthorized access, Misuse, Modification, Denial of a computer network and network-accessible resources.

Simmonds, A; Sandilands, P; van Ekert, L (2004). "An Ontology for Network Security Attacks". Lecture Notes in Computer Science. Lecture Notes in Computer Science 3285: 317–323

Page 4: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

HOW IS IT RELEVANT TO AN FPGA?

Research on “FPGA Security” has been active since the early 2000s. Several commercial and military applications employ programmable logic. This makes design security important for safety and national security.

WP365, Solving Today’s Design Security Concerns, Xilinx White Paper.

Page 5: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WHY WOULD SOMEONE ATTACK THE FPGA? To learn the confidential cryptographic key.

One-to-one copy or “cloning” together with its key. Reverse engineering of encryption algorithm. Execute certain cryptographic operation with presumably secret key.

E.g. pay-tv and in-government communications

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 6: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

Saar Drimer, Volatile FPGA Design Security – A Survey, v0.96, April 2008.

Page 7: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

DESIGN AND MANUFACTURE FLOW

Figure: Simplified depiction of the FPGA design, manufacturing, packaging, and testing processes.

Saar Drimer, Volatile FPGA Design Security – A Survey, v0.96, April 2008.

Page 8: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

DEVELOPMENT, MANUFACTURING AND

DISTRIBUTION OF AN FPGA-BASED SYSTEM

Figure: Development, manufacturing, and distribution of an FPGA-based system.

Saar Drimer, Volatile FPGA Design Security – A Survey, v0.96, April 2008.

Page 9: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WEAKEST LINK IN SRAM-BASED DEVICES

B. Dipert. Cunning circuits confound crooks. http://www.e-insite.net/ednmag/contents/images/21df2.pdf, October 12 2000.

Page 10: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

THINGS TO SECURE IN FPGA Bitstream Configuration of the device

Page 11: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WHY DO YOU NEED TO SECURE A BITSTREAM?

Bitstream has all the configuration bits required for programming the FPGA. If the bitstream is compromised then your design can be cloned or reverse

engineered.

Page 12: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WHY DO YOU NEED TO SECURE THE

CONFIGURATION OF THE FPGA? To protect the logic of FPGA

To prevent manipulation of design using JTAG. Single Event Upset (SEU) or faults Verify that the application is trusted to be correct. Authenticate the application.

Page 13: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

TYPES OF ATTACK

Attacks

Bitstream

Black box Attack

Reverse engineering

Cloning of sRAM FPGAs

Readback Attack

Side Channel Attack

Configuration of the device

Fault injection

Hardware virus

Manipulating design

through JTAG

Voltage modification

Temperature modification

Page 14: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

TYPE OF BITSTREAM ATTACKS

1. Black Box Attack2. Reverse-Engineering of the

Bitstreams3. Cloning of sRAM FPGAs4. Readback Attack5. Side Channel Attacks

Page 15: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

1. BLACK BOX ATTACK Step 1: The attacker inputs all

possible combinations, while saving the corresponding outputs.

Step 2: Develops a K-map to simplify the resulting tables

Step 3: Extracts the logic of the FPGA.

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 16: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

EXAMPLE

C AB

00 01 11 10

0 0 1 0 01 0 0 0 0

A B C Output (Y)

0 0 0 00 0 1 00 1 0 10 1 1 01 0 0 01 0 1 01 1 0 01 1 1 0

Page 17: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

LOGIC CIRCUIT Y = (A.B)’.B.C’ = A’BC’

Page 18: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION Not a real threat nowadays, due to:

complexity of the designs size of state-of-the-art FPGAs.

Common I/O pins which makes it difficult to connect to the right pin. An attacker has to connect to device’s pin of a known function like,

Microprocessor interrupt input, And also, Figure out whether to:

Drive a pin with a voltage, Sense its output state, or both isn’t a straightforward exercise.

B. Dipert. Cunning circuits confound crooks. http://www.e-insite.net/ednmag/contents/images/21df2.pdf, October 12 2000.Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 19: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

COMPLEXITY OF THE BLACK BOX ATTACK

We have, in total, input combinations. Lets assume that latency for the adder is 10 ns. Therefore, time to apply all the combinations is x10 ns. This takes approximately 5849 years which is equivalent to 5.849 x hours.

Adder A = 32 bits

B = 32 bits Output

Page 20: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

2. REVERSE-ENGINEERING OF BITSTREAMS

Reconstructing the original circuit details Altering the design Incorporating it in other designs

Reverse Engineering

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Saar Drimer, Volatile FPGA Design Security – A Survey, v0.96, April 2008.

Page 21: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION These are the toughest to crack.

Why? Increase in gate counts w.r.t number

of I/O pins Antifuse Encryption PUFs

B. Dipert. Cunning circuits confound crooks. http://www.e-insite.net/ednmag/contents/images/21df2.pdf, October 12 2000.

Page 22: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

3. CLONING OF SRAM FPGAS Security implications of storing data unprotected and external to FPGA Non-volatile memory Transmitted during power up Vulnerability = can be easily eavesdropped Feasible

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 23: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION Non-volatile + FPGA on one chip Battery-Backed RAM eFUSE Device DNA Encryption PUFs

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 24: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

DESCRIPTION Battery-Backed RAM

256-bit key stored in volatile on-chip memory cells. Must receive continuous power from the external battery.

eFUSE securely store bitstream decryption key. No BB-RAM and external battery. The OTP eFUSE links are permanently programmed. No need battery backup.

Device DNA Virtex-6 has embedded, unique device identifier (Device DNA). unique 57-bit identifier is nonvolatile and permanently programmed

Page 25: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

4. READBACK ATTACK Present in all FPGAs. For easy debugging. Read the configuration of FPGA through JTAG.

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 26: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION A security bit can be used to prevent the readback functionality. Although, fault injection has proven successful to overcome these

countermeasures in FPGA. PUFs

Page 27: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5. SIDE CHANNEL ATTACKS side channel can leak important information. Side channel can be:

power consumption Light Electromagnetic radiation.

Power analysis of bitstream

A. Bogdanov, A. Moradi et. Al, efficient and side-channel resistant authenticated encryption of FPGA Bitstreams, International Conference on Reconfigurable computing and FPGAs, 2012.

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 28: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.1 SIMPLE EM ATTACK Magnetic field surrounding FPGA

Loop antenna to pick variations of field

160 bit EC point Multiplication

Page 29: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.1 SIMPLE EM ATTACK Prior info of Encryption is must

Page 30: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

HOW CAN WE FIX THIS ?

Page 31: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.2 DIFFERENTIAL EM ATTACK

Page 32: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.3 SIMPLE POWER ANALYSIS

Power trace from an RSA operation Uses standard square and multiply Square and multiply operations have visibly different power profiles ‘1’ relates to squaring step followed by a multiplication step ‘0’ in the exponent involves only a squaring step

Page 33: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.4 DIFFERENTIAL POWER ANALYSIS

Page 34: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.5 LIGHT EMISSION AS A SIDE CHANNEL

CMOS transistors emit photons. Electrons gain energy when current flows. Emission energy is much higher for transition 0->1 than 1->0 To observe the light emitted, the chip needs to be opened either from its

backside or front side, depending on its package type. Photons collected by high sensitivity photon sensor. InGaAs detectors have best quantum efficiency.

J.Di. Battista, J. Courrege, B. Rouzeyre, L. Torres and P. Perdu, “When Failure Analysis meets Side-Channel Attacks”, CHES 2010, IACR, Santa Barbara, California, USA.

Page 35: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

5.6 LIGHT EMISSION AS A SIDE CHANNEL

First the light emission activity is localized by turning the cryptoprocessor is on/off.

It is not necessary to know either the architecture of the algorithm, or its implementation.

This technique is now less used because of the increasing number of metal layers which act as a light screen.

Page 36: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION There are two kinds of countermeasures: Hardware and software Software countermeasures refer to algorithmic changes, such as masking

of secret keys with random values, which are also applicable to implementations in custom hardware or FPGA.

More Complex Algorithms Hardware countermeasures often deal either with some form of power

trace smoothing or with transistor-level changes of the logic. This technique is now less used because of the increasing number of metal

layers which act as a light screen.

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 37: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

CHANGING THE CONFIGURATION OF FPGA Temperature Modification Voltage Modification Fault Injection/Single Event Upsets Hardware Virus Manipulating design through JTAG

Page 38: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

TEMPERATURE/VOLTAGE MONITORING AND ALARMS

(DETECTION) Modify operating voltages or temperatures of FPGA. Causes unintended behavior. Can be used to extract data or bypass certain security features.

Page 39: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION Monitor and correctly respond to fluctuations in the operating temperature

and voltage. Virtex-6 FPGA System Monitor (SYSMON)

Page 40: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

INJECTION OF FAULT’S

Page 41: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

INJECTION OF FAULTS

Page 42: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

INJECTION OF FAULTS

Page 43: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION CRC circuitry Zeroization of Device

Thomas Wollinger and Christoff Paar, Security Aspects of FPGAs in Cryptographic Applications in New Algorithms, Architectures and Applications for Reconfigurable Computing, Springer, 2005, Ch. 21, pp 265-278.

Page 44: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

REST OF THEM Hardware virus or a hardware Trojan Kill switch Manipulating the design through JTAG

Page 45: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

PREVENTION Disable write feature in JTAG Don’t download untrusted designs.

Page 46: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WHAT ARE PUFS? Physical entity easy to manufacture but difficult to clone. PUFs implement a challenge-response authentication. Unpredictable response. This is because of the physical factors.

Page 47: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

WHY ARE PUFS USED IN CRYPTOGRAPHIC APPLICATIONS?

PUFs generate different outputs for same inputs.

Also, they can generate same outputs for different inputs.

This randomness is due to the Challenge-Response Pairs.

Ideal for cryptographic applications

Page 48: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

MAIN TYPES OF PUFS Arbiter PUFs

Based on MUXes and Arbiter Ring Oscillator or RO-PUF

Based on Delay Circuit and Counters

Note: RO PUFs are more suitable for ASICs and FPGAs. Therefore, we will concentrate on it.

Page 49: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

RO-PUF Consists of N oscillators circuits. Each Oscillator has a unique

frequency. At any instance two oscillators are

picked by the MUXes. Every counter will counter

number of cycles. Output will be 0 or 1 depending

on counter values.

Page 50: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

LIMITATIONS OF RO-PUF Sensitive to temperature

variations Limited number of Outputs Limited number of Challenge

Response Pairs

Page 51: FPGA Security and Cryptographic       Application Generating  Stream Cyphers

SOME ATTACKER ALWAYS POPS UP

PUFs used to store memory (sRAMs) are the vulnerable to attacks because, They are not Manufacturer Resistant Nature of Response Controlled

In IEEE HOST 2013, an sRAM PUF was cloned to generate an identical response to a same input.

The attackers used a “Focused Ion Beam Circuit Edit” for the same.