The Case of the Temporary Registry Profiles

The Case of the Temporary Registry Profiles

  • Comments 70

Microsoft Customer Support Services (CSS) is one of the biggest customers of the Sysinternals tools and they often send me interesting cases they’ve solved with them. This particular case is especially interesting because it affected a large number of users and the troubleshooting process made use of one of Process Monitor’s lesser-known features. The case opened when a customer contacted Microsoft support reporting that several of their users would occasionally get this error message when loggging on to their systems:

image

This caused Windows to create a temporary profile for the user’s logon session. A user profile consists of a directory, %UserProfile%, into which applications save user-specific configuration and data files, as well as a registry hive file stored in that directory, %UserProfile%\Ntuser.dat, that the Winlogon process loads when the user logs in. Applications store user settings in the registry hive by calling registry functions that refer to the HKEY_CURRENT_USER (HKCU) root key. The user’s loss of access to their profile made the problem critical, because whenever that happened, the user would apparently lose all their settings and access to files stored in their profile directory. In most cases, users contacted the company’s support desk, which would ask the user to try rebooting and logging in until the problem resolved itself.

As with all cases, Microsoft support began by asking about the system configuration, inventory of installed software, and about any recent changes the company had made to their systems. In this case, the fact that stood out was that all the systems on which the problem had occurred had recently been upgraded to a new version of Citrix Corporation's ICA client, a remote desktop application. Microsoft contacted Citrix support to see if they knew of any issues with the new client. They didn’t, but said they would investigate.

Unsure whether the ICA client upgrade was responsible for the profile problem, Microsoft support instructed the customer to enable profile logging, which you can do by configuring a registry key as per this Knowledge Base article: How to enable user environment debug logging in retail builds of Windows. The customer pushed a script out to their systems to make the required registry changes and shortly after got another call from a user with the profile problem. They grabbed a copy of the profile log off the system from %SystemRoot%\Debug\UserMode\Userenv.log and sent it into Microsoft. The log was inconclusive, but did provide an important clue: it indicated that the user’s profile had failed to load because of error 32, which is ERROR_SHARING_VIOLATION:

image

When a process opens a file, it specifies what kinds of sharing it allows for the file. If it is writing to the file it may allow other processes to read from the file, for example, but not to also write to the file. The sharing violation in the log file meant that another process had opened the user’s registry hive in a way that was incompatible with the way that the logon process wanted to open the file.

In the meantime, more customers around the world began contacting Microsoft and Citrix with the same issue, all had also deployed the new ICA client. Citrix support then reported that they suspected that the sharing violation might be caused by one of the ICA client’s processes, Ssonvr.exe. During installation, the ICA client registers a Network Provider DLL (Pnsson.dll) that the Windows Multiple Provider Notification Application (%SystemRoot%\System32\Mpnotify.exe) calls when the system boots. Mpnotify.exe is itself launched at logon by the Winlogon process.The Citrix notification DLL launches the Ssonvr.exe process asynchronous to the user’s logon:

image

The only problem with the theory was that Citrix developers insisted that the process did not attempt to load any user registry profile or even read any keys or values from one. Both Microsoft and Citrix were stumped.

Microsoft created a version of Winlogon and the kernel with additional diagnostic information and tried to reproduce the problem on lab systems configured identically to the client’s, but without success. The customer couldn’t even reproduce the problem with the modified Windows images, presumably because the images changed the timing of the system enough to avoid the problem. At this point a Microsoft support engineer suggested that the customer capture a trace of logon activity with Process Monitor.

There are a couple of ways to configure Process Monitor to record logon operations: one is to use Sysinternals PsExec to launch it in the session 0 so that it survives the logoff and subsequent logon and another is to use the boot logging feature to capture activity from early in the boot, including the logon. The engineer chose the latter, so he told the customer to run Process Monitor on one of the system’s that persistently exhibited the problem, select Enable Boot Logging from the Process Monitor Options menu, and reboot, repeating the steps until the problem reproduced. This procedure configures the Process Monitor driver to load early in the boot process and log activity to %SystemRoot%\Procmon.pmb. Once the user logged encountered the issue, they were to run Process Monitor again, at which point the driver would stop logging and Process Monitor would offer to convert the boot log into a standard Process Monitor log file.

After a couple of attempts the user captured a boot log file that they submitted to Microsoft. Microsoft support engineers scanned through the log and came across the sharing violation error when Winlogon tried to load the user’s registry hive:

image

It was obvious from operations immediately preceding the error that Ssonsvr.exe was the process that had the hive opened. The question was, why was Ssonsvr.exe opening the registry hive? To answer that question the engineers turned to Process Monitor’s stack trace functionality. Process Monitor captures a call stack for every operation, which represents the function call nesting responsible for the operation. By looking at a call stack you can often determine an operation’s root cause when it might not be obvious just from the process that executed it. For example, the stack shows you if a DLL loaded into the process executed the operation and, if you have symbols configured and the call originates in a Windows image or other image for which you have symbols, it will even show you the names of the responsible functions.

The stack for Ssonsvr.exe’s open of the Ntuser.dat file showed that Ssonsvr.exe wasn’t actually responsible for the operation, the Windows Logical Prefetcher was:

image

Introduced in Windows XP, the Logical Prefetcher is a kernel component that monitors the first ten seconds of a process launch, recording the directories and portions of files accessed by the process during that time to a file it stores in %SystemRoot%\Prefetch. So that multiple executables with the same name but in different directories get their own prefetch file, the Logical Prefetcher gives the file a name that’s a concatenation of the executable image name and the hash of the path in which the image is stored e.g. NOTEPAD.EXE-D8414F97.pf. You can actually see the files and directories the Logical Prefetcher saw an application reference the last time it launched by using the Sysinternals Strings utility to scan a prefetch file like this:

strings <prefetch file>

The next time the application launches, the Logical Prefetcher, executing in the context of the process’s first thread, looks for a prefetch file. If one exists, it opens each directory it lists to bring the directory’s metadata into memory if not already present. The Logical Prefetcher then maps each file listed in the prefetch file and references the portions accessed the last time the application ran so that they also get brought into memory. The Logical Prefetcher can speed up an application launch because it generates large, sequential I/Os instead of issuing small random accesses to file data as the application would typically do during startup.

The implication of the Logical Prefetcher in the profile problem only raised more questions, however. Why was it prefetching the user’s hive file in the context of Ssonsvr.exe when Ssonsvr.exe itself never accesses registry profiles? Microsoft support contacted the Logical Prefetcher’s development team for the answer. The developers first noted that the registry on Windows XP is read into memory using cached file I/O operations, which means that the Cache Manager’s read-ahead thread will proactively read portions of the hive. Since the read-ahead thread executes in the System process, and the Logical Prefetcher associates System process activity with the currently launching process, that a specific timing sequence of process launches and activity during the boot and log on could cause hive accesses to be seen by the Logical Prefetcher as being part of the Ssonsvr.exe launch. If the order was slightly different the next boot and log on, Winlogon might collide with the Logical Prefetcher, as seen in the captured boot log.

The Logical Prefetcher is supposed to execute transparently to other activity on a system, but its file references can lead to sharing violations like this on Windows XP systems (on server systems the Logical Prefetcher only prefetches boot activity, and it does so synchronously before the boot process proceeds). For that reason, on Windows Vista and Windows 7 systems, the Logical Prefetcher makes use of a file system minifilter driver, Fileinfo (%SystemRoot%\System32\Drivers\Fileinfo.sys), to watch for potential sharing violation collisions and prevent them by stalling a second open operation on a file being accessed by the Logical Prefetcher until the Logical Prefetcher closes the file.

Now that the problem was understood, Microsoft and Citrix brainstormed on workarounds customers could apply while Citrix worked on an update to the ICA Client that would prevent the sharing violation. One workaround was to disable application prefetching and another was to write a logoff script that deletes the Ssonsvr.exe prefetch files. Citrix published the workarounds in this Citrix Knowledge Base article and Microsoft in this Microsoft Knowledge Base article. The update to the ICA Client, which was made available a few days later, changed the network provider DLL to 10 seconds after Ssonsvr.exe launches before returning control to Mpnotify.exe. Because Winlogon waits for Mpnotify to exit before logging on a user, the Logical Prefetcher won’t associate Winlogon’s accesses of the user’s hive with Ssonsvr.exe’s startup.

As I said in the introduction, I find this case particularly interesting because it demonstrates a little known Process Monitor feature, boot logging, and the power of stack traces for root cause analysis, two key tools for everyone’s troubleshooting arsenal. It also shows how successful troubleshooting sometimes means coming up with a workaround when there’s no fix or you must wait until a vendor provides one. Another case successfully closed with Process Monitor! Please keep sending me screen shots and log files of the cases you solve.

Leave a Comment
  • Please add 4 and 7 and type the answer here:
  • Post
  • Maybe that's behind the 10 second all-idle delay I experience when I boot my Lenovo 3000 n100. Proactive prefetch prevention.

    tOM

  • @JM

    Thanks for the explanation. Bur sorry I still don't get it.

    I know the root cause is the ntuser.dat sharing violation, the prefetcher and Winlogon both trying to open the file in an incompatible way. But why this is happening?

    My guess is that because the way and the timing the Ssonvr.exe was launched during boot time? or any process with this timing could cause the problem? Could somebody elaborates it?

    Another qustion - why "Prefetcher associates the activities of the System process with the user process that's currently launching"? why not associates it with the cache mgr's read-ahead thread which is in the System process? because System is not an executable?

    Thanks,

  • I always use Process Monitor and Process Explorer,good!thank you!

  • What is the command to get process monitor to run as session 0 using psexec?

  • I read and appreciate every one of your "The Case of..." articles.  I'm slowly learning how to make better use of the Sysinternals tools and learning the deeper workings of Windows.  Thank you for taking the time to create/update the tools and explaining how they work in real life situations.

  • Thank you for sharing this exciting issue. I know a lot of people around me are aware of boot logging feature. But the other method of using PsExec to log the login activity is a new one. Reading that stack info is tough one because that doesn't shows any third party and one won't even dream of the prefetcher doing that.

  • Excelente!

    Mark is my hero! Thanks for sharing!

  • Great article, but noticed a small typo, "...proactively read portions of the hive proactively..."

  • Thank you for the very educational article. I didn't know about the "Enable Boot Logging" feature nor the part about showing the process stack information.

    I found that there is still one small typo in the article:

    "activity during the boot and log on could cause hive accesses to seen by the Logical Prefetcher"

    should be:

    "activity during the boot and log on could cause hive accesses to be seen by the Logical Prefetcher"

  • > The Logical Prefetcher is supposed to execute transparently to other activity on a system, but its file references can lead to sharing violations like this on Windows XP systems (on server systems the Logical Prefetcher only prefetches boot activity, and it does so synchronously before the boot process proceeds).

    So this turns out to be a file system design flaw: the fact that a process cannot read a file without affecting the remainder of the system.

  • @Robert

    It looks like you missed this important aspect of the case:

    When a process opens a file, it specifies what kinds of sharing it allows for the file. If it is writing to the file it may allow other processes to read from the file, for example, but not to also write to the file.

  • @Mark

    I think file sharing is an issue. What I am thinking of is an option to open a private copy of a file for reading, without preventing other processes from opening the original file with sharing restrictions. Effectively the copy would only need to be made when another process starts writing to the file, so the prefetching mechanism would still work.

  • @Robert

    That's my point: Windows sharing semantics do allow a process to specify that full sharing is allowed when they open a file for reading.

    The prefetcher specifies full sharing, but Winlogon doesn't, so both can't have the file open at the same time.

  • What scares me is this is an intermittent problem, with a serious usability problem ("lost" profiles) that requires a deep understanding of Windows internals to debug. How many others might have been affected by this issue but don't have Citrix's infulence and skills to be able to resolve this? How many other applications were wrongly accused of screwing up people's logins, when it was really Windows' fault?

    The Citrix KB article is "Created Sep 5, 2008". Let's assume it took some time to debug and write that article, so maybe the problem surfaced in 2007. Vista was released in 2007, and if a minifilter driver was added to address this problem, that means the problem was known much earlier than 2007. (I doubt even MS would risk adding a minifilter when Vista was in beta or RC.)

    So why wasn't this addressed earlier in XP, or at least a KB article posted about it?

    I think this is a Prefetch design flaw:

    a. the Prefetcher incorrectly associates unrelated System activity with the current process. At best it does unnecessary work the next time an app starts, and at worst it caused this very visible problem.

    b. the Prefetcher is unable to pre-fetch without interfering with other processes. The prefetcher is supposed to be transparent, like the Cache Manager, so why is it using the same API that other apps use? If the CM can read-ahead without interference, why can't the Prefetcher use the same mechanism?

    I applaud your efforts and am glad that you're posting so *everybody* learns from this. But I often wonder why a couple of (former) outsiders are the ones solving the obscure Windows problems.

  • @Mark

    >The prefetcher specifies full sharing, but Winlogon doesn't, so both can't have the file open at the same time.

    This is exactly the problem with the windows file sharing model: In an ideal world it should be possible for the prefethcer to open a file for reading in a way that never interferes with other processes. Today this is impossible because winlogon opens the file in a way that disallows any file sharing.

    Compare this with how SQL server works:

    Assume transaction A takes an exclusive lock on a record, transaction B is then blocked from even reading the same record. This is very similar to the situation with the file system.

    But in SQL server transaction B can specify the option NOLOCK wich indicates that no locks are taken and no locks are honored. This means that transaction B must be prepared to handle inconsistent data, but at least there is no risk that transaction A can be affected by B's reading.

    So, the problem with the windows file sharing model is that it is impossible for the logical prefetcher to specify something equivalent to NOLOCK when it opens the file.

    Adding the special minidriver to Vista and Windows 7 sounds like a weird hack to me. Why could you not extend the windows file sharing model to include a NOLOCK option instead ?

Page 2 of 5 (70 items) 12345