Programmable processor supporting secure mode

Information

  • Patent Grant
  • 7457960
  • Patent Number
    7,457,960
  • Date Filed
    Tuesday, November 30, 2004
    19 years ago
  • Date Issued
    Tuesday, November 25, 2008
    15 years ago
Abstract
A processing system supporting a secure mode of operation is disclosed. The processing system includes a read-only hardware key that is only accessible in secure mode.
Description
BACKGROUND OF THE INVENTION

The present invention generally relates to processing systems, and relates in particular to computer processing systems that support a secure mode of operation for executing a secure code and/or for processing secure data.


Certain processing systems provide a safe mode or a secure mode of operation in which a processor may be operated such that it may manipulate sensitive files and/or run secure algorithms that are highly sensitive. The access to such a secure mode, however, is sometimes difficult to safeguard. If a threat is able to obtain secure mode access, then substantial damage may result in certain applications. Software safeguards that protect access to a secure mode may be avoided if certain software data is obtained by a hacker. Hardware safeguards that protect access to a secure mode may involve the use of a secure boot sequence that employs a secure kernel that is separate from the primary operating system. Such a system, however, adds significant cost to the processor.


Security in processing is essential not only to avoid malignant code such as viruses from damaging the operation of the processor, but also to provide confidentiality of data within the processor and confidentiality in encrypting data that is to be transmitted to other processors.


There is a need, therefore, for a processor that provides a secure mode of operation in a reliable and economical processing system.


SUMMARY OF THE INVENTION

In accordance with an embodiment, the invention provides a processing system supporting a secure mode of operation and comprising a read-only hardware key that is only accessible in secure mode. In accordance with another embodiment, the invention provides a method of operating a processing unit in a secure mode. The method includes the steps of comparing an application signature in an application to be authenticated with a hardware key in the processing system, enabling an interrupt diversion routine to prevent interrupts from being received by the processor, disabling an emulation unit of the processor, and enabling a secure function to be executed.





BRIEF DESCRIPTION OF THE DRAWINGS

The following description may be further understood with reference to the accompanying drawing in which:



FIG. 1 shows a diagrammatic illustrative view of a plurality of processing systems in accordance with an embodiment of the invention;



FIG. 2 shows a diagrammatic flowchart of the operational steps performed by a system in accordance with an embodiment of the invention;



FIG. 3 shows a diagrammatic flowchart of the operational steps involved in the operation of a pre-interrupt handler in accordance with an embodiment of the invention; and



FIG. 4 shows a diagrammatic flowchart of the operational steps performed by a system in accordance with another embodiment of the invention.





The drawings are shown for illustrative purposes.


DETAILED DESCRIPTION OF THE INVENTION

As shown in FIG. 1, a processor 10 may include a central processing unit 12 that includes interrupt ports 14, a read only memory (ROM) 16, a random access memory (RAM) 18, and input/output ports 20 and 22 for communicating with input and/or output devices 26 and 28. The ROM 16 includes a hardware embedded key 24 that is provided by the manufacturer of the processing unit 10. This key is a private key that is embedded in the hardware of the device and is not available to be read except in secure mode. The private key may be, for example, about 256 bytes or 1024 bits long.


During use, various input/output devices 26 and 28 may communicate with the processor via the ports 20, 22. If any applications 30, 32 that are coupled to the devices 26 and 28 request operations in secure mode, then the system authenticates the requesting code by using public key authorization. The public key may, for example, be about 512 bytes or 2048 bits long. The key or keys on the device for this purpose are public. Code that has been authenticated has access to the key that may be used to decrypt subsequent code and data. The device key may depend on the protocol in use.


The key may be either embedded in the ROM or may be otherwise fixed in the hardware during manufacturing, or may involve the use of fuses or links to set the key. When operating in secure mode, all interrupts are vectored to a pre-interrupt handler to appropriately clear the state of the machine. In other embodiments, an alternate interrupt vector table may be used as discussed below. The move to secure mode is possible under software control, but only after the requesting software has been authenticated. Authentication is achieved by passing a pointer and a byte count to the authentication-request subroutine placed in the ROM device. The key may be embedded in the ROM 16 or may be provided in a set of fuse-type links within the processor.


With reference to FIG. 2, the authentication request subroutine begins with a request for secure mode (step 40) and uses a public key signature algorithm (step 42) to verify the source and integrity of the code requesting secure mode (step 44). The signature is generated using a private key, and it is validated using the public key. Once validated, secure mode is enabled and the hidden key becomes visible. An authentication request may be made either by a direct function call to a known and fixed address, or by a system call that loads registers with parameters that are passed, which causes a software exception to occur. The authentication request may, for example, vector to an authentication code in registers or a data structure in fixed hardware memory, or may call a coded location. If the signature does not match, the routine ends (step 46). If the signature matches, the authenticated function would then install a pre-interrupt handler (step 48), and then disable emulation capability (step 50). The authenticated function would put the hardware into secure mode (step 52) and then make an indirect call to the requested, authenticated function (step 54). Once in secure mode, this key becomes visible. This key could then be used by the authenticated function to decrypt and call subsequent code, to decrypt other data, or as a seed for generating private keys. The algorithm used may, for example, take advantage of the secret nature of this hardware key to use public/private key encryption for the code.


Prior to leaving secure mode, the authenticated function should clear the machine of any sensitive state and code before ending. In particular, the function should turn off the secure function (step 56), re-enable emulation (step 58), and un-install the pre-interrupt handler (step 60) prior to ending (step 62). The authenticated function may wish to use a subset of the hardware key to create a device key or ID that is useful in establishing secure communications with other devices. Alternatively, the device key used for communication may be stored in an encrypted fashion in the software.


As shown in FIG. 3, an interrupt routine may be handled (step 70) by first storing information regarding where the secure mode was called from (step 72). The routine then erases all sensitive or secure external and internal programming code and data (step 74). The routine then disables secure mode (step 76), and vectors to the requested interrupt (step 78). The routine then restores any arguments to secure mode and vectors to that location (step 80) before ending (step 82). In other embodiments, the system may not return to exactly the same place from where the requested code was called. For example, if the interrupt service routine is aware of what the secure code is doing, and is able to determine that some useful work was done, it may then continue the secure work approximately where it left off before the interrupt was received.


In accordance with yet another embodiment, and with reference to FIG. 4, an authentication request subroutine begins with a request for secure mode (step 90) and uses a public key signature algorithm (step 92) to verify the source and integrity of the code requesting secure mode (step 94). The authentication request may, for example, vector to an authentication code in registers or a data structure in fixed hardware memory, or may call a coded location. If the signature does not match, the routine ends (step 96). If the signature matches, the authenticated function would then switch to an alternate interrupt table (step 98), and then disable emulation capability (step 100). The authenticated function would put the hardware into secure mode (step 102) and then make an indirect call to the requested, authenticated function (step 104). Once in secure mode, this key becomes visible. This key could then also be used by the authenticated function to decrypt and call subsequent code to decrypt other data, or as a seed for generating private keys. Again, the algorithm used may take advantage of the secret nature of this hardware key to use public/private key encryption for the code.


Prior to leaving secure mode, the authenticated function should clear the machine of any sensitive state and code before ending. In particular, the function should turn off the secure function (step 106), re-enable emulation (step 108), and return to using the primary interrupt table (step 110) prior to ending (step 112). Again, the authenticated function may wish to use a subset of the hardware key to create a device key or ID that is useful in establishing secure communications with other devices. Alternatively, the device key used for communication may be stored in an encrypted fashion in the software.


The alternate interrupt vector table may include a list of addresses to interrupt service routines in accordance with an embodiment, or may include several bytes that may contain either an interrupt service routine itself (for example if the routine is short), or may include a jump instruction to a relative or absolute address. Any of the bits of an address (e.g., 14 bits ) as well as any of the bytes that include a jump instruction may also include instructions for the routine that was called by the interrupt.


Systems of the invention provide, therefore, that a signature may be generated with a private key that can be verified with a public key. The signature itself is not verified, but rather it is the combination of the message and the signature that is verified. The signature is similar to a one-way hash of the content of the message, in that the message cannot be generated from the hash, and only the hashing function can produce the signature. There is a comparable function that together can hash the message with its signature so if the public key is present, then the signature may be verified. If the public key pair of that private key is present, then that signature may be verified as being is correct for that message. The system verifies that that private key was used to sign that message.


The system, therefore, performs two basic functions; one is authentication, and the other is providing access to the private hardware key. The authentication code includes a public key. The public code uses that public key to verify the authenticity of code requesting secure mode. Once authenticated, access to secure mode is provided which gives the device access to additional hardware features, including the hardware key itself. The system may then permit the requesting device to perform a wide variety of functions. For example, if the requesting device included additional code that was encrypted, the system could not decrypt the code without knowing the private hardware key. The encryption, may for example, employ a public key encryption technology such as sold by PGP Corporation of Palo Alto, Calif., or symmetric key, cryptography, where the exact same key was used in encryption, and unless the receiver has the exact same key the receiver cannot decrypt the code. In further embodiments, access to the secure mode may be used to generate a unique device identifier, for example, wherein the hardware key itself could be the unique device identifier. Access to secure mode also permits one to create subsequent keys. Further, to the extent that the resource of secure mode is unique for each chip, further uses are provided that are unique to each user of each such system.


Those skilled in the art will appreciate that numerous modifications and variations may be made to the above disclosed embodiments without departing from the spirit and scope of the invention.

Claims
  • 1. A processing system supporting a secure mode of operation, said processing system comprising: a read only memory that includes a read only hardware key;authentication means for using a public key to authenticate a signature of code requesting access to secure mode; andsecure access means for permitting a region of memory to be accessible to the processor only after the signature of code requesting access to secure mode is authenticated.
  • 2. The processing system as claimed in claim 1, wherein said processing system further includes interrupt diversion enabling means for enabling an interrupt diversion routine to prevent interrupts from being received by the processor.
  • 3. The processing system as claimed in claim 2, wherein said interrupt diversion enabling means includes pre-interrupt handler means for installing a pre-interrupt handler.
  • 4. The processing system as claimed in claim 2, wherein said processing system includes a primary interrupt vector table for use during operation of the processing system outside of secure mode, and said interrupt diversion handling means includes alternate interrupt vector table means for installing an alternate interrupt vector table for use during the secure mode of operation.
  • 5. The processing system as claimed in claim 4, wherein said alternate interrupt vector table includes a list of addresses of interrupt service routines.
  • 6. The processing system as claimed in claim 4, wherein said alternate interrupt vector table includes interrupt service routines.
  • 7. The processing system as claimed in claim 4, wherein said alternate interrupt vector table includes jump instructions to interrupt service routines.
  • 8. A method of changing a mode of operation of a processing unit from a non-secure mode to a secure mode, said method comprising the steps of: authenticating a section of code requesting secure mode access by evaluation of its signature using a hardware key in the processing unit;enabling an interrupt diversion routine in the processing unit to prevent interrupts from being received by the processing unit;disabling an emulation unit of the processing unit; andenabling a secure function to be executed during operation.
  • 9. The method as claimed in claim 8, wherein said step of enabling an interrupt diversion routine to prevent interrupts from being received by the processing unit involves installing a pre-interrupt handler.
  • 10. The method as claimed in claim 8, wherein said step of enabling an interrupt diversion routine to prevent interrupts from being received by the processing unit involves installing an alternate interrupt vector table.
  • 11. The method as claimed in claim 8, wherein said method further involves the step of clearing any sensitive code prior to exiting the secure mode.
US Referenced Citations (66)
Number Name Date Kind
4411017 Talbot Oct 1983 A
4555805 Talbot Nov 1985 A
5081675 Kittirutsunetorn Jan 1992 A
5563950 Easter et al. Oct 1996 A
5708715 Vicard Jan 1998 A
5799086 Sudia Aug 1998 A
5841865 Sudia Nov 1998 A
5850451 Sudia Dec 1998 A
5857022 Sudia Jan 1999 A
5872849 Sudia Feb 1999 A
5920730 Vincent Jul 1999 A
5970143 Schneier et al. Oct 1999 A
6009177 Sudia Dec 1999 A
6331812 Dawalibi Dec 2001 B1
6385737 Benignus et al. May 2002 B1
6445606 Khoury Sep 2002 B1
6523119 Pavlin et al. Feb 2003 B2
6769064 Sion et al. Jul 2004 B2
6775778 Laczko et al. Aug 2004 B1
7024564 Pavlin et al. Apr 2006 B2
7124170 Sibert Oct 2006 B1
7177975 Toombs et al. Feb 2007 B2
7203844 Oxford Apr 2007 B1
7237081 Dahan et al. Jun 2007 B2
7302585 Proudler et al. Nov 2007 B1
7305534 Watt et al. Dec 2007 B2
7313828 Holopainen Dec 2007 B2
7363511 Kiiveri Apr 2008 B2
7373521 Kawahara May 2008 B1
7373657 Walker May 2008 B2
20010034840 Sion et al. Oct 2001 A1
20010037450 Metlitski et al. Nov 2001 A1
20010050990 Sudia Dec 2001 A1
20010056539 Pavlin et al. Dec 2001 A1
20020007456 Peinado et al. Jan 2002 A1
20020129245 Cassagnol et al. Sep 2002 A1
20030005322 Kiiveri Jan 2003 A1
20030037237 Abgrall et al. Feb 2003 A1
20030046566 Holopainen Mar 2003 A1
20030046570 Ronkka et al. Mar 2003 A1
20030093684 Kaiserswerth et al. May 2003 A1
20030110388 Pavlin et al. Jun 2003 A1
20030140205 Dahan et al. Jul 2003 A1
20030140244 Dahan et al. Jul 2003 A1
20030140245 Dahan et al. Jul 2003 A1
20030191719 Ginter et al. Oct 2003 A1
20030228911 Dernis et al. Dec 2003 A1
20040025033 Todd Feb 2004 A1
20040039924 Baldwin et al. Feb 2004 A1
20040092310 Brosnan et al. May 2004 A1
20040177261 Watt et al. Sep 2004 A1
20040187019 Nanki et al. Sep 2004 A1
20040210760 McGrath et al. Oct 2004 A1
20040243783 Ding et al. Dec 2004 A1
20050021968 Zimmer et al. Jan 2005 A1
20050027997 Ueno et al. Feb 2005 A1
20050182952 Shinozaki Aug 2005 A1
20050278549 Torla et al. Dec 2005 A1
20060059369 Fayad et al. Mar 2006 A1
20060090081 Baentsch et al. Apr 2006 A1
20060090084 Buer Apr 2006 A1
20060105740 Puranik May 2006 A1
20060117182 Wolff Jun 2006 A1
20060129848 Paksoy et al. Jun 2006 A1
20060177068 Hatakeyama Aug 2006 A1
20060236125 Sahita et al. Oct 2006 A1
Related Publications (1)
Number Date Country
20060130130 A1 Jun 2006 US