In secure processing systems, data must be secured from internal and external adversaries. Often, the data stored in a secure processing system is encrypted. Data may be encrypted by pre-generating encryption pads at the time that data is stored into the system. These pre-generated encryption pads may be generated based on an initialization vector and an encryption key.
The following detailed description references the drawings, wherein:
The following detailed description refers to the accompanying drawings. Wherever possible, the same reference numbers are used in the drawings and the following description to refer to the same or similar parts. While several examples are described in this document, modifications, adaptations, and other implementations are possible. Accordingly, the following detailed description does not limit the disclosed examples. Instead, the proper scope of the disclosed examples may be defined by the appended claims.
As mentioned above, in secure processing systems, data must be secured from internal and external adversaries. Often, the data stored in a secure processing system is encrypted. Data may be encrypted by pre-generating encryption pads at the time that data is stored into the system. These pre-generated encryption pads may be generated based on an initialization vector and an encryption key. These pre-generated encryption pads may be generated at a time that a cache line is being delivered. Once the cache line is delivered, a low latency operation (e.g., an XOR) is performed between the encryption pad and the data (e.g., as in AES-Ctr mode encryption) to generate the encrypted data. If the same initialization vector value was used with the same encryption key, the encryption scheme could be broken. As such, the same initialization vector value cannot be used again with the same encryption key
To deal with this issue, secure processing systems implement the initialization vector partly as a counter and increment the initialization vector each time data is encrypted using the same encryption key. In particular, the initialization vector often comprises a 128 bit value, with 64 bits used for a cache line address and 64 bits used for the counter. As such, the term “incrementing the initialization vector” as used herein can be incrementing the counter portion of the initialization vector and the initialization vector value can be the value of the counter of the initialization vector. Similarly, determining an initialization vector can be determining the value of the counter of the initialization vector.
The incrementing of the initialization vector brings about its own set of technical challenges, Because a different initialization vector is used each time data is encrypted using the same encryption key, the latest initialization vector value needs to be stored in order to be able to decrypt the stored data. If each cache line stored its own initialization vector, each 64 byte cache line would incur a 12.5% storage overhead, causing storage and efficiency problems. These storage and efficiency problems are exacerbated due to the potential consequences of the initialization vector overflowing in the cache line. As such, a solution where each cache line stores its own initialization vector may be technically challenging to implement in memory systems at a large scale.
A new technical solution to this technical challenge involves efficient storage of initialization vectors. In particular, an example secure processing system efficiently stores initialization vectors for encrypting cache lines of data in a memory by using a set of hierarchical counters. Each cache line in the memory may be associated with a corresponding cache line counter. Each group of n cache lines may share a single group counter. Each set of m group counters may share a single cluster counter, and so forth, until a tree of p levels of cache lines is formed, where m, n and p are positive integers greater than or equal to 2. The root of the tree may be a page-level counter that is directly connected hierarchically to the top-most level of counters. An initialization vector for a particular cache line may then be determined by concatenating the set of counters associated with that cache line (e.g., the data of the first counter, the data of the first group counter, the data of the first cluster counter, and so forth).
Each time a cache line write occurs, the corresponding cache line counter will be incremented, If the cache line counter overflows, the group counter associated with the cache line counter will be incremented and all of the cache line counters associated with the group counter will be initialized. Responsive to the overflow, incrementing of the group counter, and initializing of the cache line counters, the data of the corresponding cache lines will be re-encrypted. Similarly, if the group counter overflows, the cluster counter will be incremented and all of the cache lines in that group will be encrypted again. This pattern will repeat until the top-most level counter is incremented to overflow, Responsive to the top-most level counter overflowing, the page counter will be incremented, and all cache lines in the page will be encrypted again.
An example computer system implementing efficient storage of initialization vectors may use 3 levels of counters in its hierarchy of counters (e.g., a cache line counter, a group counter associated with a first group of cache line counters, and a cluster counter associated with a set of group counters). In this example, the system may determine an initialization vector for use in encrypting a first cache line of a first page of memory. Determining the initialization vector may comprise concatenating a page-level counter with a first set of hierarchical counters associated with the first cache line. The first set of hierarchical counters may include, for example, a first counter associated with the first cache line, a first group counter associated with a first group of cache lines, where the first group of cache lines includes the first cache line, and a first cluster counter associated with a first cluster of cache line groups, where the first cluster includes the first group of cache lines. As discussed further below, the use of 3 levels in the hierarchy of counters is merely an example and is not limiting to the amount of levels that may be used.
Referring now to the drawings,
Referring now to the drawings,
Processor 110 may be one or more central processing units (CPUs), microprocessors, and/or other hardware devices suitable for retrieval and execution of instructions stored in machine-readable storage medium 120. Processor 110 may fetch, decode, and execute program instructions 121, and/or other instructions to enable efficient storage of initialization vectors, as described below. As an alternative or in addition to retrieving and executing instructions, processor 110 may include one or more electronic circuits comprising a number of electronic components for performing the functionality of one or more of instructions 121, and/or other instructions.
In one example, the program instructions 121, and/or other instructions can be part of an installation package that can be executed by processor 110 to implement the functionality described herein. In this case, memory 120 may be a portable medium such as a CD, DVD, or flash drive or a memory maintained by a computing device from which the installation package can be downloaded and installed. In another example, the program instructions may be part of an application or applications already installed on system 100.
Non-transitory machine-readable storage medium 120 may be any hardware storage device for maintaining data accessible to system 100. For example, machine-readable storage medium 120 may include one or more hard disk drives, solid state drives, tape drives, memory fabrics, and/or any other storage devices. The storage devices may be located in system 100, may be located across disparate, geographically distributed devices, and/or in another device in communication with system 100. For example, machine-readable storage medium 120 may be any electronic, magnetic, optical, or other physical storage device that stores executable instructions. Thus, machine-readable storage medium 120 may be, for example, Random Access Memory (RAM), an Electrically-Erasable Programmable Read-Only Memory (EEPROM), a storage drive, an optical disc, universal memory, and the like. As described in detail below, machine-readable storage medium 120 may be encoded with executable instructions for efficient storage of initialization vectors. As detailed below, storage medium 120 may maintain and/or store the data and information described herein.
For example, storage medium 120 may maintain and/or store data and information related to efficient storage of initialization vectors. Storage medium 120 may store, for example, a set of hierarchical counters for each page of memory in the storage medium 120.
Initialization vector determination instructions 121, when executed by processor 110, may facilitate efficient storage of initialization vectors for use in encrypting cache lines of data. For each page of memory, the initialization vector determination instructions 121, when executed by processor 110, may determine an initialization vector for each cache line of that page of memory. Each page may be associated with a page-level counter and a cache tree used to store initialization vectors. The page-level counter and cache tree may be stored as part of the page, may be stored in the storage medium 120 along with an association (e.g., a pointer, link, etc.) to the page, and/or in another manner that is accessible by the processor 110. In some examples, the page-level counter may be part of the cache tree as well.
The initialization vector determination instructions 121, when executed by processor 110, may write and retrieve data to the page via a cache. For each cache line retrieved or stored in the cache, the initialization vector determination instructions 121, when executed by processor 110, may encrypt or decrypt the data as needed. As mentioned above, the initialization vector determination instructions 121, when executed by processor 110, may encrypt data using an encryption key (e.g., an encryption key of a user storing or retrieving the data from the page) and an initialization vector. As also mentioned above, each cache line is associated with its own initialization vector.
As data is written to and retrieved from the page via a cache, the initialization vector determination instructions 121, when executed by processor 110, may determine the appropriate initialization vector for the cache line being written to by using the page-level counter and cache tree. The cache tree may include at least three levels of hierarchical counters, including the page-level counter. The initialization vector determination instructions 121, when executed by processor 110, may determine the appropriate initialization vector by concatenating the counters at each level of the cache tree that are associated with the cache line to be encrypted (or decrypted).
In some examples as mentioned above, the counter portion of the initialization vector is 64 bits, Accordingly, the concatenated counters of the cache tree also have a size of 64 bits. In some examples, the page-level counter comprises a 8-bit value or 16 bit, resulting in the remainder of the counters in the cache tree having an aggregated value comprising the remainder number of bits. The size of the concatenated counters should equal or somehow formulaically correspond to the size of the counter portion of the initialization vector.
An example of a cache tree is depicted in
The number of levels in the cache tree and the amount of nodes at each level are not limited to the examples depicted in
An example computer system implementing efficient storage of initialization vectors may use 3 levels of counters in its hierarchy of counters (e.g., a cache-level counter, a group counter associated with a first group of cache lines, and a cluster counter associated with a set of grouped cache lines). In this example, the initialization vector determination instructions 121, when executed by processor 110, may determine an initialization vector for use in encrypting a first cache line of a first page of memory. The initialization vector determination instructions 121, when executed by processor 110, may determine the initialization vector by concatenating a page-level counter with a first set of hierarchical counters associated with the first cache line. The first set of hierarchical counters may include, for example, a first counter associated with the first cache line, a first group counter associated with a first group of cache lines, where the first group of cache lines includes the first cache line, and a first cluster counter associated with a first cluster of cache line groups, where the first cluster includes the first group of cache lines. In some examples, the first set of hierarchical counters may include a counter associated with the first cache line at each level of hierarchical counters. For example, using the cache tree of
The initialization vector determination instructions 121, when executed by processor 110, may also manage the cache tree and initialization vectors used for encrypting and decrypting data stored in the page. For example, the initialization vector determination instructions 121, when executed by processor 110, may manage the process by which a counter in the cache tree overflows.
An example using the cache tree of
In some examples, responsive to the first counter 221 being incremented, the first counter 221 may overflow. Responsive to the first counter 221 overflowing, the initialization vector determination instructions 121, when executed by processor 110, may cause the first group counter 220A to be incremented. The initialization vector determination instructions 121, when executed by processor 110, may initialize the first set of counters 221, . . . , 222 responsive to the first group counter 220A being incremented. The initialization vector determination instructions 121, when executed by processor 110, may initialize the first set of counters 221, . . . , 222 by zeroing out the first set of counters, and/or otherwise initializing the first set of counters 221, . . . , 222. Responsive to the first set of counters 221, 222 being initialized, the initialization vector determination instructions 121, when executed by processor 110, may re-encrypt the data of the cache lines associated with the first set of counters 221, . . . , 222.
In some examples, responsive to the first group counter 220A being incremented, the first group counter 220A may overflow. Responsive to the first group counter 220A overflowing, the initialization vector determination instructions 121, when executed by processor 110, may cause the first cluster counter 210A to be incremented. The initialization vector determination instructions 121, when executed by processor 110, may initialize the first set of group counters 220A, . . . , 220N responsive to the first cluster counter 210A being incremented. The initialization vector determination instructions 121, when executed by processor 110, may initialize the first set of group counters 220A, . . . , 220N by zeroing out the first set of group counters 220A, 220N, and/or otherwise initializing the first set of group counters 220A, . . . , 220N. Responsive to the first set of group counters 220A, . . . , 220N being initialized, the initialization vector determination instructions 121, when executed by processor 110, may initialize each set of counters 221, . . . , 222, . . . 223, . . . , 224 associated with each group counter in the first set of group counters 220A, . . . , 220N. The initialization vector determination instructions 121, when executed by processor 110, may then re-encrypt the data of the cache lines associated with the initialized counters 221, . . . , 222, . . . , 223, . . . , 224.
In some examples, responsive to the first cluster counter 210A being incremented, the first cluster counter 210A may overflow. Responsive to the first cluster counter 210A overflowing, the initialization vector determination instructions 121, when executed by processor 110, may increment the page-level counter. Responsive to the page-level counter being incremented, the initialization vector determination instructions 121, when executed by processor 110, may initialize each set of cluster counters 210A, . . . , 210N. The initialization vector determination instructions 121, when executed by processor 110, may initialize the group counters and counters associated with each cache line as well in a manner the same as or similar to that described above in this example and may re-encrypt each cache line in the page.
The system 100 may perform this functionality each time data is requested, stored, and/or otherwise handled.
As detailed below, system 300 may include a series of engines 320 for efficient storage of initialization vectors. Each of the engines may generally represent any combination of hardware and programming. For example, the programming for the engines may be processor executable instructions stored on a non-transitory machine-readable storage medium and the hardware for the engines may include at least one processor of the system 300 to execute those instructions. In addition or as an alternative, each engine may include one or more hardware devices including electronic circuitry for implementing the functionality described below.
Initialization vector determination engine 320 may facilitate efficient storage of initialization vectors for system 300. For example, in a system 300 that uses 3 levels of counters in its hierarchy of counters (e.g., a cache-level counter, a group counter associated with a first group of cache lines, and a cluster counter associated with a set of grouped cache lines), initialization vector determination engine 320 may determine an initialization vector for use in encrypting a first cache line of a first page of memory. Initialization vector determination engine 320 may determine the initialization vector by concatenating a page-level counter with a first set of hierarchical counters associated with the first cache line. The first set of hierarchical counters may include, for example, a first counter associated with the first cache line, a first group counter associated with a first group of cache lines, where the first group of cache lines includes the first cache line, and a first cluster counter associated with a first cluster of cache line groups, where the first cluster includes the first group of cache lines, In some examples, the first set of hierarchical counters may include a counter associated with the first cache line at each level of hierarchical counters,
In some examples, the initialization vector determination engine 320 may facilitate efficient storage of initialization vectors in a manner the same as or similar to that of the initialization vector determination instructions 121 of system 100, Further details regarding an example implementation of initialization vector determination engine 320 are provided above in connection with initialization vector determination instructions 121 of
Although execution of the methods described below are with reference to system 100 of
In an operation 400, data may be written to a first cache line of a first page of memory. For example, the system 100 (and/or the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 100) may write data to the first cache line. The system 100 may write data to the first cache line in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, and/or other resource of the system 100.
In an operation 410, an initialization vector may be determined for use in encrypting the first cache line, where the initialization vector may be determined by concatenating a page-level counter with a first set of hierarchical counters. For example, the system 100 (and/or the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 100) may determine the initialization vector. The system 100 may determine the initialization vector in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 100.
In an operation 420, the first cache line may be encrypted using the determined initialization vector. For example, the system 100 (and/or the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 100) may encrypt the first cache line. The system 100 may encrypt the first cache line in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 100.
In an operation 500, a first counter may be incremented responsive to new data being written to the first cache line. For example, the system 100 (and/or the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 100) may increment the first counter. The system 100 may increment the first counter in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, and/or other resource of the system 100.
In an operation 510, the first group counter may be incremented responsive to the first counter overflowing. For example, the system 100 (and/or initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300) may increment the first group counter. The system 100 may increment the first group counter in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300.
In an operation 520, the first cluster counter may be incremented responsive to the first group counter overflowing. For example, the system 100 (and/or initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300) may increment the first cluster counter. The system 100 may increment the first cluster counter in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300.
In an operation 530, the first set of group counters may be initialized responsive to incrementing the first cluster counter. For example, the system 100 (and/or initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300) may initialize the first set of group counters, The system 100 may initialize the first set of group counters in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300.
In an operation 540, the first set of cache line counters may be initialized responsive to the first group counter being incremented or overflowing. For example, the system 100 (and/or initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300) may initialize the first set of cache line counters. The system 100 may initialize the first set of cache line counters in a manner similar or the same as that described above in relation to the execution of the initialization vector determination instructions 121, the initialization vector determination engine 320, or other resource of the system 300.
The foregoing disclosure describes a number of example embodiments for efficient storage of initialization vectors. The disclosed examples may include systems, devices, computer-readable storage media, and methods for efficient storage of initialization vectors. For purposes of explanation, certain examples are described with reference to the components illustrated in
Further, the sequence of operations described in connection with
Filing Document | Filing Date | Country | Kind |
---|---|---|---|
PCT/US2015/050632 | 9/17/2015 | WO | 00 |