CODE PROCESSING METHOD, APPARATUS, AND DEVICE

Information

  • Patent Application
  • 20230236814
  • Publication Number
    20230236814
  • Date Filed
    March 29, 2023
    a year ago
  • Date Published
    July 27, 2023
    10 months ago
Abstract
A code processing method includes: obtaining first code, where the first code is code that is obtained through compilation and that is applicable to a source platform; then relocating addresses of variables associated with functions in the first code, to obtain logical addresses of the variables; and then performing decompilation based on the logical addresses of the variables and the first code, to obtain second code applicable to a target platform.
Description
TECHNICAL FIELD

This application relates to the field of application development technologies, and in particular, to a code processing method and a corresponding apparatus and device.


BACKGROUND

During application development, a developer may develop an application by referring to an existing application, to improve development efficiency. Specifically, the developer may restore compiled program code to source code through decompilation, and then analyze the source code, to provide help for application development. The compiled program code is generally code in a low-level programming language, for example, may be code in a machine language (also referred to as machine code). The source code is generally code in a high-level programming language, for example, may be code in a C language or code in a Java language. In some cases, the source code may also be code in an assembly language.


An existing decompilation technology can support code conversion between different programming languages on a same platform. For example, an existing decompiler may convert code in a machine language of an x86 platform into code in an assembly language of the x86 platform. However, in many scenarios, code of some platforms also needs to be migrated to another platform, so that the application can be migrated to another platform.


Based on this, a cross-platform code conversion method needs to be provided urgently in the industry, to improve efficiency of application development and migration.


SUMMARY

This application provides a code processing method. In the method, variables associated with functions in compiled first code are relocated, and then cross-platform decompilation is performed, to implement automatic cross-platform code conversion. This improves efficiency of application development and migration. This application further provides an apparatus, a device, a computer-readable storage medium, and a computer program product that correspond to the foregoing method.


According to a first aspect, this application provides a code processing method. The method may be executed by a decompiler. The decompiler may be a software module, and provides a code decompilation service by running on a hardware device such as a computer. In some possible implementations, the decompiler may alternatively be a hardware module having a code decompilation function.


Specifically, the decompiler obtains first code. The first code is code that is obtained through compilation and that is applicable to a source platform, for example, code in an obj file on an x86 platform. Then the decompiler relocates addresses of variables associated with functions in the first code, to obtain logical addresses of the variables. Definitions of the variables may be generated based on the logical addresses of the variables. In this way, the definitions and access addresses of the variables in the first code can be determined, so as to obtain a complete executable file can be obtained. The decompiler performs decompilation on based on the logical addresses of the variables and the first code, which is equivalent to perform decompilation on the complete executable file, so as to obtain second code applicable to a target platform.


According to the method, cross-platform decompilation is implemented, and efficiency of application development or migration is improved. In addition, addresses of variables associated with functions in first code are relocated, and the addresses obtained after the relocation may be used to generate definitions of the variables, to resolve a logic error in generated pseudocode due to uncertain definitions and access addresses of the variables. This improves accuracy and reliability of decompilation.


In some possible implementations, the decompiler may be provided for a user in a form of a software package. Specifically, an owner of the decompiler may release a software package of the decompiler. A user obtains the software package by using a computing apparatus, and then runs the software package, to implement cross-platform decompilation on the first code applicable to the source platform. In this way, cross-platform decompilation can be performed on code locally.


In some possible implementations, the decompiler may be provided for a user in a form of a cloud service. The user may upload the first code applicable to the source platform to a cloud, and decompilation may be performed on the code by using a decompilation service in the cloud. Then, the second code applicable to the target platform is returned to the user. A decompilation process is mainly performed in a cloud environment, and a computing apparatus on a terminal side mainly assists in decompilation. Therefore, a requirement on performance of the computing apparatus is low, and this solution has high availability.


In some possible implementations, the decompiler may perform decompilation based on the logical addresses of the variables and the first code, to obtain a compiler intermediate representation related to the target platform. An intermediate representation specifically refers to code represented by using an intermediate language. In a process of compilation or decompilation, a compiler or the decompiler may translate the first code into code represented by using an intermediate language, that is, an intermediate representation, and then translate the intermediate representation to obtain the second code.


In the method, the compiler intermediate representation generated based on the logical addresses of the variables and the first code includes definitions of the variables. The definitions of the variables associate symbols of the variables with the logical addresses. Pseudocode with correct logic can be generated based on the compiler intermediate representation, thereby further generating the second code that is of high accuracy and that is applicable to the target platform.


According to the method, cross-platform code decompilation is implemented by using a compiler intermediate representation. In addition, variables associated with functions in first code are relocated, so that logic of generated pseudocode is correct, and generated second code that is applicable to the target platform has high accuracy.


In some possible implementations, the compiler intermediate representation includes a first variable and a second variable. The first variable has a first logical address, the second variable has a second logical address, and the first logical address is different from the second logical address. The logical addresses may be absolute addresses, and data of different variables may be accurately obtained based on the absolute addresses. In this way, accurate second code may be generated.


In some possible implementations, the first code includes a code region, a symbol region, a data region, and a relocation table. The decompiler may obtain the relocation table from the first code. The relocation table stores the logical addresses of the variables. The decompiler may relocate, based on the relocation table, the addresses of the variables associated with the functions in the first code.


Based on this, the decompiler may generate the definitions of the variables based on the logical addresses of the variables that are obtained through relocation, thereby resolving a problem that a logic error in generated pseudocode is caused because definitions and access addresses of the variables are uncertain, and consequently, availability of the generated code applicable to the target platform is low. This method improves accuracy and reliability of decompilation.


In some possible implementations, there are a plurality of types of the variables associated with the function. For example, the variables associated with the functions may include a local variable and a global variable. In some embodiments, the variables associated with the functions may alternatively be classified into a static variable and a dynamic variable based on whether an original value is retained. Correspondingly, when performing relocation on the variables, the decompiler may determine relocation types based on types of the variables associated with the functions in the first code, and then relocate, based on the relocation table and the relocation types, the addresses of the variables associated with the functions in the first code.


The decompiler may determine the relocation types based on the relocation table according to types of the variables and associated compilation options. A compilation option is used to indicate a compilation manner. For example, fpIC indicates that code is position independent code (PIC), and mcmodel indicates a code model. A value of mcmodel may be small, medium, or large, which are respectively used to indicate a small code model, a medium code model, and a large code model.


For example, for a common variable such as a global variable or a static variable, when mcmodel=large, the decompiler determines, based on an immediate number instruction of a relocation instruction section, that a relocation type is R_X86_64_64, that is, an addressing mode is changed to immediate addressing. After determining the addressing mode, the decompiler 100 may obtain a logical address of the variable based on the relocation table according to the immediate addressing mode.


In the method, variables of different types are respectively relocated in corresponding relocation manners, so that the entire code file can be accurately located. In this way, pseudocode with correct logic is generated, thereby further generating second code with high accuracy based on the pseudocode with the correct logic. In this way, service requirements can be met.


In some possible implementations, before decompilation is performed based on the logical addresses of the variables and the first code, the decompiler may further adjust parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform.


In the method, cross-platform difference processing is performed on the first code, to implement cross-platform conversion on the first code. The code obtained after the conversion can be executed on the target platform.


In some possible implementations, when adjusting the parameters of the functions in the first code, the decompiler specifically adjusts register information or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform.


Specifically, the parameters of the functions are stored in a register or a stack of an internal memory. Storage manners of parameters vary depending on a platform. The decompiler may adjust register information and/or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform. For example, the decompiler may adjust parameters stored in a register, to store the parameters in a stack; or adjust parameters stored in a stack, to store the parameters in a register, so that runtimes before and after a cross-platform operation are consistent. In this way, the code obtained after the cross-platform operation can be normally executed.


In some possible implementations, the decompiler may provide a user interface, for example, a graphical user interface. A user may enter the first code by using a user interface such as a graphical user interface. Then, the decompiler receives the first code, to perform cross-platform decompilation on the first code, thereby improving efficiency of code or application migration.


In some possible implementations, the second code applicable to the target platform may be code in a low-level programming language, for example, code in a format of an object file. Certainly, the second code applicable to the target platform may alternatively be code in a high-level programming language, such as code in a C language. The code in the high-level programming language is obtained through cross-platform decompilation, thereby improving efficiency of code migration.


According to a second aspect, this application provides a code processing apparatus. The apparatus includes:


a communication module, configured to obtain first code, where the first code is code that is obtained through compilation and that is applicable to a source platform;


a relocation module, configured to relocate addresses of variables associated with functions in the first code, to obtain logical addresses of the variables; and


a decompilation module, configured to perform decompilation based on the logical addresses of the variables and the first code, to obtain second code applicable to a target platform.


In some possible implementations, the decompilation module is specifically configured to:


perform decompilation based on the logical addresses and the first code, to obtain a compiler intermediate representation related to the target platform, where the compiler intermediate representation includes definitions of the variables, and the definitions of the variables associate symbols of the variables with the addresses; and


generate the second code applicable to the target platform based on the compiler intermediate representation.


In some possible implementations, the compiler intermediate representation includes a first variable and a second variable. The first variable has a first logical address, the second variable has a second logical address, and the first logical address is different from the second logical address.


In some possible implementations, the relocation module is specifically configured to:


obtain a relocation table from the first code, where the relocation table stores the logical addresses of the variables; and


relocate, based on the relocation table, the addresses of the variables associated with the functions in the first code.


In some possible implementations, the relocation module is specifically configured to:


determine relocation types based on types of the variables associated with the functions in the first code; and


relocate, based on the relocation table and the relocation types, the addresses of the variables associated with the functions in the first code.


In some possible implementations, the apparatus further includes:


an adjustment module, configured to: before decompilation is performed based on the logical addresses of the variables and the first code, adjust parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform.


In some possible implementations, the adjustment module is specifically configured to:


adjust register information or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform.


In some possible implementations, the communication module is specifically configured to:


receive the first code input by a user through a graphical user interface.


According to a third aspect, this application provides a computing apparatus. The computing apparatus includes a processor and a memory. The processor and the memory communicate with each other. The processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the code processing method according to the first aspect or any one of the implementations of the first aspect.


According to a fourth aspect, this application provides a computer-readable storage medium. The computer-readable storage medium stores an instruction, and the instruction instructs a computing apparatus to perform the code processing method according to the first aspect or any one of the implementations of the first aspect.


According to a fifth aspect, this application provides a computer program product including an instruction. When the computer program product runs on a computing apparatus, the computing apparatus is enabled to perform the code processing method according to the first aspect or any one of the implementations of the first aspect.


In this application, based on implementations according to the foregoing aspects, the implementations may be further combined to provide more implementations.





BRIEF DESCRIPTION OF DRAWINGS

To describe the technical methods in embodiments of this application more clearly, the following briefly describes the accompanying drawings used in describing the embodiments.



FIG. 1 is a diagram of a system architecture of a code processing method according to an embodiment of this application;



FIG. 2 is a diagram of another system architecture of a code processing method according to an embodiment of this application;



FIG. 3 is a flowchart of a code processing method according to an embodiment of this application;



FIG. 4 is a schematic diagram of receiving first code by using a graphic user interface (GUI) according to an embodiment of this application;



FIG. 5 is a schematic diagram of adjusting parameters of functions according to an embodiment of this application;



FIG. 6 is a schematic flowchart of a code processing method according to an embodiment of this application;



FIG. 7 is a schematic diagram of a structure of a code processing apparatus according to an embodiment of this application; and



FIG. 8 is a schematic diagram of a structure of a computing apparatus according to an embodiment of this application.





DESCRIPTION OF EMBODIMENTS

The terms “first” and “second” in the embodiments of this application are merely intended for a purpose of description, and shall not be understood as an indication or implication of relative importance or implicit indication of a quantity of indicated technical features. Therefore, a feature limited by “first” or “second” may explicitly or implicitly include one or more features.


Some technical terms used in the embodiments of this application are first described.


A programming language is a formal language used to define a computer program. Therefore, the programming language is also referred to as a computer language. A developer specifically implements application development by writing a code file by using the foregoing programming language.


The programming language can be classified into a low-level programming language and a high-level programming language based on whether a language is machine-oriented. A machine-oriented (for example, computer-oriented) programming language is a low-level programming language. The low-level programming language includes a machine language and an assembly language.


The machine language is a language represented by binary code. The machine language is the only language that can be recognized and executed by a computer. The assembly language is a language that uses names and symbols that are easy to understand and memorize to represent operation code in a machine instruction, to solve a shortcoming of the machine language that is difficult to understand and memorize. The assembly language replaces binary code of the machine language with symbols. Therefore, the assembly language is essentially a symbol language.


It should be noted that a code file written in the assembly language generally cannot be directly recognized by a machine (such as a computer). For this purpose, a developer can further translate the assembly language into the machine language by using an assembly program, to facilitate recognition and execution by a machine. Therefore, compared with the machine language, the assembly language is a high-level programming language.


A programming language other than a machine-oriented programming language is a high-level programming language. The high-level programming language is a language independent of a machine. In other words, the high-level programming language may be generally applied to different types of machines, for example, a machine applied to an x86 instruction set architecture, or a machine applied to an advanced reduced instruction set machine (advanced RISC machines, ARM) architecture. The high-level programming language is less dependent on a machine.


The high-level programming language is generally close to a natural language, and may use a mathematical expression. Therefore, the high-level programming language has a stronger expression capability, can conveniently represent a data operation and a control structure of a program, and can better describe various algorithms. The high-level programming language includes different languages such as java, c, c++, C #, pascal, and python. Similar to the assembly language, the high-level programming language cannot be directly recognized and executed by a machine. A developer may compile, by using a compilation program such as a compiler, a code file written based on a high-level programming language, so that the code file can be recognized and executed by a machine.


During application development, a developer may develop applications by referring to existing applications, to improve development efficiency. Specifically, the developer may restore the compiled program code through decompilation, and then analyze the code obtained after the restoration to provide help for application development.


The compiled program code is generally code in a low-level programming language, for example, code in a machine language (also referred to as machine code). The code obtained after the restoration is generally code in a high-level programming language, for example, code in a C language or code in a Java language. In some cases, the code obtained after the restoration may alternatively be code in an assembly language.


Existing decompilation technologies can support code conversion between different programming languages on the same platform. For example, an existing decompiler may convert code in a machine language of an x86 platform into code in an assembly language of the x86 platform. However, in many scenarios, code of some platforms also needs to be migrated to other platforms, so that the application can be migrated to other platforms.


A platform corresponding to the code to be migrated is referred to as a source platform, and a platform corresponding to the code obtained through migration is referred to as a target platform. The source platform and the target platform are specifically different platforms. Different platforms refer to platforms with different instruction sets. The platforms with different instruction sets may be platforms with different instruction sets of a same type, for example, Pentium II and Pentium III (in which a new SSE instruction set is introduced) on an x86 platform, or ARM V8 and ARM V9 on an ARM platform. The platforms with different instruction sets may alternatively be platforms of different types, for example, any platform on the x86 platform and any platform on the ARM platform. The code of the source platform may be specifically code obtained through compilation, and may be, for example, code in an object (obj) file.


However, although the code in the obj file is binary code, the obj file is not a complete executable file. Definitions and access addresses of variables in the obj file are uncertain, which causes a logic error in generated pseudocode. As a result, when the decompiler directly performs decompilation on the code of the obj file, accuracy is low and reliability is low.


In view of this, an embodiment of this application provides a code processing method. The method may be executed by a decompiler. The decompiler may be a software module, and provides a code decompilation service by running on a hardware device such as a computer. In some possible implementations, the decompiler may alternatively be a hardware module having a code decompilation function.


Specifically, the decompiler obtains first code. The first code is code that is obtained through compilation and that is applicable to a source platform, for example, code in an obj file on the x86 platform. Then, the decompiler relocates addresses of variables associated with functions in the first code, to obtain logical addresses of the variables. A logical address is also referred to as a program address, and is generally an address allocated by a developer during code writing. The logical address may be translated or mapped to a physical address for ease of addressing.


Definitions of the variables may be generated based on the logical addresses of the variables. In this way, the definitions and the access addresses of the variables in the first code may be determined, and a complete executable file may be obtained. The decompiler performs decompilation based on the logical addresses of the variables and the first code, which is equivalent to decompiling the complete executable file, to obtain a second code applicable to a target platform.


According to the method, cross-platform decompilation is implemented, and efficiency of application development or migration is improved. In addition, addresses of variables associated with functions in first code are relocated, and the addresses obtained after the relocation may be used to generate definitions of the variables, to resolve a logic error in generated pseudocode caused due to uncertain definitions and access addresses of the variables. This improves accuracy and reliability of decompilation.


It should be noted that the decompiler provided in the embodiments of this application may be provided for a user in a form of a software package. Specifically, an owner of the decompiler may release a software package of the decompiler. A user obtains the software package, and then runs the software package, to implement cross-platform decompilation on the first code applicable to the source platform. In some possible implementations, the decompiler provided in the embodiments of this application may be provided for a user in a form of a cloud service. The user may upload the first code applicable to the source platform to a cloud, and decompilation may be performed on the code by using a decompilation service in the cloud. Then, the second code applicable to the target platform is returned to the user.


To make the technical solutions of this application clearer and easier to understand, a deployment manner of a decompiler is described below in detail with reference to the accompanying drawings.



FIG. 1 is a diagram of a system architecture of a code processing method. A decompiler 100 may be deployed on a computing apparatus 200. The computing apparatus 200 includes, but is not limited to, a device such as a desktop computer or a notebook computer. The decompiler 100 is configured to perform decompilation on code. The decompiler 100 may be independent, or may be integrated with another development tool. For example, the decompiler 100 may be integrated with an editor, a compiler, a debugger, or the like, to form an integrated development environment (IDE).


The decompiler 100 running on the computing apparatus 200 may obtain first code. The first code is code that is obtained through compilation and that is applicable to a source platform, for example, binary code in an obj file applicable to an x86 platform. Then, the decompiler 100 relocates addresses of variables associated with functions in the first code, and then performs decompilation based on the addresses of the variables obtained after the relocation and the first code, to obtain second code applicable to a target platform. In this way, cross-platform decompilation is implemented on the first code locally (for example, in the local computing apparatus 200).


Then, FIG. 2 is a diagram of a system architecture of a code processing method. The decompiler 100 is deployed in a cloud environment 300. A user accesses the decompiler 100 in the cloud environment 300 by using the computing apparatus 200, to implement cross-platform decompilation of the first code.


The cloud environment 300 indicates a cloud computing cluster that is owned by a cloud service provider and that is used to provide computing, storage, and communication resources. The cloud computing cluster may be classified into a central cloud and an edge cloud based on a location of the cloud computing cluster in a network topology. The cloud computing cluster includes at least one cloud computing device, for example, at least one central server, or at least one edge server.


The computing apparatus 200 may submit first code to the decompiler 100 running in the cloud environment 300. The decompiler 100 obtains the first code, and may relocate addresses of variables associated with functions in the first code. Then, the decompiler 100 performs decompilation on the addresses of the variables obtained after the relocation and the first code, to obtain second code applicable to a target platform. Further, the decompiler 100 in the cloud environment 300 may return the second code to the computing apparatus 200. In this way, cross-platform decompilation of code is implemented on the cloud. Because a decompilation process is mainly performed in a cloud, and the computing apparatus 200 mainly assists in decompilation, a requirement on performance of the computing apparatus 200 is low, which has high availability.



FIG. 1 and FIG. 2 merely describe examples of some deployment manners of the decompiler 100. In another possible implementation of the embodiments of this application, the decompiler 100 may alternatively be deployed in another manner. This is not limited in the embodiments of this application.


With reference to the accompanying drawings, the code processing method provided in the embodiments of this application is described below in detail from a perspective of the decompiler 100.



FIG. 3 is a flowchart of a code processing method. The method includes the following steps.


S302: The decompiler 100 obtains first code.


The first code is code that is obtained through compilation and that is applicable to a source platform. The source platform may be any one of platforms such as an x86 platform and an ARM platform. The code obtained through compilation is code obtained by the compiler by compiling source code. The code is specifically binary code. In some embodiments, the first code may be code in an obj file. In some other embodiments, the first code may alternatively be mixed code. The mixed code is specifically mixed with code in an obj file.


In some possible implementations, the decompiler 100 may receive, by using a user interface such as a graphical user interface (GUI) or a command user interface (CUI), the first code entered by a user.


For ease of understanding, a specific example is used for description below. FIG. 4 is a schematic diagram in which the decompiler 100 obtains the first code by using a GUI. As shown in FIG. 4, the GUI provided by the decompiler 100 carries a code input control 402 and a code decompilation control 404. A user may enter first code by using the code input control 402. Specifically, the user may enter a storage path of the first code by using the code input control 402. In this way, the decompiler 100 may obtain the first code based on the storage path. The user may further trigger a decompilation operation on the first code by using the code decompilation control 404. The decompiler 100 may start cross-platform decompilation on the first code in response to the operation.


It should be noted that the first code may be part of code in a code file, or may be all code in the code file. This is not limited in the embodiments of this application.


S304: The decompiler 100 relocates addresses of variables associated with functions in the first code, to obtain logical addresses of the variables.


The first code includes at least one function call. A called function includes an independent variable and a dependent variable. The independent variable is a condition or a factor that can be manipulated to cause a change of the dependent variable, and the dependent variable is a variable that changes with the independent variable. When the independent variable is set to a unique value, the dependent variable has exactly one unique value corresponding to the value of the independent variable. Based on this, the variables associated with the functions may include at least one of the foregoing independent variable and dependent variable. For example, in a function y=a+b*c, variables associated with the function include independent variables a, b, and c, and a dependent variable y.


In this embodiment, the addresses of the variables associated with the functions in the first code (for example, code in an obj file) are relative addresses, that is, an address of each variable is uncertain. Therefore, the decompiler 100 may relocate the variables associated with the functions in the first code, to determine a logical address of each variable. The logical address is specifically an absolute address of the variable.


Specifically, the first code includes a code region, a symbol region, a data region, and a relocation table. The code region mainly includes code. The symbol region mainly includes symbols of variables. The data region mainly includes data in the code. The relocation table mainly includes logical addresses of the variables. Based on this, the decompiler 100 may obtain a relocation table from the first code, and then obtain, by accessing the relocation table, the logical addresses of the variables associated with the functions in the first code, to relocate the addresses of the variables associated with the functions in the first code.


Further, when relocating, based on the relocation table, the addresses of the variables associated with the functions in the first code, the decompiler 100 may further perform relocation based on types of the variables. Specifically, the decompiler 100 may determine relocation types based on types of the variables associated with the functions in the first code, and then relocate, based on the relocation table and the relocation types, the addresses of the variables associated with the functions in the first code.


The types of the variables may be a local variable and a global variable. Certainly, the types of the variables may alternatively be a static variable and a dynamic variable based on whether an original value is retained. The decompiler 100 may determine the relocation types based on the relocation table according to types of the variables and associated compilation options. A compilation option is used to indicate a compilation manner. For example, fpIC indicates that code is position independent code (PIC), and mcmodel indicates a code model. A value of mcmodel may be small, medium, or large, which are respectively used to indicate a small code model, a medium code model, and a large code model.


For example, for a common variable such as a global variable or a static variable, when mcmodel=large, the decompiler 100 determines, based on an immediate number instruction of a relocation instruction section, that a relocation type is R_X86_64_64, that is, an addressing mode is changed to immediate addressing. After determining the addressing mode, the decompiler 100 may obtain a logical address of the variable based on the relocation table according to the immediate addressing mode.


Further, the decompiler 100 may associate the absolute address with a symbol of the variable, to relocate the addresses of the variables associated with the function.


S306: The decompiler 100 performs decompilation based on the logical addresses of the variables and the first code, to obtain second code applicable to a target platform.


The target platform is a platform different from the source platform. The target platform may be any one of platforms such as an x86 platform and an ARM platform. When the source platform is the x86 platform, the target platform may be the ARM platform. When the source platform is the ARM platform, the target platform may be the x86 platform.


The second code applicable to the target platform may be low-level programming language code applicable to the target platform. For example, when the first code is code in a machine language on the x86 platform, the second code may be code in the machine language on the ARM platform. Further, the second code may alternatively be code in an assembly language on the ARM platform.


The second code applicable to the target platform may alternatively be high-level programming language code. For example, when the first code is code in the machine language on the x86 platform, the second code may be code in a C language, code in a Java language, code in a Python language, or the like.


In this embodiment, the logical addresses of the variables and the first code may form a complete executable file, and the decompiler 100 may decompile the complete executable file, to obtain the second code applicable to the target platform.


Specifically, the decompiler 100 may perform decompilation based on the logical addresses of the variables and the first code, to obtain a compiler intermediate representation (intermediate representation, IR) related to the target platform.


An intermediate representation specifically refers to code represented by using an intermediate language. In a process of compilation or decompilation, a compiler or the decompiler may translate the first code into code represented by using an intermediate language, that is, an intermediate representation, and then translate the intermediate representation to obtain the second code.


Because the decompiler 100 performs decompilation based on the logical addresses of the variables obtained after the relocation and the first code, the intermediate representation obtained by the decompiler 100 includes definitions of the variables associated with the function. The definitions of the variables associate symbols of the variables with the logical addresses of the variables. The decompiler 100 may generate pseudocode with correct logic based on the intermediate representation, to further generate the corresponding second code. In this way, a logic error in generated pseudocode caused due to uncertain definitions and access addresses of the variables is overcome. This improves accuracy and reliability of decompilation.


In some possible implementations, the decompiler 100 may compile the compiler intermediate representation, to obtain the second code applicable to the target platform. The second code may be machine language code applicable to the target platform (for example, code in an obj format).


In some other possible implementations, after obtaining the low-level programming language code applicable to the target platform, for example, after obtaining the machine language code, the decompiler 100 may further perform further processing on the low-level programming language code, for example, perform disassembly, to obtain assembly language code. The second code may further be assembly language code applicable to the target platform. Certainly, the decompiler 100 may alternatively process the compiler intermediate representation, to obtain high-level programming language code. The second code may further be high-level programming language code.


After obtaining the second code by decompiling the first code, the decompiler 100 may further output the second code. In some embodiments, the decompiler 100 may output the second code as a file. In some other embodiments, the decompiler 100 may alternatively present the second code to a user by using a user interface, for example, a GUI or a CUI.


Based on the foregoing content description, an embodiment of this application provides a code processing method. In the method, first code obtained through compilation is converted through decompilation into an intermediate representation related to a target platform, and then second code applicable to a target platform is obtained by compiling the intermediate representation. In this way, cross-platform decompilation of the first code is implemented, a technical threshold for cross-platform code migration is reduced, and efficiency of code migration is improved. In addition, the method resolves a problem that address redirection information of a low-level programming language module is missing in a decompilation process, thereby improving accuracy and reliability of decompilation.


In the embodiment shown in FIG. 3, considering a difference between function calling rules on different platforms, before the decompiler 100 performs cross-platform decompilation on the code, specifically, before performing decompilation based on the logical addresses of the variables obtained after the relocation and the first code, the decompiler 100 may adjust parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform.


Specifically, the parameters of the functions are stored in a register or a stack of a memory. Storage manners of parameters vary depending on a platform. The decompiler 100 may adjust register information and/or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform. For example, the decompiler 100 may adjust parameters stored in a register, to store the parameters in a stack; or adjust parameters stored in a stack, to store the parameters in a register.


Before adjusting the register information and/or the stack information, the decompiler 100 may first decode the first code by using a decoding (decode) tool, for example, Intel XED, to obtain an instruction control flow. Then, the decompiler 100 may perform a data flow analysis algorithm for the instruction control flow, to analyze an active register and stack, to obtain types and a quantity of the parameters of the functions in the first code. A type of a parameter is mainly used to indicate that the parameter is stored in a register or stored in a stack.


For ease of understanding, processes of register analysis and stack analysis are respectively described below in detail.


First, in this embodiment, several data sets are defined as follows:


Use[n]: set of variables used by n;


Def[n]: set of variables defined by n;


In[n]: variables live on entry to n; and


Out[n]: variables live on exit to n.


Herein, variables represent a register corresponding to the variables, In[n] and Out[n] represent sets of registers respectively corresponding to input and output, and Def[n] and Use[n] represent sets of registers respectively corresponding to a definition and usage.


The decompiler 100 may traverse blocks (block) in the first code, and construct a use set and a def set of each block. A specific construction process is as follows:


traversing instructions in a block based on an instruction execution order in the block;


if an operand type of an instruction is Register and an action is kActionRead, adding the instruction to a use set;


if an operand type of an instruction is Register and an action is kActionWrite, adding the instruction to a def set; and


if an operand type of an instruction is Address, adding base_reg and index_reg of the instruction to the use set.


The decompiler 100 may establish a data flow analysis equation based on the foregoing sets, as shown below:





in[n]custom-characteruse[n]





in[n]custom-characterout[n]−def[n]





out[n]custom-characterin[n′], if n′∈succ[n]  (1)


Herein, n represents a block, and the symbol custom-character indicates that a set on the right side of the symbol is a subset of a set on the left side of the symbol. succ[n] indicates a register that is still valid in a block.


The decompiler 100 may solve the foregoing equation by using a fixed point algorithm, as shown below:





out[n]=□i∈succ[n]in[i], where i is a subsequent block of all n





in[n]=use[n]□(out[n]−def[n])  (2)


After the fixed point algorithm, an intersection of an in set of a function entry and an input parameter Reg specified by Calling Convention is an input parameter register. An intersection of an out set of a function exit and an output parameter Reg specified by Calling Convention is a possible return value register.


When performing stack analysis, the decompiler 100 may analyze the instruction control flow by using an algorithm based on a rex-extended stack pointer (rex-extended stack pointer, RSP) or an algorithm based on a rex-extended base pointer (rex-extended base pointer, RBP).


A process in which the decompiler 100 performs analysis by using an algorithm based on the RSP may specifically include the following steps.


a: Check whether the RSP has an offset based on a function prologue part (an entry basic block) and record an offset value off.


The decompiler 100 may determine an offset by using a sub instruction or a push instruction. The decompiler 100 further records a register associated with the RSP.


b: Traverse all instructions of all blocks and search for a usage scenario in which an operand type is kTypeAddress, an action is kActionRead, base_reg=RSP (an associated register), and memory displacement (dis) is a positive number. The parameter is a ((dis−off)/8)th stack parameter. Then, a total quantity S of parameters is obtained through statistics.


c: If a rule b is met, further differentiate types of the parameters:


if an operand of another register of the same instruction is an integer register (RXX), and the instruction is an instruction related to conversion from a non-floating point type to an integer type, it is determined that the stack parameter is of the integer type; and if an operand of another register of the same instruction is a floating point register (XMM), and the instruction is an instruction related to conversion from a non-integer type to a floating point type, it is determined that the stack parameter is of the floating point type.


A process in which the decompiler 100 performs analysis by using an algorithm based on the RBP may specifically include the following steps.


a: Traverse all instructions of all blocks and search for a usage scenario in which an operand type is kTypeAddress, an action is kActionRead, base_reg=RBP, and dis is a positive number. The parameter is a ((dis−8)/8)th stack parameter. Then, a total quantity X of parameters is obtained through statistics.


b: If a rule a is met, further differentiate types of the parameters:


if an operand of another register of the same instruction is an integer register (RXX), and the instruction is an instruction related to conversion from a non-floating point type to an integer type, it is determined that the stack parameter is of the integer type; and if an operand of another register of the same instruction is a floating point register (XMM), and the instruction is an instruction related to conversion from a non-integer type to a floating point type, it is determined that the stack parameter is of the floating point type.


In some possible implementations, the decompiler 100 may simultaneously execute the foregoing two algorithms, and then select a maximum value in total quantities S that are of the parameters and that are determined by the two algorithms.


After the total quantity of the parameters and the types of the parameters are obtained, the decompiler 100 may adjust storage locations of the parameters based on the difference between the function calling rules. Specifically, the decompiler 100 performs cross-platform processing on the input parameter register and the stack based on the difference between the function calling rules, for example, adds several parameters in the register into the stack, switches a stack pointer, and the like, so that input parameter registers and stacks at runtimes in different platforms have a same spatial perspective.


For ease of understanding, a specific example is used for description below.



FIG. 5 is a schematic diagram of adjusting parameters of a function. In this example, a function test includes 10 parameters in total from i0 to i9. At a runtime on an x86 platform, the parameters i0 to i5 are stored in a register, and the parameters i6 to i9 are stored in a stack. At a runtime on an ARM platform, the parameters i0 to i7 are stored in a register, and the parameters i8 to i9 are stored in a stack. The decompiler 100 may add the parameters i6 and i7 into the stack, and switch a stack pointer, so that input parameter registers and stacks at runtimes in different platforms have a same spatial perspective.


In the method, register analysis and stack analysis are active by using a compiler, to obtain an exact input parameter register and stack input parameter, thereby reducing unnecessary conversion of registers in function call conventions.


In addition, this application further provides a specific example for detailed description of relocating the addresses of the variables associated with the function, and obtaining the second code through decompilation based on the logical addresses obtained after the relocation and the first code.



FIG. 6 is a schematic flowchart of a code processing method. As shown in FIG. 6, the decompiler 100 first obtains first code that is to be decompiled. As shown in (A) in FIG. 6, the first code includes at least one function call, for example, test1 and main, and each called function is associated with variables. Addresses of variables are specifically shown in a marking box 602 in (A). It can be learned based on 602 that the addresses of the variables in the first code are relative addresses.


Then, refer to (B) in FIG. 6. The decompiler 100 performs relocation on variables associated with functions in the first code. For example, an address of test1 is redirected from 0000000000000000 to 0000000000400536, an address of main is redirected from 000000000000000c to 0000000000400542, and an address of a variable associated with a function body of test1 is redirected from 00 00 00 00 to dc 0a 20 00. Examples are not listed one by one herein. The addresses of the variables obtained after the relocation are shown in a marking box 604 in (B).


Then, refer to (C) in FIG. 6. The decompiler 100 performs decompilation based on the addresses of the variables obtained after the relocation and the first code, to obtain a compiler intermediate representation. The compiler intermediate representation includes definitions of the variables, as shown in 606 in (C). As shown in 606, @test1 is a definition of test1.


Finally, refer to (D) in FIG. 6. The decompiler 100 generates, based on the compiler intermediate representation, second code applicable to a target platform such as an ARM platform, which is specifically assembly language code applicable to the ARM platform.


It should be noted that the first code is machine language code, and is specifically binary code. To improve readability, in (A) and (B) in FIG. 6, code obtained after disassembly is performed on the first code is used as an example for description.


The code processing method provided in the embodiments of this application is described above in detail with reference to FIG. 1 to FIG. 6. An apparatus and a device provided in the embodiments of this application are described below with reference to the accompanying drawings.



FIG. 7 is a schematic diagram of a structure of a code processing apparatus. The apparatus 700 may be an apparatus for implementing a function of the decompiler 100. The apparatus 700 includes:


a communication module 702, configured to obtain first code, where the first code is code that is obtained through compilation and that is applicable to a source platform;


a relocation module 704, configured to relocate addresses of variables associated with functions in the first code, to obtain logical addresses of the variables; and


a decompilation module 706, configured to perform decompilation based on the logical addresses of the variables and the first code, to obtain second code applicable to a target platform.


In some possible implementations, the decompilation module 706 is specifically configured to:


perform decompilation based on the logical addresses of the variables and the first code, to obtain a compiler intermediate representation related to the target platform, where the compiler intermediate representation includes definitions of the variables, and the definitions of the variables associate symbols of the variables with the addresses; and


generate the second code applicable to the target platform based on the compiler intermediate representation.


In some possible implementations, the compiler intermediate representation includes a first variable and a second variable. The first variable has a first logical address, the second variable has a second logical address, and the first logical address is different from the second logical address.


In some possible implementations, the relocation module 704 is specifically configured to:


obtain a relocation table from the first code, where the relocation table stores the logical addresses of the variables; and


relocate, based on the relocation table, the addresses of the variables associated with the functions in the first code.


In some possible implementations, the relocation module 704 is specifically configured to:


determine relocation types based on types of the variables associated with the functions in the first code; and


relocate, based on the relocation table and the relocation types, the addresses of the variables associated with the functions in the first code.


In some possible implementations, the apparatus 700 further includes:


an adjustment module, configured to: before decompilation is performed based on the logical addresses of the variables and the first code, adjust parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform.


In some possible implementations, the adjustment module is specifically configured to:


adjust register information or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform.


In some possible implementations, the communication module 702 is specifically configured to:


receive the first code input by a user through a graphical user interface.


The code processing apparatus 700 according to the embodiments of this application may correspondingly perform the method described in the embodiments of this application. In addition, the foregoing and other operations and/or functions of the modules/units of the code processing apparatus 700 are respectively used to implement corresponding procedures of the method in the embodiment shown in FIG. 3. For brevity, details are not described herein again.


An embodiment of this application further provides a computing apparatus 200. The computing apparatus 200 may be a terminal side device such as a notebook computer or a desktop computer. The computing apparatus 200 is specifically configured to implement a function of the code processing apparatus 700 in the embodiment shown in FIG. 7.



FIG. 8 is a schematic diagram of a structure of a computing apparatus 200. As shown in FIG. 8, the computing apparatus 200 includes a bus 201, a processor 202, a communication interface 203, and a memory 204. The processor 202, the memory 204, and the communication interface 203 communicate with each other through the bus 201.


The bus 201 may be a peripheral component interconnect (PCI) bus, an extended industry standard architecture (EISA) bus, or the like. The bus may be classified into an address bus, a data bus, a control bus, and the like. For ease of representation, only one thick line is for representing the bus in FIG. 8, but this does not mean that there is only one bus or only one type of bus.


The processor 202 may be any one or more of processors such as a central processing unit (CPU), a graphics processing unit (GPU), a microprocessor (MP), or a digital signal processor (DSP).


The communication interface 203 is configured to communicate with the outside. For example, the communication interface is configured to obtain first code applicable to a source platform, where the first code is code obtained through compilation, for example, code in an obj file; or output second code applicable to a target platform.


The memory 204 may include a volatile memory, for example, a random access memory (RAM). The memory 204 may alternatively include a non-volatile memory, for example, a read-only memory (ROM), a flash memory, a hard disk drive (HDD), or a solid state drive (SSD).


The memory 204 stores executable code, and the processor 202 executes the executable code to perform the foregoing code processing method.


Specifically, when the embodiment shown in FIG. 7 is implemented, and the modules of the code processing apparatus 700 described in the embodiment of FIG. 7 are implemented by using software, software or program code required for performing functions of modules such as the relocation module 704 and the decompilation module 706 in FIG. 7 is stored in the memory 204. A function of the communication module 702 is implemented by using the communication interface 203.


Specifically, the communication interface 203 obtains first code. The first code is code that is obtained through compilation and that is applicable to a source platform. The communication interface 203 transmits the first code to the processor 202 by using the bus 201. The processor 202 executes program code that is corresponding to each module and that is stored in the memory 204, for example, program code corresponding to the relocation module 704 and the decompilation module 706, to perform steps of relocating addresses of variables associated with functions in the first code, to obtain logical addresses of the variables, and then performing decompilation based on the logical addresses of the variables obtained after the relocation and the first code, to obtain second code applicable to a target platform.


Optionally, the processor 202 may further be configured to perform method steps corresponding to another possible implementation in the embodiment shown in FIG. 3.


The computing apparatus 200 is described by using an apparatus located on a terminal side as an example. An embodiment of this application further provides a cloud computing apparatus in a cloud environment 300, for example, a central server. The cloud computing apparatus has a structure similar to that of the computing apparatus 200 on a terminal side, and has a same function as the computing apparatus 200, that is, a function of performing cross-platform decompilation on code.


Couplings in the embodiments of this application are indirect couplings or communication connections between apparatuses, units, or modules, may be electrical, mechanical, or another form, and are used for information exchange between the apparatuses, the units, and the modules. In the embodiments of this application, a specific connection medium used to connect the communication interface 203, the processor 202, and the memory 204 is not limited. For example, the memory, the processor, and the communication interface may be connected by using a bus. The bus may be classified into an address bus, a data bus, a control bus, and the like.


Based on the foregoing embodiments, an embodiment of this application further provides a computer storage medium. The storage medium stores a software program. When the software program is read and executed by one or more processors, the method performed by the terminal device and the cloud computing device provided in any one or more of the foregoing embodiments may be implemented. The computer storage medium may include: any medium that can store program code, such as a USB flash disk, a removable hard disk, a read-only memory, a random access memory, a magnetic disk, or an optical disc.


Based on the foregoing embodiments, an embodiment of this application further provides a chip. The chip includes a processor, configured to implement functions of the terminal device or the cloud computing device in the foregoing embodiments, for example, configured to implement the methods performed by the computing apparatus 200 and the cloud computing device in the cloud environment 300 in FIG. 1 and FIG. 2.


Optionally, the chip further includes a memory. The memory is configured to store necessary program instructions and data that executed by the processor. The chip may include a chip, or may include a chip and another discrete device.


A person skilled in the art should understand that the embodiments of this application may be provided as a method, a system, or a computer program product. Therefore, this application may use a form of hardware only embodiments, software only embodiments, or embodiments with a combination of software and hardware. In addition, this application may use a form of a computer program product that is implemented on one or more computer-usable storage media (including but not limited to a disk memory, a CD-ROM, an optical memory, and the like) that include computer-usable program code.


This application is described with reference to the flowcharts and/or block diagrams of the method, the device (system), and the computer program product according to the embodiments of this application. It should be understood that computer program instructions may be used to implement each process and/or each block in the flowcharts and/or the block diagrams and a combination of a process and/or a block in the flowcharts and/or the block diagrams. These computer program instructions may be provided for a general-purpose computer, a dedicated computer, an embedded processor, or a processor of any other programmable data processing device to generate a machine, so that the instructions executed by a computer or a processor of any other programmable data processing device generate an apparatus for implementing a specific function in one or more processes in the flowcharts and/or in one or more blocks in the block diagrams.


These computer program instructions may be stored in a computer-readable memory that can instruct the computer or any other programmable data processing device to work in a specific manner, so that the instructions stored in the computer-readable memory generate an artifact that includes an instruction apparatus. The instruction apparatus implements a specific function in one or more processes in the flowcharts and/or in one or more blocks in the block diagrams.


These computer program instructions may alternatively be loaded onto a computer or another programmable data processing device, so that a series of operations and steps are performed on the computer or the another programmable device, so that computer-implemented processing is generated. Therefore, the instructions executed on the computer or the another programmable device provide steps for implementing a specific function in one or more procedures in the flowcharts and/or in one or more blocks in the block diagrams.


It is clear that a person skilled in the art can make various modifications and variations to embodiments of this application without departing from the scope of the embodiments of this application. This application is intended to cover these modifications and variations provided that they fall within the scope of protection defined by the following claims and their equivalent technologies.

Claims
  • 1. A code processing method, wherein the method comprises: obtaining first code, wherein the first code is code that is obtained through compilation and that is applicable to a source platform;relocating a plurality of addresses of variables associated with functions in the first code, to obtain a plurality of logical addresses of the variables; andperforming decompilation based on the logical addresses of the variables and the first code, to obtain second code applicable to a target platform.
  • 2. The method according to claim 1, wherein the performing decompilation based on the plurality of logical addresses of the variables and the first code, to obtain second code applicable to a target platform comprises: performing decompilation based on the plurality of logical addresses of the variables and the first code, to obtain a compiler intermediate representation related to the target platform, wherein the compiler intermediate representation comprises definitions of the variables, and the definitions of the variables associate symbols of the variables with the plurality of logical addresses; andgenerating the second code applicable to the target platform based on the compiler intermediate representation.
  • 3. The method according to claim 2, wherein the compiler intermediate representation comprises a first variable and a second variable, the first variable has a first logical address, the second variable has a second logical address, and the first logical address is different from the second logical address.
  • 4. The method according to claim 1, wherein the relocating addresses of variables associated with functions in the first code comprises: obtaining a relocation table from the first code, wherein the relocation table stores the plurality of logical addresses of the variables; andrelocating, based on the relocation table, the addresses of the variables associated with the functions in the first code.
  • 5. The method according to claim 4, wherein the relocating, based on the relocation table, the addresses of the variables associated with the functions in the first code comprises: determining relocation types based on types of the variables associated with the functions in the first code; andrelocating, based on the relocation table and the relocation types, the addresses of the variables associated with the functions in the first code.
  • 6. The method according to claim 1, wherein before the performing decompilation based on the plurality of logical addresses of the variables and the first code, the method further comprises: adjusting parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform.
  • 7. The method according to claim 6, wherein the adjusting parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform comprises: adjusting one of register information or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform.
  • 8. The method according to claim 1, wherein the obtaining first code comprises: receiving the first code input by a user through a graphical user interface.
  • 9. A computing apparatus, wherein the computing apparatus comprises a processor and a non-transitory memory, and the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps:obtaining first code, wherein the first code is code that is obtained through compilation and that is applicable to a source platform;relocating a plurality of addresses of variables associated with functions in the first code, to obtain a plurality of logical addresses of the variables; andperforming decompilation based on the logical addresses of the variables and the first code, to obtain second code applicable to a target platform.
  • 10. The computing apparatus of claim 9, wherein the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps: performing decompilation based on the plurality of logical addresses of the variables and the first code, to obtain a compiler intermediate representation related to the target platform, wherein the compiler intermediate representation comprises definitions of the variables, and the definitions of the variables associate symbols of the variables with the plurality of logical addresses; andgenerating the second code applicable to the target platform based on the compiler intermediate representation.
  • 11. The computing apparatus of claim 10, wherein the compiler intermediate representation comprises a first variable and a second variable, the first variable has a first logical address, the second variable has a second logical address, and the first logical address is different from the second logical address.
  • 12. The computing apparatus of claim 9, wherein the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps: obtaining a relocation table from the first code, wherein the relocation table stores the plurality of logical addresses of the variables; andrelocating, based on the relocation table, the addresses of the variables associated with the functions in the first code.
  • 13. The computing apparatus of claim 12, wherein the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps: determining relocation types based on types of the variables associated with the functions in the first code; andrelocating, based on the relocation table and the relocation types, the addresses of the variables associated with the functions in the first code.
  • 14. The computing apparatus of claim 12, wherein the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps: adjusting parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform.
  • 15. The computing apparatus of claim 14, wherein the adjusting parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform and the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps: adjusting one of register information or stack information of the functions in the first code based on the difference between the function calling rules of the source platform and the target platform.
  • 16. The computing apparatus of claim 9, wherein the adjusting parameters of the functions in the first code based on a difference between function calling rules of the source platform and the target platform and the processor is configured to execute instructions stored in the memory, to enable the computing apparatus to perform the following steps: receiving the first code input by a user through a graphical user interface.
  • 17. A non-volatility computer-readable storage medium comprising instructions which, when executed by a computer, cause the computer to carry out steps: obtaining first code, wherein the first code is code that is obtained through compilation and that is applicable to a source platform;relocating a plurality of addresses of variables associated with functions in the first code, to obtain a plurality of logical addresses of the variables; andperforming decompilation based on the plurality of logical addresses of the variables and the first code, to obtain second code applicable to a target platform.
  • 18. The non-volatility computer-readable storage medium of claim 17, when executed by a computer, cause the computer to carry out steps: performing decompilation based on the plurality of logical addresses of the variables and the first code, to obtain a compiler intermediate representation related to the target platform, wherein the compiler intermediate representation comprises definitions of the variables, and the definitions of the variables associate symbols of the variables with the plurality of logical addresses; andgenerating the second code applicable to the target platform based on the compiler intermediate representation.
  • 19. The non-volatility computer-readable storage medium of claim 18, wherein the compiler intermediate representation comprises a first variable and a second variable, the first variable has a first logical address, the second variable has a second logical address, and the first logical address is different from the second logical address.
  • 20. The non-volatility computer-readable storage medium of claim 18, when executed by a computer, cause the computer to carry out steps: obtaining a relocation table from the first code, wherein the relocation table stores the logical addresses of the variables; andrelocating, based on the relocation table, the addresses of the variables associated with the functions in the first code.
Priority Claims (1)
Number Date Country Kind
202011063134.X Sep 2020 CN national
CROSS-REFERENCE TO RELATED APPLICATIONS

This application is a continuation of International Application No. PCT/CN2021/117889, filed on Sep. 13, 2021, which claims priority to Chinese Patent Application No. 202011063134.X, filed on Sep. 30, 2020. The disclosures of the aforementioned applications are hereby incorporated by reference in their entireties.

Continuations (1)
Number Date Country
Parent PCT/CN2021/117889 Sep 2021 US
Child 18192533 US