Platform

Developers

Resources

Pricing

SEV report: Feature flag resolution errors due to Chrome bug

Mon Aug 28 2023

Late Friday, August 25, some of our customers started reporting that our Feature Flags were not resolving correctly with the JS SDK on the latest versions of Chrome (as of this time). They hadn’t changed anything but were noticing they’d occasionally get the default value rather than the value that they expected.

What’s perplexing is that we hadn’t pushed any code change that would affect client-side evaluation. This was an interesting bug that seemingly surfaced out of nowhere.

We identified that the bug happens when we do a simple map lookup of the feature flag name. We typically hash (sha256) our feature flag names for privacy purposes, and for some reason, the flag was just missing from the map. The hash was occasionally—not all the time—incorrect.

From there, it was easy to identify that this happens in a library that we use, js-sha256, which is a popular library that we’ve used for a while. Interestingly, the library had not changed in over 6 years.

This was a head-scratcher.

Luckily, someone had posted an issue that pointed to this bug showing up on certain Google Chrome versions. The bug garnered more visibility as more people updated to the buggy versions of Chrome.

The repro code (posted to GitHub by @slisson) was super simple and sure enough, we were able to repro it ourselves.

code screenshot of @slisson on GitHub reproducing a Google Chrome bug

Turns out it’s a bug in certain recent versions of Chrome where the JITter incorrectly optimized away a specific variable.

The mitigation (thanks to GitHub user NicolasFlamel1) is to use that specific variable in a closure to fool the JITter into keeping it around. You can see the fix in its entirety here.

On Sunday, August 27, we patched our JS SDK so our customers and their end-users will automatically pick up the version that mitigates the Chrome bug.


Try Statsig Today

Get started for free. Add your whole team!
We use cookies to ensure you get the best experience on our website.
Privacy Policy