File: hidden_network_handler.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (134 lines) | stat: -rw-r--r-- 4,842 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/components/network/hidden_network_handler.h"

#include "ash/constants/ash_switches.h"
#include "base/command_line.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/timer/timer.h"
#include "chromeos/ash/components/network/managed_network_configuration_handler.h"
#include "chromeos/ash/components/network/network_handler.h"
#include "chromeos/ash/components/network/network_metadata_store.h"
#include "chromeos/ash/components/network/network_state_handler.h"
#include "components/device_event_log/device_event_log.h"

namespace ash {
namespace {

constexpr char kRemoveAttemptResultHistogram[] =
    "Network.Ash.WiFi.Hidden.RemovalAttempt.Result";

constexpr base::TimeDelta kDefaultOverrideInterval = base::Minutes(1);
constexpr base::TimeDelta kOneDay = base::Days(1);
constexpr base::TimeDelta kInitialDelay = base::Seconds(30);

void OnRemoveConfigurationSuccess(const std::string guid) {
  base::UmaHistogramBoolean(kRemoveAttemptResultHistogram, true);
  NET_LOG(EVENT) << "Successfully removed wrongly hidden network: " << guid;
}

void OnRemoveConfigurationFailure(const std::string guid,
                                  const std::string& error_name) {
  base::UmaHistogramBoolean(kRemoveAttemptResultHistogram, false);
  NET_LOG(EVENT) << "Failed to remove wrongly hidden network: " << guid
                 << ", error: " << error_name;
}

base::TimeDelta ComputeMigrationInterval() {
  base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();

  if (!command_line->HasSwitch(switches::kHiddenNetworkMigrationInterval)) {
    return kOneDay;
  }

  int interval_in_seconds = -1;
  const std::string ascii = command_line->GetSwitchValueASCII(
      switches::kHiddenNetworkMigrationInterval);

  if (ascii.empty() || !base::StringToInt(ascii, &interval_in_seconds) ||
      interval_in_seconds < 1) {
    return kDefaultOverrideInterval;
  }
  return base::Seconds(interval_in_seconds);
}

}  // namespace

void HiddenNetworkHandler::Init(
    ManagedNetworkConfigurationHandler* managed_network_configuration_handler,
    NetworkStateHandler* network_state_handler) {
  DCHECK(NetworkHandler::IsInitialized());
  network_state_handler_ = network_state_handler;
  managed_network_configuration_handler_ =
      managed_network_configuration_handler;
}

void HiddenNetworkHandler::SetNetworkMetadataStore(
    NetworkMetadataStore* network_metadata_store) {
  if (network_metadata_store_) {
    initial_delay_timer_.Stop();
    daily_event_timer_.Stop();
  }

  network_metadata_store_ = network_metadata_store;
  if (!network_metadata_store_) {
    return;
  }

  initial_delay_timer_.Start(
      FROM_HERE, kInitialDelay,
      base::BindOnce(&HiddenNetworkHandler::CleanHiddenNetworks,
                     base::Unretained(this)));
  daily_event_timer_.Start(
      FROM_HERE, ComputeMigrationInterval(),
      base::BindRepeating(&HiddenNetworkHandler::CleanHiddenNetworks,
                          base::Unretained(this)));
}

void HiddenNetworkHandler::CleanHiddenNetworks() {
  NetworkStateHandler::NetworkStateList state_list;
  network_state_handler_->GetNetworkListByType(NetworkTypePattern::WiFi(),
                                               /*configured_only=*/true,
                                               /*visible_only=*/false,
                                               /*limit=*/0, &state_list);
  size_t remove_network_attempts = 0;

  for (const NetworkState* state : state_list) {
    if (!state->hidden_ssid() || state->IsManagedByPolicy()) {
      continue;
    }

    // The last connected timestamp for a network will be zero if the network
    // has never been connected to.
    if (!network_metadata_store_->GetLastConnectedTimestamp(state->guid())
             .is_zero()) {
      continue;
    }

    // The WiFi timestamp will return UnixEpoch() if the network has
    // existed for more than two weeks.
    if (network_metadata_store_->UpdateAndRetrieveWiFiTimestamp(
            state->guid()) != base::Time::UnixEpoch()) {
      continue;
    }

    NET_LOG(EVENT) << "Attempting to remove network configuration with GUID: "
                   << state->guid();

    managed_network_configuration_handler_->RemoveConfiguration(
        state->path(),
        base::BindOnce(&OnRemoveConfigurationSuccess, state->guid()),
        base::BindOnce(&OnRemoveConfigurationFailure, state->guid()));

    remove_network_attempts++;
  }

  base::UmaHistogramCounts100("Network.Ash.WiFi.Hidden.RemovalAttempt",
                              remove_network_attempts);
}

}  // namespace ash