Add Nearby Fast Pair and discovered item artifacts - #1310
Merged
Conversation
Two artifacts from the Play services LevelDB stores nothing read before: the Fast Pair records for Bluetooth accessories, with the accessory's address, model, the name shown for it and its manufacturer, and the Nearby discovery cache, with the address seen, the signal strength and the times an item was first and last observed. Values are protobuf whose field numbers are Chromium's StoredDiscoveryItem. The mirrored Android storage views of a store are collapsed before it is opened, so a record is reported once rather than once per view. The Fast Pair table leads with the address because most records carry no timestamp. sample_data measured on 23 Android corpora. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two artifacts from Play services LevelDB stores that nothing read today.
Values are protobuf and the field numbers are Chromium's StoredDiscoveryItem, from ash/quick_pair/proto/fastpair_data.proto: mac_address 4, device_name 6, title 7, description 8, last and first observation 10 and 11, state 17, rssi 22.
The mirrored Android storage views of one store are collapsed before it is opened, which took the counts on three images from 45, 15 and 78 rows down to 15, 5 and 26; single-view images are unchanged. Most Fast Pair records carry no observation timestamps, so that table leads with the address rather than a time and the notes say so. LevelDB keeps superseded copies of a key, and a Superseded column flags every copy but the newest. Measured on 23 Android corpora.
🤖 Generated with Claude Code