WO2017016139A1 - System recovery method and apparatus - Google Patents

System recovery method and apparatus Download PDF

Info

Publication number
WO2017016139A1
WO2017016139A1 PCT/CN2015/097345 CN2015097345W WO2017016139A1 WO 2017016139 A1 WO2017016139 A1 WO 2017016139A1 CN 2015097345 W CN2015097345 W CN 2015097345W WO 2017016139 A1 WO2017016139 A1 WO 2017016139A1
Authority
WO
WIPO (PCT)
Prior art keywords
file
modification request
modification
predetermined directory
request
Prior art date
Application number
PCT/CN2015/097345
Other languages
French (fr)
Chinese (zh)
Inventor
易鸿斌
Original Assignee
安一恒通(北京)科技有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 安一恒通(北京)科技有限公司 filed Critical 安一恒通(北京)科技有限公司
Publication of WO2017016139A1 publication Critical patent/WO2017016139A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/07Responding to the occurrence of a fault, e.g. fault tolerance
    • G06F11/14Error detection or correction of the data by redundancy in operation

Definitions

  • the present invention relates to the field of computers, and in particular, to a system restoration method and apparatus.
  • the existing system restoration method usually copies all the backed up system files to the system disk and restores the system at the level of the sector.
  • the restore method cannot distinguish between files and directories, there is no backup in the system file.
  • the software or other data stored in the disk is completely lost, causing the user to reinstall the corresponding software after the system is restored, and since the software is reinstalled, the historical information recorded by the software is also disappeared, which affects the use of the software. It brings a lot of inconvenience to the user.
  • One of the technical problems solved by the present invention is that it is impossible to distinguish files and directories during system restoration, so that software that does not need to be restored and other data stored in the disk are all lost.
  • a system restoration method including:
  • the modification request is a modification of a file of a predetermined directory
  • the modification request is sent to a disk drive where the file of the predetermined directory is located for restoration.
  • a system restoration apparatus comprising:
  • FIG. 1 shows a flow chart of a system restoration method in accordance with an embodiment of the present invention.
  • FIG. 2 shows a flow chart of step S120 in the system restoration method according to an embodiment of the present invention.
  • FIG. 3 shows a block diagram of a system restoration apparatus in accordance with an embodiment of the present invention.
  • FIG. 4 is a flow chart showing a method for system restoration by taking a restoration system to protect a C disk from being modified as an example according to an embodiment of the invention.
  • Computer device also referred to as “computer” in the context, is meant an intelligent electronic device that can perform predetermined processing, such as numerical calculations and/or logical calculations, by running a predetermined program or instruction, which can include a processor and Memory, executed by the processor in the memory
  • predetermined processing such as numerical calculations and/or logical calculations
  • the pre-stored surviving instructions are used to execute a predetermined process, or are executed by hardware such as an ASIC, an FPGA, a DSP, or the like, or a combination of the two.
  • Computer devices include, but are not limited to, servers, personal computers, notebook computers, tablets, smart phones, and the like.
  • the computer device includes a user device and a network device.
  • the user equipment includes, but is not limited to, a computer, a smart phone, a PDA, etc.
  • the network device includes but is not limited to a single network server, a server group composed of multiple network servers, or a cloud computing based computer Or a cloud composed of a network server, wherein cloud computing is a type of distributed computing, a super virtual computer composed of a group of loosely coupled computers.
  • the computer device can be operated separately to implement the present invention, and can also access the network and implement the present invention by interacting with other computer devices in the network.
  • the network in which the computer device is located includes, but is not limited to, the Internet, a wide area network, a metropolitan area network, a local area network, a VPN network, and the like.
  • the user equipment, the network equipment, the network, and the like are merely examples, and other existing or future possible computer equipment or networks, such as those applicable to the present invention, are also included in the scope of the present invention. It is included here by reference.
  • FIG. 1 is a flow chart of a system restoration method in accordance with one embodiment of the present invention.
  • the system restoration method described in this embodiment includes:
  • modification request is a modification to a file of a predetermined directory
  • the modification request may be an operation request for reading, writing, or restoring the file, which is generally an I/O (input and output) manager sent by the user to the terminal through the application, and the I/O manager receives the modification request.
  • I/O input and output
  • step S120 if the modification request is a modification to a file of a predetermined directory, setting a flag in the modification request; and sending the marked modification request to the pre- The disk drive where the files in the directory are located is restored.
  • the following steps may be specifically included:
  • S1201 Determine path information corresponding to the modified file in the modification request.
  • S1202 Determine, according to the path information, whether the modification request is a modification to a file in a predetermined directory, and if yes, perform steps S1203-S1204; if not, execute step S1205.
  • the modification request is directly sent to a disk drive where the file of the predetermined directory is located for restoration.
  • S1205 Send the modification request to the restore system disk filter driver for restoration.
  • step S120 it is identified whether the modification request is a modification of the file of the predetermined directory, generally at the file system level, first, the file full path name of the current modification request operation is obtained through the file object and the parent directory handle, and then, the target file name For comparison, if it is the same as the target file name, it is determined that the modification request is a modification of the file or the predetermined file of the predetermined directory, and at the same time, the location of the file corresponding to the same target file name of the I/O request packet of the current file operation is recorded.
  • the file system filter driver may be employed to identify whether the modification request is a modification to the file of the predetermined directory, wherein the file system filter driver may include a conventional file system filtering framework or a new MiniFiter (micro filter) framework to identify whether the modification request is for a predetermined request.
  • the file system filter driver may include a conventional file system filtering framework or a new MiniFiter (micro filter) framework to identify whether the modification request is for a predetermined request.
  • the modification of the file of the directory can also adopt the dispatch process driven by the HOOK (hook) file system, etc., wherein the dispatch process can be implemented by the dispatch function, and for each file system driver, the system will create a corresponding function object, in this
  • the location of the MajorFunction (main function) of the drive object is stored with a dispatch function, which is exemplified by NTFS (New Technology File System) shown in Table 1 below, wherein the dispatch function corresponding to MajorFunction[00]0xf7361e01 is NtfFsdCreate;
  • the dispatch function corresponding to MajorFunction[03]0xf733ef2f is NtfFsdRead; the dispatch function corresponding to MajorFunction[04]0xf733db4b is NtfFsdWrite.
  • FIG. 3 is a block diagram of a system restoration apparatus in accordance with one embodiment of the present invention.
  • the system restoration apparatus of this embodiment includes:
  • Means for receiving a modification request (hereinafter referred to as "receiving device") 110;
  • the modification request is a modification of a file of a predetermined directory
  • the disk drive to which the modification request is sent to the file of the predetermined directory is restored (hereinafter referred to as “identification and restoration device”) 120.
  • the modification request may be an operation request for reading, writing or restoring a file, which is generally an I/O (input and output) manager sent by the user to the terminal through the application, and the I/O manager receives the modification. request.
  • I/O input and output
  • the modification request is a modification of a file of a predetermined directory
  • a flag is set in the modification request
  • the disk drive in which the modified modification request is sent to the file in the predetermined directory is located Restore.
  • the following devices may be included:
  • the specific file identification device 1201 is configured to determine path information corresponding to the modified file in the modification request, and determine, according to the path information, whether the modification request is a modification to a file of a predetermined directory, and if yes, in the modification request Set the tag. For example, if the file in the c: ⁇ mydoc directory is modified when the request is modified, a mark is set to a position of the I/O request packet representing the modification operation, and then the modified request after the mark is sent to the lower layer driver. Sent to the disk operation pre-processing device 1202, wherein the next drive may be a file system, or other filter driver above the file system level. Specifically, the mark may be set in a reserved field in the I/O request, or may be set. In other fields, as long as the identification of the I/O request packet is not affected.
  • the disk operation pre-processing device 1202 is configured to detect whether a flag is set in the modification request, that is, whether a certain location of the I/O request packet is set with a flag, and if there is a flag, send the modification request directly to the
  • the disk drive device 1203 where the c: ⁇ mydoc directory is located is restored, instead of restoring the system disk filter drive device 1204, so that the file modification operation for the c: ⁇ mydoc directory does not pass through the restore system and is not restored by the restore system. There is no corresponding mapping relationship. Therefore, when the system is restored by the embodiment of the present invention, there is no writeback operation for c: ⁇ mydoc.
  • the disk drive device 1203 directly modifies the files in the predetermined directory, and the restore system disk filter driver 1204 needs to establish a mapping relationship between the files in the predetermined directory and the backup files, and writes the backup files back to the disk drive device 1203.
  • the identification and restoration device 120 identifies whether the modification request is a modification of the file of the predetermined directory, generally at the file system level, first, obtaining the full path name of the file of the modification request operation by the file object and the parent directory handle, and then, with the target If the file name is the same as the target file name, it is determined that the modification request is a modification of the file or the predetermined file of the predetermined directory, and at the same time, the same target file name corresponding to the I/O request packet of the current file operation is recorded. position.
  • the file system filter driver may be employed to identify whether the modification request is a modification to the file of the predetermined directory, wherein the file system filter driver may include a conventional file system filtering framework or a new MiniFiter (micro filter) framework to identify whether the modification request is for a predetermined request.
  • the modification of the file of the directory may also adopt a dispatch process driven by a HOOK (hook) file system, etc., wherein the dispatch process can be implemented by a dispatch function.
  • the method for restoring the C disk generally backs up the modification operation of a certain sector of the C disk to a certain sector position of the D disk, and records the correspondence between the two locations.
  • the data content of the D disk sector is written back to the sector corresponding to the C disk to implement system restoration.
  • the embodiment of the present invention takes the restoration system to protect the C disk from being modified (but allows c: ⁇ mydoc to be modified) as an example.
  • the system restoration method includes:
  • the I/O manager receives the modification request sent by the user through an application programming interface (Application Programming Interface).
  • Application Programming Interface Application Programming Interface
  • S420 Determine whether the modification request is a modification to a file in a predetermined directory. If yes, add a flag to the modification request, and then send the file through the file system dispatch function; if not, send the file system dispatch function.
  • the present invention can be implemented in software and/or a combination of software and hardware.
  • the various devices of the present invention can be implemented using an application specific integrated circuit (ASIC) or any other similar hardware device.
  • the software program of the present invention may be executed by a processor to implement the steps or functions described above.
  • the software program (including related data structures) of the present invention can be stored in a computer readable recording medium such as a RAM memory, a magnetic or optical drive or a floppy disk and the like.
  • some of the steps or functions of the present invention may be implemented in hardware, for example, as a circuit that cooperates with a processor to perform various steps or functions.

Abstract

A system recovery method and apparatus. The method comprises: receiving a modification request (S110); and sending, if the modification request requests modification on a file of a preset directory, the modification request to a disk drive in which the file of the preset directory is located, to perform recovery (S120). Through recognition of a file of a preset directory, a modification request aimed at the file of the preset directory is directly sent to a disk drive corresponding to the file of the preset directory, so that a write back operation is prevented, and it is ensured that other files that do not need recovery are retained in the disk.

Description

一种系统还原方法与装置System restoration method and device
相关申请的交叉引用Cross-reference to related applications
本申请请求于2015年7月28日提交的申请号为201510451492.0的中国专利申请的优先权,该中国专利申请的内容以引用方式被完整包含于此。The present application claims the priority of the Chinese Patent Application No. 201510451492.0 filed on Jul. 28, 2015, the content of which is hereby incorporated by reference.
技术领域Technical field
本发明涉及计算机领域,尤其涉及一种系统还原方法与装置。The present invention relates to the field of computers, and in particular, to a system restoration method and apparatus.
背景技术Background technique
目前现有的系统还原方法通常是将备份的系统文件全部拷贝到系统磁盘中,以扇区为级别进行系统的还原,但由于该还原方法无法区分文件和目录,使得没有备份在系统文件中的软件或者在该磁盘中存储的其它数据全部丢失,导致用户在系统还原后需重新安装相应的软件,且由于重新安装软件,会使得软件记录的历史信息一并消失,影响了软件的使用,故给用户带来了很大的不便。At present, the existing system restoration method usually copies all the backed up system files to the system disk and restores the system at the level of the sector. However, since the restore method cannot distinguish between files and directories, there is no backup in the system file. The software or other data stored in the disk is completely lost, causing the user to reinstall the corresponding software after the system is restored, and since the software is reinstalled, the historical information recorded by the software is also disappeared, which affects the use of the software. It brings a lot of inconvenience to the user.
发明内容Summary of the invention
本发明解决的技术问题之一是系统还原时无法区分文件和目录,使得不需要被还原的软件及在该磁盘中存储的其它数据全部丢失的情况。One of the technical problems solved by the present invention is that it is impossible to distinguish files and directories during system restoration, so that software that does not need to be restored and other data stored in the disk are all lost.
根据本发明的一个方面,提供了一种系统还原方法,包括:According to an aspect of the present invention, a system restoration method is provided, including:
接收修改请求;Receiving a modification request;
若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原。If the modification request is a modification of a file of a predetermined directory, the modification request is sent to a disk drive where the file of the predetermined directory is located for restoration.
根据本发明的另一方面,提供了一种系统还原装置,包括:According to another aspect of the present invention, a system restoration apparatus is provided, comprising:
用于接收修改请求的装置;Means for receiving a modification request;
用于若所述修改请求是对预定目录的文件的修改,则将所述修改 请求发送给所述预定目录的文件所在的磁盘驱动进行还原的装置。For modifying if the modification request is a modification to a file of a predetermined directory A device that requests a disk drive to which the file of the predetermined directory is located to be restored.
由于本实施例通过对预定目录的文件的识别,将针对预定目录的文件的修改请求直接发给给其所述预定目录的文件对应的磁盘驱动,避免了回写操作,同时,保证了磁盘中其他无需还原的文件的留存。Since the modification request of the file of the predetermined directory is directly sent to the disk drive corresponding to the file of the predetermined directory by the identification of the file of the predetermined directory, the write-back operation is avoided, and at the same time, the disk is secured. Retention of other files that do not need to be restored.
本领域普通技术人员将了解,虽然下面的详细说明将参考图示实施例、附图进行,但本发明并不仅限于这些实施例。而是,本发明的范围是广泛的,且意在仅通过后附的权利要求限定本发明的范围。Those skilled in the art will appreciate that although the following detailed description is made with reference to the illustrated embodiments and drawings, the invention is not limited to these embodiments. Rather, the scope of the invention is intended to be limited the scope of the invention
附图说明DRAWINGS
通过阅读参照以下附图所作的对非限制性实施例所作的详细描述,本发明的其它特征、目的和优点将会变得更明显:Other features, objects, and advantages of the present invention will become more apparent from the Detailed Description of Description
图1示出了根据本发明一实施例的系统还原方法的流程图。FIG. 1 shows a flow chart of a system restoration method in accordance with an embodiment of the present invention.
图2示出了根据本发明一实施例的系统还原方法中步骤S120的流程图。FIG. 2 shows a flow chart of step S120 in the system restoration method according to an embodiment of the present invention.
图3示出了根据本发明一实施例的系统还原装置的框图。FIG. 3 shows a block diagram of a system restoration apparatus in accordance with an embodiment of the present invention.
图4示出了根据本发明一实施例的以还原系统保护C盘不被修改为例,系统还原方法的流程图。FIG. 4 is a flow chart showing a method for system restoration by taking a restoration system to protect a C disk from being modified as an example according to an embodiment of the invention.
附图中相同或相似的附图标记代表相同或相似的部件。The same or similar reference numerals in the drawings denote the same or similar components.
具体实施方式detailed description
在更加详细地讨论示例性实施例之前应当提到的是,一些示例性实施例被描述成作为流程图描绘的处理或方法。虽然流程图将各项操作描述成顺序的处理,但是其中的许多操作可以被并行地、并发地或者同时实施。此外,各项操作的顺序可以被重新安排。当其操作完成时所述处理可以被终止,但是还可以具有未包括在附图中的附加步骤。所述处理可以对应于方法、函数、规程、子例程、子程序等等。Before discussing the exemplary embodiments in more detail, it should be noted that some exemplary embodiments are described as a process or method depicted as a flowchart. Although the flowcharts describe various operations as a sequential process, many of the operations can be implemented in parallel, concurrently or concurrently. In addition, the order of operations can be rearranged. The process may be terminated when its operation is completed, but may also have additional steps not included in the figures. The processing may correspond to methods, functions, procedures, subroutines, subroutines, and the like.
在上下文中所称“计算机设备”,也称为“电脑”,是指可以通过运行预定程序或指令来执行数值计算和/或逻辑计算等预定处理过程的智能电子设备,其可以包括处理器与存储器,由处理器执行在存储器 中预存的存续指令来执行预定处理过程,或是由ASIC、FPGA、DSP等硬件执行预定处理过程,或是由上述二者组合来实现。计算机设备包括但不限于服务器、个人电脑、笔记本电脑、平板电脑、智能手机等。By "computer device", also referred to as "computer" in the context, is meant an intelligent electronic device that can perform predetermined processing, such as numerical calculations and/or logical calculations, by running a predetermined program or instruction, which can include a processor and Memory, executed by the processor in the memory The pre-stored surviving instructions are used to execute a predetermined process, or are executed by hardware such as an ASIC, an FPGA, a DSP, or the like, or a combination of the two. Computer devices include, but are not limited to, servers, personal computers, notebook computers, tablets, smart phones, and the like.
所述计算机设备包括用户设备与网络设备。其中,所述用户设备包括但不限于电脑、智能手机、PDA等;所述网络设备包括但不限于单个网络服务器、多个网络服务器组成的服务器组或基于云计算(Cloud Computing)的由大量计算机或网络服务器构成的云,其中,云计算是分布式计算的一种,由一群松散耦合的计算机集组成的一个超级虚拟计算机。其中,所述计算机设备可单独运行来实现本发明,也可接入网络并通过与网络中的其他计算机设备的交互操作来实现本发明。其中,所述计算机设备所处的网络包括但不限于互联网、广域网、城域网、局域网、VPN网络等。The computer device includes a user device and a network device. The user equipment includes, but is not limited to, a computer, a smart phone, a PDA, etc.; the network device includes but is not limited to a single network server, a server group composed of multiple network servers, or a cloud computing based computer Or a cloud composed of a network server, wherein cloud computing is a type of distributed computing, a super virtual computer composed of a group of loosely coupled computers. Wherein, the computer device can be operated separately to implement the present invention, and can also access the network and implement the present invention by interacting with other computer devices in the network. The network in which the computer device is located includes, but is not limited to, the Internet, a wide area network, a metropolitan area network, a local area network, a VPN network, and the like.
需要说明的是,所述用户设备、网络设备和网络等仅为举例,其他现有的或今后可能出现的计算机设备或网络如可适用于本发明,也应包含在本发明保护范围以内,并以引用方式包含于此。It should be noted that the user equipment, the network equipment, the network, and the like are merely examples, and other existing or future possible computer equipment or networks, such as those applicable to the present invention, are also included in the scope of the present invention. It is included here by reference.
后面所讨论的方法(其中一些通过流程图示出)可以通过硬件、软件、固件、中间件、微代码、硬件描述语言或者其任意组合来实施。当用软件、固件、中间件或微代码来实施时,用以实施必要任务的程序代码或代码段可以被存储在机器或计算机可读介质(比如存储介质)中。(一个或多个)处理器可以实施必要的任务。The methods discussed below, some of which are illustrated by flowcharts, can be implemented in hardware, software, firmware, middleware, microcode, hardware description languages, or any combination thereof. When implemented in software, firmware, middleware or microcode, the program code or code segments to carry out the necessary tasks can be stored in a machine or computer readable medium, such as a storage medium. The processor(s) can perform the necessary tasks.
这里所公开的具体结构和功能细节仅仅是代表性的,并且是用于描述本发明的示例性实施例的目的。但是本发明可以通过许多替换形式来具体实现,并且不应当被解释成仅仅受限于这里所阐述的实施例。The specific structural and functional details disclosed are merely representative and are for the purpose of describing exemplary embodiments of the invention. The present invention may, however, be embodied in many alternative forms and should not be construed as being limited only to the embodiments set forth herein.
应当理解的是,虽然在这里可能使用了术语“第一”、“第二”等等来描述各个单元,但是这些单元不应当受这些术语限制。使用这些术语仅仅是为了将一个单元与另一个单元进行区分。举例来说,在不背离示例性实施例的范围的情况下,第一单元可以被称为第二单元,并且类似地第二单元可以被称为第一单元。这里所使用的术语“和/或”包 括其中一个或更多所列出的相关联项目的任意和所有组合。It should be understood that although the terms "first," "second," etc. may be used herein to describe the various elements, these elements should not be limited by these terms. These terms are used only to distinguish one unit from another. For example, a first unit could be termed a second unit, and similarly a second unit could be termed a first unit, without departing from the scope of the exemplary embodiments. The term "and/or" package as used herein Including any and all combinations of one or more of the associated items listed.
应当理解的是,当一个单元被称为“连接”或“耦合”到另一单元时,其可以直接连接或耦合到所述另一单元,或者可以存在中间单元。与此相对,当一个单元被称为“直接连接”或“直接耦合”到另一单元时,则不存在中间单元。应当按照类似的方式来解释被用于描述单元之间的关系的其他词语(例如“处于...之间”相比于“直接处于...之间”,“与...邻近”相比于“与...直接邻近”等等)。It will be understood that when a unit is referred to as "connected" or "coupled" to another unit, it can be directly connected or coupled to the other unit, or an intermediate unit can be present. In contrast, when a unit is referred to as being "directly connected" or "directly coupled" to another unit, there is no intermediate unit. Other words used to describe the relationship between the units should be interpreted in a similar manner (eg "between" and "directly between" and "adjacent to" Than "directly adjacent to", etc.).
这里所使用的术语仅仅是为了描述具体实施例而不意图限制示例性实施例。除非上下文明确地另有所指,否则这里所使用的单数形式“一个”、“一项”还意图包括复数。还应当理解的是,这里所使用的术语“包括”和/或“包含”规定所陈述的特征、整数、步骤、操作、单元和/或组件的存在,而不排除存在或添加一个或更多其他特征、整数、步骤、操作、单元、组件和/或其组合。The terminology used herein is for the purpose of describing the particular embodiments, The singular forms "a", "an", It is also to be understood that the terms "comprising" and """ Other features, integers, steps, operations, units, components, and/or combinations thereof.
还应当提到的是,在一些替换实现方式中,所提到的功能/动作可以按照不同于附图中标示的顺序发生。举例来说,取决于所涉及的功能/动作,相继示出的两幅图实际上可以基本上同时执行或者有时可以按照相反的顺序来执行。It should also be noted that, in some alternative implementations, the functions/acts noted may occur in a different order than that illustrated in the drawings. For example, two figures shown in succession may in fact be executed substantially concurrently or sometimes in the reverse order, depending on the function/acts involved.
下面结合附图对本发明作进一步详细描述。The invention is further described in detail below with reference to the accompanying drawings.
图1是根据本发明一个实施例的系统还原方法的流程图。1 is a flow chart of a system restoration method in accordance with one embodiment of the present invention.
结合图1中所示,本实施例所述的系统还原方法,包括:As shown in FIG. 1, the system restoration method described in this embodiment includes:
S110、接收修改请求;S110. Receive a modification request.
S120、若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原。S120. If the modification request is a modification to a file of a predetermined directory, send the modification request to a disk drive where the file of the predetermined directory is located for restoration.
下面对各步骤做进一步详细介绍。The steps are further described in detail below.
步骤S110中,修改请求可以是对文件的读写或还原等操作请求,其一般是用户通过应用程序发送给终端的I/O(输入输出)管理器,由I/O管理器来接收修改请求。In step S110, the modification request may be an operation request for reading, writing, or restoring the file, which is generally an I/O (input and output) manager sent by the user to the terminal through the application, and the I/O manager receives the modification request. .
步骤S120中,若所述修改请求是对预定目录的文件的修改,则在所述修改请求中设置标记;将标记后的所述修改请求发送给所述预 定目录的文件所在的磁盘驱动进行还原。如图2所示,具体可以包括以下步骤:In step S120, if the modification request is a modification to a file of a predetermined directory, setting a flag in the modification request; and sending the marked modification request to the pre- The disk drive where the files in the directory are located is restored. As shown in FIG. 2, the following steps may be specifically included:
S1201、确定所述修改请求中修改文件对应的路径信息。S1201: Determine path information corresponding to the modified file in the modification request.
S1202、根据所述路径信息判断所述修改请求是否是对预定目录的文件的修改,若是,则执行步骤S1203-S1204;若否,则执行步骤S1205。S1202: Determine, according to the path information, whether the modification request is a modification to a file in a predetermined directory, and if yes, perform steps S1203-S1204; if not, execute step S1205.
S1203、在所述修改请求中设置标记。S1203. Set a flag in the modification request.
S1204、当检测到所述修改请求中设置有标记时,将所述修改请求直接发送给所述预定目录的文件所在的磁盘驱动进行还原。S1204. When it is detected that the marking is set in the modification request, the modification request is directly sent to a disk drive where the file of the predetermined directory is located for restoration.
S1205、将所述修改请求发送给所述还原系统磁盘过滤驱动进行还原。S1205: Send the modification request to the restore system disk filter driver for restoration.
步骤S120中,识别修改请求是否是对预定目录的文件的修改,一般在文件系统级别,首先,通过文件对象和父目录句柄获得本次修改请求操作的文件完整路径名称,然后,与目标文件名比较,若与目标文件名相同,则确定修改请求是对预定目录的文件或预定文件进行的修改,同时,记录本次文件操作的I/O请求包的相同的目标文件名对应文件的位置。识别修改请求是否是对预定目录的文件的修改可以采用文件系统过滤驱动,其中文件系统过滤驱动可以包括传统的文件系统过滤框架或新型的MiniFiter(微过滤器)框架,识别修改请求是否是对预定目录的文件的修改还可以采用HOOK(钩子)文件系统驱动的派遣历程等,其中,派遣历程可以通过派遣函数来实现,对于每个文件系统驱动,系统都将创建一个对应的函数对象,在这个驱动对象的MajorFunction(主要函数)的位置保存有派遣函数,以下面表1所示的NTFS(New Technology File System,新型文件系统)为例,其中,MajorFunction[00]0xf7361e01对应的派遣函数是NtfFsdCreate;MajorFunction[03]0xf733ef2f对应的派遣函数是NtfFsdRead;MajorFunction[04]0xf733db4b对应的派遣函数是NtfFsdWrite。 In step S120, it is identified whether the modification request is a modification of the file of the predetermined directory, generally at the file system level, first, the file full path name of the current modification request operation is obtained through the file object and the parent directory handle, and then, the target file name For comparison, if it is the same as the target file name, it is determined that the modification request is a modification of the file or the predetermined file of the predetermined directory, and at the same time, the location of the file corresponding to the same target file name of the I/O request packet of the current file operation is recorded. The file system filter driver may be employed to identify whether the modification request is a modification to the file of the predetermined directory, wherein the file system filter driver may include a conventional file system filtering framework or a new MiniFiter (micro filter) framework to identify whether the modification request is for a predetermined request. The modification of the file of the directory can also adopt the dispatch process driven by the HOOK (hook) file system, etc., wherein the dispatch process can be implemented by the dispatch function, and for each file system driver, the system will create a corresponding function object, in this The location of the MajorFunction (main function) of the drive object is stored with a dispatch function, which is exemplified by NTFS (New Technology File System) shown in Table 1 below, wherein the dispatch function corresponding to MajorFunction[00]0xf7361e01 is NtfFsdCreate; The dispatch function corresponding to MajorFunction[03]0xf733ef2f is NtfFsdRead; the dispatch function corresponding to MajorFunction[04]0xf733db4b is NtfFsdWrite.
表1:NTFS(New Technology File System,新型文件系统)Table 1: NTFS (New Technology File System)
Figure PCTCN2015097345-appb-000001
Figure PCTCN2015097345-appb-000001
图3是根据本发明一个实施例的系统还原装置的框图。3 is a block diagram of a system restoration apparatus in accordance with one embodiment of the present invention.
结合图3中所示,本实施例所述的系统还原装置,包括: As shown in FIG. 3, the system restoration apparatus of this embodiment includes:
用于接收修改请求的装置(以下简称“接收装置”)110;Means for receiving a modification request (hereinafter referred to as "receiving device") 110;
用于若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原(以下简称““识别还原装置”)120。And if the modification request is a modification of a file of a predetermined directory, the disk drive to which the modification request is sent to the file of the predetermined directory is restored (hereinafter referred to as “identification and restoration device”) 120.
下面对各装置做进一步详细介绍。The device will be further described in detail below.
接收装置110中,修改请求可以是对文件的读写或还原等操作请求,其一般是用户通过应用程序发送给终端的I/O(输入输出)管理器,由I/O管理器来接收修改请求。In the receiving device 110, the modification request may be an operation request for reading, writing or restoring a file, which is generally an I/O (input and output) manager sent by the user to the terminal through the application, and the I/O manager receives the modification. request.
识别还原装置120中,若所述修改请求是对预定目录的文件的修改,则在所述修改请求中设置标记;将标记后的所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原。如图3所示,具体可以包括以下装置:In the identification and restoration device 120, if the modification request is a modification of a file of a predetermined directory, a flag is set in the modification request; and the disk drive in which the modified modification request is sent to the file in the predetermined directory is located Restore. As shown in FIG. 3, specifically, the following devices may be included:
特定文件识别装置1201,用于确定所述修改请求中修改文件对应的路径信息,根据所述路径信息判断所述修改请求是否是对预定目录的文件的修改,若是,则在所述修改请求中设置标记。例如:如果修改请求时修改c:\mydoc目录下的文件,则将代表本次修改操作的I/O请求包的某个位置设置一个标记,然后,将标记后的修改请求发送给下层驱动后发送给磁盘操作预处理装置1202,其中下次驱动可以是文件系统,也可以是文件系统级别之上的其它过滤驱动,具体地,标记可以设置在I/O请求中的保留字段,也可以设置在其它字段中,只要不影响对I/O请求包的识别即可。The specific file identification device 1201 is configured to determine path information corresponding to the modified file in the modification request, and determine, according to the path information, whether the modification request is a modification to a file of a predetermined directory, and if yes, in the modification request Set the tag. For example, if the file in the c:\mydoc directory is modified when the request is modified, a mark is set to a position of the I/O request packet representing the modification operation, and then the modified request after the mark is sent to the lower layer driver. Sent to the disk operation pre-processing device 1202, wherein the next drive may be a file system, or other filter driver above the file system level. Specifically, the mark may be set in a reserved field in the I/O request, or may be set. In other fields, as long as the identification of the I/O request packet is not affected.
磁盘操作预处理装置1202,用于检测所述修改请求中是否设置有标记,即I/O请求包的某个位置是否设置有标记,若有标记,则将所述修改请求直接发送给所述c:\mydoc目录所在的磁盘驱动装置1203进行还原,而不是还原系统磁盘过滤驱动装置1204,这样针对c:\mydoc目录下文件的修改操作,就不会经过还原系统,不会被还原系统备份,也没有相应的映射关系,故通过本发明实施例实现系统还原时,不存在针对c:\mydoc的回写操作。The disk operation pre-processing device 1202 is configured to detect whether a flag is set in the modification request, that is, whether a certain location of the I/O request packet is set with a flag, and if there is a flag, send the modification request directly to the The disk drive device 1203 where the c:\mydoc directory is located is restored, instead of restoring the system disk filter drive device 1204, so that the file modification operation for the c:\mydoc directory does not pass through the restore system and is not restored by the restore system. There is no corresponding mapping relationship. Therefore, when the system is restored by the embodiment of the present invention, there is no writeback operation for c:\mydoc.
还原系统磁盘过滤驱动装置1204,用于若所述修改请求不是对预 定目录的文件的修改,则将所述修改请求发送给所述还原系统磁盘过滤驱动进行还原。Recovering the system disk filter driver 1204, if the modification request is not for the pre- The modification of the file of the directory is sent to the restore system disk filter driver for restoration.
磁盘驱动装置1203是直接对预定目录下的文件进行修改,而还原系统磁盘过滤驱动装置1204需要建立预定目录下的文件与备份文件的映射关系,并将备份文件回写到磁盘驱动装置1203中。The disk drive device 1203 directly modifies the files in the predetermined directory, and the restore system disk filter driver 1204 needs to establish a mapping relationship between the files in the predetermined directory and the backup files, and writes the backup files back to the disk drive device 1203.
识别还原装置120中,识别修改请求是否是对预定目录的文件的修改,一般在文件系统级别,首先,通过文件对象和父目录句柄获得本次修改请求操作的文件完整路径名称,然后,与目标文件名比较,若与目标文件名相同,则确定修改请求是对预定目录的文件或预定文件进行的修改,同时,记录本次文件操作的I/O请求包的相同的目标文件名对应文件的位置。识别修改请求是否是对预定目录的文件的修改可以采用文件系统过滤驱动,其中文件系统过滤驱动可以包括传统的文件系统过滤框架或新型的MiniFiter(微过滤器)框架,识别修改请求是否是对预定目录的文件的修改还可以采用HOOK(钩子)文件系统驱动的派遣历程等,其中,派遣历程可以通过派遣函数来实现。The identification and restoration device 120 identifies whether the modification request is a modification of the file of the predetermined directory, generally at the file system level, first, obtaining the full path name of the file of the modification request operation by the file object and the parent directory handle, and then, with the target If the file name is the same as the target file name, it is determined that the modification request is a modification of the file or the predetermined file of the predetermined directory, and at the same time, the same target file name corresponding to the I/O request packet of the current file operation is recorded. position. The file system filter driver may be employed to identify whether the modification request is a modification to the file of the predetermined directory, wherein the file system filter driver may include a conventional file system filtering framework or a new MiniFiter (micro filter) framework to identify whether the modification request is for a predetermined request. The modification of the file of the directory may also adopt a dispatch process driven by a HOOK (hook) file system, etc., wherein the dispatch process can be implemented by a dispatch function.
现有技术对C盘的还原方法,一般是将C盘某个扇区的修改操作备份到D盘的某个扇区位置,并记录着两个位置的对应关系,当执行还原操作时,按照对应关系,将D盘扇区的数据内容回写到C盘对应的扇区中,以实现系统的还原。结合图4所示,本发明实施例以还原系统保护C盘不被修改(但允许c:\mydoc被修改)为例,系统还原的方法包括:In the prior art, the method for restoring the C disk generally backs up the modification operation of a certain sector of the C disk to a certain sector position of the D disk, and records the correspondence between the two locations. When performing the restoration operation, according to Corresponding relationship, the data content of the D disk sector is written back to the sector corresponding to the C disk to implement system restoration. As shown in FIG. 4, the embodiment of the present invention takes the restoration system to protect the C disk from being modified (but allows c:\mydoc to be modified) as an example. The system restoration method includes:
S410、I/O管理器接收用户通过文件操作API(Application Programming Interface,应用程序编程接口)发送的修改请求。S410. The I/O manager receives the modification request sent by the user through an application programming interface (Application Programming Interface).
S420、确定所述修改请求是否是对预定目录的文件的修改,若是,则在修改请求中添加标记后,通过文件系统派遣函数进行派遣;若否,则通过文件系统派遣函数进行派遣。S420. Determine whether the modification request is a modification to a file in a predetermined directory. If yes, add a flag to the modification request, and then send the file through the file system dispatch function; if not, send the file system dispatch function.
S430、检测修改请求中是否有标记,若是,则执行S440;若否,则执行S450。 S430. Detect whether there is a flag in the modification request, and if yes, execute S440; if not, execute S450.
S440、将修改请求直接发送给磁盘驱动装置1203。S440. Send the modification request directly to the disk drive device 1203.
S450、将修改请求发送给还原系统磁盘过滤驱动装置1204,还原系统磁盘过滤驱动装置1204根据已建立的映射关系将备份文件回写到磁盘驱动装置1203。S450. Send the modification request to the restoration system disk filter driver 1204. The restore system disk filter driver 1204 writes the backup file back to the disk drive device 1203 according to the established mapping relationship.
需要注意的是,本发明可在软件和/或软件与硬件的组合体中被实施,例如,本发明的各个装置可采用专用集成电路(ASIC)或任何其他类似硬件设备来实现。在一个实施例中,本发明的软件程序可以通过处理器执行以实现上文所述步骤或功能。同样地,本发明的软件程序(包括相关的数据结构)可以被存储到计算机可读记录介质中,例如,RAM存储器,磁或光驱动器或软磁盘及类似设备。另外,本发明的一些步骤或功能可采用硬件来实现,例如,作为与处理器配合从而执行各个步骤或功能的电路。It should be noted that the present invention can be implemented in software and/or a combination of software and hardware. For example, the various devices of the present invention can be implemented using an application specific integrated circuit (ASIC) or any other similar hardware device. In one embodiment, the software program of the present invention may be executed by a processor to implement the steps or functions described above. Likewise, the software program (including related data structures) of the present invention can be stored in a computer readable recording medium such as a RAM memory, a magnetic or optical drive or a floppy disk and the like. Additionally, some of the steps or functions of the present invention may be implemented in hardware, for example, as a circuit that cooperates with a processor to perform various steps or functions.
对于本领域技术人员而言,显然本发明不限于上述示范性实施例的细节,而且在不背离本发明的精神或基本特征的情况下,能够以其他的具体形式实现本发明。因此,无论从哪一点来看,均应将实施例看作是示范性的,而且是非限制性的,本发明的范围由所附权利要求而不是上述说明限定,因此旨在将落在权利要求的等同要件的含义和范围内的所有变化涵括在本发明内。不应将权利要求中的任何附图标记视为限制所涉及的权利要求。此外,显然“包括”一词不排除其他单元或步骤,单数不排除复数。系统权利要求中陈述的多个单元或装置也可以由一个单元或装置通过软件或者硬件来实现。第一,第二等词语用来表示名称,而并不表示任何特定的顺序。It is apparent to those skilled in the art that the present invention is not limited to the details of the above-described exemplary embodiments, and the present invention can be embodied in other specific forms without departing from the spirit or essential characteristics of the invention. Therefore, the present embodiments are to be considered as illustrative and not restrictive, and the scope of the invention is defined by the appended claims instead All changes in the meaning and scope of equivalent elements are included in the present invention. Any reference signs in the claims should not be construed as limiting the claim. In addition, it is to be understood that the word "comprising" does not exclude other elements or steps. A plurality of units or devices recited in the system claims can also be implemented by a unit or device by software or hardware. The first, second, etc. words are used to denote names and do not denote any particular order.
虽然前面特别示出并且描述了示例性实施例,但是本领域技术人员将会理解的是,在不背离权利要求书的精神和范围的情况下,在其形式和细节方面可以有所变化。这里所寻求的保护在所附权利要求书中做了阐述。 While the invention has been shown and described with reference to the embodiments of the embodiments of the invention The protection sought herein is set forth in the appended claims.

Claims (13)

  1. 一种系统还原方法,包括:A system restoration method includes:
    接收修改请求;Receiving a modification request;
    若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原。If the modification request is a modification of a file of a predetermined directory, the modification request is sent to a disk drive where the file of the predetermined directory is located for restoration.
  2. 根据权利要求1所述的方法,其中,所述若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原的步骤包括:The method according to claim 1, wherein if said modification request is a modification of a file of a predetermined directory, the step of transmitting the modification request to a disk drive in which the file of the predetermined directory is located for restoration comprises :
    若所述修改请求是对预定目录的文件的修改,则在所述修改请求中设置标记;If the modification request is a modification to a file of a predetermined directory, setting a flag in the modification request;
    将标记后的所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原。The disk drive after the marked modification request is sent to the file of the predetermined directory is restored.
  3. 根据权利要求2所述的方法,其中,所述若所述修改请求是对预定目录的文件的修改,则在所述修改请求中设置标记的步骤包括:The method according to claim 2, wherein said step of setting a flag in said modification request if said modification request is a modification of a file of a predetermined directory comprises:
    确定所述修改请求中修改文件对应的路径信息;Determining path information corresponding to the modified file in the modification request;
    根据所述路径信息判断所述修改请求是否是对预定目录的文件的修改,若是,则在所述修改请求中设置标记。Determining, according to the path information, whether the modification request is a modification to a file of a predetermined directory, and if so, setting a flag in the modification request.
  4. 根据权利要求2或3所述的方法,其中,所述将标记后的所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原的步骤包括:The method according to claim 2 or 3, wherein the step of transmitting the marked modification request to the disk drive of the file of the predetermined directory for restoration comprises:
    当检测到所述修改请求中设置有标记时,将所述修改请求直接发送给所述预定目录的文件所在的磁盘驱动进行还原。When it is detected that the mark is set in the modification request, the modification request is directly sent to the disk drive where the file of the predetermined directory is located for restoration.
  5. 根据权利要求1-3任一项所述的方法,还包括:The method of any of claims 1-3, further comprising:
    若所述修改请求不是对预定目录的文件的修改,则将所述修改请 求发送给所述还原系统磁盘过滤驱动进行还原。If the modification request is not a modification to a file of a predetermined directory, then the modification is requested Request to send to the restore system disk filter driver for restore.
  6. 一种系统还原装置,包括:A system restoration device includes:
    用于接收修改请求的装置;Means for receiving a modification request;
    用于若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原的装置。And means for transmitting, to the disk drive where the file of the predetermined directory is located, if the modification request is a modification of a file of a predetermined directory.
  7. 根据权利要求6所述的装置,其中,用于若所述修改请求是对预定目录的文件的修改,则将所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原的装置包括:The apparatus according to claim 6, wherein, if the modification request is a modification of a file of a predetermined directory, the means for transmitting the modification request to the disk drive in which the file of the predetermined directory is located is restored. :
    用于若所述修改请求是对预定目录的文件的修改,则在所述修改请求中设置标记的装置;Means for setting a flag in the modification request if the modification request is a modification to a file of a predetermined directory;
    用于将标记后的所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原的装置。Means for restoring the marked modification request to the disk drive in which the file of the predetermined directory is located is restored.
  8. 根据权利要求7所述的装置,其中,用于若所述修改请求是对预定目录的文件的修改,则在所述修改请求中设置标记的装置包括:The apparatus according to claim 7, wherein, if the modification request is a modification of a file of a predetermined directory, the means for setting a flag in the modification request comprises:
    用于确定所述修改请求中修改文件对应的路径信息的装置;Means for determining path information corresponding to the modified file in the modification request;
    用于根据所述路径信息判断所述修改请求是否是对预定目录的文件的修改,若是,则在所述修改请求中设置标记的装置。And means for determining, according to the path information, whether the modification request is a modification to a file of a predetermined directory, and if so, setting a flag in the modification request.
  9. 根据权利要求7或8所述的装置,其中,用于将标记后的所述修改请求发送给所述预定目录的文件所在的磁盘驱动进行还原的装置包括:The apparatus according to claim 7 or 8, wherein the means for restoring the disk drive for transmitting the marked modification request to the file of the predetermined directory comprises:
    用于当检测到所述修改请求中设置有标记时,将所述修改请求直接发送给所述预定目录的文件所在的磁盘驱动进行还原的装置。And means for transmitting, when the flag is set in the modification request, the modification request is directly sent to a disk drive in which the file of the predetermined directory is located.
  10. 根据权利要求6-8任一项所述的装置,还包括:The apparatus of any of claims 6-8, further comprising:
    用于若所述修改请求不是对预定目录的文件的修改,则将所述修 改请求发送给所述还原系统磁盘过滤驱动进行还原的装置。For modifying the file if the modification request is not a file of a predetermined directory A device that requests a restore to the restore system disk filter driver.
  11. 一种计算机可读存储介质,所述计算机可读存储介质包括计算机指令,当所述计算机指令被执行时,如权利要求1至5中任一项所述的方法被执行。A computer readable storage medium comprising computer instructions, the method of any one of claims 1 to 5 being executed when the computer instructions are executed.
  12. 一种计算机程序产品,当所述计算机程序产品被执行时,如权利要求1至5中任一项所述的方法被执行。A computer program product, the method of any one of claims 1 to 5 being executed when the computer program product is executed.
  13. 一种计算机设备,所述计算机设备包括存储器和处理器,所述存储器中存储有计算机指令,所述处理器被配置来通过执行所述计算机指令以执行如权利要求1至5中任一项所述的方法。 A computer device comprising a memory and a processor, wherein the memory stores computer instructions, the processor being configured to perform the computer instructions to perform any of claims 1 to 5 The method described.
PCT/CN2015/097345 2015-07-28 2015-12-15 System recovery method and apparatus WO2017016139A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201510451492.0 2015-07-28
CN201510451492.0A CN105095021A (en) 2015-07-28 2015-07-28 Method and device for system recovery

Publications (1)

Publication Number Publication Date
WO2017016139A1 true WO2017016139A1 (en) 2017-02-02

Family

ID=54575519

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2015/097345 WO2017016139A1 (en) 2015-07-28 2015-12-15 System recovery method and apparatus

Country Status (2)

Country Link
CN (1) CN105095021A (en)
WO (1) WO2017016139A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112486733A (en) * 2020-12-11 2021-03-12 Oppo广东移动通信有限公司 System restoring method, device, terminal and storage medium

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105095021A (en) * 2015-07-28 2015-11-25 安一恒通(北京)科技有限公司 Method and device for system recovery
CN107247641B (en) * 2017-06-19 2020-04-24 深圳市科力锐科技有限公司 Method and device for restoring operating system on line

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2007067918A2 (en) * 2005-12-06 2007-06-14 Computer Associates Think, Inc. System and method for automatically restoring hard drives on failure
CN101425029A (en) * 2007-10-30 2009-05-06 英业达股份有限公司 System file reducing method
CN102799798A (en) * 2011-05-23 2012-11-28 金宏中天(北京)科技有限公司 Method for not restoring write-ins in overall restoring condition of computer system
CN105095021A (en) * 2015-07-28 2015-11-25 安一恒通(北京)科技有限公司 Method and device for system recovery

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101178676A (en) * 2006-11-07 2008-05-14 英业达股份有限公司 Data backup method capable of modifying data revert structure and revert method
US8959280B2 (en) * 2008-06-18 2015-02-17 Super Talent Technology, Corp. Super-endurance solid-state drive with endurance translation layer (ETL) and diversion of temp files for reduced flash wear

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2007067918A2 (en) * 2005-12-06 2007-06-14 Computer Associates Think, Inc. System and method for automatically restoring hard drives on failure
CN101425029A (en) * 2007-10-30 2009-05-06 英业达股份有限公司 System file reducing method
CN102799798A (en) * 2011-05-23 2012-11-28 金宏中天(北京)科技有限公司 Method for not restoring write-ins in overall restoring condition of computer system
CN105095021A (en) * 2015-07-28 2015-11-25 安一恒通(北京)科技有限公司 Method and device for system recovery

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112486733A (en) * 2020-12-11 2021-03-12 Oppo广东移动通信有限公司 System restoring method, device, terminal and storage medium
CN112486733B (en) * 2020-12-11 2023-08-18 Oppo广东移动通信有限公司 System restoration method, device, terminal and storage medium

Also Published As

Publication number Publication date
CN105095021A (en) 2015-11-25

Similar Documents

Publication Publication Date Title
US11513926B2 (en) Systems and methods for instantiation of virtual machines from backups
US9778995B2 (en) Dataset image creation and failure cleanup
US8738883B2 (en) Snapshot creation from block lists
US7519784B2 (en) Method and apparatus for reclaiming space in memory
US11768737B2 (en) Rollback procedure for failed dataset image operation
US9195670B1 (en) Tracking write operations for incremental backups of data
WO2014190806A1 (en) Application backup and restore
US11507474B2 (en) System and method for a backup and recovery of application using containerized backups comprising application data and application dependency information
US9785641B2 (en) Reducing a backup time of a backup of data files
CN114925084B (en) Distributed transaction processing method, system, equipment and readable storage medium
US9003139B1 (en) Systems and methods for recovering virtual machines after disaster scenarios
WO2017016139A1 (en) System recovery method and apparatus
US9805038B2 (en) Efficient conflict resolution among stateless processes
US9122402B2 (en) Increasing efficiency of block-level processes using data relocation awareness
US9852029B2 (en) Managing a computing system crash
WO2016107219A1 (en) Data recovery method and apparatus
US20230342492A1 (en) Proactive data security using file access permissions
US10540214B2 (en) Method for managing control-loss processing during critical processing sections while maintaining transaction scope integrity
US20180113920A1 (en) Recursive extractor framework for forensics and electronic discovery
US10976952B2 (en) System and method for orchestrated application protection
US10146467B1 (en) Method and system for archival load balancing
US11816314B1 (en) Customizable dashboard interaction for a user interface
US20230050976A1 (en) File system aware computational storage block
US10936443B2 (en) System and method for tag based backup infrastructure
US8392373B1 (en) Systems and methods for retaining an executable environment during a data archive process

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 15899487

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 29.05.2018)

122 Ep: pct application non-entry in european phase

Ref document number: 15899487

Country of ref document: EP

Kind code of ref document: A1