Closed Bug 1526328 Opened 5 years ago Closed 5 years ago

Disable all Telemetry Recording in FUZZING builds

Categories

(Toolkit :: Telemetry, enhancement, P1)

All
Linux
enhancement

Tracking

()

RESOLVED FIXED
mozilla67
Tracking Status
firefox67 --- fixed

People

(Reporter: decoder, Assigned: decoder)

Details

Attachments

(1 file)

Similar to bug 1207696, we have reasons to disable Telemetry in fuzzing builds. In particular, this code is even active when running single gtest-like targets with libFuzzer and causes a lot of intermittent coverage noise when running (any code running in a non-deterministic fashion in the background hurts coverage-guided fuzzing).

I will make a patch to disable any Telemetry recording in FUZZING_INTERFACE builds for now. We do have our own build-time switches for fuzzing, so this won't affect normal builds at all.

Alternatively, we could also disable it for all FUZZING builds, but that would mean that we don't test/exercise this code anymore in full browser fuzzing. The advantage would be less non-deterministic action going on in the background, the disadvantage would be missing potential bugs in the Telemetry code.

Jesse, what do you think?

Flags: needinfo?(jschwartzentruber)

I just realized that FUZZING_INTERFACES will also be defined in fuzzing builds for full-browser fuzzing, so we can't use that to disable Telemetry just for command line fuzzing.

Essentially we have two options:

  1. Disable the Telemetry code at build-time for all fuzzing

or

  1. Use a runtime check (e.g. getenv("FUZZER") != null) to detect that we are in a command line fuzzing setup that uses the fuzzing interface.

To be clear, we're talking about telemetry collection only, since we disable non-local network access while browser fuzzing.

I'd rather see it disabled for browser too. Any bugs we find in telemetry while fuzzing will likely be coincidental, and could just as easily be found while running the test suite.

Flags: needinfo?(jschwartzentruber)
Summary: Disable all Telemetry Recording in FUZZING_INTERFACE builds → Disable all Telemetry Recording in FUZZING builds
Pushed by choller@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/442a1725c992
Disable Telemetry recording in FUZZING builds. r=janerik
Flags: needinfo?(choller)
Priority: -- → P1
Pushed by choller@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/4441e86d56b9
Disable Telemetry recording in FUZZING builds. r=janerik
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla67
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: