ChromeOS Network - Chrome Layer
ChromeOS networking consists of several key components, shown in the diagram below:

This document describes the Chrome layer (light blue rectangle above). This
layer is implemented within //chromeos/ash/components/network. To describe
this layer, we highlight three primary processes:
- Chrome. Contains all system UI (e.g., settings) and processes inputs from the user as well as enterprise policies. Chrome sits atop the dependency tree and makes calls to the other components via D-Bus APIs.
- Shill. Daemon process responsible for making network connections. Shill is the source of truth for which connection mediums are available and connected, as well as for properties of available networks.
- Hermes. Daemon process responsible for configuring eSIM profiles. Hermes allows users to initiate SM-DS scans as well as communicate with SM-DP+ servers to install and uninstall profiles.
Shill and Hermes interface with several other components (e.g., ModemManager, wpa_supplicant), but these are beyond the scope of this README since these interactions are encapsulated from Chrome.
Background
Before diving into the Chrome layer's details, we provide some background information about the D-Bus APIs exposed by Shill and Hermes.
Shill
Source: platform2/shill
Shill is responsible for setting up network interfaces, connecting to networks via these interfaces, persisting network metadata to disk, and providing support for VPNs.
Shill exposes 5 key interfaces used by Chrome:
flimflam.Manager: Allows Chrome to enable/disable a technology (e.g., turning Wi-Fi on or off), perform a scan (e.g., look for nearby Wi-Fi networks), and configure a network (e.g., attempt to set up a Wi-Fi network with a password).flimflam.Device: A Shill "Device" refers to a connection medium (Wi-Fi, Cellular, and Ethernet are all Shill Devices). This interface allows Chrome to get or set properties of each connection medium as well as perform operations on each connection medium (e.g., unlocking the Cellular Device when it has a locked SIM).flimflam.Service: A Shill "Service" refers to an individual network (a Wi-Fi network or a cellular SIM are Shill services). This interface allows Chrome to get or set properties for a given network as well as initiate connections and disconnections.flimflam.Profile: A Shill "Profile" refers to a grouping of services corresponding to a logged-in user. ChromeOS allows configuration of networks as part of the "default" (i.e., shared) Profile which is available to all users or as part of individual (i.e., per-user) Profiles.flimflam.IPConfig: Allows Chrome to configure IP addresses (e.g., DNS and DHCP).
Hermes
Source: platform2/hermes
Hermes is responsible for communicating with Embedded Universal Integrated Circuit Cards (EUICCs) on a ChromeOS device. A EUICC can colloquially be understood as an eSIM slot built into the device. Each EUICC has a unique identifier called an EUICCID (or EID for short).
Hermes processes both "pending" profiles (i.e., those which have been registered to an EID but not yet installed) as well as "installed" profiles, which have been downloaded to a EUICC.
Hermes exposes 3 key interfaces used by Chrome:
Hermes.Manager: Allows Chrome to retrieve the list of all EUICCs and to observe changes to this list.Hermes.Euicc: Allows Chrome to request pending or installed profiles for a given EUICC; additionally, exposes functionality for installing and uninstalling profiles.Hermes.Profile: Allows Chrome to enable or disable an individual profile. A profile must be enabled in order to be used for a connection.
Chrome
There are many classes within the Chrome layer that are required to enable a ChromeOS device to view and configure its connectivity functionality. These Chrome "networking classes" are responsible for all-things networking and must be flexible enough to support both the consumer use-case and the enterprise use-case, e.g. enforce network policies.
Network Stack
The network stack on the Software side of ChromeOS is initialized by the
NetworkHandler
singleton. Beyond this initialization, NetworkHandler provides minimal APIs
except a comprehensive set of accessors that can be used to retrieve any of the
other more targeted network singletons e.g. NetworkMetadataStore.
Example of using NetworkHandler to retrieve one of these other singletons:
if (NetworkHandler::IsInitialized()) {
NetworkMetadataStore* network_metadata_store =
NetworkHandler::Get()->network_metadata_store();
...
}
Testing
Testings involving the ChromeOS networking stack have multiple solutions available, and when writing tests it is important to be aware of these different solutions for both consistency with other tests as well as ease of implementation and maintenance.
For tests that involve code that directly calls NetworkHandler::Get(), the
NetworkHandlerTestHelper
class will be be required. When instantiated, this class will handle the
initialization of Shill and Hermes DBus clients, and the NetworkHandler
singleton. Beyond this initialization, NetworkHandlerTestHelper also extends
the
NetworkTestHelperBase
class and provides many helper functions to simplify testing. There are many
examples of tests that take this approach throughout the
//chromeos/ash/components/network/
directory.
For tests that do not need NetworkHandler::Get(), and instead only need
NetworkStateHandler
and/or
NetworkDeviceHandler,
the
NetworkStateTestHelper
class should be used. This class is much more lightweight, and while it will
still initialize the Shill and Hermes DBus clients it will not initialize
the NetworkHandler singleton and the entire networking stack. The
NetworkStateTestHelper also extends NetworkTestHelperBase so the same helper
functions will still be available. There are many examples of tests that take
this approach throughout the //chromeos/ash/components/network/ directory.
Tests that do not require the entire networking stack or the Shill and Hermes DBus clients should opt to instantiate only the necessary classes and/or fakes that they depend on. This case is much more situational and often tests will end up looking quite different depending on the exact requirements and code location.
Tests within //ash/system/network
The tests within //ash/system/network typically don't use the same classes
mentioned above. This difference is due to the
TrayNetworkStateModel
which acts as a data model of all things related to networking that the system
UI, e.g. the Quick Settings and toolbar, are interested in. However, even the
TrayNetworkStateModel singleton does not directly use the network stack
discussed above and instead relies on the mojo
CrosNetworkConfig
interface. While this class does directly use the network stack discussed above,
there are enough layers of abstraction that it would be far too painful to test
using the entire networking stack. Instead, these tests use
FakeCrosNetworkConfig
to directly configure the state of all things networking.
Network State
While Shill and Hermes are the sources of truth for everything related to
networks and eSIM on ChromeOS devices it would be both inefficient and slow to
use D-Bus calls to these daemons each time the Chrome layer needed any
information about a network. Instead, all of the information about networks that
Chrome frequently accesses is cached in the Chrome layer by the
NetworkStateHandler
singleton. This class will listen for the creation, modification, and deletion
of Shill services over the D-Bus and will maintain a cache of the properties of
these services using the
NetworkState
class.
NetworkStateHandler is typically used in one of four ways:
- Request changes to global (
flimflam.Manager) properties, e.g. disable Cellular or start a WiFi scan. - Listening for network, device, and global property changes by extending the
NetworkStateHandlerObserverclass. - Retrieve network, device, and global properties.
- Configure or retrieve the Tethering state.
Since NetworkState objects mirror the known properties of Shill services and
are not sources of truth themselves, they are immutable in the Chrome layer and
both their lifecycle and property updates are entirely managed by
NetworkStateHandler. Beyond this, NetworkState objects are frequently
updated and they should only be considered valid in the scope that they were
originally accessed in.
NetworkState objects are typically retrieved in one of two ways:
- Querying
NetworkStateHandlerfor the state using a specific Shill service path. - Querying
NetworkStateHandlerfor all networks matching a specific criteria.
Example of retrieving and iterating over NetworkState objects:
NetworkStateHandler::NetworkStateList state_list;
NetworkHandler::Get()->network_state_handler()->GetNetworkListByType(
NetworkTypePattern::WiFi(),
/*configured_only=*/true,
/*visible_only=*/false,
/*limit=*/0, &state_list);
for (const NetworkState* state : state_list) {
...
}
Stub Networks
In certain cases, cellular networks may not have an associated shill services. For example, when a SIM is locked, mobile network is unavailable or if eSIM profiles are unavailable through platform's modem manager. The most common cause for this is eSIM profiles not being active though. In such cases, we create stub network instances in place of those networks and make them available to the NetworkStateHandler.
The interface for the StubCellularNetworkProvider is defined in the NetworkStateHandler and
implemented by StubCellularNetworksProvider
StubCellularNetworkProvider interface provides two methods: AddOrRemoveStubCellularNetworks and GetStubNetworkMetadata
AddOrRemoveStubCellularNetworks takes in a list of managed networks, empty list of stub ids and cellular device state instance. This function then looks for cases where a corresponding network in the list of managed networks is missing for a eSIM profile or a pSIM and goes onto create a new stub instance. It also removes stub instances for a profile if a corresponding network has been added to the managed network list. A boolean is returned to indicate if any changes to stub networks have taken place and the input parameter containing list of stub ids will be filled if new stub networks have been created.
GetStubNetworkMetadata returns metadata for a stub network instance if one exists for the given iccid.
NetworkStateHandler is the primary caller of StubNetworkProvider. It attempts to make a change in stub networks if there is a change to the managed network list, change in the property of a network or a change in cellular technology state. For any of these changes, a call is made to the AddOrRemoveStubCellularNetworks function in stub network provider.
Configuring Networks
Networks on ChromeOS are created and configured using three primary classes. Each of the classes operates at a different level of abstraction and which class is used will be determined by the goals of the user.
ManagedNetworkConfigurationHandler
The
ManagedNetworkConfigurationHandler
class is used to create and configure networks on ChromeOS. This class is
responsible for taking care of network policies and specifically only accepts
ONC with a stated goal of decoupling users from direct interaction with Shill.
Most of the APIs provided by this class accept both a callback to invoke on
success and a callback to invoke on failure. The failure callback will be
provided with an error message that is suitable for logging.
This class is typically used to:
- Configure and remove networks, including policy-defined networks
- Set the properties of a network
- Get the properties of a network with policies applied
- Set or update the policies actively applied
- Get the policies actively applied
- Many helper methods are provided for checking specific policy features
When creating networks or retrieving the properties of a network, the caller is required to provide a user hash that is used to make sure that both the device policies (applied to all users) and the user policies (specific for a user) are considered. The result of this is that when creating or configuring networks, some properties may be assigned specific values; this can mean that properties receive default values, or it can mean that properties that the caller specific are overridden and restricted from being any different value. When retrieving the properties of a network, many of the properties received will have additional information beyond the value. This information includes:
- The policy source and enforcement level, if any, e.g. provided by a device policy and the value provided is recommended.
- The value provided by policy. When a policy is recommended this will be the default value for the property, and when a policy is required the property will be forced to have this value.
While the ManagedNetworkConfigurationHandler class does provide an API to set
the active policy this API should not be called outside of tests. The NetworkConfigurationUpdater class
is the class responsible for tracking device and user policies and applying them
to the device. When there are policy changes this class will use
ManagedNetworkConfigurationHandler::SetPolicy()
which will result in all existing user profiles, and all networks that they
have, having the new policy applied to them. While applying the policy to
existing user profiles and networks is not an instantaneous operation, any
networks created or configured after SetPolicy() is called will have the
policy enforced.
The ManagedNetworkConfigurationHandler class also provides an observer
interface,
NetworkPolicyObserver,
that can be used to be notified when policies have changed, or have been
applied.
Unlike most of the network classes this class provides a mock to help simplify
testing:
MockManagedNetworkConfigurationHandler.
If it is not possible to use this mock the ManagedNetworkConfigurationHandler
class can still be accessed via NetworkHandler. For more information please
see the Testing section.
NetworkConfigurationHandler
The
NetworkConfigurationHandler
class is used to create and configure networks on ChromeOS. This class
interacts with the platforms layer by making calls to the
Shill APIs
to perform a variety of tasks related to shill
services and profiles
which include methods to:
- Get, set, and clear
shill propertiestied to a shill service. Note that when setting properties, existing properties are not cleared, and removals must be done explicitly. - Create a shill service and associate it to a shill profile
- Remove or change the association between a shill service and shill profile(s)
Further, the NetworkConfigurationHandler class also provides an observer
interface,
NetworkConfigurationObserver
, that can be used to be notified when the properties of shill service(s)
change.
In unit tests, the NetworkConfigurationHandler can be initialized for testing
purposes.
ShillServiceClient
The
ShillServiceClient
class provides APIs for interacting with the Platform equivalent of networks:
Shill services. This class is typically chosen when the user wants to directly
interact with Shill, or is already directly interacting with Shill for other
functionality and it is easier to continue to do so than transition to one of
the higher-level classes discussed above. For more information on this class
please see the associated
README.md.
Device State
DeviceState
is a Chrome-layer cached representation of a Shill "Device". Similar to
NetworkState, Chrome caches Shill "Device" properties in a DeviceState to
decrease the amount of D-Bus calls needed. Shill "Devices" refer to connection
mediums (i.e. Wi-Fi, Cellular, Ethernet, etc.) and each DeviceState object
represent one of those mediums, providing APIs for accessing properties
of the medium.
DeviceState objects are managed by NetworkStateHandler,
which keeps its cached list up-to-date. Since DeviceState objects mirror the
known properties of Shill "Devices" and are not sources of truth themselves,
they can only be modified using the limited APIs they provide and both their
lifecycle and property updates are entirely managed by NetworkStateHandler.
There are a few exceptions
where DeviceState objects are modified, but this should be avoided when
possible. Beyond this, DeviceState objects are frequently updated and they
should only be considered valid in the scope that they were originally accessed
in.
DeviceState objects can be retrieved in several ways:
- Querying
NetworkStateHandlerfor the state using a specific Shill device path. - Querying
NetworkStateHandlerfor the state based on its type - Querying
NetworkStateHandlerfor a list of allDeviceStateobjects - Querying
NetworkStateHandlerfor a list of allDeviceStateobjects with a specific type
Example of retrieving a single DeviceState object:
const DeviceState* device =
NetworkHandler::Get()->network_state_handler()->GetDeviceState(
device_path);
Example of retrieving a list of DeviceState objects:
NetworkStateHandler::DeviceStateList devices;
NetworkHandler::Get()->network_state_handler()->GetDeviceList(&devices);
for (const DeviceState* device : devices) {
...
}
Connecting to a Network
NetworkConnect
The NetworkConnect
class is used to handle the complex UI flows associated with connecting to a
network on ChromeOS. This class does not show any UI itself, but
instead delegates that responsibility to NetworkConnect::Delegate
implementations.
Further, this class is also not responsible for making Shill connect calls and
delegates this responsibility to NetworkConnectionHandler.
The NetworkConnect class provides APIs for:
- Connect or disconnect to a network by passing in a network ID
- Enable or disable a particular technology type (e.g., WiFi)
- Configure a network and connect to that network
NetworkConnectionHandler
NetworkConnectionHandler is responsible for managing network connection
requests. It is the only class that should make Shill connect calls. It
provides APIs to:
- Connect to a network
- Disconnect from a network
It also defines a set of results that can be returned by the connection attempt.
NetworkConnectionHandlerImpl
is the class that implements NetworkConnectionHandler. When there is a
connection request, it follows these steps:
- Determines whether or not sufficient information (e.g. passphrase) is known to be available to connect to the network
- Requests additional information (e.g. user data which contains certificate information) and determines whether enough information is available. If certificates have not been loaded yet then the connection request is queued.
- Possibly configures the network certificate info
- Sends the connect request
- Waits for the network state to change to a non-connecting state
- Invokes the appropriate callback (always) on success or failure
If the network is of type Tether, NetworkConnectionHandler delegates
actions to the TetherDelegate.
If the network is of type Cellular, CellularConnectionHandler is used to
prepare the network before having Shill initiate the connection.
Classes can observe the following network connection events by implementing
NetworkConnectionObserver:
- When a connection to a specific network is requested
- When a connection requests succeeds
- When a connection requests fails
- When a disconnection from a specific network is requested
These observer methods may be preferred over the observer methods in
NetworkStateHandlerObserver
when a class wishes to receive notifications for specific connect/disconnect
operations rather than more gross network activity.
CellularConnectionHandler
CellularConnectionHandler
provides the functions to prepare both pSIM and eSIM cellular
networks for connection. Is provides API to:
- Prepare connection for a newly installed cellular network
- Prepare connection for an existing cellular network
Before we can connect to a cellular network, the
network must be backed by Shill service and must have its Connectable
property set to true which means that it is the selected SIM profile in its
slot.
ChromeOS only supports a single physical SIM slot, so
pSIM networks should always have their Connectable properties set to true as
long as they are backed by Shill. Since Shill is expected to create a service
for each pSIM, the only thing that the caller needs to do is wait for the
corresponding Shill service to be configured.
For eSIM networks, it is possible that there are multiple eSIM profiles on a
single EUICC; in this case, Connectable being false means that the eSIM
profile is disabled and must be enabled via Hermes before a connection can
succeed. The steps for preparing an eSIM network are:
- Check to see if the profile is already enabled; if so, skip to step #6.
- Inhibit cellular scans
- Request installed profiles from Hermes
- Enable the relevant profile
- Uninhibit cellular scans
- Wait until the associated
NetworkStatebecomes connectable - Wait until Shill automatically connects if the SIM slot is switched
Apply Networking Policies
Chrome uses ONC
to represent and apply network policy. These ONC includes configurations which
can be used to configure a new network (i.e.: WiFi or eSIM) or update an
existing network, and also global policies which will affect all networks in a
certain way on ChromeOS devices, and whether a network was configured via ONC
will be reflected in the
OncSource
property in the corresponding Shill service configuration.
The ManagedNetworkConfigurationHandler
class is the entry point for policy application. This class provides a
SetPolicy()
API that manages the complexity around both queuing and performing policy
applications. This class internally delegates much of the policy application
logic to PolicyApplicator.
PolicyApplicator
PolicyApplicator
is responsible for network policy application. The policy application process is
started via the
Run()
API. This API fetches all existing entries from the provided Shill profile in
parallel through
GetProfilePropertiesCallback
and compares each profile entry with the policies currently being applied in
GetEntryCallback.
The applicator tries to find the matching network configuration by first
comparing the GUID. If no Shill configuration could be found with a matching
GUID, this API will then try to match using additional network properties,
e.g. the ICCID of a cellular network, using the
FindMatchingPolicy
to ascertain if the policy matches. The following are the main cases handled in
the GetEntryCallback:
- If no existing profile entries match with the policy being applied,
ApplyRemainingPoliciesis invoked to apply missing policies. For cellular, it delegates the application of the new policies inCellularPolicyHandler. - If the policy being applied matches an existing profile entry, the applicator
proceeds to enforce the new policy through
ApplyNewPolicy. - If there's an existing profile entry indicating the service is managed but no matching policy is discovered, it will delete the entry from the profile.
- Finally, it will apply the global policy on all unmanaged profile entries.
CellularPolicyHandler
CellularPolicyHandler
encapsulates the logic for installing eSIM profiles configured by policy.
Installation requests are added to a queue, and each request will be retried a
fixed number of times with a retry delay between each attempt. When installing
policy eSIM profiles, the activation code is constructed from either SM-DP+
address or SM-DS address in the policy configuration.
PolicyCertificateProvider
PolicyCertificateProvider
is an interface which makes server and authority certificates available from
enterprise policy. Clients of this interface can register as observers to
receive update when:
- The list of policy-set server and authority certificates changes.
- The PolicyCertificateProvider is being destroyed.
Notes on Cellular networks
Unlike Wi-Fi networks (i.e Wi-Fi Shill services), which can be per-Chromebook (e.g networks added during OOBE/Login) or per-user as they are generally configured. Cellular networks (i.e Cellular Shill services) are per-Chromebook and there is no way to configure them as per-user.
In other words, a particular Wi-Fi network may have different GUIDs when logged into different accounts on a device if it is configured per-user. However, a Cellular network will always have the same GUID when logged into different accounts on a device, as it is always configured per-Chromebook in Shill.
Examples and Technical Details
Auto-Connect
The state of whether auto-connect is enabled or disabled is preserved across any logged in account. In other words, if user A logs in to the device and enables auto-connect, then the auto-connect Cellular property remains enabled if user B were to subsequently log into the device. This is not the case for user-configured Wi-Fi, where auto-connect for a specific network X could be disabled for user A and enabled for user B, or vice versa.
- In Shill, the auto-connect property is stored in
kAutoConnectPropertywhich is a base service property that is shared across different types of Shill services (i.e Wi-Fi and Cellular ones alike)
Roaming
The state of whether roaming is enabled or disabled for a cellular network is preserved across any logged in account. In other words, if user A logs in to the device and enables roaming, then the roaming property remains enabled if user B were to subsequently log into the device. A similar analog to use for contrast may be a user-configured Wi-Fi's "Configure IP address automatically" property, which can be true for user A but false for user B on a device.
- In Shill, the allow roaming property is stored in
kCellularAllowRoamingPropertywhich is a cellular Shill service property kCellularAllowRoamingPropertyis used to populate a cellularNetworkState's |allow_roaming()|property.
Text Messages
SMSes received will be shown regardless of which account is logged on the device. Note that users and admins have the ability to configure cellular networks at the Chrome layer such that text messages for a cellular network of a particular GUID are suppressed. Note that the associated cellular Shill service(s) will not know about this Chrome owned configuration (i.e no Shill property associated to suppression of text messages).
- The
SMSObserverobserves for SMSes received by the modem for the active cellular Shill service viaNetworkSmsDeviceHandler - The SMSObserver is
instantiated during the System UI initializationand will show the notification regardless of whose logged in.
SIM Lock
If a SIM is PIN or PUK locked, it is locked for any user logged into the device. Whether the SIM is locked and how many unlock retry attempts left, among other SIM lock related cellular properties, is stored in cellular Shill Device properties, which a cellular Shill Service is associated with.
- In Shill, SIM lock information is stored in
kSIMLockStatusPropertywhich is a Cellular device property kSIMLockStatusPropertyis used to populate cellular-specificDeviceState properties
Persisting eSIM Profiles
eSIM profiles are displayed in some cellular UI surfaces. However, they can only be retrieved from the device hardware when an EUICC is the "active" slot on the device, and only one slot can be active at a time. This means that if the physical SIM slot is active, we cannot fetch an updated list of profiles without switching slots, which can be disruptive if the user is utilizing a cellular connection from the physical SIM slot.
To ensure that clients can access eSIM metadata regardless of the active slot,
CellularESimProfileHandler
stores all known eSIM profiles persistently in prefs. It does this when the
available EUICC list changes, when an EUICC property changes, a carrier profile
property changes or when an profile is installed.
Clients can access these eSIM profiles through the
GetESimProfiles()
and can observe changes to the list by observing
CellularESimProfileHandler.
Additionally, CellularESimProfileHandlerImpl tracks all known EUICC
paths. If it detects a new EUICC which it previously had not known about, it
automatically refreshes profile metadata from that slot. This ensures that
after a powerwash, since all local data will be erased and we will no longer
have information on which slots we have metadata for, we will refresh the
metadata for all slots. This is done in AutoRefreshEuiccsIfNecessary().
Hotspot(Tethering)
The HotspotStateHandler
class is responsible for caching the latest hotspot state and notifying its
observers whenever there is a change in the hotspot state.
The HotspotCapabilitiesProvider
class calculates and caches the latest hotspot capabilities. This calculation
is triggered whenever the cellular network state changes or when Shill signals
changes in the "TetheringCapabilities" property. The calculation involves the
following operations:
- Checks if the policy allows hotspot; it exits early if the policy prohibits it.
- Checks if the hotspot is supported by the platform, considering factors such as cellular support for upstream technology and Wi-Fi for downstream technology.
- Checks if the active cellular network state is online; it exits early if it is not.
- Calls
CheckTetheringReadinessfrom Shill to verify if it passes the readiness check.
The HotspotController
class manages set the admin policy of the hotspot, enable and disable hotspot.
When enabling the hotspot, it performs the following operations:
- Checks the hotspot capabilities from
HotspotCapabilitiesProvider. If not allowed, it exits early. - Calls
CheckTetheringReadinessfrom Shill and exits early if the check is not passed. - Disables Wi-Fi if it is active.
- Enables or disables the hotspot using the Shill service.
The HotspotController also observes changes in hotspot state and restores
Wi-Fi to its previous status when the hotspot is turned off.
The HotspotConfigurationHandler
class is responsible for caching the
latest hotspot configuration and handling the update of the hotspot
configuration.
TODO: Finish README