tree: 612acbca17fe58d36d098e05aa921efc0c5e974b [path history] [tgz]
  1. chrome_utils/
  2. cleaner/
  3. components/
  4. constants/
  5. crash/
  6. docs/
  7. engines/
  8. executables/
  9. http/
  10. ipc/
  11. logging/
  12. mojom/
  13. os/
  14. parsers/
  15. proto/
  16. pup_data/
  17. scanner/
  18. settings/
  19. strings/
  20. test/
  21. tools/
  22. ui/
  23. zip_archiver/
  24. BUILD.gn
  25. chrome_cleaner_args.gni
  26. DEPS
  27. DIR_METADATA
  28. OWNERS
  29. PRESUBMIT.py
  30. README.md
chrome/chrome_cleaner/README.md

Chrome Cleanup Tool

This directory contains the source code for the Chrome Cleanup Tool, a standalone application distributed to Chrome users to find and remove Unwanted Software (UwS).

The tool and its tests are Windows-only.

Integration with Chrome

The application is distributed in two versions:

  1. A Chrome component named the Software Reporter that finds UwS but does not have the ability to delete anything.
  2. A separate download named Chrome Cleanup Tool that both finds and removes UwS.

The Software Reporter runs in the background and, if it finds UwS that can be removed, reports this to Chrome. Chrome then downloads the full Cleanup Tool and shows a prompt on the settings page asking the user for permission to remove the UwS.

This directory contains the source for both.

Code in Chromium that deals with the Software Reporter Tool and Chrome Cleanup Tool includes:

Targets

To build all targets for this project, use:

//chrome/chrome_cleaner:chrome_cleaner

The main build targets are:

  • //chrome/chrome_cleaner:software_reporter_tool
  • //chrome/chrome_cleaner:chrome_cleanup_tool
  • //chrome/chrome_cleaner:chrome_cleaner_unittests

There is also a tool, generate_test_uws, which will create some harmless text files that the tool will detect as UwS:

  • //chrome/chrome_cleaner/tools:generate_test_uws

Internal resources

The public build will link to the test scanning engine in chrome/chrome_cleaner/engines/target/test_engine_delegate.cc which only detects test files. This is the default when building on the Chromium buildbots.

If is_internal_chrome_cleaner_build is set in GN, the build looks for internal resources in the chrome_cleaner/internal directory. These resources are not open source so are only available internally to Google. They include the licensed scanning engine used to find real-world UwS.

To ship a non-test version of the tool, implement EngineDelegate to wrap an engine that can detect and remove UwS. The engine will be run inside a sandbox with low privileges. To perform operations like opening file handles, scanning process memory, and deleting files, the engine will need to call the callbacks passed to EngineDelegate as privileged_file_calls, privileged_scan_calls and privileged_removal_calls.

Getting the internal resources through gclient

To check out the internal resources set both of these to True in .gclient:

  • checkout_src_internal (standard argument defined in DEPS)
  • checkout_chrome_cleaner_internal (defined in src-internal's DEPS, causes the internal resources to be checked out under chrome/chrome_cleaner/internal)

To actually build with the internal resources, also set is_internal_chrome_cleaner_build to true in args.gn.

Build arguments

The build is controlled by the following arguments that can be set in args.gn:

  • is_internal_chrome_cleaner_build: If true, GN targets will depend on targets in chrome/chrome_cleaner/internal, otherwise will depend only on public resources.
  • is_official_chrome_cleaner_build: If true, various development options will be disabled since the build is meant for release to end users.
  • reporter_branding_path, cleaner_branding_path, version_path: Paths to resource files that will be used to populate the VERSIONINFO of the executables.
    • By default these identify as The Chromium Authors. When is_internal_chrome_cleaner_build is set, these are overridden to identify as Google.
    • To ship a customized version of the tool, override these to point to files identifying the authors of the custom version.

Contact

joenotcharles@chromium.org