Inside Vista SP1 File Copy Improvements

Inside Vista SP1 File Copy Improvements

Windows Vista SP1 includes a number of enhancements over the original Vista release in the areas of application compatibility, device support, power management, security and reliability. You can see a detailed list of the changes in the Notable Changes in Windows Vista Service Pack 1 whitepaper that you can download here. One of the improvements highlighted in the document is the increased performance of file copying for multiple scenarios, including local copies on the same disk, copying files from remote non-Windows Vista systems, and copying files between SP1 systems. How were these gains achieved? The answer is a complex one and lies in the changes to the file copy engine between Windows XP and Vista and further changes in SP1. Everyone copies files, so I thought it would be worth taking a break from the “Case of…” posts and dive deep into the evolution of the copy engine to show how SP1 improves its performance.

 

Copying a file seems like a relatively straightforward operation: open the source file, create the destination, and then read from the source and write to the destination. In reality, however, the performance of copying files is measured along the dimensions of accurate progress indication, CPU usage, memory usage, and throughput. In general, optimizing one area causes degradation in others. Further, there is semantic information not available to copy engines that could help them make better tradeoffs. For example, if they knew that you weren’t planning on accessing the target of the copy operation they could avoid caching the file’s data in memory, but if it knew that the file was going to be immediately consumed by another application, or in the case of a file server, client systems sharing the files, it would aggressively cache the data on the destination system.

 

File Copy in Previous Versions of Windows

In light of all the tradeoffs and imperfect information available to it, the Windows file copy engine tries to handle all scenarios well. Prior to Windows Vista, it took the straightforward approach of opening both the source and destination files in cached mode and marching sequentially through the source file reading 64KB (60KB for network copies because of an SMB1.0 protocol limit on individual read sizes) at a time and writing out the data to the destination as it went. When a file is accessed with cached I/O, as opposed to memory-mapped I/O or I/O with the no-buffering flag, the data read or written is stored in memory, at least until the Memory Manager decides that the memory should be repurposed for other uses, including caching the data of other files.

 

The copy engine relied on the Windows Cache Manager to perform asynchronous read-ahead, which essentially reads the source file in the background while Explorer is busy writing data to a different disk or a remote system. It also relied on the Cache Manager’s write-behind mechanism to flush the copied file’s contents from memory back to disk in a timely manner so that the memory could be quickly repurposed if necessary, and so that data loss is minimized in the face of a disk or system failure. You can see the algorithm at work in this Process Monitor trace of a 256KB file being copied on Windows XP from one directory to another with filters applied to focus on the data reads and writes:

 

 

Explorer’s first read operation at event 0 of data that’s not present in memory causes the Cache Manager to perform a non-cached I/O, which is an I/O that reads or writes data directly to the disk without caching it in memory, to fetch the data from disk at event 1, as seen in the stack trace for event 1:

 

 

In the stack trace, Explorer’s call to ReadFile is at frame 22 in its BaseCopyStream function and the Cache Manager invokes the non-cached read indirectly by touching the memory mapping of the file and causing a page fault at frame 8.

 

Because Explorer opens the file with the sequential-access hint (not visible in trace), the Cache Manager’s read-ahead thread, running in the System process, starts to aggressively read the file on behalf of Explorer at events 2 and 3. You can see the read-ahead functions in the stack for event 2:

 

 

You may have noticed that the read-ahead reads are initially out of order with respect to the original non-cached read caused by the first Explorer read, which can cause disk head seeks and slow performance, but Explorer stops causing non-cached I/Os when it catches up with the data already read by the Cache Manager and its reads are satisfied from memory.  The Cache Manager generally stays 128KB ahead of Explorer during file copies.

 

At event 4 in the trace, Explorer issues the first write and then you see a sequence of interleaved reads and writes. At the end of the trace the Cache Manager’s write-behind thread, also running in the System process, flushes the target file’s data from memory to disk with non-cached writes.

 

Vista Improvements to File Copy

During Windows Vista development, the product team revisited the copy engine to improve it for several key scenarios. One of the biggest problems with the engine’s implementation is that for copies involving lots of data, the Cache Manager write-behind thread on the target system often can’t keep up with the rate at which data is written and cached in memory. That causes the data to fill up memory, possibly forcing other useful code and data out, and eventually, the target’s system’s memory to become a tunnel through which all the copied data flows at a rate limited by the disk.  

 

Another problem they noted was that when copying from a remote system, the file’s contents are cached twice on the local system: once as the source file is read and a second time as the target file is written. Besides causing memory pressure on the client system for files that likely won’t be accessed again, involving the Cache Manager introduces the CPU overhead that it must perform to manage its file mappings of the source and destination files.

 

A limitation of the relatively small and interleaved file operations is that the SMB file system driver, the driver that implements the Windows remote file sharing protocol, doesn’t have opportunities to pipeline data across high-bandwidth, high-latency networks like WLANs. Every time the local system waits for the remote system to receive data, the data flowing across the network drains and the copy pays the latency cost as the two systems wait for the each other’s acknowledgement and next block of data.

 

After studying various alternatives, the team decided to implement a copy engine that tended to issue large asynchronous non-cached I/Os, addressing all the problems they had identified. With non-cached I/Os, copied file data doesn’t consume memory on the local system, hence preserving memory’s existing contents. Asynchronous large file I/Os allow for the pipelining of data across high-latency network connections, and CPU usage is decreased because the Cache Manager doesn’t have to manage its memory mappings and inefficiencies of the original Vista Cache Manager for handling large I/Os contributed to the decision to use non-cached I/Os. They couldn’t make I/Os arbitrarily large, however, because the copy engine needs to read data before writing it, and performing reads and writes concurrently is desirable, especially for copies to different disks or systems. Large I/Os also pose challenges for providing accurate time estimates to the user because there are fewer points to measure progress and update the estimate. The team did note a significant downside of non-cached I/Os, though: during a copy of many small files the disk head constantly moves around the disk, first to a source file, then to destination, back to another source, and so on.

 

After much analysis, benchmarking and tuning, the team implemented an algorithm that uses cached I/O for files smaller than 256KB in size. For files larger than 256KB, the engine relies on an internal matrix to determine the number and size of non-cached I/Os it will have in flight at once. The number ranges from 2 for files smaller than 2MB to 8 for files larger than 8MB. The size of the I/O is the file size for files smaller than 1MB, 1MB for files up to 2MB, and 2MB for anything larger.

 

To copy a file 16MB file, for example, the engine issues eight 2MB asynchronous non-cached reads of the source file, waits for the I/Os to complete, issues eight 2MB asynchronous non-cached writes of the destination, waits again for the writes to complete, and then repeats the cycle. You can see that pattern in this Process Monitor trace of a 16MB file copy from a local system to a remote one:

 

 

While this algorithm is an improvement over the previous one in many ways, it does have some drawbacks. One that occurs sporadically on network file copies is out-of-order write operations, one of which is visible in this trace of the receive side of a copy:

 

 

Note how the write operation offsets jump from 327,680 to 458,752, skipping the block at offset 393,216. That skip causes a disk head seek and forces NTFS to issue an unnecessary write operation to the skipped region to zero that part of the file, which is why there are two writes to offset 393,216. You can see NTFS calling the Cache Manager’s CcZeroData function to zero the skipped block in the stack trace for the highlighted event:

 

 

A bigger problem with using non-cached I/O is that performance can suffer in publishing scenarios. If you copy a group of files to a file share that represents the contents of a Web site for example, the Web server must read the files from disk when it first accesses them. This obviously applies to servers, but most copy operations are publishing scenarios even on client systems, because the appearance of new files causes desktop search indexing, triggers antivirus and antispyware scans, and queues Explorer to generate thumbnails for display on the parent directory’s folder icon.

 

Perhaps the biggest drawback of the algorithm, and the one that has caused many Vista users to complain, is that for copies involving a large group of files between 256KB and tens of MB in size, the perceived performance of the copy can be significantly worse than on Windows XP. That’s because the previous algorithm’s use of cached file I/O lets Explorer finish writing destination files to memory and dismiss the copy dialog long before the Cache Manager’s write-behind thread has actually committed the data to disk; with Vista’s non-cached implementation, Explorer is forced to wait for each write operation to complete before issuing more, and ultimately for all copied data to be on disk before indicating a copy’s completion. In Vista, Explorer also waits 12 seconds before making an estimate of the copy’s duration and the estimation algorithm is sensitive to fluctuations in the copy speed, both of which exacerbate user frustration with slower copies.

 

SP1 Improvements

During Vista SP1’s development, the product team decided to revisit the copy engine to explore ways to improve both the real and perceived performance of copy operations for the cases that suffered in the new implementation. The biggest change they made was to go back to using cached file I/O again for all file copies, both local and remote, with one exception that I’ll describe shortly. With caching, perceived copy time and the publishing scenario both improve. However, several significant changes in both the file copy algorithm and the platform were required to address the shortcomings of cached I/O I’ve already noted.

 

The one case where the SP1 file copy engine doesn't use caching is for remote file copies, where it prevents the double-caching problem by leveraging support in the Windows client-side remote file system driver, Rdbss.sys. It does so by issuing a command to the driver that tells it not to cache a remote file on the local system as it is being read or written. You can see the command being issued by Explorer in the following Process Monitor capture:

 

 

Another enhancement for remote copies is the pipelined I/Os issued by the SMB2 file system driver, srv2.sys, which is new to Windows Vista and Windows Server 2008. Instead of issuing 60KB I/Os across the network like the original SMB implementation, SMB2 issues pipelined 64KB I/Os so that when it receives a large I/O from an application, it will issue multiple 64KB I/Os concurrently, allowing for the data to stream to or from the remote system with fewer latency stalls.

 

The copy engine also issues four initial I/Os of sizes ranging from 128KB to 1MB, depending on the size of the file being copied, which triggers the Cache Manager read-ahead thread to issue large I/Os. The platform change made in SP1 to the Cache Manager has it perform larger I/O for both read-ahead and write-behind. The larger I/Os are only possible because of work done in the original Vista I/O system to support I/Os larger than 64KB, which was the limit in previous versions of Windows. Larger I/Os also improve performance on local copies because there are fewer disk accesses and disk seeks, and it enables the Cache Manager write-behind thread to better keep up with the rate at which memory fills with copied file data. That reduces, though not necessarily eliminates, memory pressure that causes active memory contents to be discarded during a copy. Finally, for remote copies the large I/Os let the SMB2 driver use pipelining. The Cache Manager issues read I/Os that are twice the size of the I/O issued by the application, up to a maximum of 2MB on Vista and 16MB on Server 2008, and write I/Os of up to 1MB in size on Vista and up to 32MB on Server 2008.

 

This trace excerpt of a 16MB file copy from one SP1 system to another shows 1MB I/Os issued by Explorer and a 2MB Cache Manager read-ahead, which is distinguished by its non-cached I/O flag:

 

 

Unfortunately, the SP1 changes, while delivering consistently better performance than previous versions of Windows, can be slower than the original Vista release in a couple of specific cases. The first is when copying to or from a Server 2003 system over a slow network. The original Vista copy engine would deliver a high-speed copy, but, because of the out-of-order I/O problem I mentioned earlier, trigger pathologic behavior in the Server 2003 Cache Manager that could cause all of the server’s memory to be filled with copied file data. The SP1 copy engine changes avoid that, but because the engine issues 32KB I/Os instead of 60KB I/Os, the throughput it achieves on high-latency connections can approach half of what the original Vista release achieved.

 

The other case where SP1 might not perform as well as original Vista is for large file copies on the same volume. Since SP1 issues smaller I/Os, primarily to allow the rest of the system to have better access to the disk and hence better responsiveness during a copy, the number of disk head seeks between reads from the source and writes to the destination files can be higher, especially on disks that don’t avoid seeks with efficient internal queuing algorithms.

 

One final SP1 change worth mentioning is that Explorer makes copy duration estimates much sooner than the original Vista release and the estimation algorithm is more accurate.

 

Summary

File copying is not as easy as it might first appear, but the product team took feedback they got from Vista customers very seriously and spent hundreds of hours evaluating different approaches and tuning the final implementation to restore most copy scenarios to at least the performance of previous versions of Windows and drastically improve some key scenarios. The changes apply both to Explorer copies as well as to ones initiated by applications using the CopyFileEx API and you’ll see the biggest improvements over older versions of Windows when copying files on high-latency, high-bandwidth networks where the large I/Os, SMB2’s I/O pipelining, and Vista’s TCP/IP stack receive-window auto-tuning can literally deliver what would be a ten minute copy on Windows XP or Server 2003 in one minute. Pretty cool.

Leave a Comment
  • Please add 2 and 2 and type the answer here:
  • Post
  • Well, from a pure technical viewpoint, all the explanations are just fine.

    However, from a users viewpoint, the copy/move behaviour of Vista is just plain not acceptable. You setup a operation to backup a bunch of data and the systems stops (yes completely stops !) a number of times for about 30 seconds ?. I thought Vista is considred a multitasking system.

    In my opinion, its just design without the user in mind......

    Peter

  • Over a year later, I still believe the original Vista copy method was better. Since installing SP1 on my computers I've had just about every copy operation where I'm familiar with the completion time slow down.

  • "During Windows Vista development, the product team revisited the copy engine to improve it for several key scenarios."

    They should've left it alone - file copy/move in XP is way faster than Vista

  • Hi Mark,

    Referring to the file copy under XP described in the first part of your article above( ref: first process monitor screenshot), I have tried to interpret the sequence of events:

    event 0: IRP_MJ_READ; maps the source file into the cache, tries to read bytes 0-65,535

    event 1: IRP_MJ_READ; reads bytes 0-65,535 faulting-in from source file

    event 2: IRP_MJ_READ; read-ahead bytes 131,072-196,607 into the cache

    event 3: IRP_MJ_READ; read-ahead bytes 196,608-262,143 into the cache

    event 4: IRP_MJ_WRITE; maps the destination file into the cache and writes to dest file bytes 0-65,535

    event 5: FASTIO_READ; tries to read from the cache in fast I/O mode bytes 65,536-131,071

    event 6: IRP_MJ_READ; reads bytes 65,536-131,071 faulting-in from source file (fast I/O was unsuccessful)

    event 15: FASTIO_WRITE; writes in fast I/O mode to the cached dest. file bytes 65,536-131,071

    event 16: FASTIO_READ; reads from the cached source file in fast I/O mode bytes 131,072-196,607

    event 17:  FASTIO_WRITE; writes in fast I/O mode to the cached dest. file bytes 131,072-196,607

    event 18:FASTIO_READ; reads from the cached source file in fast I/O mode bytes 196,608-262,143

    event 19: FASTIO_WRITE; writes in fast I/O mode to the cached dest. file bytes 196,608-262,143

    event 22: FASTIO_READ; reads from the cached source file in fast I/O mode; end_of_file detected

    events 811,1175,1213,1233: IRP_MJ_WRITE; writes behind  and cache flushes for bytes 0-262,143

    Is this interpretation correct?

  • Now, a small question: since "at a file's first I/O (read or write)operation the cache manager maps a *256-KB* view of the file that contains the requested data into a free slot in the system cache address space"(quote from Windows Internals 4th edition page 660) [AFAIU, using mapped file I/O], why didn't XP use these cached views of 256KB (even for read-ahead) as its transfer units for file copy instead of 64KB? It seems to me that the data is there, in the cached views, so that the copying process could be faster..

    (a correction to my previous comment: "maps the source file into the cache" is part of event 1 rather than event 0.)

  • Sorry to comment again, but it seems to me that the following sentence in the paragraph "File Copy in Previous Versions of Windows" may require some precision:

    "Explorer’s first read operation at event 0 of data that’s not present in memory causes the Cache Manager to perform a non-cached I/O, which is an I/O that reads or writes data directly to the disk *without caching it in memory*, to fetch the data from disk at event 1, as seen in the stack trace for event 1.In the stack trace, Explorer’s call to ReadFile is at frame 22 in its BaseCopyStream function and the Cache Manager invokes the non-cached read indirectly by touching the memory mapping of the file and causing a page fault at frame 8."

    Looking at the CcCopyRead function, AFAIU, the missing page in physical memory is read from disk and copied *both* to the cache buffer and the user buffer (so it's indeed read directly from the disk into the user buffer but it also ends up in the system cache).

    This is different from the case of a read-ahead, where the function CcPerformReadAhead, for a missing page in physical memory, will only copy the data from the disk to the cache buffer and not to the user buffer.

  • It so goes that my Vista (client) would crash the entire XP (server) TCPIP stack when accessing these 3GB+ files.  It would happen randomly but consistently enough to mine any attempts at completing one task or another.  

    Having tried all possible tricks on both sides, including:

    (XP/server side)

    - driver updates,

    - increasing the Lanman IRPStackSize,

    - fine tuning the NdisWanMTU,

    - patching TCPIS.SYS to allow 50 concurrent half connects,

    (Vista/client side)

    - driver updates

    - disabling TCP autotune (see above comment from Tim Bolton from Dec. 2 2008)

    - fine tuning NdisWanMTU

    - tweaking the NetworkThrottlingIndex,

    I had to concede and consider I may be facing a network driver issue.  

    All until I had the great idea of installing Lighttpd on the XP/server side, and using Firefox as download manager on the Vista/client side.  

    Suddenly, not only did my transferred files become restartable, but no more crashes/errors/disconnects occurred.  At the same time transfer rates improved from ~2200 kbps (Vista file copy between crashes) to ~2.1 MBps (please note capital B).  

    I have to conclude now that all the "fine tuning" of Vista file copy Microsoft folks have been fussing over turned up c**p (sorry Mark R., I really respect *your* work).  It could very much be that file copy in both XP *and* Vista is irrevocably broken which is equally fine by me.  

    A decade of "fine tuning" by a well endowed R&D team couldn't beat work done by volunteer enthusiasts, both with repect to stability and performance.  

    Cheers

    Z.

  • As someone said over a year ago, a file copy engine shouldn't be any more complex than open file, read, write, [read, write, [...]], close file. The system should handle the workload. That's what it's there for. Linux manages this, Mac OSX manages this, heck, DOS managed it.

    So either the Vista algorithm is so over-complex and can't be simplified because of the egos involved (and I don't mean Mark R. here), or the Vista copy does something additional with the file contents during the copy.

    Hopefully for Windows users this will be fixed in Windows 7.

  • When there's a difficult trade-off decision to make, the best thing to do may be to leave users the opportunity to control this.

    A visible way would be a slider that appears on the file operations dialog, when a copy or move operation will take over (say) 5 seconds.  Pull the slider towards File Operations, and more memory is allocated to caching these; pull the slider towards Running Programs, cache memory is reduced to favor other running tasks.  Effects to end with that operation (so that small copy ops don't "inherit" these settings with no UI to change them).

    A less visible "power user" approach would be similar to holding down Shift when clicking No to file operation stalls (which has the "always No" effect) or when deleting, to bypass the 'bin.  Hold Shift down when clicking Copy, Move or Paste, and more memory will be allocated to that operation to speed it up, XP style.

    Perhaps add as an enhancement to W7 SP1, or as a Power Toy if the plumbing doesn't go too deep?

  • If predicted theory isn't working, after studying exactly what happens during file operations, then perhaps there are other overheads at work.  

    The obvious one is resident av scanning, but there may be background processes that are triggered whenever the contents of a folder are changed; thumbnailers, indexers, SR/Previous Versions, etc.

    Are those optimised to back off for long enough, so that they are not triggered into rebuilding their stuff every time a new file is added to a destination, or deleted from a source?

  • First of all thanks to Mark. It's interesting and usefull.

    Other,

    I see a lot of undocumented DeviceIoControl(s) inside Vista trace copy file operation:

    1. Device:0x14, Functions:260-262, Method:0

    2. FSCTL_LMR_QUERY_DEBUG_INFO

    3. IOCTL_LMR_DISABLE_LOCAL_BUFFERING (named above).

    The single found info about is IOCTL_COPYCHUNK in MSDN, which is defined very pure.

    I'd ask Mark, if possible, to describe how it works...

  • Just to let you know Mark this post helped me. Thanks.

  • This is PATHETIC. File copying is one of the most basic operations of an OS and MS can't get it right. Have they heard of KISS principle? KISS + let user have a choice.

    I'm trying to copy 13 pictures from a vista home premium PC to a vista home premium laptop over a wired network. It freezes during "calculating". Canceling causes the entire laptop become nonresponsive. Can't even shutdown gracefully. All the fancy sh*t sounds great but it's a typical programming pitfall. "It's not as simple as it sounds" only because you're doing it wrong!

    Seriously, does the MS team doing all these fancy research on copying algorithm realize how very pathetic this is?

    The milisecond another OS has decent UI and device support, I'm dumping MS. Been waiting for this day for 20 years now, unfortunately.

  • I don't understand why vista SP2 will not save the file settings whhen an attribute is changed by administrative user, also it appears that an Administrator is not really an administrator, Windows Vista for me and my business has been the worst ever Operating System, countless headaches, non fuctional,un-user frendly, and totally useless.We and 18 other businesses in Australia are getting together to ensure Microsoft pays for the damage that has been done.A class action with mountains of evidence this will get media,you may be able to get away with this deception in other countries,but in Australia Businesses together tageting the course, rectification and results of what microsoft has done will have a massive adverse effect on the Microsoft smug attitude.

  • Does anybody know what Microsoft applications are using IOCTL_COPYCHUNK?

Page 13 of 13 (195 items) «910111213