The example embodiments relate to testing smart contract code of blockchain and more specifically to testing the determinism of the smart contract code.
In blockchain, smart-contract code needs to be deterministic. That is, the code needs to write deterministic data into ledger and also return a deterministic data to client. A lot of smart contracts are often described by general-purpose programming language (e.g., GO, Java, Javascript, etc.). A few languages for describing a smart contract (e.g., Solidity, etc.) restrict the expressive power so that a developer cannot describe some type of non-deterministic code. Yet, Solidity is not perfect, because it can contain code described by a general-purpose language (e.g. Javascript). So, the smart contract code is fully checked manually to ensure that it is deterministic.
One example embodiment provides a computer-implemented method that may include one or more of storing smart contract code, identifying a type system for verifying a determinism of the smart contract code based on a first set of security-level values and a second set of security level values, and verifying the determinism of the smart contract code by taking the first set of security-level values as deterministic values and the second set of security level values as non-deterministic values.
Another example embodiment provides an apparatus that may include a processor and memory, wherein the processor and memory are communicably coupled to one another, and the processor may be configured to store smart contract code, verify a determinism of the smart contract code by applying a type system to the smart contract code based on a first set of security level values and a second set of security level values, and wherein the processor applies the first set of security level values as deterministic values to the smart contract code and applies the second set of security level values as non-deterministic values to the smart contract code.
Another example embodiment may include a non-transitory computer-readable medium comprising instructions that when read by a processor cause the processor to perform a method that includes one or more of storing smart contract code, verifying a determinism of the smart contract code by applying a type system to the smart contract code based on a first set of security level values and a second set of security level values, and wherein the verifying comprises applying the first set of security level values as deterministic values to the smart contract code and the second set of security level values as non-deterministic values to the smart contract code.
The summary clause does not necessarily describe all features of the embodiments. In addition, the example embodiments may also include sub-combinations of the features described above.
The following description will provide details of the example embodiments with reference to the following figures wherein:
Hereinafter, example embodiments will be described. The example embodiments shall not be limited according to the claims, and the combinations of the features described in the embodiments are not necessarily essential.
The system 1 may implement a Hyperledger Fabric framework. In some embodiments, the system may be a permissioned type or consortium type platform in which a plural of business entities (Company A, B, C and D) are taking part. In addition, in some embodiments, the system 1 can also perform other blockchain technologies. A number of implementations adopted for Hyperledger Fabric and other blockchain technologies may be used for the embodiments explained below.
The system 1 includes a plurality of nodes connected by a secure network. The nodes comprises peer nodes 200, certificate authority (CA) nodes 300 and orderer nodes 400. In the following embodiments, each company manages a pair of peer nodes 200 and a pair of CA nodes 300. Companies share a plural of orderer nodes 400.
Peer nodes 200 are elements in the blockchain system. Each peer node 200 has the same distributed ledger (DL) and smart contract code, called chaincode (CC). CC is developed and deployed by a development system 100, which is to be explained more in detail later. There are two types of peer nodes 200. The one is endorsement peer to verify transactions and the other one is committing peer to write transactional history in a block of DL.
CA nodes 300 register information of user (ex. Company A) and issue a digital certificate called “ECerts”, by using a mechanism of Membership Service Provider (MPS). The functions of CA include registrations of peer nodes and users, management of IDs, issuing and managing ECerts. Only Tx signed with ECerts is executable in the system 1.
Orderer nodes 400 construct blocks which may include a plurality of transactions, and broadcast the blocks in the system 1 by a channel. The channel is a virtual network on the system 1. The functions of orderer nodes include making procedure of Txs, packing the Txs in a block and sending the packaged block to peer nodes 200, based on channel.
The client may send peer node 200 a Tx signed with the certificate (Step S320). In response to receiving the Tx, peer node 200 executes the CC in accordance with the Tx, verifies the executed result and sends back the result signed with its certificate (Step S325).
In response to receiving the verified result, the client sends the Tx to orderer node 400 (Step S330). Orderer node 400 determines the order of Txs in one block, which have been received in a pre-determined time window. Orderer node 400 broadcasts the block of T×s to peer nodes 200 (Step S335). In response to receiving the block, peer nodes 200 verify the block and write the block in its DL (Step S340).
As mentioned earlier, the CC is developed in developer system 100 (Step S1) and deployed in peer nodes 200 (Step S2). So, determinism of a method implemented by the CC may be verified to maintain consistency of DL in the system 1.
Type system 101 considers (stores) the following types, as shown in
(determinism degrees) δ::=D|N,
(data types) τ::=δ|δe List [δs, δA]|δe Set[δs, δA]|[δe1δe2]Map[δs] (data types τ forms a lattice by partial order given later),
(control data types) σ::=τκ,
(kinds) κ::=|1[L]|![l]|*[l]|* (l is for-loop-id-label, and L is a set of for-loop-id-labels).
D (and N) is type for deterministic (and non-deterministic) basic values (e.g. Integers, Strings, Booleans . . . ), δe, δs, δA means the determinism of element, size and arrangement of containers. i.e. maps, lists, sets (i.e. lists where all elements are different),
e.g. D List [N,D] is type of lists which have deterministic elements in deterministic order but have non-deterministic size.
For example, makeList(“A”, rand( )) generates a list of type D List [N,D] for the functions makeList(x,n) which make a new list containing n pieces of x and rand( ) which generates a random integer.
κ means how to each value changes in for-loop
*[l] indicates the value kind which is varied over a range of multi-set in for-loop l.
![l] indicates the value kind which is varied over a range of a set in for-loop l and is not varied into the same value in each the loop-execution. The values of this kind can be deterministic keys or indexes in the for-loop.
1[L] is the kind of values which are not changed in for-loop l not-in L and are deterministically updated in loop l in L. The values of this kind can be deterministically overwritten into variable or container.
is the bottom kind of lattice κ and * is the top kind of lattice κ.
Also, type system 101 considers (stores) the following assertion, as shown in
determine(e, τ): the data type (so determinism degree) of e has been judged as τ by user.
Type system 101 performs information analysis for inferring the above-mentioned type for each value which occur in target chaincode (Step S1 in
Two examples chaincode are presented to explain how the type system 101 works.
The following code regData is one example of non-deterministic code, where time.getData( ) returns a string representing current date and time, checkTime(t) checks the time representing string and LD.put(k,v) registers the key value pair (k,v) in the ledger. The value returned by time.getData( ) is non-deterministic because the returned time may be different in peer node 200 where each code is executed. So, Ledger.put(“D”,data) is non-deterministically executed depending on the non-deterministic value. Therefore, the code is non-deterministic code.
In (3), N cmd indicates only N value can be stored into a container (That is, all stored values in the command typed with N cmd are considered as N).
In this example, data needs to be N[N⊏deg(data)]. But, all value stored in DL need to be D [deg(data)⊏D]. Thus, there is no solution for deg(data), s.t. deg(data)⊏D and there is no solution for deg(data). Therefore, the code is not well-typed and non-deterministic code, which should not be deployed in peer nodes 200 (Step S2).
The following code regKeys is another example of non-deterministic code, where encode(x) deterministically converts string x into a map structure and map1.keys returns a set collection where elements are not in deterministic order, so element in the set is assigned to the variable k in non-deterministic order. So, the value stored in variable keys is non-deterministic and the non-deterministic value is stored into DL by using Ledger.put(“KS”, keys). Therefore, the code is non-deterministic code, which should not be deployed in peer nodes 200 (Step S2).
So, the code is not well-typed and non-deterministic, which should not be deployed in peer nodes 200 (Step S2).
With type system 101, chaincode developer can automatically check whether the code is deterministic or not, which improves quality of chaincode and reduce the cost of testing the chaincode because the checking whether the chaincode is deterministic or not is currently performed by manual work.
The computer 800 according to the present embodiment includes a CPU 800-12, a RAM 800-14, a graphics controller 800-16, and a display device 800-18, which are mutually connected by a host controller 800-10. The computer 800 also includes input/output units such as a communication interface 800-22, a hard disk drive 800-24, a DVD-ROM drive 800-26 and an IC card drive, which are connected to the host controller 800-10 via an input/output controller 800-20. The computer also includes legacy input/output units such as a ROM 800-30 and a keyboard 800-42, which are connected to the input/output controller 800-20 through an input/output chip 800-40.
The CPU 800-12 operates according to programs stored in the ROM 800-30 and the RAM 800-14, thereby controlling each unit. The graphics controller 800-16 obtains image data generated by the CPU 800-12 on a frame buffer or the like provided in the RAM 800-14 or in itself, and causes the image data to be displayed on the display device 800-18.
The communication interface 800-22 communicates with other electronic devices via a network 800-50. The hard disk drive 800-24 stores programs and data used by the CPU 800-12 within the computer 800. The DVD-ROM drive 800-26 reads the programs or the data from the DVD-ROM 800-01, and provides the hard disk drive 800-24 with the programs or the data via the RAM 800-14. The IC card drive reads programs and data from an IC card, and/or writes programs and data into the IC card.
The ROM 800-30 stores therein a boot program or the like executed by the computer 800 at the time of activation, and/or a program depending on the hardware of the computer 800. The input/output chip 800-40 may also connect various input/output units via a parallel port, a serial port, a keyboard port, a mouse port, and the like to the input/output controller 800-20.
A program is provided by computer readable media such as the DVD-ROM 800-01 or the IC card. The program is read from the computer readable media, installed into the hard disk drive 800-24, RAM 800-14, or ROM 800-30, which are also examples of computer readable media, and executed by the CPU 800-12. The information processing described in these programs is read into the computer 800, resulting in cooperation between a program and the above-mentioned various types of hardware resources. An apparatus or method may be constituted by realizing the operation or processing of information in accordance with the usage of the computer 800.
For example, when communication is performed between the computer 800 and an external device, the CPU 800-12 may execute a communication program loaded onto the RAM 800-14 to instruct communication processing to the communication interface 800-22, based on the processing described in the communication program. The communication interface 800-22, under control of the CPU 800-12, reads transmission data stored on a transmission buffering region provided in a recording medium such as the RAM 800-14, the hard disk drive 800-24, the DVD-ROM 800-01, or the IC card, and transmits the read transmission data to network 800-50 or writes reception data received from network 800-50 to a reception buffering region or the like provided on the recording medium.
In addition, the CPU 800-12 may cause all or a necessary portion of a file or a database to be read into the RAM 800-14, the file or the database having been stored in an external recording medium such as the hard disk drive 800-24, the DVD-ROM drive 800-26 (DVD-ROM 800-01), the IC card, etc., and perform various types of processing on the data on the RAM 800-14. The CPU 800-12 may then write back the processed data to the external recording medium.
Various types of information, such as various types of programs, data, tables, and databases, may be stored in the recording medium to undergo information processing. The CPU 800-12 may perform various types of processing on the data read from the RAM 800-14, which includes various types of operations, processing of information, condition judging, conditional branch, unconditional branch, search/replace of information, etc., as described throughout this disclosure and designated by an instruction sequence of programs, and writes the result back to the RAM 800-14.
In addition, the CPU 800-12 may search for information in a file, a database, etc., in the recording medium. For example, when a plurality of entries, each having an attribute value of a first attribute is associated with an attribute value of a second attribute, are stored in the recording medium, the CPU 800-12 may search for an entry matching the condition whose attribute value of the first attribute is designated, from among the plurality of entries, and reads the attribute value of the second attribute stored in the entry, thereby obtaining the attribute value of the second attribute associated with the first attribute satisfying the predetermined condition.
The above-explained program or software modules may be stored in the computer readable media on or near the computer 800. In addition, a recording medium such as a hard disk or a RAM provided in a server system connected to a dedicated communication network or the Internet can be used as the computer readable media, thereby providing the program to the computer 800 via the network.
The example embodiments may be directed to a system, a method, and/or a computer program product. The computer program product may include a computer readable storage medium (or media) having computer readable program instructions thereon for causing a processor to carry out aspects of the example embodiments.
The computer readable storage medium can be a tangible device that can retain and store instructions for use by an instruction execution device. The computer readable storage medium may be, for example, but is not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any suitable combination of the foregoing. A non-exhaustive list of more specific examples of the computer readable storage medium includes the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a static random access memory (SRAM), a portable compact disc read-only memory (CD-ROM), a digital versatile disk (DVD), a memory stick, a floppy disk, a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon, and any suitable combination of the foregoing. A computer readable storage medium, as used herein, is not to be construed as being transitory signals per se, such as radio waves or other freely propagating electromagnetic waves, electromagnetic waves propagating through a waveguide or other transmission media (e.g., light pulses passing through a fiber-optic cable), or electrical signals transmitted through a wire.
Computer readable program instructions described herein can be downloaded to respective computing/processing devices from a computer readable storage medium or to an external computer or external storage device via a network, for example, the Internet, a local area network, a wide area network and/or a wireless network. The network may comprise copper transmission cables, optical transmission fibers, wireless transmission, routers, firewalls, switches, gateway computers and/or edge servers. A network adapter card or network interface in each computing/processing device receives computer readable program instructions from the network and forwards the computer readable program instructions for storage in a computer readable storage medium within the respective computing/processing device.
Computer readable program instructions for carrying out operations of the example embodiments may be assembler instructions, instruction-set-architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, firmware instructions, state-setting data, or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Smalltalk, C++ or the like, and conventional procedural programming languages, such as the “C” programming language or similar programming languages. The computer readable program instructions may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the latter scenario, the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider). In some embodiments, electronic circuitry including, for example, programmable logic circuitry, field-programmable gate arrays (FPGA), or programmable logic arrays (PLA) may execute the computer readable program instructions by utilizing state information of the computer readable program instructions to individualize the electronic circuitry, in order to perform aspects of the example embodiments.
Aspects of the example embodiments are described herein with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to the example embodiments. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer readable program instructions.
These computer readable program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks. These computer readable program instructions may also be stored in a computer readable storage medium that can direct a computer, a programmable data processing apparatus, and/or other devices to function in a particular manner, such that the computer readable storage medium having instructions stored therein comprises an article of manufacture including instructions which implement aspects of the function/act specified in the flowchart and/or block diagram block or blocks.
The computer readable program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other device to cause a series of operational steps to be performed on the computer, other programmable apparatus or other device to produce a computer implemented process, such that the instructions which execute on the computer, other programmable apparatus, or other device implement the functions/acts specified in the flowchart and/or block diagram block or blocks.
The flowchart and block diagrams in the Figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods, and computer program products according to various embodiments. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s). In some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts or carry out combinations of special purpose hardware and computer instructions.
While the embodiments have been described, the technical scope is not limited to the above described embodiments. It is apparent to persons skilled in the art that various alterations and improvements can be added to the above-described embodiments. It is also apparent from the scope of the claims that the embodiments added with such alterations or improvements can be included in the technical scope.
The operations, procedures, steps, and stages of each process performed by an apparatus, system, program, and method shown in the claims, embodiments, or diagrams can be performed in any order as long as the order is not indicated by “prior to,” “before,” or the like and as long as the output from a previous process is not used in a later process. Even if the process flow is described using phrases such as “first” or “next” in the claims, embodiments, or diagrams, it does not necessarily mean that the process must be performed in this order.
Number | Date | Country | Kind |
---|---|---|---|
JP2019-038488 | Mar 2019 | JP | national |
Number | Name | Date | Kind |
---|---|---|---|
9069893 | Vechev et al. | Jun 2015 | B2 |
10083046 | Daudel et al. | Sep 2018 | B2 |
10764752 | Avetisov | Sep 2020 | B1 |
20180307859 | LaFever | Oct 2018 | A1 |
20190066409 | Moreira da Mota | Feb 2019 | A1 |
20190081793 | Martino | Mar 2019 | A1 |
20190332807 | LaFever | Oct 2019 | A1 |
20200105096 | Ovalle | Apr 2020 | A1 |
20200287708 | Iwama | Sep 2020 | A1 |
20200387440 | Shao | Dec 2020 | A1 |
20210044976 | Avetisov | Feb 2021 | A1 |
Number | Date | Country |
---|---|---|
201901546 | Jan 2019 | TW |
Entry |
---|
Nistor et al., “InstantCheck: Checking the Determinism of Parallel Programs Using On-the-fly Incremental Hashing”, Proceedings of the 43rd Annual IEEE/ACM International Symposium on Microarchitecture, pp. 251-262, 2010. |
Number | Date | Country | |
---|---|---|---|
20200287708 A1 | Sep 2020 | US |