| // Copyright 2018 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef NET_BASE_FEATURES_H_ |
| #define NET_BASE_FEATURES_H_ |
| |
| #include <stddef.h> |
| |
| #include <string> |
| #include <string_view> |
| |
| #include "base/feature_list.h" |
| #include "base/metrics/field_trial_params.h" |
| #include "base/time/time.h" |
| #include "build/build_config.h" |
| #include "crypto/crypto_buildflags.h" |
| #include "net/base/net_export.h" |
| #include "net/net_buildflags.h" |
| |
| namespace net::features { |
| |
| // Enables ALPS extension of TLS 1.3 for HTTP/2, see |
| // https://vasilvv.github.io/tls-alps/draft-vvv-tls-alps.html and |
| // https://vasilvv.github.io/httpbis-alps/draft-vvv-httpbis-alps.html. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAlpsForHttp2); |
| |
| // Disable H2 reprioritization, in order to measure its impact. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAvoidH2Reprioritization); |
| |
| // When kCapReferrerToOriginOnCrossOrigin is enabled, HTTP referrers on cross- |
| // origin requests are restricted to contain at most the source origin. |
| NET_EXPORT BASE_DECLARE_FEATURE(kCapReferrerToOriginOnCrossOrigin); |
| |
| // Enables the built-in DNS resolver. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAsyncDns); |
| |
| // Support for altering the parameters used for DNS transaction timeout. See |
| // ResolveContext::SecureTransactionTimeout(). |
| NET_EXPORT BASE_DECLARE_FEATURE(kDnsTransactionDynamicTimeouts); |
| // Multiplier applied to current fallback periods in determining a transaction |
| // timeout. |
| NET_EXPORT extern const base::FeatureParam<double> |
| kDnsTransactionTimeoutMultiplier; |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kDnsMinTransactionTimeout; |
| |
| // Enables querying HTTPS DNS records that will affect results from HostResolver |
| // and may be used to affect connection behavior. Whether or not those results |
| // are used (e.g. to connect via ECH) may be controlled by separate features. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseDnsHttpsSvcb); |
| |
| // Param to control whether or not HostResolver, when using Secure DNS, will |
| // fail the entire connection attempt when receiving an inconclusive response to |
| // an HTTPS query (anything except transport error, timeout, or SERVFAIL). Used |
| // to prevent certain downgrade attacks against ECH behavior. |
| NET_EXPORT extern const base::FeatureParam<bool> |
| kUseDnsHttpsSvcbEnforceSecureResponse; |
| |
| // If we are still waiting for an HTTPS transaction after all the |
| // other transactions in an insecure DnsTask have completed, we will compute a |
| // timeout for the remaining transaction. The timeout will be |
| // `kUseDnsHttpsSvcbInsecureExtraTimePercent.Get() / 100 * t`, where `t` is the |
| // time delta since the first query began. And the timeout will additionally be |
| // clamped by: |
| // (a) `kUseDnsHttpsSvcbInsecureExtraTimeMin.Get()` |
| // (b) `kUseDnsHttpsSvcbInsecureExtraTimeMax.Get()` |
| // |
| // Any param is ignored if zero, and if one of min/max is non-zero with a zero |
| // percent param it will be used as an absolute timeout. If all are zero, there |
| // is no timeout specific to HTTPS transactions, only the regular DNS query |
| // timeout and server fallback. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kUseDnsHttpsSvcbInsecureExtraTimeMax; |
| NET_EXPORT extern const base::FeatureParam<int> |
| kUseDnsHttpsSvcbInsecureExtraTimePercent; |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kUseDnsHttpsSvcbInsecureExtraTimeMin; |
| |
| // Same as `kUseDnsHttpsSvcbInsecureExtraTime...` except for secure DnsTasks. |
| // |
| // If `kUseDnsHttpsSvcbEnforceSecureResponse` is enabled, the timeouts will not |
| // be used because there is no sense killing a transaction early if that will |
| // just kill the entire request. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kUseDnsHttpsSvcbSecureExtraTimeMax; |
| NET_EXPORT extern const base::FeatureParam<int> |
| kUseDnsHttpsSvcbSecureExtraTimePercent; |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kUseDnsHttpsSvcbSecureExtraTimeMin; |
| |
| // Update protocol using ALPN information in HTTPS DNS records. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseDnsHttpsSvcbAlpn); |
| |
| // If enabled, HostResolver will use the new HostResolverCache that separately |
| // caches by DNS type, unlike the old HostCache that always cached by merged |
| // request results. May enable related behavior such as separately sorting DNS |
| // results after each transaction rather than sorting collectively after all |
| // transactions complete. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseHostResolverCache); |
| |
| // Enables the Happy Eyeballs v3, where we use intermediate DNS resolution |
| // results to make connection attempts as soon as possible. |
| NET_EXPORT BASE_DECLARE_FEATURE(kHappyEyeballsV3); |
| |
| // If the `kUseAlternativePortForGloballyReachableCheck` flag is enabled, the |
| // globally reachable check will use the port number specified by |
| // `kAlternativePortForGloballyReachableCheck` flag. Otherwise, the globally |
| // reachable check will use 443 port. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kAlternativePortForGloballyReachableCheck; |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseAlternativePortForGloballyReachableCheck); |
| |
| // If enabled, overrides IPv6 reachability probe results based on the system's |
| // IP addresses. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableIPv6ReachabilityOverride); |
| |
| // Enables TLS 1.3 early data. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableTLS13EarlyData); |
| |
| // Enables optimizing the network quality estimation algorithms in network |
| // quality estimator (NQE). |
| NET_EXPORT BASE_DECLARE_FEATURE(kNetworkQualityEstimator); |
| |
| // The maximum age in seconds of observations to be used for calculating the |
| // HTTP RTT from the historical data. |
| // Negative value means infinite. i.e. all data are used. |
| NET_EXPORT extern const base::FeatureParam<int> kRecentHTTPThresholdInSeconds; |
| |
| // The maximum age in seconds of observations to be used for calculating the |
| // transport RTT from the historical data. |
| // Negative value means infinite. i.e. all data are used. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kRecentTransportThresholdInSeconds; |
| |
| // The maximum age in seconds of observations to be used for calculating the |
| // end to end RTT from the historical data. |
| // Negative value means infinite. i.e. all data are used. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kRecentEndToEndThresholdInSeconds; |
| |
| // Number of observations received after which the effective connection type |
| // should be recomputed. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kCountNewObservationsReceivedComputeEct; |
| |
| // Maximum number of observations that can be held in a single |
| // ObservationBuffer. |
| NET_EXPORT extern const base::FeatureParam<int> kObservationBufferSize; |
| |
| // Minimum duration between two consecutive computations of effective |
| // connection type. Set to non-zero value as a performance optimization. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kEffectiveConnectionTypeRecomputationInterval; |
| |
| // Splits cache entries by the request's includeCredentials. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSplitCacheByIncludeCredentials); |
| |
| // Splits cache entries by the request's NetworkIsolationKey if one is |
| // available. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSplitCacheByNetworkIsolationKey); |
| |
| // The following flags are used as part of an experiment to modify the HTTP |
| // cache key scheme to better protect against leaks via navigations. |
| // These flags are mutually exclusive, and for each flag the HTTP cache will be |
| // cleared when the flag first transitions from being disabled to being enabled. |
| // |
| // This flag incorporates a boolean into the cache key that is true for |
| // renderer-initiated main frame navigations when the request initiator site is |
| // cross-site to the URL being navigated to. |
| NET_EXPORT BASE_DECLARE_FEATURE( |
| kSplitCacheByCrossSiteMainFrameNavigationBoolean); |
| // This flag incorporates the request initiator site into the cache key for |
| // renderer-initiated main frame navigations when the request initiator site is |
| // cross-site to the URL being navigated to. If the request initiator site is |
| // opaque, then no caching is performed of the navigated-to document. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSplitCacheByMainFrameNavigationInitiator); |
| // This flag incorporates the request initiator site into the cache key for all |
| // renderer-initiated navigations (including subframe navigations) when the |
| // request initiator site is cross-site to the URL being navigated to. If the |
| // request initiator is opaque, then no caching is performed of the navigated-to |
| // document. When this scheme is used, the `is-subframe-document-resource` |
| // boolean is not incorporated into the cache key, since incorporating the |
| // initiator site for subframe navigations should be sufficient for mitigating |
| // the attacks that the `is-subframe-document-resource` mitigates. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSplitCacheByNavigationInitiator); |
| // This flag doesn't result in changes to the HTTP cache scheme but provides an |
| // experiment control group that mitigates the differences inherent in changing |
| // cache key schemes. |
| NET_EXPORT BASE_DECLARE_FEATURE(kHttpCacheKeyingExperimentControlGroup2024); |
| |
| // Splits the generated code cache by the request's NetworkIsolationKey if one |
| // is available. Note that this feature is also gated behind |
| // `net::HttpCache::IsSplitCacheEnabled()`. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSplitCodeCacheByNetworkIsolationKey); |
| |
| // Partitions connections and other network states based on the |
| // NetworkAnonymizationKey associated with a request. |
| // See https://github.com/MattMenke2/Explainer---Partition-Network-State. |
| NET_EXPORT BASE_DECLARE_FEATURE(kPartitionConnectionsByNetworkIsolationKey); |
| |
| // Enables post-quantum key-agreements in TLS 1.3 connections. kUseMLKEM |
| // controls whether ML-KEM or Kyber (its predecessor) is used. The flag is named |
| // after Kyber because it was originally introduced for Kyber. |
| NET_EXPORT BASE_DECLARE_FEATURE(kPostQuantumKyber); |
| |
| // Causes TLS 1.3 connections to use the ML-KEM standard instead of the Kyber |
| // draft standard for post-quantum key-agreement. Post-quantum key-agreement |
| // must be enabled (e.g. via kPostQuantumKyber) for this to have an effect. |
| // |
| // TODO(crbug.com/40910498): Remove this flag sometime after M131 has reached |
| // stable without issues. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseMLKEM); |
| |
| // Changes the interval between two search engine preconnect attempts. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSearchEnginePreconnectInterval); |
| |
| // When enabled, the time threshold for Lax-allow-unsafe cookies will be lowered |
| // from 2 minutes to 10 seconds. This time threshold refers to the age cutoff |
| // for which cookies that default into SameSite=Lax, which are newer than the |
| // threshold, will be sent with any top-level cross-site navigation regardless |
| // of HTTP method (i.e. allowing unsafe methods). This is a convenience for |
| // integration tests which may want to test behavior of cookies older than the |
| // threshold, but which would not be practical to run for 2 minutes. |
| NET_EXPORT BASE_DECLARE_FEATURE(kShortLaxAllowUnsafeThreshold); |
| |
| // When enabled, the SameSite by default feature does not add the |
| // "Lax-allow-unsafe" behavior. Any cookies that do not specify a SameSite |
| // attribute will be treated as Lax only, i.e. POST and other unsafe HTTP |
| // methods will not be allowed at all for top-level cross-site navigations. |
| // This only has an effect if the cookie defaults to SameSite=Lax. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSameSiteDefaultChecksMethodRigorously); |
| |
| // When enabled this feature will cause same-site calculations to take into |
| // account the scheme of the site-for-cookies and the request/response url. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSchemefulSameSite); |
| |
| // Enables a process-wide limit on "open" UDP sockets. See |
| // udp_socket_global_limits.h for details on what constitutes an "open" socket. |
| NET_EXPORT BASE_DECLARE_FEATURE(kLimitOpenUDPSockets); |
| |
| // FeatureParams associated with kLimitOpenUDPSockets. |
| |
| // Sets the maximum allowed open UDP sockets. Provisioning more sockets than |
| // this will result in a failure (ERR_INSUFFICIENT_RESOURCES). |
| NET_EXPORT extern const base::FeatureParam<int> kLimitOpenUDPSocketsMax; |
| |
| // Enables a timeout on individual TCP connect attempts, based on |
| // the parameter values. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTimeoutTcpConnectAttempt); |
| |
| // FeatureParams associated with kTimeoutTcpConnectAttempt. |
| |
| // When there is an estimated RTT available, the experimental TCP connect |
| // attempt timeout is calculated as: |
| // |
| // clamp(kTimeoutTcpConnectAttemptMin, |
| // kTimeoutTcpConnectAttemptMax, |
| // <Estimated RTT> * kTimeoutTcpConnectAttemptRTTMultiplier); |
| // |
| // Otherwise the TCP connect attempt timeout is set to |
| // kTimeoutTcpConnectAttemptMax. |
| NET_EXPORT extern const base::FeatureParam<double> |
| kTimeoutTcpConnectAttemptRTTMultiplier; |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kTimeoutTcpConnectAttemptMin; |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kTimeoutTcpConnectAttemptMax; |
| |
| // When this feature is enabled, redirected requests will be considered |
| // cross-site for the purpose of SameSite cookies if any redirect hop was |
| // cross-site to the target URL, even if the original initiator of the |
| // redirected request was same-site with the target URL (and the |
| // site-for-cookies). |
| // See spec changes in https://github.com/httpwg/http-extensions/pull/1348 |
| NET_EXPORT BASE_DECLARE_FEATURE(kCookieSameSiteConsidersRedirectChain); |
| |
| // When this feature is enabled, servers can include an |
| // allow-same-site-none-cookies value that notifies the browser that same-site |
| // SameSite=None cookies should be allowed in sandboxed contexts with 3PC |
| // restrictions. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAllowSameSiteNoneCookiesInSandbox); |
| |
| // When this feature is enabled, the network service will wait until First-Party |
| // Sets are initialized before issuing requests that use the HTTP cache or |
| // cookies. |
| NET_EXPORT BASE_DECLARE_FEATURE(kWaitForFirstPartySetsInit); |
| |
| // Controls the maximum time duration an outermost frame navigation should be |
| // deferred by RWS initialization. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kWaitForFirstPartySetsInitNavigationThrottleTimeout; |
| |
| // When enabled, a cross-site ancestor chain bit is included in the partition |
| // key in partitioned cookies. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAncestorChainBitEnabledInPartitionedCookies); |
| |
| // When enabled, requestStorageAccessFor will require storage access permissions |
| // granted by StorageAccessApi or StorageAccessHeaders to send cookies on |
| // requests allowed because of requestStorageAccessFor instead of cors. |
| NET_EXPORT BASE_DECLARE_FEATURE(kRequestStorageAccessNoCorsRequired); |
| |
| // When enabled, the Storage Access API follows the Same Origin Policy when |
| // including cookies on network requests. (I.e., a cross-site cookie is only |
| // included via the Storage Access API if the request's URL's origin [not site] |
| // has opted into receiving cross-site cookies.) |
| NET_EXPORT |
| BASE_DECLARE_FEATURE(kStorageAccessApiFollowsSameOriginPolicy); |
| |
| // Controls whether static key pinning is enforced. |
| NET_EXPORT BASE_DECLARE_FEATURE(kStaticKeyPinningEnforcement); |
| |
| // When enabled, cookies with a non-ASCII domain attribute will be rejected. |
| NET_EXPORT BASE_DECLARE_FEATURE(kCookieDomainRejectNonASCII); |
| |
| NET_EXPORT BASE_DECLARE_FEATURE(kThirdPartyStoragePartitioning); |
| |
| // Controls consideration of top-level 3PCD origin trial settings. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTopLevelTpcdOriginTrial); |
| |
| // Feature to enable consideration of 3PC deprecation trial settings. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTpcdTrialSettings); |
| |
| // Feature to enable consideration of top-level 3PC deprecation trial settings. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTopLevelTpcdTrialSettings); |
| |
| // Whether to enable the use of 3PC based on 3PCD metadata grants delivered via |
| // component updater. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTpcdMetadataGrants); |
| |
| // Whether to enable staged rollback of the TPCD Metadata Entries. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTpcdMetadataStageControl); |
| |
| // Whether ALPS parsing is on for any type of frame. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAlpsParsing); |
| |
| // Whether ALPS parsing is on for client hint parsing specifically. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAlpsClientHintParsing); |
| |
| // Whether to kill the session on Error::kAcceptChMalformed. |
| NET_EXPORT BASE_DECLARE_FEATURE(kShouldKillSessionOnAcceptChMalformed); |
| |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableWebsocketsOverHttp3); |
| |
| #if BUILDFLAG(IS_WIN) |
| // Whether or not to use the GetNetworkConnectivityHint API on modern Windows |
| // versions for the Network Change Notifier. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableGetNetworkConnectivityHintAPI); |
| |
| // Whether or not to enable TCP port randomization via SO_RANDOMIZE_PORT on |
| // Windows 20H1+. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableTcpPortRandomization); |
| |
| // Whether to use a TCP socket implementation which uses an IO completion |
| // handler to be notified of completed reads and writes, instead of an event. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTcpSocketIoCompletionPortWin); |
| #endif |
| |
| // Avoid creating cache entries for transactions that are most likely no-store. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAvoidEntryCreationForNoStore); |
| NET_EXPORT extern const base::FeatureParam<int> |
| kAvoidEntryCreationForNoStoreCacheSize; |
| |
| // Prefetch to follow normal semantics instead of 5-minute rule |
| // https://crbug.com/1345207 |
| NET_EXPORT BASE_DECLARE_FEATURE(kPrefetchFollowsNormalCacheSemantics); |
| |
| // A flag for new Kerberos feature, that suggests new UI |
| // when Kerberos authentication in browser fails on ChromeOS. |
| // b/260522530 |
| #if BUILDFLAG(IS_CHROMEOS) |
| NET_EXPORT BASE_DECLARE_FEATURE(kKerberosInBrowserRedirect); |
| #endif |
| |
| // A flag to use asynchronous session creation for new QUIC sessions. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAsyncQuicSession); |
| |
| // A flag to make multiport context creation asynchronous. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAsyncMultiPortPath); |
| |
| // Enables custom proxy configuration for the IP Protection experimental proxy. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableIpProtectionProxy); |
| |
| // Sets the name of the IP protection auth token server. |
| NET_EXPORT extern const base::FeatureParam<std::string> kIpPrivacyTokenServer; |
| |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyIssuerTokenServer; |
| |
| // Sets the path component of the IP protection auth token server URL used for |
| // getting initial token signing data. |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyTokenServerGetInitialDataPath; |
| |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyIssuerTokenServerPath; |
| |
| // Sets the path component of the IP protection auth token server URL used for |
| // getting blind-signed tokens. |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyTokenServerGetTokensPath; |
| |
| // Sets the path component of the IP protection auth token server URL used for |
| // getting proxy configuration. |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyTokenServerGetProxyConfigPath; |
| |
| // Sets the batch size to fetch new auth tokens for IP protection. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kIpPrivacyAuthTokenCacheBatchSize; |
| |
| // Sets the cache low-water-mark for auth tokens for IP protection. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kIpPrivacyAuthTokenCacheLowWaterMark; |
| |
| // Sets the normal time between fetches of the IP protection proxy list. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyProxyListFetchInterval; |
| |
| // Sets the minimum time between fetches of the IP protection proxy list, such |
| // as when a re-fetch is forced due to an error. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyProxyListMinFetchInterval; |
| |
| // Fetches of the IP Protection proxy list will have a random time in the range |
| // of plus or minus this delta added to their interval. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyProxyListFetchIntervalFuzz; |
| |
| // Overrides the ProxyA hostname normally set by the proxylist fetch. |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyProxyAHostnameOverride; |
| |
| // Overrides the ProxyB hostname normally set by the proxylist fetch. |
| NET_EXPORT extern const base::FeatureParam<std::string> |
| kIpPrivacyProxyBHostnameOverride; |
| |
| // Controls whether IP Protection _proxying_ is bypassed by not including any |
| // of the proxies in the proxy list. This supports experimental comparison of |
| // connections that _would_ have been proxied, but were not. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyDirectOnly; |
| |
| // If true, pass OAuth token to Phosphor in GetProxyConfig API for IP |
| // Protection. |
| NET_EXPORT extern const base::FeatureParam<bool> |
| kIpPrivacyIncludeOAuthTokenInGetProxyConfig; |
| |
| // Controls whether a header ("IP-Protection: 1") should be added to proxied |
| // network requests. |
| NET_EXPORT extern const base::FeatureParam<bool> |
| kIpPrivacyAddHeaderToProxiedRequests; |
| |
| // Token expirations will have a random time between 5 seconds and this delta |
| // subtracted from their expiration, in order to even out the load on the token |
| // servers. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyExpirationFuzz; |
| |
| // Backoff time applied when fetching tokens from the IP Protection auth |
| // token server encounters an error indicating that the primary account is not |
| // eligible (e.g., user is signed in but not eligible for IP protection) or |
| // a 403 (FORBIDDEN) status code (e.g., quota exceeded). |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyTryGetAuthTokensNotEligibleBackoff; |
| |
| // Backoff time applied when fetching tokens from the IP Protection auth |
| // token server encounters a transient error, such as a failure to fetch |
| // an OAuth token for a primary account or a network issue. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyTryGetAuthTokensTransientBackoff; |
| |
| // Backoff time applied when fetching tokens from the IP Protection auth |
| // token server encounters a 400 (BAD REQUEST) or 401 (UNAUTHORIZED) status code |
| // which suggests a bug. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kIpPrivacyTryGetAuthTokensBugBackoff; |
| |
| // If true, only proxy traffic when the top-level site uses the http:// or |
| // https:// schemes. This prevents attempts to proxy from top-level sites with |
| // chrome://, chrome-extension://, or other non-standard schemes, in addition to |
| // top-level sites using less common schemes like blob:// and data://. |
| NET_EXPORT extern const base::FeatureParam<bool> |
| kIpPrivacyRestrictTopLevelSiteSchemes; |
| |
| // If true, IP protection will attempt to use QUIC to connect to proxies, |
| // falling back to HTTPS. If false, it will only use HTTPs. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyUseQuicProxies; |
| |
| // If true, IP protection will only use QUIC to connect to proxies, with no |
| // fallback to HTTPS. This is intended for development of the QUIC |
| // functionality. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyUseQuicProxiesOnly; |
| |
| // Truncate IP protection proxy chains to a single proxy. This is intended for |
| // development of the QUIC functionality. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyUseSingleProxy; |
| |
| // Send all traffic to this host via IP Protection proxies, regardless of MDL, |
| // 1P/3P, or token availability. This is intended for development of the QUIC |
| // functionality. |
| NET_EXPORT extern const base::FeatureParam<std::string> kIpPrivacyAlwaysProxy; |
| |
| // Fallback to direct when connections to IP protection proxies fail. This |
| // defaults to true and is intended for development of the QUIC functionality. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyFallbackToDirect; |
| |
| // Identifier for an experiment arm, to be sent to IP Protection proxies and the |
| // token server in the `Ip-Protection-Debug-Experiment-Arm` header. The default |
| // value, 0, is not sent. |
| NET_EXPORT extern const base::FeatureParam<int> kIpPrivacyDebugExperimentArm; |
| |
| // Caches tokens by geo allowing for tokens to be preserved on network/geo |
| // changes. The default value of this feature is false which maintains existing |
| // behavior by default. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyCacheTokensByGeo; |
| |
| // When enabled and an IP protection delegate can be be created in the |
| // `NetworkContext`, a `IpProtectionProxyDelegate` will ALWAYS be created even |
| // for `NetworkContexts` that do not participate in IP protection. This is |
| // necessary for the WebView traffic experiment. By default, this feature param |
| // is false and will not create a delegate when IP protection is not enabled. |
| // Further, this also prevents the unnecessary instantiation of the |
| // `IpProtectionCore` for a `NetworkContext` that does not participate in IP |
| // protection. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyAlwaysCreateCore; |
| |
| // Enables IP protection in incognito mode only. The default value of this |
| // feature is false, which maintains the existing behavior when |
| // `kEnableIpProtectionProxy` is enabled, IPP is enabled in both regular and |
| // incognito browsing sessions. When set to true, the main profile Network |
| // Context won't proxy traffic using IP Protection. |
| NET_EXPORT extern const base::FeatureParam<bool> kIpPrivacyOnlyInIncognito; |
| |
| // Whether QuicParams::migrate_sessions_on_network_change_v2 defaults to true or |
| // false. This is needed as a workaround to set this value to true on Android |
| // but not on WebView (until crbug.com/1430082 has been fixed). |
| NET_EXPORT BASE_DECLARE_FEATURE(kMigrateSessionsOnNetworkChangeV2); |
| |
| // Enables whether blackhole detector should be disabled during connection |
| // migration and there is no available network. |
| NET_EXPORT BASE_DECLARE_FEATURE(kDisableBlackholeOnNoNewNetwork); |
| |
| #if BUILDFLAG(IS_LINUX) |
| // AddressTrackerLinux will not run inside the network service in this |
| // configuration, which will improve the Linux network service sandbox. |
| // TODO(crbug.com/40220507): remove this. |
| NET_EXPORT BASE_DECLARE_FEATURE(kAddressTrackerLinuxIsProxied); |
| #endif // BUILDFLAG(IS_LINUX) |
| |
| // Enables binding of cookies to the port that originally set them by default. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnablePortBoundCookies); |
| |
| // Enables binding of cookies to the scheme that originally set them. Also |
| // enables domain cookie shadowing protection. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableSchemeBoundCookies); |
| |
| // Disallows cookies to have non ascii values in their name or value. |
| NET_EXPORT BASE_DECLARE_FEATURE(kDisallowNonAsciiCookies); |
| |
| // Enables expiration duration limit (3 hours) for cookies on insecure websites. |
| // This feature is a no-op unless kEnableSchemeBoundCookies is enabled. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTimeLimitedInsecureCookies); |
| |
| // Enables enabling third-party cookie blocking from the command line. |
| NET_EXPORT BASE_DECLARE_FEATURE(kForceThirdPartyCookieBlocking); |
| |
| // Enables Early Hints on HTTP/1.1. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableEarlyHintsOnHttp11); |
| |
| // Enables draft-07 version of WebTransport over HTTP/3. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableWebTransportDraft07); |
| |
| NET_EXPORT BASE_DECLARE_FEATURE(kThirdPartyPartitionedStorageAllowedByDefault); |
| |
| // Enables a more efficient implementation of SpdyHeadersToHttpResponse(). |
| NET_EXPORT BASE_DECLARE_FEATURE(kSpdyHeadersToHttpResponseUseBuilder); |
| |
| // Enables receiving ECN bit by UDP sockets in Chrome, and reporting the counts |
| // to QUIC servers via ACK frames. |
| NET_EXPORT BASE_DECLARE_FEATURE(kReportEcn); |
| |
| // Enables using the new ALPS codepoint to negotiate application settings for |
| // HTTP2. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseNewAlpsCodepointHttp2); |
| |
| // Enables using the new ALPS codepoint to negotiate application settings for |
| // QUIC. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseNewAlpsCodepointQUIC); |
| |
| // Treat HTTP header `Expires: "0"` as expired value according section 5.3 on |
| // RFC 9111. |
| // TODO(crbug.com/41395025): Remove after the bug fix will go well for a |
| // while on stable channels. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTreatHTTPExpiresHeaderValueZeroAsExpired); |
| |
| // Enables truncating the response body to the content length. |
| NET_EXPORT BASE_DECLARE_FEATURE(kTruncateBodyToContentLength); |
| |
| #if BUILDFLAG(IS_MAC) |
| // Reduces the frequency of IP address change notifications that result in |
| // TCP and QUIC connection resets. |
| NET_EXPORT BASE_DECLARE_FEATURE(kReduceIPAddressChangeNotification); |
| #endif // BUILDFLAG(IS_MAC) |
| |
| // This feature will enable the Device Bound Session Credentials protocol to let |
| // the server assert sessions (and cookies) are bound to a specific device. |
| NET_EXPORT BASE_DECLARE_FEATURE(kDeviceBoundSessions); |
| // This feature will enable the browser to persist Device Bound Session data |
| // across restarts. This feature is only valid if `kDeviceBoundSessions` is |
| // enabled. |
| NET_EXPORT BASE_DECLARE_FEATURE(kPersistDeviceBoundSessions); |
| |
| // When enabled, all proxies in a proxy chain are partitioned by the NAK for the |
| // endpoint of the connection. When disabled, proxies carrying tunnels to other |
| // proxies (i.e., all proxies but the last one in the ProxyChain) are not |
| // partitioned, allowing greater connection re-use. |
| NET_EXPORT BASE_DECLARE_FEATURE(kPartitionProxyChains); |
| |
| // Enables more checks when creating a SpdySession for proxy. These checks are |
| // already applied to non-proxy SpdySession creations. |
| // TODO(crbug.com/343519247): Remove this once we are sure that these checks are |
| // not causing any problems. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSpdySessionForProxyAdditionalChecks); |
| |
| // When this feature is enabled, Chromium can use stored shared dictionaries |
| // even when the connection is using HTTP/1 for non-localhost requests. |
| NET_EXPORT BASE_DECLARE_FEATURE(kCompressionDictionaryTransportOverHttp1); |
| |
| // When this feature is enabled, Chromium can use stored shared dictionaries |
| // even when the connection is using HTTP/2 for non-localhost requests. |
| NET_EXPORT BASE_DECLARE_FEATURE(kCompressionDictionaryTransportOverHttp2); |
| |
| // When this feature is enabled, Chromium will use stored shared dictionaries |
| // only if the request URL is a localhost URL or the transport layer is using a |
| // certificate rooted at a standard CA root. |
| NET_EXPORT BASE_DECLARE_FEATURE( |
| kCompressionDictionaryTransportRequireKnownRootCert); |
| |
| // Enables enterprises to use the Reporting API to collect 3PCD-related |
| // issues from sites used in their organization. |
| NET_EXPORT BASE_DECLARE_FEATURE(kReportingApiEnableEnterpriseCookieIssues); |
| |
| // Optimize parsing data: URLs. |
| NET_EXPORT BASE_DECLARE_FEATURE(kOptimizeParsingDataUrls); |
| |
| // Use the simdutf library to base64 decode data: URLs. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSimdutfBase64Support); |
| |
| // Further optimize parsing data: URLs. |
| NET_EXPORT BASE_DECLARE_FEATURE(kFurtherOptimizeParsingDataUrls); |
| |
| // Enables support for codepoints defined in draft-ietf-tls-tls13-pkcs1, which |
| // enable RSA keys to be used with client certificates even if they do not |
| // support RSA-PSS. |
| NET_EXPORT BASE_DECLARE_FEATURE(kLegacyPKCS1ForTLS13); |
| |
| // Keep whitespace for non-base64 encoded data: URLs. |
| NET_EXPORT BASE_DECLARE_FEATURE(kKeepWhitespaceForDataUrls); |
| |
| // If enabled, unrecognized keys in a No-Vary-Search header will be ignored. |
| // Otherwise, unrecognized keys are treated as if the header was invalid. |
| NET_EXPORT BASE_DECLARE_FEATURE(kNoVarySearchIgnoreUnrecognizedKeys); |
| |
| // If enabled, then a cookie entry containing both encrypted and plaintext |
| // values is considered invalid, and the entire eTLD group will be dropped. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEncryptedAndPlaintextValuesAreInvalid); |
| |
| // Kill switch for Static CT Log (aka Tiled Log aka Sunlight) |
| // enforcements in Certificate Transparency policy checks. If disabled, SCTs |
| // from Static CT Logs will simply be ignored. |
| NET_EXPORT BASE_DECLARE_FEATURE(kEnableStaticCTAPIEnforcement); |
| |
| // Finch experiment to select a disk cache backend. |
| enum class DiskCacheBackend { |
| kSimple, |
| kBlockfile, |
| }; |
| NET_EXPORT BASE_DECLARE_FEATURE(kDiskCacheBackendExperiment); |
| NET_EXPORT extern const base::FeatureParam<DiskCacheBackend> |
| kDiskCacheBackendParam; |
| |
| // If enabled, ignore Strict-Transport-Security for [*.]localhost hosts. |
| NET_EXPORT BASE_DECLARE_FEATURE(kIgnoreHSTSForLocalhost); |
| |
| // If enabled, main frame navigation resources will be prioritized in Simple |
| // Cache. So they will be less likely to be evicted. |
| NET_EXPORT BASE_DECLARE_FEATURE(kSimpleCachePrioritizedCaching); |
| // This is a factor by which we divide the size of an entry that has the |
| // HINT_HIGH_PRIORITY flag set to prioritize it for eviction to be less likely |
| // evicted. |
| NET_EXPORT extern const base::FeatureParam<int> |
| kSimpleCachePrioritizedCachingPrioritizationFactor; |
| // The period of time that the entry with HINT_HIGH_PRIORITY flag is considered |
| // prioritized. |
| NET_EXPORT extern const base::FeatureParam<base::TimeDelta> |
| kSimpleCachePrioritizedCachingPrioritizationPeriod; |
| |
| #if BUILDFLAG(USE_NSS_CERTS) |
| // If enabled, use new implementation of client cert path building. |
| NET_EXPORT BASE_DECLARE_FEATURE(kNewClientCertPathBuilding); |
| #endif // BUILDFLAG(USE_NSS_CERTS) |
| |
| // When enabled HSTS upgrades will only apply to top-level navigations. |
| NET_EXPORT BASE_DECLARE_FEATURE(kHstsTopLevelNavigationsOnly); |
| |
| // Whether or not to apply No-Vary-Search processing in the HTTP disk cache. |
| NET_EXPORT BASE_DECLARE_FEATURE(kHttpCacheNoVarySearch); |
| |
| NET_EXPORT BASE_DECLARE_FEATURE_PARAM(size_t, |
| kHttpCacheNoVarySearchCacheMaxEntries); |
| |
| // Enables sending the CORS Origin header on the POST request for Reporting API |
| // report uploads. |
| NET_EXPORT BASE_DECLARE_FEATURE(kReportingApiCorsOriginHeader); |
| |
| #if BUILDFLAG(IS_ANDROID) |
| // If enabled, Android OS's certificate verification (CertVerifyProcAndroid) is |
| // done using the certificate transparency aware API. |
| NET_EXPORT BASE_DECLARE_FEATURE(kUseCertTransparencyAwareApiForOsCertVerify); |
| #endif // BUILDFLAG(IS_ANDROID) |
| |
| } // namespace net::features |
| |
| #endif // NET_BASE_FEATURES_H_ |