EP1417573A2 - Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api - Google Patents

Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api

Info

Publication number
EP1417573A2
EP1417573A2 EP01970946A EP01970946A EP1417573A2 EP 1417573 A2 EP1417573 A2 EP 1417573A2 EP 01970946 A EP01970946 A EP 01970946A EP 01970946 A EP01970946 A EP 01970946A EP 1417573 A2 EP1417573 A2 EP 1417573A2
Authority
EP
European Patent Office
Prior art keywords
verification
resource
content
post
issuance
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Withdrawn
Application number
EP01970946A
Other languages
German (de)
English (en)
Inventor
Judith E. Schwabe
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Sun Microsystems Inc
Original Assignee
Sun Microsystems Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Priority claimed from US09/661,581 external-priority patent/US6883163B1/en
Application filed by Sun Microsystems Inc filed Critical Sun Microsystems Inc
Priority claimed from PCT/US2001/028687 external-priority patent/WO2002025427A2/fr
Publication of EP1417573A2 publication Critical patent/EP1417573A2/fr
Withdrawn legal-status Critical Current

Links

Definitions

  • the present invention relates to computer systems. More particularly, the present invention relates to a system and method for remote distributed program verification using API definitions.
  • BACKGROUND OF THE INVENTION hi general computer programs are written as source code statements in a high level language that is easy for a human being to understand. As the computer programs are actually executed, a computer responds to machine code, which consists of instructions comprised of binary signals that directly control the operation of a central processing unit (CPU).
  • CPU central processing unit
  • a special program called a compiler is typically used to read the source code and to convert its statements into the machine code instructions of the specific CPU.
  • the machine code instructions thus produced are platform dependent, that is, different computer devices have different CPUs with different instruction sets indicated by different machine codes.
  • More powerful programs are typically constructed by combining several simpler programs. This combination can be made by copying segments of source code together before compiling and then compiling the combined source. When a segment of source code statements is frequently used without changes, it is often preferable to compile it once, by itself, to produce a module, and to combine the module with other modules only when that functionality is actually needed. This combining of modules after compilation is called linking. When the decision on which modules to combine depends upon run time conditions and the combination of the modules happens at run time, just before execution, the linking is called dynamic linking.
  • Object oriented programming techniques such as those used by the JavaTM platform are widely used.
  • the basic unit of object oriented programs is an "object".
  • An , object has methods (procedures) and fields (data).
  • the term "members” is used herein to refer to methods and fields.
  • a method declares executable code that can be invoked and that passes a fixed number of values as arguments.
  • a class defines the shared members of the objects. Each object then is a particular instance of the class to which it belongs, h practice, a class is a template to create multiple objects (multiple instances) with similar features.
  • One property of classes ' is encapsulation. Encapsulation is used to describe a system wherein access to an object is provided through an interface, while keeping the details private.
  • Classes enjoy the property of inheritance. Inheritance is a mechanism that enables one class to inherit all of the members of another class.
  • the subclass can extend the capabilities of the superclass by adding additional members.
  • the subclass can override a virtual method of the superclass by providing a substitute method with the same name and type.
  • the members of a class type are fields and methods; these include members inherited from the superclass.
  • the class file also names the superclass.
  • a member can be public, which means that it can be accessed by members of the class that contains its declaration.
  • a member can also be private.
  • a private field of a class is visible only in methods defined within that class. Similarly, a private method may only be invoked by methods within the class. Private members are not visible within subclasses, and are not inherited by subclasses as other members are.
  • a member can also be protected.
  • An interface type is a type whose members are constants and abstract methods.
  • Interfaces may have sub-interfaces, just as classes may have subclasses.
  • a sub-interface inherits from its super-interface, and may define new methods and constants as well.
  • an interface can extend more than one interface at a time.
  • An interface that extends more than one interface inherits all the abstract methods and constants from each of those interfaces, and may define its own additional methods and constants.
  • JavaTM Programming Language hi the JavaTM programming language, classes can be grouped and the group can be named; the named group of classes is a package. If a class member is not declared with any of the public, private or protected keywords, then it is visible only within the class that defines it and within classes that are part of the same package. A protected member may be accessed by members of declaring class or from anywhere in the package in which it is declared.
  • the JavaTM programming language is described in detail in Gosling, et al., "The JavaTM Language Specification", August 1996, Addison- Wesley Longman, hie.
  • JavaTM virtual machine which is an abstract computer architecture that can be implemented in hardware or software. Either implementation is intended to be included in the following description of a VM.
  • processor may be used to refer to a physical computer or a virtual machine.
  • a virtual machine is an abstract computing machine generated by a software application or sequence of instructions that is executed by a processor.
  • the term "architecture-neutral" refers to programs, such as those written in the JavaTM programming language, which can be executed by a virtual machine on a variety of computer platforms having a variety of different computer architectures.
  • a virtual machine implemented on a WindowsTM-based personal computer system will execute an application using the same set of instructions as a virtual machine implemented on a UNIXTM-based computer system.
  • the result of the platform- independent coding of a virtual machine's sequence of instructions is a stream of one or more bytecodes, each of which is, for example, a one-byte-long numerical code.
  • the JavaTM Virtual Machine (JVM) is one example of a virtual machine.
  • Compiled code to be executed by the JavaTM Virtual Machine is represented using a hardware- and operating system-independent binary format, typically stored in a file, known as the class file format.
  • the class file is designed to handle object oriented structures that can represent programs written in the JavaTM programming language, but may also support several other programming languages. These other languages may include, by way of example, Smalltalk.
  • the class file format precisely defines the representation of a class or interface, including details such as byte ordering that might be taken for granted in a platform-specific object file format.
  • the JavaTM Virtual Machine imposes strong format and structural constraints on the instructions in a class file.
  • JVM instructions are type specific, intended to operate on operands that are of a given type as explained below.
  • JavaTM Virtual Machine Any language with functionality that can be expressed in terms of a valid class file can be hosted by the JavaTM Virtual Machine.
  • the class file is designed to handle object oriented structures that can represent programs written in the JavaTM programming language, but may also support several other programming languages.
  • the JavaTM Virtual Machine is described in detail in Lindholm, et al., "The JavaTM Virtual Machine Specification", April 1999, Addison- Wesley Longman, Inc., Second Edition.
  • compile time refers to the steps which convert the high level language into VM instructions
  • run time refers to the steps which, in a JavaTM VM environment, interpret instructions to execute the module.
  • the modules of instructions compiled from statements can reside dormant for extended, arbitrary periods of time, or can be transferred from one storage device to another, including being transferred across a network.
  • Loading refers to the process of finding the binary form of a class or module with a particular name, typically by retrieving a binary representation previously compiled from source code.
  • the loading step retrieves the class file representing the desired class.
  • the loading process is implemented by the bootstrap loader or a user defined class loader.
  • a user-defined class loader is itself defined by a class.
  • a class loader may indicate a particular sequence of locations to search in order to find the class file representing a named class.
  • Linking in the JVM is the process of taking a binary form of a class in memory and combining it into the run time state of a VM, so that it can be executed. A class is loaded before it is linked.
  • a downloaded program may contain errors involving the data types of operands not matching the data type restrictions of the instructions using those operands, which may cause the program to fail during execution. Even worse, a program might attempt to create object references (e.g. by loading a computed number into the operand stack and then attempting to use the computed number as an object handle) and to thereby breach the security and/or integrity of the user's computer. Alternatively, one or more of the modules may have been updated since the others were prepared.
  • the binary classes of the JVM are examples of general program modules that contain instructions produced from compiled source statements.
  • Context sensitivity of validity checks performed during verification means that those checks depend on information spread across more than one module, i.e., those checks are called intermodule checks herein.
  • Validity checks that do not require information from another module are called intra-module checks herein.
  • Intra-module checks include, for example, determining whether the downloaded program will underflow or overflow its stack, whether any instruction will process data of the wrong type and whether the downloaded program will violate files and other resources on the user's computer. See, for example, United States Patent 5,668,999 to Gosling, United States Patent 5,748,964 to Gosling and United States Patent 5,740,441 to Yellin et al.
  • Fig. 1 a high level flow diagram that illustrates verification is presented. At 10, intra-module checks are performed to determine whether a module is internally consistent. At 20, inter-module checks are performed to determine whether the module is consistent within the context of externally referenced modules.
  • Verification is successful if both checks pass. Execution of a module is prevented if either checks fail. Verification typically follows an execution path. Verification starts at a program's main entry point and proceeds in a "top down" fashion, one instruction at a time. During this process, the verifier may encounter a reference to an external library that includes at least one program unit. At this point, the verifier obtains the binary file for the external library and continues verification along an execution path.
  • Fig. 2 a high level flow diagram that illustrates verification of an application to be executed on a resource-rich device 62 is presented. Verification is typically performed on a relatively resource-rich device 62 such as a desktop computer.
  • a compiler 50 compiles a source file 55. During compilation, the compiler 50 verifies the correct use of data and instructions. These checks include intra-module checks and inter-module checks.
  • the output of the source code compiler 50 is a binary file 60 containing the executable instructions corresponding to the source file 55.
  • a loader 70 loads the binary file 60.
  • a verifier 75 verifies the binary file 60 at some point prior to execution by an interpreter 80. If the binary file 60 references any items that are external to the binary file 60, the verifier 75 verifies the binary file 60 against the referenced binary f ⁇ le(s) 60 containing the externally referenced item(s).
  • Fig. 3 a block diagram that illustrates the need for verification is presented.
  • Fig. 3 is the same as Fig. 2, except that binary file 110 and/or referenced binary file 107 are potentially modified at some point after source file 105 is compiled.
  • the modification may be the result of an update of a binary file 110 or referenced binary file 107.
  • modification of the binary file 110 or referenced binary file 107 may be the result of file corruption.
  • program modifications could potentially cause the program to violate JavaTM semantics and thus breach the security and/or integrity of the host computer 155.
  • Verification coupled with execution time has some disadvantages.
  • an object oriented programming language system like the JavaTM platforms (but not Java CardTM platforms)
  • it leads to a verifier initiating class loading when the verifier needs to check subtype relations among classes not already loaded.
  • Such loading can occur even if the code referencing other classes is never executed. Because of this, loading can consume memory and slow execution at run time as compared to a process that does not load the classes unless they are referenced by the instructions that are actually executed.
  • Methods for verification coupled with execution time typically do not verify one class or module at a time before run time. This is a disadvantage because classes cannot be verified ahead of time, e.g. before run time, so verification must incur a run time cost. Thus, there is a need for module-by module, also called module-at-a-time, verification before run time. Such verification is also called pre-verification because technically it is distinct from the verification which occurs during run time linking by the Java CardTM Virtual Machine (JCVM).
  • JCVM Java CardTM Virtual Machine
  • Resource-constrained devices are generally considered to be those that are relatively restricted in memory and/or computing power or speed, as compared to typical desktop computers and the like.
  • Other resource-constrained devices include, by way of example, smart cards, cellular telephones, boundary scan devices, field programmable devices, personal digital assistants (PDAs) and pagers and other miniature or small footprint devices.
  • Smart cards also known as intelligent portable data-carrying cards, are a type of resource-constrained device. Smart cards are typically made of plastic or metal and have an electronic chip that includes an embedded microprocessor or microcontroller to execute programs and memory to store programs and data.
  • Such devices which can be about the size of a credit card, typically have computer chips with 8-bit or 16-bit architectures. Additionally, these devices typically have limited memory capacity. For example, some smart cards have less than one kilobyte (IK) of random access memory (RAM) as well as limited read only memory (ROM), and/or non- volatile memory such as electrically erasable programmable read only memory (EEPROM
  • a JavaTM virtual machine executes programs written in the JavaTM programming language and is designed for use on desktop computers, which are relatively rich in memory. It would be desirable to write programs that use the full implementation of the JavaTM virtual machine for execution on resource-constrained devices such as smart cards. However, due to the limited architecture and memory of resource-constrained devices such as smart cards, the full JavaTM virtual machine platform cannot be implemented on such devices. Accordingly, a separate Java CardTM (the smart card that supports the JavaTM programming language) technology supports a subset of the JavaTM programming language for resource-constrained devices.
  • FIG. A development of an applet for a resource-constrained device, such as a smart card 160, begins in a manner similar to development of a JavaTM program.
  • a developer writes one or more JavaTM classes and compiles the source code with a JavaTM compiler to produce one or more class files 165.
  • the applet can be run, tested and debugged, for example, on a workstation using simulation tools to emulate the environment on the card 160.
  • the class files 165 are converted to a converted applet (CAP) file 175 by a converter 180.
  • the converter 180 can be a JavaTM application being executed by a desktop computer.
  • the converter 180 can accept as its input one or more export files 185 in addition to the class files 165 to be converted.
  • An export file 185 contains naming or linking information for the contents of other packages that are imported by the classes being converted.
  • the CAP format is parallel to the class file information.
  • Each CAP 250 contains all of the classes and interfaces defined in one JavaTM package.
  • a CAP file 250 has a compact and optimized format, so that a JavaTM package can be efficiently stored and executed on resource-constrained devices.
  • the CAP file 250 includes a constant pool component (or "constant pool") 255 that is packaged separately from a methods component 260.
  • the constant pool 255 can include various types of constants including method and field references which are resolved either when the program is linked or downloaded to the smart card or at the time of execution by the smart card.
  • the methods component 260 specifies the application instructions to be downloaded to the smart card and subsequently executed by the smart card.
  • a CAP file 250 also included in a CAP file 250, among other things, are class definitions 265, field definitions 275, and descriptive type definitions 275.
  • the CAP file 175 can be stored on a computer-readable medium 170 such as a hard drive, a floppy disk, an optical storage medium, a flash device or some other suitable medium.
  • the computer-readable medium can be in the form of a carrier wave, e.g., a network data transmission or a radio frequency (RF) data link.
  • the CAP file 175 then can be copied or transferred to a terminal 190 such as a desktop computer with a peripheral card acceptance device (CAD) 195.
  • the CAD 195 allows information to be written to and retrieved from the smart card 160.
  • the CAD 195 includes a card port (not shown) into which the smart card 160 can be inserted. Once inserted, contacts from a connector press against the surface connection area on the smart card 160 to provide power and to permit communications with the smart card 160, although, in other implementations, contactless communications can be used.
  • the terminal 190 also includes an installation tool 200 that loads the CAP file 175 for transmission to the card 160.
  • the smart card 160 has an input/output (I/O) port 205 which can include a set of contacts through which programs, data and other communications are provided.
  • the card 160 also includes a loader 210 for receiving the contents of the CAP file 175 and preparing the applet for execution on the card 160.
  • the installation tool 210 can be implemented, for example, as a JavaTM program and can be executed on the card 160.
  • the card 160 also has memory, including volatile memory such as RAM 240.
  • the card 160 also has ROM 230 and non- volatile memory, such as EEPROM 235.
  • the applet prepared by the loader 210 can be stored in the EEPROM 235. As mentioned regarding Fig. 2, verification is typically performed on a resource- rich device.
  • Verification programs are typically large programs that require a relatively large amount of runtime memory when executing. Also, verifier programs typically require large amounts of detailed descriptive information in the verification process. This descriptive information includes information regarding field types, signature types and access flags (private, protected, etc). This type information is typically maintained in secondary storage. Such memory requirements are typically not an issue on relatively resource rich devices such as a desktop computer. However, these same characteristics make verification ill-suited for resource-constrained devices such as smart cards. Providing verification of program modules to execute on a resource-constrained device is critical to ensure the integrity of program modules executed such a device. Accordingly, a need exists in the prior art for a system and method for remote verification of programs to be executed by a resource-constrained device.
  • a JavaTM verifier proceeds along an applet's execution path, verifying all external references in the process. This means that the verifier must have access to the full binary file of not only the module to be verified, but also all modules in the execution path of the module to be verified.
  • some of the libraries may contain proprietary implementations that must not be revealed to consumers.
  • a vendor may install a library that contains proprietary implementation algorithms (such as an encryption algorithm) that must not be revealed to another vendor. Since typical verification methods require revealing the binary files of the modules to be verified, such methods could reveal proprietary information. Accordingly, there is a need in the prior art for a system and method for program verification that does not reveal proprietary details.
  • a library may have multiple implementations. Verification with a particular implementation does not guarantee verification with another implementation. Accordingly, there is a need in the prior art for a system and method for specifying when verification with a first implementation guarantees verification with a second implementation.
  • FIG. 6 shows a diagram illustrating typical hierarchical dependencies among a group of program packages (including both libraries and program applets) loaded onto a smart card. Applications may be loaded onto smart card incrementally and linked on- card for execution so that the functionality of the smart card may be updated with additional capabilities in addition to factory-programmed functionalities.
  • program packages including both libraries and program applets
  • a JavaTM language framework 285 and a Java CardTM framework 280 exist at a Java CardTM API level.
  • a custom API level with one or more custom frameworks 290.
  • the custom framework 290 may be supplied by one or more value added providers through various software development kits (SDKs) to extend . an existing framework or other API.
  • SDKs software development kits
  • FIG. 6 Each of the boxes shown in Fig. 6 represents a JavaTM package.
  • a package is called a library package if it exports items and is therefore referenced by other packages.
  • a package is called an applet package if it contains a program entry point. Some packages are both library and applet packages.
  • a package may depend on other packages at the same API level or from those packages in lower API levels.
  • the Java CardTM framework 280 may have dependencies from the JavaTM language framework 285.
  • the custom framework 290 at the custom API level and the applets 300 and 305 may have references that depend from the Java CardTM framework 280.
  • the applet 295 may have
  • Applet 295 and the custom framework 290 may also depend on the JavaTM language framework 285.
  • Applets may also depend on one another as shown by the line from Applet 305 to Applet 300. In this case, Applet 300 is both an applet and library package.
  • the Java CardTM CAP file format provides for the post issuance installation of applications.
  • the CAP file allows the content of a resource-constrained device to be updated after the device has been issued to an end user.
  • the capability to install applications after the card has been issued provides card issuers with the ability to respond dynamically to their customer's changing needs. For example, if a customer decides to enroll in the frequent flyer program associated with the card, the card issuer can add this functionality, without having to issue a new card.
  • Java CardTM CAP file format thus provides more flexibility for application issuers.
  • Application issuers may implement transactional services as applets, and then host these applets, either in their own cards or in the cards of other issuers with whom they do business.
  • an issuer may provide a core service to clients in the form of JavaTM applets for the issuer's cards. The clients will then combine these applets with other applets designed to provide a variety of value added services.
  • These applet combinations can be updated through the dynamic applet loading process to meet the changing needs of individual customers.
  • FIG. 7 a block diagram that illustrates preparation of a resource- constrained device without post-issuance installation is presented.
  • a manufacturer typically prepares the resource-constrained device by loading it with some initial content (310).
  • This initial content typically includes the native OS, Java CardTM VM and some or all of the Java CardTM API packages (320).
  • Some initial applets and/or libraries may be provided by an applet or library provider (315).
  • the initial content is burned into ROM. This process of writing the permanent components into the non-mutable memory of a chip for carrying out incoming commands is called masking.
  • the manufacturer may also load general data onto the card's non- volatile memory. This data is identical across a large number of cards and is not specific to an individual. An example of this general data is the name of a card manufacturer.
  • the manufacturer also personalizes the content of a card by assigning the card to a person. This may occur through physical personalization or through electronic personalization.
  • Physical personalization refers to permanently marking by, for example, embossing or laser engraving the person's name and card number on the physical surface of a card.
  • Electronic personalization refers to loading personal data into a card's non- volatile memory. Examples of personal data include a person's name, personal ED or PEST number, and personal key.
  • an issuer 320 obtains an initialized device from the manufacturer.
  • the issuer may obtain additional applets or libraries from a provider and load the additional content onto the device. This further customization of the cards is performed by installing the applets or libraries in the form of CAP files.
  • the issuer may also load general data, such as the issuer name, into the card's non- volatile memory.
  • the issuer After preparing the cards (320), the issuer disables subsequent installation of libraries or applets on the device and distributes the device to an end user 325. At this point, the card is ready for use having its complete content. Since installation has been disabled, no further content will be added after the card has been issued.
  • the card may be obtained from an issuer, or it can be bought from a retailer. Cards sold by a retailer can be general-purpose, in which case personalization is often omitted.
  • FIG. 8 a block diagram that illustrates preparation of a resource- constrained device with post-issuance installation is presented.
  • the diagram illustrates the case where a "trusted" installer 330 installs additional content on the device after the device has been issued to the end user 335.
  • the post-issuance installer 330 is "trusted” because of a preexisting agreement between the post-issuance installer 330 and the issuer 340.
  • the issuer 340 distributes the device to the end user 335 without disabling subsequent installations.
  • the end user may update the content of the resource- constrained device by presenting it to a "trusted" post-issuance installer 330.
  • the "trusted" post-issuance installer 330 installs additional content on the resource- constrained device and returns it to the end user 335.
  • the installation is performed by transmitting a CAP file to the device.
  • the roles of the manufacturer, issuer, services provider and applet provider are described. These roles can be filled by one or more entities. '
  • each of the roles described in figures 7 and 8 entail testing the applets and packages before they are installed on the device. Testing checks the functional behavior of these modules, confirming that given a particular input a required output is produced. Testing examines a different domain than verification, described above.
  • a Java CardTM system may be constructed incrementally and at each stage, it is desirable to ensure program integrity. For example, the manufacturer may populate a resource-constrained device with one or more libraries. Before shipping, it would be desirable for the manufacturer to guarantee the content integrity. At this stage, there are only libraries on the device, and no applets. Without an applet, there is no applet entry point and therefore no execution path for a verifier to follow.
  • a new CAP file is binary compatible with a preexisting CAP file if another
  • CAP file converted using the export file of the preexisting CAP file can link with the new CAP file without errors.
  • the JavaTM Language Specification includes several examples of binary compatible changes for the JavaTM language. These examples include adding a class and adding a field to a class. Examples of binary incompatible changes include deleting a class and changing the parameters to a method.
  • the Java CardTM Virtual Machine specification defines binary compatible changes to be a strict subset of those defined for the JavaTM programming language.
  • An example of a binary compatible change in the JavaTM programming language that is not binary compatible in the Java CardTM platform is adding a public virtual method to a class that can be extended by a referencing binary file.
  • Figure 9 shows an example of binary compatible CAP files, PI (360) and PI '
  • the preconditions for the example are: The package PI is converted to create the PI CAP file (360) and PI export file (370), and package PI is modified and converted to create the PI ' CAP file (365).
  • Package P2 imports package PI, and therefore when the
  • P2 CAP file (375) is created, the export file of PI (370) is used.
  • P2 is converted using the original PI export file (370).
  • P2 may be linked with either the PI CAP file (360) or the PI' CAP file (365).
  • the Java CardTM Virtual Machine further specifies that major and minor version numbers be assigned to each revision of a binary file. These version numbers are record in both CAP and export files. When the major version numbers of two revisions are not equal, the two revisions are not binary compatible. When the major version numbers of the two revisions are equal, the revision with the larger minor version number is binary (backward) compatible with the revision with the smaller minor version number.
  • the major and minor versions of a package are assigned by the package provider.
  • a major version is changed when a new implementation of a package is not binary compatible with the previous implementation.
  • the value of the new major version is greater than the version of the previous implementation.
  • the associated minor version is assigned the value of 0.
  • a new implementation of a package When a new implementation of a package is binary compatible with the previous implementation, it is assigned a major version equal to the major version of the previous implementation.
  • the minor version assigned to the new implementation is greater than the minor version of the previous implementation.
  • Both an export file and a CAP file contain the major and minor version numbers of the package described.
  • a CAP file is installed on a Java CardTM enabled device, a resident image of the package is created, and the major and minor version numbers are recorded as a part of that image.
  • an export file is used during preparation of a CAP file, the version numbers indicated in the export file are recorded in the CAP file.
  • references from the package of the CAP file being installed to an imported package can be resolved only when the version numbers indicated in the export file used during preparation of the CAP file are compatible with the version numbers of the resident image. They are compatible when the major version numbers are equal and the minor version of the export file is less than or equal to the minor version of the resident image.
  • a method for remote incremental program verification includes receiving content verified by at least one content provider, installing the content on a resource-constrained device and issuing the resource-constrained device to an end user.
  • the content includes at least one program unit and each program unit includes an Application Programming Interface (API) definition file and an implementation.
  • API Application Programming Interface
  • Each API definition file defines items in its associated program unit that are made accessible to one or more other program units and each implementation includes executable code corresponding to the API definition file.
  • the executable code includes type specific instructions and data.
  • a resource-constrained device includes a memory for providing content verified by at least one content provider and a virtual machine that is capable of executing instructions included within the content.
  • the content includes at least one program unit and each program unit includes an Application Programming Interface (API) definition file and an implementation.
  • API definition file defines items in its associated program unit that are made accessible to one or more other program units, each implementation includes executable code corresponding to the API definition file, and executable code includes type specific instructions and data. .
  • Fig. 1 is a high level flow diagram that illustrates program verification.
  • Fig. 2 is a high level flow diagram that illustrates verification of an application to be executed on a resource-rich device.
  • Fig. 3 is a block diagram that illustrates the need for program verification.
  • Fig. 4 is a block diagram that illustrates development of an applet for a resource- constrained device.
  • Fig. 5 is a block diagram that illustrates a Converted Applet (CAP) file format.
  • Fig. 6 is a block diagram that illustrates hierarchical dependencies between application packages.
  • Fig. 7 is a block diagram that illustrates preparation of a resource-constrained device without post-issuance install.
  • Fig. 8 is a block diagram that illustrates preparation of a resource-constrained device with post-issuance install.
  • CAP Converted Applet
  • Fig. 9 is a block diagram that illustrates binary compatibility.
  • Fig. 10A is a flow diagram that illustrates verification that follows an execution path.
  • Fig. 1 OB is a code sample that illustrates verification that follows an execution path.
  • Fig. IOC is a flow diagram that illustrates verification that follows an execution path to an API in accordance with one embodiment of the present invention.
  • Fig. 10D is a code sample that illustrates verification that follows an execution path to an API in accordance with one embodiment of the present invention.
  • Fig. 11 A is a block diagram that illustrates one embodiment of the present invention.
  • Fig. 1 IB is a block diagram that illustrates verification on a resource rich device in accordance with one embodiment of the present invention.
  • Fig. 1 IC is a block diagram that illustrates verification on a terminal device in accordance with one embodiment of the present invention.
  • Fig. 12 is a high level flow diagram that illustrates a verification method in accordance with one embodiment of the present invention.
  • Fig. 13 A is a block diagram that illustrates verification relationships using
  • API Application Programming Interface
  • Fig. 13B is a block diagram that illustrates implementation-independent verification using an API definition file with multiple implementations in accordance with one embodiment of the present invention.
  • Fig. 14 is a flow diagram that illustrates incrementally constructing a verified system in accordance with one embodiment of the present invention.
  • Fig. 15 A is a block diagram that illustrates verification and installation of an initial library in accordance with one embodiment of the present invention.
  • Fig. 15B is a block diagram that illustrates verification and installation of an applet that references a library in accordance with one embodiment of the present invention.
  • Fig. 16 is a flow diagram that illustrates verifying a library or applet in accordance with one embodiment of the present invention.
  • Fig. 17 is a flow diagram that illustrates verifying external references using an API definition file in accordance with one embodiment of the present invention.
  • Fig. 18 is a flow diagram that illustrates verifying a package with its corresponding API definition file in accordance with one embodiment of the present invention.
  • Fig. 19 is a flow diagram that illustrates loading a library or applet onto a resource-constrained device in accordance with one embodiment of the present invention.
  • Fig. 20A is a block diagram that illustrates verification using API definition files of backward compatible revisions in accordance with one embodiment of the present invention.
  • Fig. 20B is a block diagram that illustrates verification using API definition files of backward compatible revisions in accordance with one embodiment of the present invention.
  • Fig. 20C is a flow diagram that illustrates verifying versions using API definition files in accordance with one embodiment of the present invention.
  • Fig. 20D is a flow diagram that illustrates verifying that the content of a new API definition file is backward compatible with the content of an old API definition file in accordance with one embodiment of the present invention.
  • Fig. 21 A is a block diagram that illustrates verification without post-issuance installation in accordance with one embodiment of the present invention.
  • Fig. 2 IB is a block diagram that illustrates verification with trusted post-issuance installation in accordance with one embodiment of the present invention.
  • Fig. 21 C is a block diagram that illustrates verification with untrusted post- issuance installation in accordance with one embodiment of the present invention.
  • Fig. 2 ID is a block diagram that illustrates verification including binary compatibility with untrusted post-issuance installation in accordance with one embodiment of the present invention.
  • DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS Those of ordinary skill in the art will realize that the following description of the present invention is illustrative only. Other embodiments of the invention will readily suggest themselves to such skilled persons having the benefit of this disclosure.
  • This invention relates to computer systems. More particularly, the present invention relates to a system and method for remote distributed program verification using API definition files. The invention further relates to machine-readable media on which are stored (1) the layout parameters of the present invention and or (2) program instructions for using the present invention in performing operations on a computer.
  • Such media includes by way of example magnetic tape, magnetic disks, optically readable media such as CD ROMs and semiconductor memory such as PCMCIA cards.
  • the medium may also take the form of a portable item such as a small disk, diskette or cassette.
  • the medium may also take the form of a larger or immobile item such as a hard disk drive or a computer RAM.
  • a verifier uses API definition files of program modules to perform inter-module consistency checks. Each program has an associated verification status value that is True if the program's integrity is verified by the verifier, and it is otherwise set to False.
  • Use of the verifier in accordance with the present invention enables verification of a program's integrity and allows the use of an interpreter that does not execute the usual stack monitoring instructions during program execution, thereby greatly accelerating the program interpretation process.
  • verification does not continue beyond an API definition file. This differs from typical verification methods that continue the verification process into an implementation of the API definition file.
  • An API definition file defines the context of a binary file in relationship to other referenced binary files. Once it is shown that binary files are implemented in accordance with their API definition files, binary files that reference items in other binary files need only look to the API definition files of whatever binary files implement those items to determine whether two binary files are compatible. Verifying that a binary file is implemented in accordance with its API thus obviates the need for other binary files that reference the verified binary file to continue the verification process into the verified binary file because it has already been verified. Using API definition files in accordance with the present invention therefore provides a mechanism for making conclusions regarding whether a referencing program passes verification, without the disadvantages of typical known verification methods.
  • Figures 10A to 10D illustrate the two approaches for verification discussed above.
  • Figures 10A and 10B illustrate typical verification methods that continue the verification process into an implementation that includes externally referenced items.
  • Figures IOC and 10D illustrate verification that uses API definition files to verify a program unit that includes external references in accordance with the present invention.
  • the examples in Figs. 10A and 10B illustrate analysis which is typically performed during verification using a virtual stack. The virtual stack is validated and updated during verification based on the operations defined for instructions in a method. (For examples of virtual stack usage during verification, See United States Patent 5,668,999 to Gosling, United States Patent 5,748,964 to Gosling and United States Patent 5,740,441 to Yellin et al.) Turning now to Fig.
  • a flow diagram that illustrates verification that follows an execution path is presented.
  • a bytecode program is loaded into a verifier and the verifier is initialized.
  • the instruction pointer is set to the first instruction in the program.
  • a determination is made regarding whether the instruction is a method invocation instruction. If the instruction is not a method invocation instruction, the instruction is verified at 435. If the instruction is a method invocation instruction, at 415, a determination is made regarding whether the current virtual stack matches the list of expected parameter and result types, also referred to as the method signature, found in the binary file that contains the referenced method. If there is no match, a verification error is indicated at 430. If there is a match, at 420, the invoked method is verified.
  • a typical verifier when a method invocation instruction is encountered during verification that is coupled with execution, a typical verifier performs the following operations pertaining to the content of the referencing binary file.
  • the calling context is verified to determine whether it has appropriate permission to reference the method found in the referenced binary file.
  • a protected method can only be invoked by a method in a subclass of or a member of the class in which the method is declared.
  • the virtual stack is updated by removing the arguments to the invoked method and adding the return type, if any, of the invoked method.
  • the return type is defined in the referenced binary file.
  • Verification of the referencing binary file continues at the instruction after the method invocation using the updated virtual stack.
  • the referenced binary file is verified. Regardless of the exact timing, when verification is coupled with execution, a referenced binary file is verified before it is executed.
  • the example shown in Fig 10A does illustrate verification of references to non- methods such as classes, interfaces and fields. Typically, verification of such non- method references also entails examining the referenced items. Furthermore, when examining such referenced items, the referenced binary file that contains the referenced item is also typically verified.
  • Figure 10B a code sample that illustrates verification that follows an execution path is presented.
  • Figure 10B includes code samples for a library package L0 500 and applet Al 505.
  • Applet Al 505 includes references to items in package L0 500.
  • Figure 10A also illustrates a virtual stack before (510) and after (515) verification of method invocation instructions in L0 500 and Al 505.
  • Method A10 520 references method Al l 525 at reference numeral 530.
  • Method All 525 references method LOl 535 at reference numeral 540.
  • Method LOl 535 references method L02 545 at reference numeral 550.
  • Verification of applet Al 505 begins with method A10 520.
  • method A10 520 invokes method Al 1 525 with the short integer parameter S 555 and assigns the result to byte array ba 560.
  • the method Al 1 525 parameter types are put on the stack, hi JavaTM technology, values of type byte, short and integer are represented as integer types on the stack.
  • the virtual stack 560 contains type int, the type for S 555. This matches the declaration of method Al 1 525 found in the Al binary file 505.
  • method Al 1 525 invokes method LOl 535 and assigns the result to byte array type ba 565
  • the virtual stack 570 contains a reference to class Al.
  • the expected type is type Object 575.
  • Al 570 is assignment- compatible with Object 575 because Al 570 extends Object (580). This matches the declaration of method LOl 535 found in the L0 binary file 500.
  • method LOl 535 invokes method L02 545 and assigns the result to float value f 585.
  • the virtual stack 590 contains a reference to class Object.
  • the virtual stack 590 also contains an integer type corresponding to integer 1 595.
  • method L02 545 returns float type f 600, which matches the method L02 return type of float f 605.
  • Method LOl 535 returns an integer type.
  • the returned integer type is explicitly cast to type byte, which matches the type of ba[0] 610.
  • Method Al 1 525 returns a byte array, which corresponds to the type of byte array ba 560.
  • method A10 520 has been verified by examining the content of method A10 520 and the binaries of all compilation units referenced by method A10 520.
  • Verification using an API definition file according to embodiments of the present invention follows the same four steps shown above with reference to Fig. 10A, except that information about the invoked method is obtained from an API definition file instead of a binary file.
  • the conclusions drawn regarding verification of the referencing binary file are the same in both cases, i addition, at some point during verification, the API definition file is verified for internal consistency. This step is parallel to verifying a referenced binary file.
  • the assumption is made that an implementation of the API definition file has been verified in a previous operation and that the implementation is complainant with the API definition file. This is described in more detail with reference to Figs. IOC and 10D.
  • a verifier receives a bytecode program and the verifier is initialized.
  • the instruction pointer is set to the first instruction in the program.
  • a determination is made regarding whether the current instruction is a method invocation to an external method. If the current instruction is not a method invocation to an external method, the instruction is verified at 730. If the instruction is a method invocation instruction, at 715, a determination is made regarding whether the virtual' stack matches the method signature found in an API definition file that corresponds to the binary file of the invoked method.
  • a verification error is indicated at 725. If the virtual stack does not match the method signature, a verification error is indicated at 725. If the virtual stack matches the method signature, the virtual stack is updated at 720. At 735, a determination is made regarding whether the current instruction is the last instruction. If there is another instruction, the next instruction is pointed to at 740 and verification continues at 710. Verification ends at 745 when the last instruction has been examined. A detailed example that illustrates this process is described with reference to Fig. 10D.
  • Figure 10D a code sample that illustrates verification that follows an execution path to an API in accordance with one embodiment of the present invention is presented.
  • Figure 10D includes code samples for a library package L0 800 and applet Al 805.
  • Applet Al 805 includes references to items in package L0 800.
  • Figure 10D also illustrates a virtual stack before (810) and after (815) execution of source code statements in L0 800 and Al 805.
  • Method A10 820 references method Al 1 825 at reference numeral 830.
  • Method Al 1 825 references method LOl 835 at reference numeral 840.
  • Verification of applet Al 805 begins with method A10 820.
  • method A10 820 invokes method Al 1 825 with the short integer parameter S 845 and assigns the result to byte array ba 850.
  • the method Al 1 825 parameter types are put on the stack 850.
  • values of type byte, short and integer are represented as integer types on the stack.
  • the virtual stack 850 contains type int, the type for S 845. This matches the declaration of method Al 1 825 found in the Al binary file 805.
  • method Al 1 825 invokes method LOl 835 and assigns the result to byte array type ba 855.
  • the virtual stack 860 contains a reference to class Al.
  • the expected type is type Object 865.
  • Al 860 is assignment- compaitble with Object 865 because Al 860 extends Object (870). This matches the declaration of method LOl 835 found in the L0 API definition file 800.
  • the virtual stack is updated by removing the arguments to the invoked method and adding the return type, if any, of the invoked method.
  • the return type is defined in the referenced API definition file.
  • method LOl 875 returns an integer type.
  • the returned integer type is explicitly cast to type byte, which matches the type of ba[0] 880.
  • Method Al 1 825 returns a byte array, which corresponds to the type of byte array ba 850.
  • method A10 820 has been verified without reference to the binary files containing compilation units referenced by method A10 820. Instead, method A10 820 has been verified by examining the content of method A10 820 and the API definition files of all compilation units referenced by method A10 820.
  • each client computer 980, 1090 is connected to the servers 985 via the Internet 1055, although other types of communication connections could be used. While most client computers are desktop computers, such as Sun workstations, IBM compatible computers and Macintosh computers, virtually any type of computer can be a client computer.
  • each client computer includes a CPU 990, a user interface 995, a memory 1000, Internet access processor 1035 and a communications interface 1005.
  • Client memory 1000 stores: an operating system 1010; a program converter 1015, which converts binary file and related API definition files into optimized binary files and API definition files; a program verifier 1020 for verifying whether or not a specified program satisfies certain predefined integrity criteria; at least one optimized binary file repository 1025, for locally storing optimized binary files in use and/or available for use by users of the computer 1000; at least one API definition file repository 1030 for storing export files.
  • the converter 1015 converts a binary file into an optimized binary file and an API definition file of the optimized binary file. If the binary file includes external reference, the converter 1015 uses the API definition file stored in 1030 of the module including the external reference to verify the external reference.
  • the resource-constrained device is a Java CardTM enabled device.
  • the API definition file is Java CardTM export file
  • the binary file is a class file
  • the optimized binary file is a CAP file.
  • the methods in a class to be loaded are bytecode programs, which when interpreted will result in a series of executable instructions.
  • the bytecode program verifier 1020 verifies the integrity of the bytecode programs in a CAP file with reference to the CAP file, the export file corresponding to the CAP file, and the export file containing externally referenced items. If all the methods are successfully verified, the CAP file is sent to the resource-constrained device 1040 via a terminal device 1045.
  • a terminal 1045 is equipped with a card acceptance device (CAD) 1050 for receiving a card.
  • the terminal 1045 may be connected to a network 1055 that communicates with a plurality of other computing devices, such as a server 985. It is possible to load data and software onto a smart card over the network 1055 using card equipped devices. Downloads of this nature include applets or libraries to be loaded onto a smart card as well as digital cash and other information used in accordance with a variety of electronic commerce and other applications.
  • the verified instructions and data used to control processing elements of the card acceptance device and of the smart card may be stored in volatile or non- volatile memory or may be received directly over a communications link e.g., as a carrier wave containing the instructions and/or data.
  • the network 1055 can be a LAN or WAN such as the Internet or other network.
  • the third computer node 1040 assumed here to be configured as smart card or other resource-constrained device, includes a microprocessor 1060, a memory 1065, and an I/O port 1070 that connects the second computer node to the terminal device 1045.
  • Resource-constrained device memory 1065 stores programs for execution by the processor 1060.
  • Resource-constrained device memory 1065 stores: an operating system 1080; a loader 1085 for loading a verified optimized binary file via I/O port 1070; an interpreter 1050 for executing a module within an optimized binary file; at least one program 1075 for execution by microprocessor 1060.
  • the first, second and third computer nodes 980, 1045 and 1040 may utilize different computer platforms and operating systems 1010, 1080 such that object code program executed on either one of the two computer nodes cannot be executed on the other.
  • the server node 985 might be a Sun Microsystems computer using a Unix operating system
  • the user workstation node 980 may be an IBM compatible computer system using a Pentium m microprocessor and a Windows 98 operating system.
  • other user workstations coupled to the same network and utilizing the same server 985 might use a variety of operating systems.
  • verification is performed before the module is loaded on a resource-constrained device, herein referred as remote verification.
  • verification is performed on a resource-rich device such as a desktop PC, as illustrated in Fig. 11 A.
  • remote verification is performed on a terminal device, as illustrated in Fig. 1 IB.
  • Fig. 1 IB a block diagram that illustrates verification on a resource-rich device before installation in accordance with one embodiment of the present invention is presented.
  • a verifier 1110 resident on the resource-rich device 1100 verifies the optimized binary file 1105.
  • the optimized binary file 1105 is transferred to a terminal device 1115 having an installer 1120.
  • the installer 1120 communicates with a loader 1130 on a resource-constrained device 1125 to load the verified optimized binary file.
  • the loader confirms that the context in which the binary file will be linked and executed is compatible with the context of the API definition files used during verification. Additionally, the context of a verified and loaded binary file must not be allowed to change in to an incompatible state. In a Java CardTM compliant system, this requirement is fulfilled by ensuring that a referenced binary file is never deleted or updated.
  • Fig. 1 IC a block diagram that illustrates verification on a terminal device before installation in accordance with one embodiment of the present invention is presented.
  • the optimized binary file 1155 is transferred to a terminal device 1165 having an off-device installer 1170.
  • a verifier 1160 resident on the terminal device 1165 verifies the optimized binary file 1155.
  • the installer 1170 communicates with a loader 1180 on a resource-constrained device 1175 to load the verified optimized binary file.
  • a flow diagram that illustrates verification in accordance with one embodiment of the present invention is presented.
  • a library or applet is received.
  • the library or applet is verified using the applet binary file, the API definition file of the library or applet if it exports items, and the API definition file of any binary files containing items referenced by the applet binary file.
  • the library or applet is stored in a secure state to protect against unauthorized modification.
  • the library or applet is loaded for subsequent linking and execution on a resource- constrained device.
  • FIG. 13 A a block diagram that illustrates verification relationships using Application Programming h terface (API) definitions in accordance with one embodiment of the present invention is presented.
  • Figure 13 A illustrates the process of verifying applet Al.
  • Al is an applet that references the library LI .
  • Library LI includes a reference to Library L0. Verification proceeds as follows: First, the L0 API definition file 1230 is verified with the LO binary file 1235. Next, the LI binary file 1240 is verified with the L0 API definition file 1230. Next, the LI API definition file 1245 is verified with the LI binary file 1240.
  • Verification of the LI binary file 1240 with the LO API definition file 1230 thus indicates the LI binary file 1240 is verified with the L0 binary file 1235.
  • the Al binary file 1250 is verified with the LI API definition file 1245.
  • Verification of the Al binary file 1250 with the LI API definition file 1245 thus indicates the Al binary file 1250 is verified with the LI binary file 1240.
  • a fully verified collection of binary files (Al 1250, LI 1245 and L0 1230) has been constructed.
  • an API specifies how one program module may interact with another.
  • Different vendors may implement an API in different ways, as long as they adhere to the API definition file. For example, one vendor may choose to implement a method that sorts a set of values using an algorithm optimized for speed, while another vendor may choose to implement an algorithm optimized for low memory usage. In both cases, the implementations would be compliant with an API definition file containing a method that performs a sort, and vary in implementation details. According to embodiments of the present invention, verification does not depend upon a particular implementation.
  • a referencing binary file references an API and there is more than one implementation for that API
  • the referencing binary file is said to be verified with each implementation if the referencing binary file verifies with the referenced API and if each implementation of the API verifies with the referenced API definition file.
  • Fig. 13B a block diagram that illustrates implementation- independent verification using an API definition file with multiple implementations in accordance with one embodiment of the present invention is presented.
  • LI is a library that references library L0.
  • Library L0 has two implementations from two different vendors, vendor 1 implemented 1270 and vendor 2 implemented 1275.
  • Both the L0 binary file from vendor 1 (1270) and the L0 binary file from vendor 2 (1275) are verified with the L0 API definition file 1265.
  • the LI binary file 1260 is verified with the L0 API definition file 1265. Since both L0 binary files 1270 and 1275 are verified against the L0 API definition file 1265 and since the LI binary file 1260 is verified against the L0 API definition file 1265, the LI binary file 1260 is verified against both particular implementations of L0, that is binary files 1270 and 1275.
  • two fully verified collections of binary files have been constructed: 1) LI binary file 1260 and LO binary file provided by vendor 1 (1270); and 2) LI binary file and LO binary file provided by vendor 2 (1275).
  • binary file LI (1260) when installed on one resource-constrained device, it may be linked with the LO binary file from vendor 1 (1270). It may also be installed on another resource-constrained device and linked with the LO binary file from vendor 2 (1275).
  • Fig. 13B a flow diagram that illustrates incrementally constructing a verified system in accordance with one embodiment of the present invention is presented.
  • An initial library is verified (1280), stored in a secure state (1285) and loaded (1290).
  • the API definition file of the initial verified library is provided for use by client libraries or applets that reference library.
  • Each client library or applet is verified (1300), stored in a secure state (1305) and loaded (1310).
  • a check is made to determine whether the client exports any items. If the client exports any items, the API definition file of the client library is provided for use by other libraries or applets that reference the client library (1295).
  • Fig. 15 A a block diagram that illustrates verification and installation of an initial library in accordance with one embodiment of the present invention is presented, hi this example, the resource-constrained device 1320 contains a loader 1325, an interpreter and I/O services 1330. No libraries or applets have been installed at this point. This initial content provides the foundation for installing and executing libraries and applets.
  • a verifier 1335 on a resource-rich device 1340 verifies the L0 binary file 1345, the library to be added.
  • the resource-rich device may be by way of example, a desktop PC or a terminal device.
  • Verification of the L0 binary file 1345 includes verifying the LO binary file 1345 and verifying the LO API definition file 1350 with the LO binary file 1345.
  • the verified LO binary file 1345 is installed on a resource-constrained device 1320.
  • the content of the resource- constrained device 1320 is said to be verified.
  • Fig. 15B a block diagram that illustrates verification and installation of an applet that references a library in accordance with one embodiment of the present invention is presented, h this example, resource-constrained device 1360 has been initialized with library L0 (see Fig.
  • Applet Al binary file 1365 references library L0. Since the L0 binary file 1370 has already been verified with its corresponding L0 API definition file 1375 and installed, the verified API definition file for L0 1375 is resident on the resource-rich device 1380. The Al binary file 1365 is verified using the API definition file of the referenced library, L0 1375. After verification, the Al binary file 1365 is installed on the resource-constrained device. After installation, the content of the resource-constrained device (Al binary file 1365 and L0 binary file 1370) is said to be verified.
  • Figs. 15A and 15B can be combined to verify and install a module that both references a library and exports an API.
  • the module's exported API definition file will be available to be referenced by succeeding binary files.
  • a flow diagram that illustrates verifying a library or applet in accordance with one embodiment of the present invention is presented.
  • a library or applet package is received.
  • intra-module checks are performed to determine whether the package is internally consistent.
  • inter- module checks are performed to determine whether the external references of the package are consistent within the context of the API definition file of each external reference.
  • a check is made to determine whether the package exports any items. If the package exports items, the current package is verified against its API definition file (1420). The order of the intra-module checks and the inter-module checks shown in Fig.
  • the intra-module checks may include by way of example, verifying binary file format and verifying that: a class is not a subclass of a "final” class, no method in the class overrides a "final” method in a superclass, each class, other than "Object" has a superclass, class reference, field reference and method reference in the constant pool has a legal name, class and type signature. See, for example, United States Patent 5,668,999 to Gosling, United States Patent 5,748,964 to Gosling and United States Patent 5,740,441 to Yellin et al. Turning now to Fig. 17, a flow diagram that illustrates verifying external references using an API definition file in accordance with one embodiment of the present invention is presented.
  • Figure 17 provides more detail for reference numeral 1410 in Fig. 16.
  • a program unit such as a library or applet package is received. If the API definition file of the referenced package is not found, a verification error is indicated.
  • the API definition file of the referenced package is loaded.
  • the package attributes are compared. The package attributes may include by way of example, the package name and version. If the package attributes are not compatible, a verification error is indicated.
  • the usage of the class or interface in the binary file is compared to the corresponding usage in the API definition file. If the class or interface is not found in the API definition file, a verification error is indicated. If usage of the class or interface is not compatible, a verification error is indicated.
  • An example of an incompatibility is an attempt to create an instance of an abstract class or interface.
  • the field is located in the API definition file, and the usage of the field in the binary file is compared to the corresponding definition in the API. If the field is not found in the API definition file, a verification error is indicated. If the usage of the field is not compatible, a verification error is indicated.
  • An example of an incompatibility is an attempt to store a floating-point value into a field that is declared as an integer (int)-type in the API definition file.
  • the method is located in the API definition file, and the usage of the method in the binary file is compared to the definition in the
  • API If the method is not found in the API definition file, a verification error is indicated. If the usage of the method is not compatible, a verification error is indicated.
  • An example of an incompatibility is an attempt to invoke a method without passing in any parameters when the method is declared in the API definition file to require one parameter of the specified type (int).
  • locating and verifying usage against definitions in an API definition file can be performed sequentially in one step as shown in Fig. 16.
  • locating and verifying usage against definition can be performed as the usage is encountered.
  • Fig. 18 a flow diagram that illustrates verifying a package with its corresponding API definition file in accordance with one embodiment of the present invention is presented.
  • Figure 18 provides more detail for reference numeral 1420 in Fig.
  • Figure 18 is not intended to indicate the order in which the various checks are performed.
  • a library or applet package (herein referred to as a binary file) is received (1460) and the API definition file of the package is received (1465). If the API definition file of the package is not found, and the binary file exports elements, a verification error is indicated.
  • the package attributes are compared.
  • the attributes may include by way of example, the package name, version and number of classes and interfaces. Continuing this example, this step detects whether an extra class or interface is defined in the API definition file that is not present in the binary file. If the attributes are incompatible, a verification error is indicated.
  • the class or interface is located in the API definition file and the attributes of the class or interface as defined in the API definition file are compared to the definition of the class or interface in the binary file. If the class or interface is not found in the API definition file, a verification error is indicated.
  • the attributes may include by way of example, the class name, flags, number of fields and number of methods. Continuing this example, this step detects whether an extra field or method is defined in the API definition file that is not present in the binary file. Additionally, this step will detect whether an extra field or method is present in the binary file but not defined in the API definition file. If the attributes are incompatible, an error is indicated.
  • the superclasses and superinterfaces are compared. See, for example, U.S. Provisional Patent Application filed November 12, 1999 in the name of inventor Judith E. Schwabe, entitled “API Representation Enabling Submerged Hierarchy", Serial No. 60/165,298 and U.S. Provisional Patent Application filed November 15, 1999 in the name of inventor Judith E. Schwabe, entitled “API Representation Enabling Submerged Hierarchy", Serial No. 60/165,533. If the set of public superclasses or superinterfaces of a class or interfaces, respectively, defined in the binary file do not correspond to the set in the API definition file, a verification error is indicated.
  • the set of public implemented interfaces of a class in the binary file is compared to the set in the API definition file. If the sets of implemented interfaces do not correspond, a verification error is indicated.
  • the field is located in the API definition file and the attributes of the field in the API definition file are compared to the definition in the binary file. If the field is not located, a verification error is indicated.
  • the attributes may include by way of example, the name, flags and type. If the attributes are incompatible, a verification error is indicated.
  • the method is located in the API definition file and the attributes of the method in the API definition file are compared to the definition in the binary file. If the method is not found in the API definition file, a verification error is indicated.
  • the attributes may include by way of example, the name, flags and signature. If the attributes are incompatible, a verification error is indicated.
  • a flow diagram that illustrates loading a library or applet onto a resource-constrained device in accordance with one embodiment of the present invention is presented.
  • a program unit such as a library or applet package is received.
  • the program unit is authenticated.
  • a determination is made regarding whether the program unit references one or more other program units. If the program unit references one or more other program units, at 1515, the version of the API definition file used during verification is checked to determine whether it is compatible with the version of the referenced binary file resident on the resource-constrained device. If the versions are not compatible, an error is indicated.
  • the program unit is loaded or otherwise prepared for execution when the version of the API definition file used during verification is compatible with the version of the referenced binary resident on the resource-constrained device.
  • both the JavaTM specification and the Java CardTM specification define behavior where the version of a referenced binary file is a newer version than the one used during preparation of the referencing binary file. Furthermore, these specifications define changes that can be made when revising a binary file that result in the new version being backward compatible with the previous version. When a newer version is backward compatible with an older version it is said to be binary compatible. Binary compatible changes to a referenced binary file are undetectable to a referencing binary file. The updated referenced binary file is required to contain all of the elements of the API definition file of the original binary file.
  • a referencing binary file is provided with a superset of the element in original API of the referenced binary file, and therefore all of the elements it references are guaranteed to be present.
  • a referencing binary file may be successfully linked with, verified with and executed with any binary compatible revision of the original target referenced binary file.
  • it is valid in both JavaTM and Java CardTM technology to prepare a binary file using an old version of a referenced binary file and then later link, verify and execute with a new, binary compatible version of the referenced binary file.
  • an additional verification step is performed on a resource-rich device to confirm whether or not a revision of a binary file is binary (backward) compatible with an earlier version.
  • This additional step provides the functionality required to assert that a referencing binary file and a binary compatible revision of a referenced binary file constitute a verified set.
  • the details of this verification step are described in figures 20A through 20D. Those of ordinary skill in the art will recognize that other versioning schemes can also be used to provide binary compatibility information as well.
  • FIG. 20A a block diagram that illustrates verification using API definition files of backward compatible revisions in accordance with one embodiment of the present invention is presented.
  • the example illustrated in Fig. 20A includes an applet Al that references library LO.
  • Library LO has two versions, 1.0 and 1 J .
  • Each version of library LO has been previously converted to a binary file and an API definition file.
  • the Al binary file 1530 was initially verified against LO version 1.0.
  • the precondition for this verification is verifying the LO API definition file version 1.0 (1535) with the L0 binary file version 1.0 (1540).
  • these verification steps indicate that Al binary file (1530) is verified with L0 binary file versionJ.O (1540).
  • L0 version 1.0 was subsequently changed to create L0 version 1J.
  • verification of the Al binary file (1530) with the L0 version 1J binary file (1550) is established by verifying that L0 API definition file version 1.1 (1545) is backward compatible with L0 API definition file version 1.0 (1535) and by verifying that L0 API definition file version 1.1 (1545) verifies with L0 binary file version 1J (1550).
  • a modified referenced library does not require verification of a referencing applet with the API definition file of the modified referenced library when it can be shown that the API definition file of the modified referenced library is backward compatible with the original referenced library and when the API definition file of the modified referenced library verifies with the binary file of the modified referenced library.
  • FIG. 20A a block diagram that illustrates verification using API definition files of backward compatible revisions in accordance with one embodiment of the present invention is presented.
  • Figure 20B illustrates the case where a binary compatible version of a library has been previously installed on a resource-constrained device.
  • the referencing binary file, Al (1550) is prepared and verified using an earlier version of the referenced API definition file.
  • the L0 binary file version 1.1 (1560) was previously verified with the L0 API definition file version 1J (1555).
  • the previously verified API (L0 API definition file version 1J (1555)) is verified to be backward compatible with the earlier version (LO API definition file version 1.0 (1560))).
  • the Al binary file (1550) is verified using the API definition files of the referenced library (LO API definition file version 1.0 (1560)) and the Al binary file (1550) is installed on the resource-constrained device 1565.
  • a loader 1570 on the resource- constrained device 1565 verifies that the API definition file used during verification is compatible with the referenced binary file.
  • the resulting content of the resource- constrained device 1565 is a verified set of binary files: Al binary file (1550) and L0 binary file version 1J (1560).
  • Fig. 20C a flow diagram that illustrates verifying versions using API definition files in accordance with one embodiment of the present invention is presented.
  • the old version of the package API definition file is received.
  • the new version of the package API definition file is received.
  • a determination is made regarding whether the version of the new package indicates backward compatibility with the version of the old package, hi Java CardTM technology, for example, this determination is made by comparing major and minor version numbers. If the new version is backward compatible, at 1615, the content of the new API definition file is verified for backward compatibility with the content of the old API definition file.
  • Fig. 20D a flow diagram that illustrates verifying that the content of a new API definition file is backward compatible with the content of an old API definition file in accordance with one embodiment of the present invention is presented.
  • the old package API definition file and the new API package definition are received.
  • the package attributes are compared.
  • the attributes may include the package name and the number of classes and interfaces. If the set of classes and interfaces defined in the old API definition file is not found in the new API definition file, a verification error is indicated.
  • the class and interface attributes are compared to the attributes of the same class or interface in the new package.
  • the attributes may include the name, flags, number of fields and number of methods. If the sets of fields and methods defined in a class or interface in the old API definition file are not found in the corresponding class or interface in the new API definition file, a verification error is indicated. If any other the attributes of a class or interface are not binary compatible, a verification error is indicated.
  • the superclasses and superinterfaces of the class or interface are compared to the same in the new package. If the sets of superclasses or superinterfaces of a class or interface, respectively, are not binary compatible, a verification error is indicated.
  • the implemented interfaces of a class are compared to the same in the new package. If the sets of implemented interfaces of a class are not binary compatible, a verification error is indicated.
  • the attributes are compared to the same field in the new package. The attributes may include the name, flags and type. If the attributes of a field are not binary compatible, a verification error is indicated.
  • the attributes are compared to the same method in the new package.
  • the attributes may include the name, flags and signature. If the attributes of a method are not binary compatible, a verification error is indicated.
  • program modules are verified on a resource-rich device prior to an installation on a resource-constrained device such as a smart card.
  • Figures 21 A to 21 D illustrate different embodiments in which verification is performed.
  • program modules are optionally verified by a card manufacturer, a card issuer and an applet or library provider.
  • Verification may performed by any combination of the above parties. Referring to Fig.
  • a manufacturer ensures that the initial content is verified and prepares a device with that initial content (1660) before shipping the device to an issuer.
  • the initial modules may be verified either by the manufacturer, the applet or library provider (1675), or both.
  • the issuer receives the device from the manufacturer, optionally installs additional modules, disables further installations and distributes the device (1665) to an end user 1670. If additional modules are installed, the issuer ensures that they are verified before installation.
  • the issuer, applet or library provider, or both may perform verification.
  • program modules are optionally verified by a card manufacturer (1690), a card issuer (1705), an applet provider (1700) and a trusted post-issuance installer (1695). Verification may be performed by any combination of the above parties, but must result in each module being verified before it is installed on a device.
  • a trusted installer (1695) post-issuance installations by a trusted installer (1695) are allowed. Verification is optionally performed by the applet or library provider (1700) before shipping. Verification is also optionally performed by the manufacturer (1690), the issuer (1705) and the post-issuance installer (1695) before the additional content is installed on the device.
  • the post-issuance installer is a trusted installer (1695).
  • a trusted installer (1695) is an installer that has an agreement with the issuer, governing the post- issuance updates of cards. In contrast, an untrusted installer has no such agreement with the installer.
  • an issuer issues cards without disabling subsequent installations, an untrusted and possibly malevolent post-issuance installer could potentially add program modules to a card. Such unauthorized additions may corrupt the existing program modules or compromise them in other ways, causing the program to either execute erroneously or not execute at all.
  • verification of program modules is performed in a system that allows post-issuance installations by an untrusted installer.
  • Fig. 21C is the same as Fig. 21B, except that the post-issuance installer (1725) is untrusted.
  • the verifier in this case resides on a terminal device or another device not under the control of the untrusted installer (1725).
  • verification of program modules is performed in a system that allows post-issuance installations by an untrusted installer. Furthermore, this embodiment performs binary compatibility checks as part of the verification. Referring to Fig. 21D, note that Fig. 21D is the same as Fig. 21C, except that each party that performs verification includes binary compatibility checks in the verification process. Those of ordinary skill in the art will recognize that verification that entails binary compatibility checks can also be applied to the scenarios shown in Figs. 21A and 21B.
  • the above embodiments differ in the entities that are involved in the preparation of a card for an individual user.
  • the above embodiments also differ regarding whether post-issuance installation is enabled. However, the details of verification process are equivalent, regardless of the entity performing the verification.
  • the manufacturer, issuer and trusted post-issuance installer consider the applet or library to have been received from a potentially hostile environment.
  • the verifier is run with the applet or library before installation.
  • the manufacturer, issuer and trusted post-issuance installer make a determination regarding whether their environments are secure. If the environments are secure, the scenario depicted in either Fig. 11 A (verifier on resource-rich device) or Fig.
  • Fig. 1 IB (verifier on terminal) is used. If the environments are not secure, the scenario depicted in Fig. 1 IB (verifier on terminal) is used. Preferably, the untrusted post-issuance installation operates in the scenario depicted in Fig 1 IB (verifier on terminal).
  • the content provider preferably runs the verifier before shipping (using Fig. 11 A), thus confirming that the binary file was not corrupted when it was prepared or stored in the applet/package provider's environment, and ensuring that the applet/package provider is not shipping a hostile binary file to the manufacture, issuer, trusted post-issuance installer, or untrusted post-issuance installer.
  • verification includes binary compatibility checks.
  • the manufacturer and issuer confirm that the updated resource-constrained device is binary compatible with the previous version(s).
  • programmatic content is installed in a secure environment. Once a verified binary file has been installed, the smart card's programmatic content is not altered by an unauthorized entity. Therefore, once a verified binary file is installed in this secure environment, the binary file's verification status is unchanged between subsequent executions, hi other words, the binary file need not be re- verified before each execution.
  • resource-constrained devices may include boundary scan devices, field programmable devices, pagers and cellular phones among many others.
  • the present invention also relates to apparatus for performing these operations.
  • This apparatus may be specially constructed for the required purpose or it may comprise a general-purpose computer as selectively activated or reconfigured by a computer program stored in the computer.
  • the procedures presented herein are not inherently related to a particular computer or other apparatus.
  • Various general-purpose machines may be used with programs written in accordance with the teachings herein, or it may prove more convenient to construct more specialized apparatus to perform the required process. The required structure for a variety of these machines will appear from the description given.
  • JavaTM programming language and platform are suitable for the invention, any language or platform having certain characteristics would be well suited for implementing the invention. These characteristics include type safety, pointer safety, object-oriented, dynamically linked, and virtual machine based. Not all of these characteristics need to be present in a particular implementation. In some embodiments, languages or platforms lacking one or more of these characteristics may be utilized.
  • the system of the present invention may be implemented in hardware or in a computer program.
  • Each such computer program can be stored on a storage medium or device (e.g., CD-ROM, hard disk or magnetic diskette) that is readable by a general or special purpose programmable computer for configuring and operating the computer when the storage medium device is read by the computer to perform the procedures described.
  • the system may also be implemented as a computer-readable storage medium, configured with a computer program, where the storage medium so configured causes a computer to operate in a specific and predefined manner.
  • the program is here, and generally, conceived to be a self-consistent sequence of steps leading to a desired result. These steps are those requiring physical manipulations of physical quantities. Usually, though not necessarily, these quantities take the form of electrical or magnetic signals capable of being stored, transferred, combined, compared and otherwise manipulated. It proves convenient at times, principally for reasons of common usage, to refer to these signals as, bits, values, elements, symbols, characters, terms, numbers, or the like. It should be noted, however, that all of these and similar terms are to be associated with the appropriate physical quantities and are merely convenient labels applied to these quantities.

Landscapes

  • Stored Programmes (AREA)

Abstract

Cette invention a trait à une méthode relative à une vérification de programme incrémentiel à distance, laquelle méthode consiste à recevoir un contenu vérifié par au moins un fournisseur de contenu, à installer ce contenu dans un dispositif à ressources limitées et à délivrer ce dispositif à un utilisateur final. Ledit contenu comporte au moins une unité de programme, chacune de ces unités, en cas de pluralité, renfermant un fichier de définition API (interface de programme d'application) et une mise en oeuvre. Chaque fichier de définition API définit des articles dans l'unité de programme qui lui est associée, lesquels sont rendus accessibles à une ou à plusieurs unités de programme et chaque mise en oeuvre renferme un code exécutable correspondant au fichier de définition API. Ce code exécutable renferme des instructions et des données spécifiques d'un type donné. Dans l'un des aspects de l'invention, une installation subséquente de contenu dans le dispositif à ressources limitées est invalidée. Ce dispositif à ressources limitées contient une mémoire servant à fournir un contenu vérifié par au moins un fournisseur de contenu ainsi qu'une machine virtuelle capable d'exécuter les instructions incluses dans le contenu. Celui-ci comporte au moins une unité de programme, chacune de ces unités, en cas de pluralité, renfermant un fichier de définition API (interface de programme d'application) et une mise en oeuvre. Chaque fichier de définition API définit des articles dans l'unité de programme qui lui est associée, lesquels sont rendus accessibles à une ou à plusieurs unités de programme et chaque mise en oeuvre renferme un code exécutable correspondant au fichier de définition API. Ce code exécutable renferme des instructions et des données spécifiques d'un type donné.
EP01970946A 2000-09-14 2001-09-14 Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api Withdrawn EP1417573A2 (fr)

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US661581 1996-06-04
US09/661,581 US6883163B1 (en) 2000-04-28 2000-09-14 Populating resource-constrained devices with content verified using API definitions
PCT/US2001/028687 WO2002025427A2 (fr) 2000-09-14 2001-09-14 Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api

Publications (1)

Publication Number Publication Date
EP1417573A2 true EP1417573A2 (fr) 2004-05-12

Family

ID=32108413

Family Applications (1)

Application Number Title Priority Date Filing Date
EP01970946A Withdrawn EP1417573A2 (fr) 2000-09-14 2001-09-14 Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api

Country Status (1)

Country Link
EP (1) EP1417573A2 (fr)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2416876A (en) * 2004-08-03 2006-02-08 Nec Technologies Software debugging in mobile radio communications device

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See references of WO0225427A3 *

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2416876A (en) * 2004-08-03 2006-02-08 Nec Technologies Software debugging in mobile radio communications device
GB2416876B (en) * 2004-08-03 2007-01-10 Nec Technologies Export file processing within a mobile radio communications device

Similar Documents

Publication Publication Date Title
US6986132B1 (en) Remote incremental program binary compatibility verification using API definitions
US6651186B1 (en) Remote incremental program verification using API definitions
US6883163B1 (en) Populating resource-constrained devices with content verified using API definitions
US6981245B1 (en) Populating binary compatible resource-constrained devices with content verified using API definitions
AU771699B2 (en) Token-based linking
US7051343B2 (en) Module-by-module verification
AU775261B2 (en) Language subset validation
US20030135792A1 (en) Language subset validation
US6618855B1 (en) Caching untrusted modules for module-by-module verification
JP2001075827A (ja) モジュールごとのベリファイ処理に伴う完全要求駆動型リンク
WO2002025427A2 (fr) Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api
AU2001290892B2 (en) Method for remote incremental program verification and installation on resource-constrained devices
AU2001289078B2 (en) Method for remote incremental program verification and installation on resource-constrained devices
US6766521B1 (en) Dataflow algorithm for symbolic computation of lowest upper bound type
AU2001290842B2 (en) Remote incremental program binary compatibility verification using API definitions
EP1417573A2 (fr) Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api
AU2001290892A1 (en) Method for remote incremental program verification and installation on resource-constrained devices
AU2001289078A1 (en) Method for remote incremental program verification and installation on resource-constrained devices
AU2001290842A1 (en) Remote incremental program binary compatibility verification using API definitions

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20030327

AK Designated contracting states

Kind code of ref document: A2

Designated state(s): DE FI FR GB SE

AX Request for extension of the european patent

Extension state: AL LT LV MK RO SI

17Q First examination report despatched

Effective date: 20080925

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN

18D Application deemed to be withdrawn

Effective date: 20090205