FILE SYSTEM QUIESCING DRIVER

A technique is disclosed for quiescing a file system. The technique includes holding a change request, flushing the file system, and releasing the change request. Flushing may include sending a flush request, determining whether a cache associated with the file system is flushed, and in the event that the cache is not flushed, resending the flush request and determining whether the cache is flushed.

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
CROSS REFERENCE TO OTHER APPLICATIONS

This application is a continuation of co-pending U.S. patent application Ser. No. 10/873,744, entitled FILE SYSTEM QUIESCING DRIVER filed Jun. 21, 2004 which is incorporated herein by reference for all purposes, which claims priority to U.S. Provisional Patent Application No. 60/542,440 entitled FILE SYSTEM QUIESCING DRIVER filed Feb. 5, 2004 which is incorporated herein by reference for all purposes.

FIELD OF THE INVENTION

The present invention relates generally to computer environments. More specifically, a file system quiescing driver is disclosed.

BACKGROUND OF THE INVENTION

Data protection plays an increasingly important role in today's computer systems. Data protection often involves creating regular backups of data. Data may be backed up in various ways, such as by creating a snapshot of a disk. A snapshot, as used herein, includes a backup copy of data as it appeared at a certain point in time. Typically, a portion of disk data is stored in a separate memory associated with the disk, such as in a cache. Before creating a snapshot of a disk, data held in that associated memory is typically flushed to the disk so that a consistent snapshot of the disk can be taken. It would be desirable to have a method for making a disk consistent for file system backup or for other purposes.

BRIEF DESCRIPTION OF THE DRAWINGS

Various embodiments of the invention are disclosed in the following detailed description and the accompanying drawings.

FIG. 1 is a block diagram illustrating one embodiment of a layered device I/O architecture that includes a file system quiescing driver.

FIG. 2 is a block diagram illustrating one embodiment of a layered device I/O architecture that includes a sync driver.

FIG. 3 is a flowchart illustrating a technique used in one embodiment to back up a file system.

DETAILED DESCRIPTION

The invention can be implemented in numerous ways, including as a process, an apparatus, a system, a composition of matter, a computer readable medium such as a computer readable storage medium or a computer network wherein program instructions are sent over optical or electronic communication links. In this specification, these implementations, or any other form that the invention may take, may be referred to as techniques. In general, the order of the steps of disclosed processes may be altered within the scope of the invention.

A detailed description of one or more embodiments of the invention is provided below along with accompanying figures that illustrate the principles of the invention. The invention is described in connection with such embodiments, but the invention is not limited to any embodiment. The scope of the invention is limited only by the claims and the invention encompasses numerous alternatives, modifications and equivalents. Numerous specific details are set forth in the following description in order to provide a thorough understanding of the invention. These details are provided for the purpose of example and the invention may be practiced according to the claims without some or all of these specific details. For the purpose of clarity, technical material that is known in the technical fields related to the invention has not been described in detail so that the invention is not unnecessarily obscured.

FIG. 1 is a block diagram illustrating one embodiment of a layered device I/O architecture that includes a file system quiescing driver. In this example, the layered device I/O architecture includes multiple layers of drivers 102-110 that drive a device 112. I/O requests are received by file system quiescing driver 102 and processed before passing data associated with the request to layer 1. As used herein, quiescing includes any process that makes a disk consistent, such as flushing file system data in a cache to a disk. Quiescing is sometimes referred to as synchronizing (“syncing”) file system data in a cache with the disk. At layer 1, processing is performed before passing data to layer 2, and so forth. At each layer, processing may be performed before passing data to the next layer. Processing may include determining that the request should be passed directly to the next layer. For example, some requests may require little or no processing by layer 2, so data may be passed through layer 2 with little or no processing. The processing of the request may be complete without needing to pass through all the layers. For example, the request may be finished being processed at layer 3. Each layer isolates functions from the layer above it, allowing the upper layers to be abstracted from lower layers. Examples of layered device architectures include Windows operating systems, such as Windows NT, Windows 2000, and Windows 2003.

FIG. 2 is a block diagram illustrating one embodiment of a layered device I/O architecture that includes a sync driver. In this example, I/O manager 202 manages input and output requests. I/O manager 202 passes requests directed to disk drive 214 to sync driver 204. Sync driver 204 is an example of a file system quiescing driver. Sync driver 204 can intercept user mode requests targeted at drive 214 to prevent data from being written to the cache. User mode requests include requests from applications, such as Word or Excel. In some embodiments, sync driver 204 is written according to a Windows specification for filter drivers. File system driver 208 and disk driver 212 are other drivers that may be associated with the driver stack. Other drivers 206 and 210 may include any appropriate drivers, such as a virus driver and a volume manager driver. The driver stack may include any appropriate number of layers.

FIG. 3 is a flowchart illustrating a technique used in one embodiment to back up a file system. In some embodiments, a file system quiescing driver, such as sync driver 204, handles parts of this process. In this example, a backup request is received (304). For example, a user requests a backup of a hard drive, such as the “E:\” drive. A sync request is received (306). For example, a file system quiescing driver may create a device object for the “E:\” drive, and attach the device object to the top of the drive's stack. All requests for that drive are then routed through the device object in this example. User mode change requests are held (308) to avoid generating new data in the cache while the cache is flushed. A change request, as used herein, includes any request that can alter the disk image of the file system. Examples of change requests include a write request, requests to create a new file, open a new file for writing, rename, move, or delete a file, and change directory permissions associated with a file. The cache is flushed (320-326). Flushing includes, for example, transferring cache data associated with the file system to the disk so that the disk image of the file system is consistent. In some embodiments, flushing the file system is performed as follows.

A flush request is sent (320). For example, the flush request may be sent to the file system driver. For example, in a Windows system, “FlushFileBuffers(Drive)” may be called in one embodiment. The request does not necessarily result in the cache flushing completely to the disk. The request may result in the scheduling of the data in the cache to be flushed. It is then determined whether the flush is complete (324). For example, in a Windows system, “CcIsThereDirtyData(currentIrpStack->FileObject->Vpb)” may be called to determine whether the cache is flushed. If the flush is not complete, there is a wait (324) and the flush request is again made (320). In some embodiments, the flush request is made 50 times every 20 seconds until it is determined that the flush is complete. When the flush is complete, the cache is flushed and the file system image on the disk is consistent.

In some embodiments, kernel mode change requests are held by the file system quiescing driver. Kernel mode requests include requests from the microprocessor, operating system, or other highly privileged systems. A snapshot of the disk is created (325). When the snapshot is complete, user mode and kernel mode change requests that were held are released (328). The file system quiescing driver is optionally inactivated (332). For example, a device object for the drive may be removed. The backup is then started (332). For example, the backup may be created based on the snapshot.

Although the foregoing embodiments have been described in some detail for purposes of clarity of understanding, the invention is not limited to the details provided. There are many alternative ways of implementing the invention. The disclosed embodiments are illustrative and not restrictive.

Claims

1. A method of quiescing a file system, comprising:

sending a flush request;
determining with a processor whether a cache associated with the file system is flushed;
in an event that the cache is not flushed, resending the flush request; and
in an event that the cache is flushed, taking a snapshot associated with the file system.

2. The method of claim 1, further comprising:

intercepting a change request to prevent the change request from reaching the file system prior to sending the flush request.

3. The method of claim 2, further comprising:

releasing the change request after taking the snapshot.

4. The method of claim 2, wherein the change request is a write request.

5. The method of claim 2, wherein the change request is a user mode change request.

6. The method of claim 5, wherein the user mode change request is requested by an application.

7. The method of claim 2, wherein a file system quiescing driver holds the change request.

8. The method of claim 2, wherein a filter driver holds the change request.

9. The method of claim 2, wherein a sync driver holds the change request.

10. The method of claim 1, wherein the file system interacts with a layered device I/O architecture.

11. The method of claim 1, wherein an object associated with a file system quiescing driver is inserted in a device stack.

12. The method of claim 1, wherein an object associated with a file system quiescing driver is inserted at the top of a device stack.

13. The method of claim 1, further including backing up the file system.

14. The method of claim 1, further including creating a sync driver device object.

15. The method of claim 1, further including holding a kernel mode change request.

16. The method of claim 1, wherein the file system is a WINDOWS based file system.

17. The method of claim 1, wherein the file system is a WINDOWS NT, WINDOWS 2000, or WINDOWS 2003 file system.

18. A system for quiescing a file system, comprising:

a processor; and
a memory coupled with the processor, wherein the memory is configured to provide the processor with instructions which when executed cause the processor to: send a flush request; determine whether a cache associated with the file system is flushed; in an event that the cache is not flushed, resend the flush request; and in an event that the cache is flushed, take a snapshot associated with the file system.

19. The system of claim 18, wherein the memory is further configured to provide the processor with instructions which when executed cause the processor to:

intercept a change request to prevent the change request from reaching the file system prior to sending the flush request.

20. The system of claim 19, wherein the memory is further configured to provide the processor with instructions which when executed cause the processor to:

release the change request after taking the snapshot.

21. The system of claim 19, wherein the change request is a write request.

22. The system of claim 19, wherein the change request is a user mode change request.

23. The system of claim 22, wherein the user mode change request is requested by an application.

24. The system of claim 19, wherein a file system quiescing driver holds the change request.

25. The system of claim 19, wherein a filter driver holds the change request.

26. The system of claim 19, wherein a sync driver holds the change request.

27. The system of claim 19, wherein the file system interacts with a layered device I/O architecture.

28. The system of claim 18, wherein an object associated with a file system quiescing driver is inserted in a device stack.

29. The system of claim 18, wherein an object associated with a file system quiescing driver is inserted at the top of a device stack.

30. The system of claim 18, wherein the memory is further configured to provide the processor with instructions which when executed cause the processor to back up the file system.

31. The system of claim 18, wherein the memory is further configured to provide the processor with instructions which when executed cause the processor to create a sync driver device object.

32. The system of claim 18, wherein the memory is further configured to provide the processor with instructions which when executed cause the processor to hold a kernel mode change request.

33. The system of claim 18, wherein the file system is a WINDOWS based file system.

34. The system of claim 18, wherein the file system is a WINDOWS NT, WINDOWS 2000, or WINDOWS 2003 file system.

35. A computer program product for quiescing a file system, the computer program product being embodied in a tangible computer readable storage medium and comprising computer instructions for:

sending a flush request;
determining with a processor whether a cache associated with the file system is flushed;
in an event that the cache is not flushed, resending the flush request; and
in an event that the cache is flushed, taking a snapshot associated with the file system.
Patent History
Publication number: 20130173550
Type: Application
Filed: Dec 14, 2012
Publication Date: Jul 4, 2013
Inventor: EMC Corporation (Hopkinton, MA)
Application Number: 13/715,772
Classifications
Current U.S. Class: Snapshot Replication (707/639)
International Classification: G06F 17/30 (20060101);