WO2002023331A2 - Verification incrementielle a distance de la compatibilite binaire d'un programme au moyen de definitions ipa - Google Patents
Verification incrementielle a distance de la compatibilite binaire d'un programme au moyen de definitions ipa Download PDFInfo
- Publication number
- WO2002023331A2 WO2002023331A2 PCT/US2001/028579 US0128579W WO0223331A2 WO 2002023331 A2 WO2002023331 A2 WO 2002023331A2 US 0128579 W US0128579 W US 0128579W WO 0223331 A2 WO0223331 A2 WO 0223331A2
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- version
- program unit
- program
- definition file
- implementation
- Prior art date
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/50—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
- G06F21/51—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems at application loading time, e.g. accepting, rejecting, starting or inhibiting executable software based on integrity or source reliability
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/50—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
- G06F21/52—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems during program execution, e.g. stack integrity ; Preventing unwanted data erasure; Buffer overflow
- G06F21/53—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems during program execution, e.g. stack integrity ; Preventing unwanted data erasure; Buffer overflow by executing in a restricted environment, e.g. sandbox or secure virtual machine
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/60—Software deployment
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/445—Program loading or initiating
- G06F9/44589—Program code verification, e.g. Java bytecode verification, proof-carrying code
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.
- machine code 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. In practice, a class is a template to create multiple objects (multiple instances) with similar features.
- Encapsulation is used to describe a system wherein access to an object is provided through an interface, while keeping the details private. In other words, the actual implementation of the members within the class is hidden from an outside user and from other classes, except as exposed by an interface. This makes classes suitable for distributed development, for example by different developers at different sites on a network. A complete program can be formed by assembling the classes that are needed, linking them together, and executing the resulting program.
- 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. This type has no implementation, but otherwise unrelated classes can implement it by providing implementations for its 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. Additionally, 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.
- 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, Inc.
- 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.
- JavaTM Virtual Machine 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. For the sake of security, 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.
- 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. In the JVM, 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. It is therefore prudent, when assembling several modules that may have been written independently, to check both that (1) each module properly adheres to the language semantics and that (2) the set of modules properly adheres to the language semantics.
- 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.
- the operand stack During normal execution of programs using languages that do not feature pre- execution verification, the operand stack must be continuously monitored for overflows (i.e., adding more data to the stack than the stack can store) and underflows (i.e., attempting to pop data off the stack when the stack is empty). Such stack monitoring must normally be performed for all instructions that change the stack's status (which includes most all instructions). For many programs, stack monitoring instructions executed by the interpreter account for approximately 80% of the execution time of an interpreted computer program.
- Fig. 1 a high level flow diagram that illustrates verification is presented.
- intra-module checks are performed to dete ⁇ nine whether a module is internally consistent.
- 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 file(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.
- 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.
- PDAs personal digital assistants
- 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).
- IK kilobyte
- RAM random access memory
- ROM limited read only memory
- EEPROM electrically erasable programmable read only memory
- 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.
- development of an applet for a resource-constrained device 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.
- 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.
- class definitions 265, field definitions 275, and descriptive type definitions 275 are also included in a CAP file 250, among other things, 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.
- 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.
- RF radio frequency
- 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 (FO) port 205 which can include a set of contacts through which programs, data and other communications are provided.
- FO input/output
- 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.
- Verification programs are typically large programs that require a relatively large amount of runtime memory when executing.
- 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.
- a JavaTM language framework 285 and a Java CardTM framework 280 exist at a Java CardTM API level. Above the Java CardTM API level is 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 references that depend on the custom framework 290.
- the 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.
- Fig. 6 shows linear dependencies
- non-linear dependencies such as circular dependencies may be supported using a suitable converter and installation tool.
- 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 ID or PIN 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.
- 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.
- 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. If an issuer then adds an applet, it would be desirable continue to ensure the content integrity. Accordingly, a need exists in the prior art for a system and method for remote program verification that accounts for iterative installation. There is a further need for a system and method for resource-constrained device program verification that protects against untrusted post- issuance installers. Binary Compatibility
- 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' (365).
- 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. In the example, P2 is converted using the original PI export file (370). Because PI' is binary compatible with PI, 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. When a major version is changed, 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 of operating a computer system includes providing a first version of a program in memory and verifying the program prior to program execution.
- the first version of a program includes at least one program unit.
- Each program unit includes an Application Programming Interface (API) definition file and an implementation, 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.
- Program verification includes indicating a verification error when a first version of a first program unit implementation is not internally consistent, indicating a verification error when the first version of the first program unit implementation is inconsistent with the version of the program unit API definition file associated with the first version of the first program unit implementation, receiving a second version of the first program unit implementation and a second version of the first program unit API definition file, verifying the second version of the first program unit implementation and verifying that the second version of the first program unit implementation is binary compatible with the first version of the first program unit implementation by comparing the first version of the first program unit API definition file and the second version of the first program unit API definition file.
- 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.
- CAP Converted Applet
- 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.
- 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. 10B 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. 11A 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. 11C 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. 13A is a block diagram that illustrates verification relationships using Application Programming Interface (API) definitions in accordance with one embodiment of the present invention.
- 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. 15A 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. 21A is a block diagram that illustrates verification without post-issuance installation in accordance with one embodiment of the present invention.
- Fig. 21B is a block diagram that illustrates verification with trusted post-issuance installation in accordance with one embodiment of the present invention.
- Fig. 21C is a block diagram that illustrates verification with untrusted post-issuance installation in accordance with one embodiment of the present invention.
- Fig. 21D is a block diagram that illustrates verification including binary compatibility with untrusted post-issuance installation in accordance with one embodiment of the present invention.
- 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.
- 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.
- 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.
- 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. 4. Verification of the referencing binary file continues at the instruction after the method invocation using the updated virtual stack.
- step 1 the referenced binary file is verified.
- step 2 the referenced binary file is verified.
- 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.
- FIG. 10B a code sample that illustrates verification that follows an execution path is presented.
- Figure 10B includes code samples for a library package LO 500 and applet Al 505.
- Applet Al 505 includes references to items in package LO 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 1 525 at reference numeral 530.
- Method L01 535 references method L02 545 at reference numeral 550.
- Verification of applet Al 505 begins with method A10 520.
- method A10 Verification of applet Al 505
- the method 520 invokes method All 525 with the short integer parameter S 555 and assigns the result to byte array ba 560.
- the method All 525 parameter types are put on the stack.
- 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 All 525 found in the Al binary file 505.
- method All 525 invokes method L01 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 L01 535 found in the L0 binary file 500.
- method L01 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 I 595. This matches the declaration of method L02 545 found in the L0 binary file 500.
- 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.
- method L02 545 returns float type f 600, which matches the method L02 return type of float f 605.
- Method L01 535 returns an integer type.
- the returned integer type is explicitly cast to type byte, which matches the type of ba[0] 610.
- Method All 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.
- 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 LO 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 All 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. At 830, method A10
- 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 All 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.
- CAD card acceptance device
- 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 III 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. 11B.
- FIG. 11B 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. 11C 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 termiiial 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. 13A a block diagram that illustrates verification relationships using Application Programming Interface (API) definitions in accordance with one embodiment of the present invention is presented.
- Figure 13A 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 LO binary file 1235.
- API Application Programming Interface
- 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. Thus, 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.
- verification does not depend upon a particular implementation. More specifically, if 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. This example is illustrated in Fig. 13B.
- LI is a library that references library L0.
- Library LO 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. Next, the LI binary file 1260 is verified with the L0 API definition file 1265.
- binary file LI (1260) when installed on one resource-constrained device, it may be linked with the L0 binary file from vendor 1 (1270). It may also be installed on another resource-constrained device and linked with the L0 binary file from vendor 2 (1275).
- program verification is performed iteratively, one program module at a time. This is also called distributed verification.
- Fig. 14 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
- 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. 15A a block diagram that illustrates verification and installation of an initial library in accordance with one embodiment of the present invention is presented.
- 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 LO 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 LO binary file 1345 includes verifying the LO binary file 1345 and verifying the LO API definition file 1350 with the L0 binary file 1345. Next, the verified L0 binary file 1345 is installed on a resource-constrained device 1320. After installation, 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.
- resource-constrained device 1360 has been initialized with library L0 (see Fig. 15A) and applet Al is to be added to the resource-constrained device 1360.
- 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 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.
- intermodule 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. 16 is not intended to indicate a required order of operations.
- intra-module checks or inter-module checks can depend on the context of the element being verified.
- an inter-module check can be performed immediately.
- all inter-module checks can be postponed and performed in one step as shown in Fig. 16.
- 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.
- 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. 16.
- 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,
- 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. Accordingly, 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. Thus, 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.1. 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). As described in Figure 13A, these verification steps indicate that Al binary file (1530) is verified with L0 binary file version 1.0 (1540).
- verification of the Al binary file (1530) with the L0 version 1.1 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 1.1 (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.
- the verification steps shown in Fig. 20A indicate that Al binary file (1530) is verified with L0 binary file version 1.1 (1540).
- FIG. 20B 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 LO binary file version 1.1 (1560) was previously verified with the LO API definition file version 1.1 (1555).
- the previously verified API (LO API definition file version 1.1 (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 (L0 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 1.1 (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. In 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.
- the list of binary compatibility checks performed is not intended to be an exhaustive list. Further details regarding binary compatibility may be found in the JavaTM Language Specification and the Java CardTM Virtual Machine Specification.
- program modules are verified on a resource-rich device prior to an installation on a resource-constrained device such as a smart card.
- Figures 21A to 21D 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.
- 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. 21 A 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. 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.
- the untrusted post-issuance installation operates in the scenario depicted in Fig 11B (verifier on terminal).
- the content provider preferably runs the verifier before shipping (using Fig. 11A), 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). This prevents an older program unit from being placed into an invalid context when installed.
- 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. In 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
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Computer Security & Cryptography (AREA)
- General Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Hardware Design (AREA)
- Stored Programmes (AREA)
Abstract
Priority Applications (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
EP01970891A EP1417572A2 (fr) | 2000-09-14 | 2001-09-12 | Verification incrementielle a distance de la compatibilite binaire d'un programme au moyen de definitions ipa |
AU2001290842A AU2001290842B2 (en) | 2000-09-14 | 2001-09-12 | Remote incremental program binary compatibility verification using API definitions |
AU9084201A AU9084201A (en) | 2000-09-14 | 2001-09-12 | Remote incremental program binary compatibility verification using api definitions |
Applications Claiming Priority (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/661,684 | 2000-09-14 | ||
US09/661,582 US6981245B1 (en) | 2000-09-14 | 2000-09-14 | Populating binary compatible resource-constrained devices with content verified using API definitions |
US09/661,684 US6986132B1 (en) | 2000-04-28 | 2000-09-14 | Remote incremental program binary compatibility verification using API definitions |
US09/661,581 US6883163B1 (en) | 2000-04-28 | 2000-09-14 | Populating resource-constrained devices with content verified using API definitions |
Publications (2)
Publication Number | Publication Date |
---|---|
WO2002023331A2 true WO2002023331A2 (fr) | 2002-03-21 |
WO2002023331A3 WO2002023331A3 (fr) | 2004-02-26 |
Family
ID=29554277
Family Applications (3)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/US2001/028579 WO2002023331A2 (fr) | 2000-09-14 | 2001-09-12 | Verification incrementielle a distance de la compatibilite binaire d'un programme au moyen de definitions ipa |
PCT/US2001/028688 WO2002025428A2 (fr) | 2000-09-14 | 2001-09-14 | Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api |
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 |
Family Applications After (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/US2001/028688 WO2002025428A2 (fr) | 2000-09-14 | 2001-09-14 | Peuplement de dispositifs a ressources limitees a compatibilite binaire avec contenu verifie par definitions api |
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 |
Country Status (3)
Country | Link |
---|---|
AU (3) | AU9084201A (fr) |
CA (1) | CA2422634A1 (fr) |
WO (3) | WO2002023331A2 (fr) |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP1387268A2 (fr) * | 2002-07-31 | 2004-02-04 | Ricoh Company | Dispositif de formation d'images, dispositif de traitement d'informations et méthode de vérification de version |
EP1475611B1 (fr) * | 2003-05-07 | 2007-07-11 | Harman/Becker Automotive Systems GmbH | Procédé et appareil d'application de sortie vocale, support de donées comprenant des donées de parole |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
DE102004013904B4 (de) * | 2004-03-22 | 2005-12-22 | Giesecke & Devrient Gmbh | System, Vorrichtung und Verfahren zum Nachladen von verifiziertem Programmcode auf mobile Datenträger |
DE102004048262A1 (de) * | 2004-10-04 | 2006-04-06 | Giesecke & Devrient Gmbh | Verfahren zum Laden einer Applikation in einen Datenträger |
US8099718B2 (en) | 2007-11-13 | 2012-01-17 | Intel Corporation | Method and system for whitelisting software components |
US9058330B2 (en) | 2012-10-17 | 2015-06-16 | Wal-Mart Stores, Inc. | Verification of complex multi-application and multi-node deployments |
US9201642B2 (en) | 2013-03-15 | 2015-12-01 | International Business Machines Corporation | Extending platform trust during program updates |
Citations (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP0498130A2 (fr) * | 1991-02-08 | 1992-08-12 | International Business Machines Corporation | Dispositif et procédé de vérification de la compatibilité de composants d'un système |
US5613101A (en) * | 1993-05-05 | 1997-03-18 | Apple Computer, Inc. | Method and apparatus for determining at execution compatibility among client and provider components where provider version linked with client may differ from provider version available at execution |
Family Cites Families (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
GB2204973A (en) * | 1987-05-19 | 1988-11-23 | Gen Electric Co Plc | Data processing system |
US5692047A (en) * | 1995-12-08 | 1997-11-25 | Sun Microsystems, Inc. | System and method for executing verifiable programs with facility for using non-verifiable programs from trusted sources |
US6328217B1 (en) * | 1997-05-15 | 2001-12-11 | Mondex International Limited | Integrated circuit card with application history list |
EP1125262A1 (fr) * | 1998-10-27 | 2001-08-22 | Visa International Service Association | Delegation de gestion pour applications de cartes a puce |
US7200842B1 (en) * | 1999-02-02 | 2007-04-03 | Sun Microsystems, Inc. | Object-oriented instruction set for resource-constrained devices |
-
2001
- 2001-09-12 WO PCT/US2001/028579 patent/WO2002023331A2/fr active Application Filing
- 2001-09-12 AU AU9084201A patent/AU9084201A/xx active Pending
- 2001-09-14 CA CA002422634A patent/CA2422634A1/fr not_active Abandoned
- 2001-09-14 WO PCT/US2001/028688 patent/WO2002025428A2/fr active Application Filing
- 2001-09-14 AU AU9089201A patent/AU9089201A/xx not_active Withdrawn
- 2001-09-14 AU AU8907801A patent/AU8907801A/xx not_active Withdrawn
- 2001-09-14 WO PCT/US2001/028687 patent/WO2002025427A2/fr active Application Filing
Patent Citations (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP0498130A2 (fr) * | 1991-02-08 | 1992-08-12 | International Business Machines Corporation | Dispositif et procédé de vérification de la compatibilité de composants d'un système |
US5613101A (en) * | 1993-05-05 | 1997-03-18 | Apple Computer, Inc. | Method and apparatus for determining at execution compatibility among client and provider components where provider version linked with client may differ from provider version available at execution |
Non-Patent Citations (1)
Title |
---|
SURESH SUBRAMANIAN ED - INSTITUTE OF ELECTRICAL AND ELECTRONICS ENGINEERS: "CRUISE: USING INTERFACE HIERARCHIES TO SUPPORT SOFTWARE EVOLUTION" PROCEEDINGS OF THE CONFERENCE ON SOFTWARE MAINTENANCE. PHOENIX, OCT. 24 - 27, 1988, PROCEEDINGS OF THE CONFERENCE ON SOFTWARE MAINTENANCE. FROM 1994 INTERNATIONAL CONFERENCE ON SOFTWARE MAINTENANCE, WASHINGTON, IEEE COMP. SOC. PRESS, US, 24 October 1988 (1988-10-24), pages 132-142, XP000010770 * |
Cited By (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP1387268A2 (fr) * | 2002-07-31 | 2004-02-04 | Ricoh Company | Dispositif de formation d'images, dispositif de traitement d'informations et méthode de vérification de version |
EP1387268A3 (fr) * | 2002-07-31 | 2005-03-02 | Ricoh Company | Dispositif de formation d'images, dispositif de traitement d'informations et méthode de vérification de version |
CN1312545C (zh) * | 2002-07-31 | 2007-04-25 | 株式会社理光 | 图像成形装置、信息处理装置和版本校验方法 |
US7636172B2 (en) | 2002-07-31 | 2009-12-22 | Ricoh Company, Ltd. | Image forming apparatus, information processing apparatus and version check method using an API from an application |
EP1475611B1 (fr) * | 2003-05-07 | 2007-07-11 | Harman/Becker Automotive Systems GmbH | Procédé et appareil d'application de sortie vocale, support de donées comprenant des donées de parole |
Also Published As
Publication number | Publication date |
---|---|
AU8907801A (en) | 2002-04-02 |
WO2002023331A3 (fr) | 2004-02-26 |
WO2002025427A2 (fr) | 2002-03-28 |
WO2002025428A2 (fr) | 2002-03-28 |
WO2002025427A3 (fr) | 2004-02-26 |
WO2002025428A3 (fr) | 2004-02-26 |
CA2422634A1 (fr) | 2002-03-28 |
AU9089201A (en) | 2002-04-02 |
AU9084201A (en) | 2002-03-26 |
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 | |
KR100562398B1 (ko) | 클라스 파일들을 전처리하고 패키징하는 방법 및 장치 | |
AU775261B2 (en) | Language subset validation | |
US20040045019A1 (en) | Module-by-module verification | |
US20030135792A1 (en) | Language subset validation | |
US6618855B1 (en) | Caching untrusted modules for module-by-module verification | |
JP2001075827A (ja) | モジュールごとのベリファイ処理に伴う完全要求駆動型リンク | |
US6763397B1 (en) | Fully lazy linking | |
WO2002023331A2 (fr) | Verification incrementielle a distance de la compatibilite binaire d'un programme au moyen de definitions ipa | |
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 | |
AU2001290892B2 (en) | Method for remote incremental program verification and installation on resource-constrained devices | |
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 | |
AU2001290842A1 (en) | Remote incremental program binary compatibility verification using API definitions | |
AU2001289078A1 (en) | Method for remote incremental program verification and installation on resource-constrained devices | |
AU2001290892A1 (en) | Method for remote incremental program verification and installation on resource-constrained devices |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AK | Designated states |
Kind code of ref document: A2 Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NO NZ PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG UZ VN YU ZA ZW |
|
AL | Designated countries for regional patents |
Kind code of ref document: A2 Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG |
|
121 | Ep: the epo has been informed by wipo that ep was designated in this application | ||
DFPE | Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101) | ||
WWE | Wipo information: entry into national phase |
Ref document number: 2001970891 Country of ref document: EP Ref document number: 2001290842 Country of ref document: AU |
|
REG | Reference to national code |
Ref country code: DE Ref legal event code: 8642 |
|
WWP | Wipo information: published in national office |
Ref document number: 2001970891 Country of ref document: EP |
|
NENP | Non-entry into the national phase |
Ref country code: JP |