Skip to content

Concurrent msstore invocations crash with an unhandled IOException on telemetrySettings.json #176

Description

Summary

Running two msstore processes at the same time can crash one of them with an unhandled IOException while it loads or saves telemetrySettings.json.

Repro

Start two msstore invocations concurrently — anything is enough, since the telemetry configuration is loaded before the command line is even parsed:

Start-Job { msstore --help }
Start-Job { msstore --help }

Observed

One process terminates with an unhandled exception and exit code -532462766 (0xE0434352):

Unhandled exception. System.IO.IOException: The process cannot access the file
'C:\Users\<user>\AppData\Local\Microsoft\MSStore.CLI\telemetrySettings.json'
because it is being used by another process.
   at Microsoft.Win32.SafeHandles.SafeFileHandle.CreateFile(String fullPath, FileMode mode, FileAccess access, FileShare share, FileOptions options)

Expected

Concurrent invocations should not crash. Telemetry configuration is incidental bookkeeping, so contention on it should at worst be ignored, not terminate the process.

Notes

Program.Main calls telemetryConfigurationManager.LoadAsync(true, …) and then CreateTelemetryClientAsync, which writes the file back when TelemetryEnabled is unset or the GUID is older than 24 hours. ConfigurationManager.LoadAsync/SaveAsync (MSStore.CLI/Services/ConfigurationManager.cs) open the file with no sharing mode, retry, or exception handling for this case, and nothing higher up catches it.

This matters most in CI, where several pipeline steps may invoke the CLI in parallel, and the failure is confusing because it is unrelated to the command being run.

Found incidentally while working on #161 / #174 — two probe invocations happened to overlap. Not caused by that change; it reproduces on main.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

bugSomething isn't working

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions