blob: 45d8a55616774974b4fb5065faeebb1c0b0d431b [file] [log] [blame]
Glen Kuhne94814572016-10-25 12:40:35 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17syntax = "proto2";
18
19package clearcut.connectivity;
20
21option java_package = "com.android.server.wifi";
22option java_outer_classname = "WifiMetricsProto";
23
24// The information about the Wifi events.
25message WifiLog {
26
27 // Session information that gets logged for every Wifi connection.
28 repeated ConnectionEvent connection_event = 1;
29
30 // Number of saved networks in the user profile.
31 optional int32 num_saved_networks = 2;
32
33 // Number of open networks in the saved networks.
34 optional int32 num_open_networks = 3;
35
36 // Number of personal networks.
37 optional int32 num_personal_networks = 4;
38
39 // Number of enterprise networks.
40 optional int32 num_enterprise_networks = 5;
41
42 // Does the user have location setting enabled.
43 optional bool is_location_enabled = 6;
44
45 // Does the user have scanning enabled.
46 optional bool is_scanning_always_enabled = 7;
47
48 // Number of times user toggled wifi using the settings menu.
49 optional int32 num_wifi_toggled_via_settings = 8;
50
51 // Number of times user toggled wifi using the airplane menu.
52 optional int32 num_wifi_toggled_via_airplane = 9;
53
54 // Number of networks added by the user.
55 optional int32 num_networks_added_by_user = 10;
56
57 // Number of networks added by applications.
58 optional int32 num_networks_added_by_apps = 11;
59
60 // Number scans that returned empty results.
61 optional int32 num_empty_scan_results = 12;
62
63 // Number scans that returned at least one result.
64 optional int32 num_non_empty_scan_results = 13;
65
Ningyuan Wang72886332017-12-20 16:17:33 -080066 // Number of single scans requests.
Glen Kuhne94814572016-10-25 12:40:35 -070067 optional int32 num_oneshot_scans = 14;
68
69 // Number of repeated background scans that were scheduled to the chip.
70 optional int32 num_background_scans = 15;
71
72 // Error codes that a scan can result in.
73 enum ScanReturnCode {
74
75 // Return Code is unknown.
76 SCAN_UNKNOWN = 0;
77
78 // Scan was successful.
79 SCAN_SUCCESS = 1;
80
81 // Scan was successfully started, but was interrupted.
82 SCAN_FAILURE_INTERRUPTED = 2;
83
84 // Scan failed to start because of invalid configuration
85 // (bad channel, etc).
86 SCAN_FAILURE_INVALID_CONFIGURATION = 3;
87
88 // Could not start a scan because wifi is disabled.
89 FAILURE_WIFI_DISABLED = 4;
90
91 }
92
93 // Mapping of error codes to the number of times that scans resulted
94 // in that error.
95 repeated ScanReturnEntry scan_return_entries = 16;
96
97 message ScanReturnEntry {
98
99 // Return code of the scan.
100 optional ScanReturnCode scan_return_code = 1;
101
102 // Number of entries that were found in the scan.
103 optional int32 scan_results_count = 2;
104 }
105
106 // State of the Wifi.
107 enum WifiState {
108
109 // State is unknown.
110 WIFI_UNKNOWN = 0;
111
112 // Wifi is disabled.
113 WIFI_DISABLED = 1;
114
115 // Wifi is enabled.
116 WIFI_DISCONNECTED = 2;
117
118 // Wifi is enabled and associated with an AP.
119 WIFI_ASSOCIATED = 3;
120 }
121
122 // Mapping of system state to the number of times that scans were requested in
123 // that state
124 repeated WifiSystemStateEntry wifi_system_state_entries = 17;
125
126 message WifiSystemStateEntry {
127
128 // Current WiFi state.
129 optional WifiState wifi_state = 1;
130
131 // Count of scans in state.
132 optional int32 wifi_state_count = 2;
133
134 // Is screen on.
135 optional bool is_screen_on = 3;
136 }
137
138 // Mapping of Error/Success codes to the number of background scans that resulted in it
139 repeated ScanReturnEntry background_scan_return_entries = 18;
140
141 // Mapping of system state to the number of times that Background scans were requested in that
142 // state
143 repeated WifiSystemStateEntry background_scan_request_state = 19;
144
145 // Total number of times the Watchdog of Last Resort triggered, resetting the wifi stack
146 optional int32 num_last_resort_watchdog_triggers = 20;
147
148 // Total number of networks over bad association threshold when watchdog triggered
149 optional int32 num_last_resort_watchdog_bad_association_networks_total = 21;
150
151 // Total number of networks over bad authentication threshold when watchdog triggered
152 optional int32 num_last_resort_watchdog_bad_authentication_networks_total = 22;
153
154 // Total number of networks over bad dhcp threshold when watchdog triggered
155 optional int32 num_last_resort_watchdog_bad_dhcp_networks_total = 23;
156
157 // Total number of networks over bad other threshold when watchdog triggered
158 optional int32 num_last_resort_watchdog_bad_other_networks_total = 24;
159
160 // Total count of networks seen when watchdog triggered
161 optional int32 num_last_resort_watchdog_available_networks_total = 25;
162
163 // Total count of triggers with atleast one bad association network
164 optional int32 num_last_resort_watchdog_triggers_with_bad_association = 26;
165
166 // Total count of triggers with atleast one bad authentication network
167 optional int32 num_last_resort_watchdog_triggers_with_bad_authentication = 27;
168
169 // Total count of triggers with atleast one bad dhcp network
170 optional int32 num_last_resort_watchdog_triggers_with_bad_dhcp = 28;
171
172 // Total count of triggers with atleast one bad other network
173 optional int32 num_last_resort_watchdog_triggers_with_bad_other = 29;
174
175 // Count of times connectivity watchdog confirmed pno is working
176 optional int32 num_connectivity_watchdog_pno_good = 30;
177
178 // Count of times connectivity watchdog found pno not working
179 optional int32 num_connectivity_watchdog_pno_bad = 31;
180
181 // Count of times connectivity watchdog confirmed background scan is working
182 optional int32 num_connectivity_watchdog_background_good = 32;
183
184 // Count of times connectivity watchdog found background scan not working
185 optional int32 num_connectivity_watchdog_background_bad = 33;
186
187 // The time duration represented by this wifi log, from start to end of capture
188 optional int32 record_duration_sec = 34;
189
190 // Counts the occurrences of each individual RSSI poll level
191 repeated RssiPollCount rssi_poll_rssi_count = 35;
192
193 // Total number of times WiFi connected immediately after a Last Resort Watchdog trigger,
194 // without new networks becoming available.
195 optional int32 num_last_resort_watchdog_successes = 36;
196
197 // Total number of saved hidden networks
198 optional int32 num_hidden_networks = 37;
199
200 // Total number of saved passpoint / hotspot 2.0 networks
201 optional int32 num_passpoint_networks = 38;
202
203 // Total number of scan results
204 optional int32 num_total_scan_results = 39;
205
206 // Total number of scan results for open networks
207 optional int32 num_open_network_scan_results = 40;
208
209 // Total number of scan results for personal networks
210 optional int32 num_personal_network_scan_results = 41;
211
212 // Total number of scan results for enterprise networks
213 optional int32 num_enterprise_network_scan_results = 42;
214
215 // Total number of scan results for hidden networks
216 optional int32 num_hidden_network_scan_results = 43;
217
218 // Total number of scan results for hotspot 2.0 r1 networks
219 optional int32 num_hotspot2_r1_network_scan_results = 44;
220
221 // Total number of scan results for hotspot 2.0 r2 networks
222 optional int32 num_hotspot2_r2_network_scan_results = 45;
223
224 // Total number of scans handled by framework (oneshot or otherwise)
225 optional int32 num_scans = 46;
226
227 // Counts the occurrences of each alert reason.
228 repeated AlertReasonCount alert_reason_count = 47;
229
230 // Counts the occurrences of each Wifi score
231 repeated WifiScoreCount wifi_score_count = 48;
232
233 // Histogram of Soft AP Durations
234 repeated SoftApDurationBucket soft_ap_duration = 49;
235
236 // Histogram of Soft AP ReturnCode
237 repeated SoftApReturnCodeCount soft_ap_return_code = 50;
238
239 // Histogram of the delta between scan result RSSI and RSSI polls
240 repeated RssiPollCount rssi_poll_delta_count = 51;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700241
242 // List of events
243 repeated StaEvent sta_event_list = 52;
Roshan Pius3607a392017-05-11 09:05:58 -0700244
245 // Total number of times WiFi HAL crashed.
246 optional int32 num_hal_crashes = 53;
247
248 // Total number of times WiFicond crashed.
249 optional int32 num_wificond_crashes = 54;
250
251 // Indicates the number of times an error was encountered in
Roshan Piusa66e6382018-03-14 16:10:16 -0700252 // Wifi HAL on |WifiNative.setupInterfaceForClientMode|.
253 optional int32 num_setup_client_interface_failure_due_to_hal = 55;
Roshan Pius3607a392017-05-11 09:05:58 -0700254
255 // Indicates the number of times an error was encountered in
Roshan Piusa66e6382018-03-14 16:10:16 -0700256 // Wificond on |WifiNative.setupInterfaceForClientMode|.
257 optional int32 num_setup_client_interface_failure_due_to_wificond = 56;
Etan Cohen737addc2017-04-26 08:01:57 -0700258
259 // Wi-Fi Aware metrics
260 optional WifiAwareLog wifi_aware_log = 57;
Peter Qiu84243152017-06-22 13:44:04 -0700261
262 // Number of saved Passpoint providers in user profile.
263 optional int32 num_passpoint_providers = 58;
264
265 // Count of times Passpoint provider being installed.
266 optional int32 num_passpoint_provider_installation = 59;
267
268 // Count of times Passpoint provivider is installed successfully.
269 optional int32 num_passpoint_provider_install_success = 60;
270
271 // Count of times Passpoint provider is being uninstalled.
272 optional int32 num_passpoint_provider_uninstallation = 61;
273
274 // Count of times Passpoint provider is uninstalled successfully.
275 optional int32 num_passpoint_provider_uninstall_success = 62;
276
277 // Count of saved Passpoint providers device has ever connected to.
278 optional int32 num_passpoint_providers_successfully_connected = 63;
Glen Kuhnee2d67c02017-04-25 13:08:29 -0700279
280 // Histogram counting instances of scans with N many ScanResults with unique ssids
281 repeated NumConnectableNetworksBucket total_ssids_in_scan_histogram = 64;
282
283 // Histogram counting instances of scans with N many ScanResults/bssids
284 repeated NumConnectableNetworksBucket total_bssids_in_scan_histogram = 65;
285
286 // Histogram counting instances of scans with N many unique open ssids
287 repeated NumConnectableNetworksBucket available_open_ssids_in_scan_histogram = 66;
288
289 // Histogram counting instances of scans with N many bssids for open networks
290 repeated NumConnectableNetworksBucket available_open_bssids_in_scan_histogram = 67;
291
292 // Histogram counting instances of scans with N many unique ssids for saved networks
293 repeated NumConnectableNetworksBucket available_saved_ssids_in_scan_histogram = 68;
294
295 // Histogram counting instances of scans with N many bssids for saved networks
296 repeated NumConnectableNetworksBucket available_saved_bssids_in_scan_histogram = 69;
297
298 // Histogram counting instances of scans with N many unique SSIDs for open or saved networks
299 repeated NumConnectableNetworksBucket available_open_or_saved_ssids_in_scan_histogram = 70;
300
301 // Histogram counting instances of scans with N many BSSIDs for open or saved networks
302 repeated NumConnectableNetworksBucket available_open_or_saved_bssids_in_scan_histogram = 71;
303
304 // Histogram counting instances of scans with N many ScanResults matching unique saved passpoint providers
305 repeated NumConnectableNetworksBucket available_saved_passpoint_provider_profiles_in_scan_histogram = 72;
306
307 // Histogram counting instances of scans with N many ScanResults BSSIDs matching a saved passpoint provider
308 repeated NumConnectableNetworksBucket available_saved_passpoint_provider_bssids_in_scan_histogram = 73;
309
310 // Counts the number of AllSingleScanLister.onResult calls with a full band scan result
311 optional int32 full_band_all_single_scan_listener_results = 74;
312
313 // Counts the number of AllSingleScanLister.onResult calls with a partial (channels) scan result
314 optional int32 partial_all_single_scan_listener_results = 75;
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -0700315
316 // Pno scan metrics
317 optional PnoScanMetrics pno_scan_metrics = 76;
Stephen Chenfc0facb2017-09-14 14:35:15 -0700318
319 // Histogram of "Connect to Network" notifications.
320 // The notification Action should be unset.
321 repeated ConnectToNetworkNotificationAndActionCount connect_to_network_notification_count = 77;
322
323 // Histogram of "Connect to Network" notification user actions.
324 repeated ConnectToNetworkNotificationAndActionCount connect_to_network_notification_action_count = 78;
325
326 // The number of SSIDs blacklisted from recommendation by the open network
327 // notification recommender
328 optional int32 open_network_recommender_blacklist_size = 79;
329
330 // Is the available network notification feature turned on
331 optional bool is_wifi_networks_available_notification_on = 80;
332
333 // Count of recommendation updates made by the open network notification
334 // recommender
335 optional int32 num_open_network_recommendation_updates = 81;
336
337 // Count of connection attempts that were initiated unsuccessfully
338 optional int32 num_open_network_connect_message_failed_to_send = 82;
Etan Cohenc462a7a2017-10-09 10:27:44 -0700339
340 // Histogram counting instances of scans with N many HotSpot 2.0 R1 APs
341 repeated NumConnectableNetworksBucket observed_hotspot_r1_aps_in_scan_histogram = 83;
342
343 // Histogram counting instances of scans with N many HotSpot 2.0 R2 APs
344 repeated NumConnectableNetworksBucket observed_hotspot_r2_aps_in_scan_histogram = 84;
345
346 // Histogram counting instances of scans with N many unique HotSpot 2.0 R1 ESS.
347 // Where ESS is defined as the (HESSID, ANQP Domain ID), (SSID, ANQP Domain ID) or
348 // (SSID, BSSID) tuple depending on AP configuration (in the above priority
349 // order).
350 repeated NumConnectableNetworksBucket observed_hotspot_r1_ess_in_scan_histogram = 85;
351
352 // Histogram counting instances of scans with N many unique HotSpot 2.0 R2 ESS.
353 // Where ESS is defined as the (HESSID, ANQP Domain ID), (SSID, ANQP Domain ID) or
354 // (SSID, BSSID) tuple depending on AP configuration (in the above priority
355 // order).
356 repeated NumConnectableNetworksBucket observed_hotspot_r2_ess_in_scan_histogram = 86;
357
358 // Histogram counting number of HotSpot 2.0 R1 APs per observed ESS in a scan
359 // (one value added per unique ESS - potentially multiple counts per single
360 // scan!)
361 repeated NumConnectableNetworksBucket observed_hotspot_r1_aps_per_ess_in_scan_histogram = 87;
362
363 // Histogram counting number of HotSpot 2.0 R2 APs per observed ESS in a scan
364 // (one value added per unique ESS - potentially multiple counts per single
365 // scan!)
366 repeated NumConnectableNetworksBucket observed_hotspot_r2_aps_per_ess_in_scan_histogram = 88;
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -0700367
368 // SoftAP event list tracking sessions and client counts in tethered mode
369 repeated SoftApConnectedClientsEvent soft_ap_connected_clients_events_tethered = 89;
370
371 // SoftAP event list tracking sessions and client counts in local only mode
372 repeated SoftApConnectedClientsEvent soft_ap_connected_clients_events_local_only = 90;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -0700373
374 // Wps connection metrics
375 optional WpsMetrics wps_metrics = 91;
Siddharth Rayac8b69a2018-01-27 18:05:44 -0800376
377 // Wifi power statistics
378 optional WifiPowerStats wifi_power_stats = 92;
Ningyuan Wang72886332017-12-20 16:17:33 -0800379
380 // Number of connectivity single scan requests.
381 optional int32 num_connectivity_oneshot_scans = 93;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -0800382
383 // WifiWake statistics
384 optional WifiWakeStats wifi_wake_stats = 94;
Etan Cohenf30125b2018-03-24 16:51:41 -0700385
386 // Histogram counting instances of scans with N many 802.11mc (RTT) supporting APs
387 repeated NumConnectableNetworksBucket observed_80211mc_supporting_aps_in_scan_histogram = 95;
Roshan Piusa66e6382018-03-14 16:10:16 -0700388
389 // Total number of times supplicant crashed.
390 optional int32 num_supplicant_crashes = 96;
391
392 // Total number of times hostapd crashed.
393 optional int32 num_hostapd_crashes = 97;
394
395 // Indicates the number of times an error was encountered in
396 // supplicant on |WifiNative.setupInterfaceForClientMode|.
397 optional int32 num_setup_client_interface_failure_due_to_supplicant = 98;
398
399 // Indicates the number of times an error was encountered in
400 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
401 optional int32 num_setup_soft_ap_interface_failure_due_to_hal = 99;
402
403 // Indicates the number of times an error was encountered in
404 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
405 optional int32 num_setup_soft_ap_interface_failure_due_to_wificond = 100;
406
407 // Indicates the number of times an error was encountered in
408 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
409 optional int32 num_setup_soft_ap_interface_failure_due_to_hostapd = 101;
410
411 // Indicates the number of times we got an interface down in client mode.
412 optional int32 num_client_interface_down = 102;
413
414 // Indicates the number of times we got an interface down in softap mode.
415 optional int32 num_soft_ap_interface_down = 103;
Roshan Pius48f65632018-03-27 14:33:01 -0700416
417 // Indicates the number of scan requests from external apps.
418 optional int32 num_external_app_oneshot_scan_requests = 104;
419
420 // Indicates the number of times a scan request from an external foreground app was throttled.
421 optional int32 num_external_foreground_app_oneshot_scan_requests_throttled = 105;
422
423 // Indicates the number of times a scan request from an external background app was throttled.
424 optional int32 num_external_background_app_oneshot_scan_requests_throttled = 106;
xshu63522622018-03-15 16:48:29 -0700425
426 // WifiLastResortWatchdog time milliseconds delta between trigger and first connection success
427 optional int64 watchdog_trigger_to_connection_success_duration_ms = 107 [default = -1];
428
429 // The number of times wifi experienced failures after watchdog has already been triggered and is
430 // waiting for a connection success
431 optional int64 watchdog_total_connection_failure_count_after_trigger = 108;
xshu39cef4d2018-03-23 15:14:02 -0700432
433 // Number of times DFS channel scans are requested in single scan requests.
434 optional int32 num_oneshot_has_dfs_channel_scans = 109;
Etan Cohen4ec8dd32018-03-16 09:43:01 -0700435
436 // Wi-Fi RTT metrics
437 optional WifiRttLog wifi_rtt_log = 110;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700438
439 // Flag which indicates if Connected MAC Randomization is enabled
440 optional bool is_mac_randomization_on = 111 [default = false];
Roshan Pius6de7a672018-04-24 16:30:13 -0700441
442 // Number of radio mode changes to MCC (Multi channel concurrency).
443 optional int32 num_radio_mode_change_to_mcc = 112;
444
445 // Number of radio mode changes to SCC (Single channel concurrency).
446 optional int32 num_radio_mode_change_to_scc = 113;
447
448 // Number of radio mode changes to SBS (Single band simultaneous).
449 optional int32 num_radio_mode_change_to_sbs = 114;
450
451 // Number of radio mode changes to DBS (Dual band simultaneous).
452 optional int32 num_radio_mode_change_to_dbs = 115;
Roshan Piusd3a58cb2018-05-14 15:53:44 -0700453
454 // Number of times the firmware picked a SoftAp channel not satisfying user band preference.
455 optional int32 num_soft_ap_user_band_preference_unsatisfied = 116;
Michael Plass8a779ac2018-05-09 16:56:52 -0700456
457 // Identifier for experimental scoring parameter settings.
458 optional string score_experiment_id = 117;
459
xshub483b722018-05-22 15:46:26 -0700460 // Data on wifi radio usage
461 optional WifiRadioUsage wifi_radio_usage = 118;
Jong Wook Kim411cab92018-04-26 15:09:23 -0700462
463 // Stores settings values used for metrics testing.
464 optional ExperimentValues experiment_values = 119;
465
466 // List of WifiIsUnusableEvents which get logged when we notice that WiFi is unusable.
467 // Collected only when WIFI_IS_UNUSABLE_EVENT_METRICS_ENABLED Settings is enabled.
468 repeated WifiIsUnusableEvent wifi_is_unusable_event_list = 120;
Jong Wook Kime4aa37f2018-04-23 11:18:24 -0700469
470 // Counts the occurrences of each link speed (Mbps) level
471 // with rssi (dBm) and rssi^2 sums (dBm^2)
472 repeated LinkSpeedCount link_speed_counts = 121;
Ahmed ElArabawyba64b612018-06-15 09:17:45 -0700473
474 // Number of times the SarManager failed to register SAR sensor listener
475 optional int32 num_sar_sensor_registration_failures = 122;
Ecco Park5a403002018-07-23 15:53:10 -0700476
477 // Histogram of the EAP method type of all installed Passpoint profiles
478 repeated PasspointProfileTypeCount installed_passpoint_profile_type = 123;
Glen Kuhne94814572016-10-25 12:40:35 -0700479}
480
481// Information that gets logged for every WiFi connection.
482message RouterFingerPrint {
483
484 enum RoamType {
485
486 // Type is unknown.
487 ROAM_TYPE_UNKNOWN = 0;
488
489 // No roaming - usually happens on a single band (2.4 GHz) router.
490 ROAM_TYPE_NONE = 1;
491
492 // Enterprise router.
493 ROAM_TYPE_ENTERPRISE = 2;
494
495 // DBDC => Dual Band Dual Concurrent essentially a router that
496 // supports both 2.4 GHz and 5 GHz bands.
497 ROAM_TYPE_DBDC = 3;
498 }
499
500 enum Auth {
501
502 // Auth is unknown.
503 AUTH_UNKNOWN = 0;
504
505 // No authentication.
506 AUTH_OPEN = 1;
507
508 // If the router uses a personal authentication.
509 AUTH_PERSONAL = 2;
510
511 // If the router is setup for enterprise authentication.
512 AUTH_ENTERPRISE = 3;
513 }
514
515 enum RouterTechnology {
516
517 // Router is unknown.
518 ROUTER_TECH_UNKNOWN = 0;
519
520 // Router Channel A.
521 ROUTER_TECH_A = 1;
522
523 // Router Channel B.
524 ROUTER_TECH_B = 2;
525
526 // Router Channel G.
527 ROUTER_TECH_G = 3;
528
529 // Router Channel N.
530 ROUTER_TECH_N = 4;
531
532 // Router Channel AC.
533 ROUTER_TECH_AC = 5;
534
535 // When the channel is not one of the above.
536 ROUTER_TECH_OTHER = 6;
537 }
538
539 optional RoamType roam_type = 1;
540
541 // Channel on which the connection takes place.
542 optional int32 channel_info = 2;
543
544 // DTIM setting of the router.
545 optional int32 dtim = 3;
546
547 // Authentication scheme of the router.
548 optional Auth authentication = 4;
549
550 // If the router is hidden.
551 optional bool hidden = 5;
552
553 // Channel information.
554 optional RouterTechnology router_technology = 6;
555
556 // whether ipv6 is supported.
557 optional bool supports_ipv6 = 7;
558
559 // If the router is a passpoint / hotspot 2.0 network
560 optional bool passpoint = 8;
561}
562
563message ConnectionEvent {
564
565 // Roam Type.
566 enum RoamType {
567
568 // Type is unknown.
569 ROAM_UNKNOWN = 0;
570
571 // No roaming.
572 ROAM_NONE = 1;
573
574 // DBDC roaming.
575 ROAM_DBDC = 2;
576
577 // Enterprise roaming.
578 ROAM_ENTERPRISE = 3;
579
580 // User selected roaming.
581 ROAM_USER_SELECTED = 4;
582
583 // Unrelated.
584 ROAM_UNRELATED = 5;
585 }
586
587 // Connectivity Level Failure.
588 enum ConnectivityLevelFailure {
589
590 // Failure is unknown.
591 HLF_UNKNOWN = 0;
592
593 // No failure.
594 HLF_NONE = 1;
595
596 // DHCP failure.
597 HLF_DHCP = 2;
598
599 // No internet connection.
600 HLF_NO_INTERNET = 3;
601
602 // No internet connection.
603 HLF_UNWANTED = 4;
604 }
605
606 // Start time of the connection.
607 optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP];
608
609 // Duration to connect.
610 optional int32 duration_taken_to_connect_millis = 2;
611
612 // Router information.
613 optional RouterFingerPrint router_fingerprint = 3;
614
615 // RSSI at the start of the connection.
616 optional int32 signal_strength = 4;
617
618 // Roam Type.
619 optional RoamType roam_type = 5;
620
621 // Result of the connection.
622 optional int32 connection_result = 6;
623
624 // Reasons for level 2 failure (needs to be coordinated with wpa-supplicant).
625 optional int32 level_2_failure_code = 7;
626
627 // Failures that happen at the connectivity layer.
628 optional ConnectivityLevelFailure connectivity_level_failure_code = 8;
629
630 // Has bug report been taken.
631 optional bool automatic_bug_report_taken = 9;
632}
633
634// Number of occurrences of a specific RSSI poll rssi value
635message RssiPollCount {
636 // RSSI
637 optional int32 rssi = 1;
638
639 // Number of RSSI polls with 'rssi'
640 optional int32 count = 2;
xshu122886e2018-05-16 15:38:49 -0700641
642 // Beacon frequency of the channel in MHz
643 optional int32 frequency = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700644}
645
646// Number of occurrences of a specific alert reason value
647message AlertReasonCount {
648 // Alert reason
649 optional int32 reason = 1;
650
651 // Number of alerts with |reason|.
652 optional int32 count = 2;
653}
654
655// Counts the number of instances of a specific Wifi Score calculated by WifiScoreReport
656message WifiScoreCount {
657 // Wifi Score
658 optional int32 score = 1;
659
660 // Number of Wifi score reports with this score
661 optional int32 count = 2;
662}
663
Jong Wook Kime4aa37f2018-04-23 11:18:24 -0700664// Number of occurrences of a specific link speed (Mbps)
665// and sum of rssi (dBm) and rssi^2 (dBm^2)
666message LinkSpeedCount {
667 // Link speed (Mbps)
668 optional int32 link_speed_mbps = 1;
669
670 // Number of RSSI polls with link_speed
671 optional int32 count = 2;
672
673 // Sum of absolute values of rssi values (dBm)
674 optional int32 rssi_sum_dbm = 3;
675
676 // Sum of squares of rssi values (dBm^2)
677 optional int64 rssi_sum_of_squares_dbm_sq = 4;
678}
679
Glen Kuhne94814572016-10-25 12:40:35 -0700680// Number of occurrences of Soft AP session durations
681message SoftApDurationBucket {
682 // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec)
683 // The (inclusive) lower bound of Soft AP session duration represented by this bucket
684 optional int32 duration_sec = 1;
685
686 // The size of this bucket
687 optional int32 bucket_size_sec = 2;
688
689 // Number of soft AP session durations that fit into this bucket
690 optional int32 count = 3;
691}
692
693// Number of occurrences of a soft AP session return code
694message SoftApReturnCodeCount {
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800695
696 enum SoftApStartResult {
697
698 // SoftApManager return code unknown
699 SOFT_AP_RETURN_CODE_UNKNOWN = 0;
700
701 // SoftAp started successfully
702 SOFT_AP_STARTED_SUCCESSFULLY = 1;
703
704 // Catch all for failures with no specific failure reason
705 SOFT_AP_FAILED_GENERAL_ERROR = 2;
706
707 // SoftAp failed to start due to NO_CHANNEL error
708 SOFT_AP_FAILED_NO_CHANNEL = 3;
709 }
710
711 // Historical, no longer used for writing as of 01/2017.
712 optional int32 return_code = 1 [deprecated = true];
Glen Kuhne94814572016-10-25 12:40:35 -0700713
714 // Occurrences of this soft AP return code
715 optional int32 count = 2;
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800716
717 // Result of attempt to start SoftAp
718 optional SoftApStartResult start_result = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700719}
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700720
721message StaEvent {
722 message ConfigInfo {
723 // The set of key management protocols supported by this configuration.
724 optional uint32 allowed_key_management = 1 [default = 0];
725
726 // The set of security protocols supported by this configuration.
727 optional uint32 allowed_protocols = 2 [default = 0];
728
729 // The set of authentication protocols supported by this configuration.
730 optional uint32 allowed_auth_algorithms = 3 [default = 0];
731
732 // The set of pairwise ciphers for WPA supported by this configuration.
733 optional uint32 allowed_pairwise_ciphers = 4 [default = 0];
734
735 // The set of group ciphers supported by this configuration.
736 optional uint32 allowed_group_ciphers = 5;
737
738 // Is this a 'hidden network'
739 optional bool hidden_ssid = 6;
740
741 // Is this a Hotspot 2.0 / passpoint network
742 optional bool is_passpoint = 7;
743
744 // Is this an 'ephemeral' network (Not in saved network list, recommended externally)
745 optional bool is_ephemeral = 8;
746
747 // Has a successful connection ever been established using this WifiConfiguration
748 optional bool has_ever_connected = 9;
749
750 // RSSI of the scan result candidate associated with this WifiConfiguration
751 optional int32 scan_rssi = 10 [default = -127];
752
753 // Frequency of the scan result candidate associated with this WifiConfiguration
754 optional int32 scan_freq = 11 [default = -1];
755 }
756
757 enum EventType {
758 // Default/Invalid event
759 TYPE_UNKNOWN = 0;
760
761 // Supplicant Association Rejection event. Code contains the 802.11
762 TYPE_ASSOCIATION_REJECTION_EVENT = 1;
763
764 // Supplicant L2 event,
765 TYPE_AUTHENTICATION_FAILURE_EVENT = 2;
766
767 // Supplicant L2 event
768 TYPE_NETWORK_CONNECTION_EVENT = 3;
769
770 // Supplicant L2 event
771 TYPE_NETWORK_DISCONNECTION_EVENT = 4;
772
773 // Supplicant L2 event
774 TYPE_SUPPLICANT_STATE_CHANGE_EVENT = 5;
775
776 // Supplicant L2 event
777 TYPE_CMD_ASSOCIATED_BSSID = 6;
778
779 // IP Manager successfully completed IP Provisioning
780 TYPE_CMD_IP_CONFIGURATION_SUCCESSFUL = 7;
781
782 // IP Manager failed to complete IP Provisioning
783 TYPE_CMD_IP_CONFIGURATION_LOST = 8;
784
785 // IP Manager lost reachability to network neighbors
786 TYPE_CMD_IP_REACHABILITY_LOST = 9;
787
788 // Indicator that Supplicant is targeting a BSSID for roam/connection
789 TYPE_CMD_TARGET_BSSID = 10;
790
791 // Wifi framework is initiating a connection attempt
792 TYPE_CMD_START_CONNECT = 11;
793
794 // Wifi framework is initiating a roaming connection attempt
795 TYPE_CMD_START_ROAM = 12;
796
797 // SystemAPI connect() command, Settings App
798 TYPE_CONNECT_NETWORK = 13;
799
800 // Network Agent has validated the internet connection (Captive Portal Check success, or user
801 // validation)
802 TYPE_NETWORK_AGENT_VALID_NETWORK = 14;
803
804 // Framework initiated disconnect. Sometimes generated to give an extra reason for a disconnect
805 // Should typically be followed by a NETWORK_DISCONNECTION_EVENT with a local_gen = true
806 TYPE_FRAMEWORK_DISCONNECT = 15;
Michael Plassbb367b62017-10-06 10:29:51 -0700807
808 // The NetworkAgent score for wifi has changed in a way that may impact
809 // connectivity
810 TYPE_SCORE_BREACH = 16;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700811
812 // Framework changed Sta interface MAC address
813 TYPE_MAC_CHANGE = 17;
Jong Wook Kimb56979f2018-08-08 14:50:18 -0700814
815 // Wifi is turned on
816 TYPE_WIFI_ENABLED = 18;
817
818 // Wifi is turned off
819 TYPE_WIFI_DISABLED = 19;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700820 }
821
822 enum FrameworkDisconnectReason {
823 // default/none/unknown value
824 DISCONNECT_UNKNOWN = 0;
825
826 // API DISCONNECT
827 DISCONNECT_API = 1;
828
829 // Some framework internal reason (generic)
830 DISCONNECT_GENERIC = 2;
831
832 // Network Agent network validation failed, user signaled network unwanted
833 DISCONNECT_UNWANTED = 3;
834
835 // Roaming timed out
836 DISCONNECT_ROAM_WATCHDOG_TIMER = 4;
837
838 // P2P service requested wifi disconnect
839 DISCONNECT_P2P_DISCONNECT_WIFI_REQUEST = 5;
840
841 // SIM was removed while using a SIM config
842 DISCONNECT_RESET_SIM_NETWORKS = 6;
843 }
844
845 // Authentication Failure reasons as reported through the API.
846 enum AuthFailureReason {
847 // Unknown default
848 AUTH_FAILURE_UNKNOWN = 0;
849
850 // The reason code if there is no error during authentication. It could also imply that there no
851 // authentication in progress,
852 AUTH_FAILURE_NONE = 1;
853
854 // The reason code if there was a timeout authenticating.
855 AUTH_FAILURE_TIMEOUT = 2;
856
857 // The reason code if there was a wrong password while authenticating.
858 AUTH_FAILURE_WRONG_PSWD = 3;
859
860 // The reason code if there was EAP failure while authenticating.
861 AUTH_FAILURE_EAP_FAILURE = 4;
862 }
863
864 // What event was this
865 optional EventType type = 1;
866
867 // 80211 death reason code, relevant to NETWORK_DISCONNECTION_EVENTs
868 optional int32 reason = 2 [default = -1];
869
870 // 80211 Association Status code, relevant to ASSOCIATION_REJECTION_EVENTs
871 optional int32 status = 3 [default = -1];
872
873 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
874 optional bool local_gen = 4 [default = false];
875
876 // Network information from the WifiConfiguration of a framework initiated connection attempt
877 optional ConfigInfo config_info = 5;
878
879 // RSSI from the last rssi poll (Only valid for active connections)
880 optional int32 last_rssi = 6 [default = -127];
881
882 // Link speed from the last rssi poll (Only valid for active connections)
883 optional int32 last_link_speed = 7 [default = -1];
884
885 // Frequency from the last rssi poll (Only valid for active connections)
886 optional int32 last_freq = 8 [default = -1];
887
888 // Enum used to define bit positions in the supplicant_state_change_bitmask
889 // See {@code frameworks/base/wifi/java/android/net/wifi/SupplicantState.java} for documentation
890 enum SupplicantState {
891 STATE_DISCONNECTED = 0;
892
893 STATE_INTERFACE_DISABLED = 1;
894
895 STATE_INACTIVE = 2;
896
897 STATE_SCANNING = 3;
898
899 STATE_AUTHENTICATING = 4;
900
901 STATE_ASSOCIATING = 5;
902
903 STATE_ASSOCIATED = 6;
904
905 STATE_FOUR_WAY_HANDSHAKE = 7;
906
907 STATE_GROUP_HANDSHAKE = 8;
908
909 STATE_COMPLETED = 9;
910
911 STATE_DORMANT = 10;
912
913 STATE_UNINITIALIZED = 11;
914
915 STATE_INVALID = 12;
916 }
917
Jong Wook Kim411cab92018-04-26 15:09:23 -0700918 // Bit mask of all supplicant state changes that occurred since the last event
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700919 optional uint32 supplicant_state_changes_bitmask = 9 [default = 0];
920
921 // The number of milliseconds that have elapsed since the device booted
922 optional int64 start_time_millis = 10 [default = 0];
923
924 optional FrameworkDisconnectReason framework_disconnect_reason = 11 [default = DISCONNECT_UNKNOWN];
925
Jong Wook Kim411cab92018-04-26 15:09:23 -0700926 // Flag which indicates if an association rejection event occurred due to a timeout
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700927 optional bool association_timed_out = 12 [default = false];
928
929 // Authentication failure reason, as reported by WifiManager (calculated from state & deauth code)
930 optional AuthFailureReason auth_failure_reason = 13 [default = AUTH_FAILURE_UNKNOWN];
Michael Plassbb367b62017-10-06 10:29:51 -0700931
932 // NetworkAgent score of connected wifi
933 optional int32 last_score = 14 [default = -1];
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700934}
Etan Cohen737addc2017-04-26 08:01:57 -0700935
936// Wi-Fi Aware metrics
937message WifiAwareLog {
938 // total number of unique apps that used Aware (measured on attach)
939 optional int32 num_apps = 1;
940
941 // total number of unique apps that used an identity callback when attaching
942 optional int32 num_apps_using_identity_callback = 2;
943
944 // maximum number of attaches for an app
945 optional int32 max_concurrent_attach_sessions_in_app = 3;
946
947 // histogram of attach request results
948 repeated NanStatusHistogramBucket histogram_attach_session_status = 4;
949
950 // maximum number of concurrent publish sessions in a single app
951 optional int32 max_concurrent_publish_in_app = 5;
952
953 // maximum number of concurrent subscribe sessions in a single app
954 optional int32 max_concurrent_subscribe_in_app = 6;
955
956 // maximum number of concurrent discovery (publish+subscribe) sessions in a single app
957 optional int32 max_concurrent_discovery_sessions_in_app = 7;
958
959 // maximum number of concurrent publish sessions in the system
960 optional int32 max_concurrent_publish_in_system = 8;
961
962 // maximum number of concurrent subscribe sessions in the system
963 optional int32 max_concurrent_subscribe_in_system = 9;
964
965 // maximum number of concurrent discovery (publish+subscribe) sessions in the system
966 optional int32 max_concurrent_discovery_sessions_in_system = 10;
967
968 // histogram of publish request results
969 repeated NanStatusHistogramBucket histogram_publish_status = 11;
970
971 // histogram of subscribe request results
972 repeated NanStatusHistogramBucket histogram_subscribe_status = 12;
973
974 // number of unique apps which experienced a discovery session creation failure due to lack of
975 // resources
976 optional int32 num_apps_with_discovery_session_failure_out_of_resources = 13;
977
978 // histogram of create ndp request results
979 repeated NanStatusHistogramBucket histogram_request_ndp_status = 14;
980
981 // histogram of create ndp out-of-band (OOB) request results
982 repeated NanStatusHistogramBucket histogram_request_ndp_oob_status = 15;
983
984 // maximum number of concurrent active data-interfaces (NDI) in a single app
985 optional int32 max_concurrent_ndi_in_app = 19;
986
987 // maximum number of concurrent active data-interfaces (NDI) in the system
988 optional int32 max_concurrent_ndi_in_system = 20;
989
990 // maximum number of concurrent data-paths (NDP) in a single app
991 optional int32 max_concurrent_ndp_in_app = 21;
992
993 // maximum number of concurrent data-paths (NDP) in the system
994 optional int32 max_concurrent_ndp_in_system = 22;
995
996 // maximum number of concurrent secure data-paths (NDP) in a single app
997 optional int32 max_concurrent_secure_ndp_in_app = 23;
998
999 // maximum number of concurrent secure data-paths (NDP) in the system
1000 optional int32 max_concurrent_secure_ndp_in_system = 24;
1001
1002 // maximum number of concurrent data-paths (NDP) per data-interface (NDI)
1003 optional int32 max_concurrent_ndp_per_ndi = 25;
1004
1005 // histogram of durations of Aware being available
1006 repeated HistogramBucket histogram_aware_available_duration_ms = 26;
1007
1008 // histogram of durations of Aware being enabled
1009 repeated HistogramBucket histogram_aware_enabled_duration_ms = 27;
1010
1011 // histogram of duration (in ms) of attach sessions
1012 repeated HistogramBucket histogram_attach_duration_ms = 28;
1013
1014 // histogram of duration (in ms) of publish sessions
1015 repeated HistogramBucket histogram_publish_session_duration_ms = 29;
1016
1017 // histogram of duration (in ms) of subscribe sessions
1018 repeated HistogramBucket histogram_subscribe_session_duration_ms = 30;
1019
1020 // histogram of duration (in ms) of data-paths (NDP)
1021 repeated HistogramBucket histogram_ndp_session_duration_ms = 31;
1022
1023 // histogram of usage (in MB) of data-paths (NDP)
1024 repeated HistogramBucket histogram_ndp_session_data_usage_mb = 32;
1025
1026 // histogram of usage (in MB) of data-path creation time (in ms) measured as request -> confirm
1027 repeated HistogramBucket histogram_ndp_creation_time_ms = 33;
1028
1029 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: minimum
1030 optional int64 ndp_creation_time_ms_min = 34;
1031
1032 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: maximum
1033 optional int64 ndp_creation_time_ms_max = 35;
1034
1035 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum
1036 optional int64 ndp_creation_time_ms_sum = 36;
1037
1038 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum of sq
1039 optional int64 ndp_creation_time_ms_sum_of_sq = 37;
1040
1041 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: number of
1042 // samples
1043 optional int64 ndp_creation_time_ms_num_samples = 38;
1044
1045 // total time within the logging window that aware was available
1046 optional int64 available_time_ms = 39;
1047
1048 // total time within the logging window that aware was enabled
1049 optional int64 enabled_time_ms = 40;
1050
Etan Cohenfa723572018-03-13 07:25:50 -07001051 // maximum number of concurrent publish sessions enabling ranging in a single app
1052 optional int32 max_concurrent_publish_with_ranging_in_app = 41;
1053
1054 // maximum number of concurrent subscribe sessions specifying a geofence in a single app
1055 optional int32 max_concurrent_subscribe_with_ranging_in_app = 42;
1056
1057 // maximum number of concurrent publish sessions enabling ranging in the system
1058 optional int32 max_concurrent_publish_with_ranging_in_system = 43;
1059
1060 // maximum number of concurrent subscribe sessions specifying a geofence in the system
1061 optional int32 max_concurrent_subscribe_with_ranging_in_system = 44;
1062
1063 // histogram of subscribe session geofence minimum (only when specified)
1064 repeated HistogramBucket histogram_subscribe_geofence_min = 45;
1065
1066 // histogram of subscribe session geofence maximum (only when specified)
1067 repeated HistogramBucket histogram_subscribe_geofence_max = 46;
1068
1069 // total number of subscribe sessions which enabled ranging
1070 optional int32 num_subscribes_with_ranging = 47;
1071
1072 // total number of matches (service discovery indication) with ranging provided
1073 optional int32 num_matches_with_ranging = 48;
1074
1075 // total number of matches (service discovery indication) for service discovery with ranging
1076 // enabled which did not trigger ranging
1077 optional int32 num_matches_without_ranging_for_ranging_enabled_subscribes = 49;
1078
Etan Cohen737addc2017-04-26 08:01:57 -07001079 // Histogram bucket for Wi-Fi Aware logs. Range is [start, end)
1080 message HistogramBucket {
1081 // lower range of the bucket (inclusive)
1082 optional int64 start = 1;
1083
1084 // upper range of the bucket (exclusive)
1085 optional int64 end = 2;
1086
1087 // number of samples in the bucket
1088 optional int32 count = 3;
1089 }
1090
1091 // Status of various NAN operations
1092 enum NanStatusTypeEnum {
1093 // constant to be used by proto
1094 UNKNOWN = 0;
1095
1096 // NAN operation succeeded
1097 SUCCESS = 1;
1098
1099 // NAN Discovery Engine/Host driver failures
1100 INTERNAL_FAILURE = 2;
1101
1102 // NAN OTA failures
1103 PROTOCOL_FAILURE = 3;
1104
1105 // The publish/subscribe discovery session id is invalid
1106 INVALID_SESSION_ID = 4;
1107
1108 // Out of resources to fufill request
1109 NO_RESOURCES_AVAILABLE = 5;
1110
1111 // Invalid arguments passed
1112 INVALID_ARGS = 6;
1113
1114 // Invalid peer id
1115 INVALID_PEER_ID = 7;
1116
1117 // Invalid NAN data-path (ndp) id
1118 INVALID_NDP_ID = 8;
1119
1120 // Attempting to enable NAN when not available, e.g. wifi is disabled
1121 NAN_NOT_ALLOWED = 9;
1122
1123 // Over the air ACK not received
1124 NO_OTA_ACK = 10;
1125
1126 // Attempting to enable NAN when already enabled
1127 ALREADY_ENABLED = 11;
1128
1129 // Can't queue tx followup message foor transmission
1130 FOLLOWUP_TX_QUEUE_FULL = 12;
1131
1132 // Unsupported concurrency of NAN and another feature - NAN disabled
1133 UNSUPPORTED_CONCURRENCY_NAN_DISABLED = 13;
1134
1135 // Unknown NanStatusType
1136 UNKNOWN_HAL_STATUS = 14;
1137 }
1138
1139 // Histogram bucket for Wi-Fi Aware (NAN) status.
1140 message NanStatusHistogramBucket {
1141 // status type defining the bucket
1142 optional NanStatusTypeEnum nan_status_type = 1;
1143
1144 // number of samples in the bucket
1145 optional int32 count = 2;
1146 }
1147}
1148
Glen Kuhnee2d67c02017-04-25 13:08:29 -07001149// Data point used to build 'Number of Connectable Network' histograms
1150message NumConnectableNetworksBucket {
1151 // Number of connectable networks seen in a scan result
1152 optional int32 num_connectable_networks = 1 [default = 0];
1153
1154 // Number of scan results with num_connectable_networks
1155 optional int32 count = 2 [default = 0];
1156}
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -07001157
1158// Pno scan metrics
1159// Here "Pno Scan" refers to the session of offloaded scans, these metrics count the result of a
1160// single session, and not the individual scans within that session.
1161message PnoScanMetrics {
1162 // Total number of attempts to offload pno scans
1163 optional int32 num_pno_scan_attempts = 1;
1164
1165 // Total number of pno scans failed
1166 optional int32 num_pno_scan_failed = 2;
1167
1168 // Number of pno scans started successfully over offload
1169 optional int32 num_pno_scan_started_over_offload = 3;
1170
1171 // Number of pno scans failed over offload
1172 optional int32 num_pno_scan_failed_over_offload = 4;
1173
1174 // Total number of pno scans that found any network
1175 optional int32 num_pno_found_network_events = 5;
1176}
Stephen Chenfc0facb2017-09-14 14:35:15 -07001177
1178// Number of occurrences for a particular "Connect to Network" Notification or
1179// notification Action.
1180message ConnectToNetworkNotificationAndActionCount {
1181
1182 // "Connect to Network" notifications
1183 enum Notification {
1184
1185 // Default
1186 NOTIFICATION_UNKNOWN = 0;
1187
1188 // Initial notification with a recommended network.
1189 NOTIFICATION_RECOMMEND_NETWORK = 1;
1190
1191 // Notification when connecting to the recommended network.
1192 NOTIFICATION_CONNECTING_TO_NETWORK = 2;
1193
1194 // Notification when successfully connected to the network.
1195 NOTIFICATION_CONNECTED_TO_NETWORK = 3;
1196
1197 // Notification when failed to connect to network.
1198 NOTIFICATION_FAILED_TO_CONNECT = 4;
1199 }
1200
1201 // "Connect to Network" notification actions
1202 enum Action {
1203
1204 // Default
1205 ACTION_UNKNOWN = 0;
1206
1207 // User dismissed the "Connect to Network" notification.
1208 ACTION_USER_DISMISSED_NOTIFICATION = 1;
1209
1210 // User tapped action button to connect to recommended network.
1211 ACTION_CONNECT_TO_NETWORK = 2;
1212
1213 // User tapped action button to open Wi-Fi Settings.
1214 ACTION_PICK_WIFI_NETWORK = 3;
1215
1216 // User tapped "Failed to connect" notification to open Wi-Fi Settings.
1217 ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE = 4;
1218 }
1219
1220 // Recommenders of the "Connect to Network" notification
1221 enum Recommender {
1222
1223 // Default.
1224 RECOMMENDER_UNKNOWN = 0;
1225
1226 // Open Network Available recommender.
1227 RECOMMENDER_OPEN = 1;
1228 }
1229
1230 // Notification Type.
1231 optional Notification notification = 1;
1232
1233 // Action Type.
1234 optional Action action = 2;
1235
1236 // Recommender Type.
1237 optional Recommender recommender = 3;
1238
1239 // Occurrences of this action.
1240 optional int32 count = 4;
1241}
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001242
1243// SoftAP event tracking sessions and client counts
1244message SoftApConnectedClientsEvent {
1245
1246 // Soft AP event Types
1247 enum SoftApEventType {
1248
1249 // Soft AP is Up and ready for use
1250 SOFT_AP_UP = 0;
1251
1252 // Soft AP is Down
1253 SOFT_AP_DOWN = 1;
1254
1255 // Number of connected soft AP clients has changed
1256 NUM_CLIENTS_CHANGED = 2;
1257 }
1258
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001259 // Soft AP channel bandwidth types
1260 enum ChannelBandwidth {
1261
1262 BANDWIDTH_INVALID = 0;
1263
1264 BANDWIDTH_20_NOHT = 1;
1265
1266 BANDWIDTH_20 = 2;
1267
1268 BANDWIDTH_40 = 3;
1269
1270 BANDWIDTH_80 = 4;
1271
1272 BANDWIDTH_80P80 = 5;
1273
1274 BANDWIDTH_160 = 6;
1275 }
1276
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001277 // Type of event being recorded
1278 optional SoftApEventType event_type = 1;
1279
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001280 // Time passed since last boot in milliseconds
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001281 optional int64 time_stamp_millis = 2;
1282
1283 // Number of connected clients if event_type is NUM_CLIENTS_CHANGED, otherwise zero.
1284 optional int32 num_connected_clients = 3;
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001285
1286 // Channel frequency used for Soft AP
1287 optional int32 channel_frequency = 4;
1288
1289 // Channel bandwidth used for Soft AP
1290 optional ChannelBandwidth channel_bandwidth = 5;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -07001291}
1292
1293// Wps connection metrics
1294// Keeps track of Wi-Fi Protected Setup usage
1295message WpsMetrics {
1296 // Total number of wps connection attempts
1297 optional int32 num_wps_attempts = 1;
1298
1299 // Total number of wps connection successes
1300 optional int32 num_wps_success = 2;
1301
1302 // Total number of wps failures on start
1303 optional int32 num_wps_start_failure = 3;
1304
1305 // Total number of wps overlap failure
1306 optional int32 num_wps_overlap_failure = 4;
1307
1308 // Total number of wps timeout failure
1309 optional int32 num_wps_timeout_failure = 5;
1310
1311 // Total number of other wps failure during connection
1312 optional int32 num_wps_other_connection_failure = 6;
1313
1314 // Total number of supplicant failure after wps
1315 optional int32 num_wps_supplicant_failure = 7;
1316
1317 // Total number of wps cancellation
1318 optional int32 num_wps_cancellation = 8;
1319}
Siddharth Rayac8b69a2018-01-27 18:05:44 -08001320
1321// Power stats for Wifi
1322message WifiPowerStats {
1323
1324 // Duration of log (ms)
1325 optional int64 logging_duration_ms = 1;
1326
1327 // Energy consumed by wifi (mAh)
1328 optional double energy_consumed_mah = 2;
1329
1330 // Amount of time wifi is in idle (ms)
1331 optional int64 idle_time_ms = 3;
1332
1333 // Amount of time wifi is in rx (ms)
1334 optional int64 rx_time_ms = 4;
1335
1336 // Amount of time wifi is in tx (ms)
1337 optional int64 tx_time_ms = 5;
Ningyuan Wang72886332017-12-20 16:17:33 -08001338}
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001339
1340// Metrics for Wifi Wake
1341message WifiWakeStats {
1342 // An individual session for Wifi Wake
1343 message Session {
1344 // A Wifi Wake lifecycle event
1345 message Event {
1346 // Elapsed time in milliseconds since start of session.
1347 optional int64 elapsed_time_millis = 1;
1348
1349 // Number of scans that have occurred since start of session.
1350 optional int32 elapsed_scans = 2;
1351 }
1352
1353 // Start time of session in milliseconds.
1354 optional int64 start_time_millis = 1;
1355
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001356 // The number of networks the lock was provided with at start.
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001357 optional int32 locked_networks_at_start = 2;
1358
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001359 // The number of networks in the lock at the time of the initialize event. Only valid if
1360 // initialize_event is recorded.
1361 optional int32 locked_networks_at_initialize = 6;
1362
1363 // Event for fully initializing the WakeupLock (i.e. WakeupLock is "locked").
1364 optional Event initialize_event = 7;
1365
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001366 // Event for unlocking the WakeupLock. Does not occur if lock was initialized with 0 networks.
1367 optional Event unlock_event = 3;
1368
1369 // Event for triggering wakeup.
1370 optional Event wakeup_event = 4;
1371
1372 // Event for WifiWake reset event. This event marks the end of a session.
1373 optional Event reset_event = 5;
1374 }
1375
1376 // Total number of sessions for Wifi Wake.
1377 optional int32 num_sessions = 1;
1378
1379 // Session information for every Wifi Wake session (up to a maximum of 10).
1380 repeated Session sessions = 2;
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001381
1382 // Number of ignored calls to start (due to WakeupController already being active).
1383 optional int32 num_ignored_starts = 3;
1384
1385 // Number of Wifi Wake sessions that have recorded wakeup events.
1386 optional int32 num_wakeups = 4;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001387}
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001388
1389// Metrics for Wi-Fi RTT
1390message WifiRttLog {
1391 // Number of RTT request API calls
1392 optional int32 num_requests = 1;
1393
1394 // Histogram of RTT operation overall status
1395 repeated RttOverallStatusHistogramBucket histogram_overall_status = 2;
1396
1397 // RTT to Access Points metrics
1398 optional RttToPeerLog rtt_to_ap = 3;
1399
1400 // RTT to Wi-Fi Aware peers metrics
1401 optional RttToPeerLog rtt_to_aware = 4;
1402
1403 // Metrics for a RTT to Peer (peer = AP or Wi-Fi Aware)
1404 message RttToPeerLog {
1405 // Total number of API calls
1406 optional int32 num_requests = 1;
1407
1408 // Total number of individual requests
1409 optional int32 num_individual_requests = 2;
1410
1411 // Total number of apps which requested RTT
1412 optional int32 num_apps = 3;
1413
1414 // Histogram of total number of RTT requests by an app (WifiRttManager#startRanging)
1415 repeated HistogramBucket histogram_num_requests_per_app = 4;
1416
1417 // Histogram of number of peers in a single RTT request (RangingRequest entries)
1418 repeated HistogramBucket histogram_num_peers_per_request = 5;
1419
1420 // Histogram of status of individual RTT operations (RangingResult entries)
1421 repeated RttIndividualStatusHistogramBucket histogram_individual_status = 6;
1422
1423 // Histogram of measured distances (RangingResult entries)
1424 repeated HistogramBucket histogram_distance = 7;
1425
1426 // Histogram of interval of RTT requests by an app (WifiRttManager#startRanging)
1427 repeated HistogramBucket histogram_request_interval_ms = 8;
1428 }
1429
1430 // Histogram bucket for Wi-Fi RTT logs. Range is [start, end)
1431 message HistogramBucket {
1432 // lower range of the bucket (inclusive)
1433 optional int64 start = 1;
1434
1435 // upper range of the bucket (exclusive)
1436 optional int64 end = 2;
1437
1438 // number of samples in the bucket
1439 optional int32 count = 3;
1440 }
1441
1442 // Status codes for overall RTT operation
1443 enum RttOverallStatusTypeEnum {
1444 // constant to be used by proto
1445 OVERALL_UNKNOWN = 0;
1446
1447 // RTT operation succeeded (individual results may still fail)
1448 OVERALL_SUCCESS = 1;
1449
1450 // RTT operation failed (unspecified reason)
1451 OVERALL_FAIL = 2;
1452
1453 // RTT operation failed since RTT was not available (e.g. Airplane mode)
1454 OVERALL_RTT_NOT_AVAILABLE = 3;
1455
1456 // RTT operation timed-out: didn't receive response from HAL in expected time
1457 OVERALL_TIMEOUT = 4;
1458
1459 // RTT operation aborted since the app is spamming the service
1460 OVERALL_THROTTLE = 5;
1461
1462 // RTT request to HAL received immediate failure
1463 OVERALL_HAL_FAILURE = 6;
1464
1465 // RTT to Wi-Fi Aware peer using PeerHandle failed to get a MAC address translation
1466 OVERALL_AWARE_TRANSLATION_FAILURE = 7;
1467
1468 // RTT operation failed due to missing Location permission (post execution)
1469 OVERALL_LOCATION_PERMISSION_MISSING = 8;
1470 }
1471
1472 // Status codes for individual RTT operation
1473 enum RttIndividualStatusTypeEnum {
1474 // constant to be used by proto
1475 UNKNOWN = 0;
1476
1477 // RTT operation succeeded
1478 SUCCESS = 1;
1479
1480 // RTT failure: generic reason (no further information)
1481 FAILURE = 2;
1482
1483 // Target STA does not respond to request
1484 FAIL_NO_RSP = 3;
1485
1486 // Request rejected. Applies to 2-sided RTT only
1487 FAIL_REJECTED = 4;
1488
1489 // Operation not scheduled
1490 FAIL_NOT_SCHEDULED_YET = 5;
1491
1492 // Timing measurement times out
1493 FAIL_TM_TIMEOUT = 6;
1494
1495 // Target on different channel, cannot range
1496 FAIL_AP_ON_DIFF_CHANNEL = 7;
1497
1498 // Ranging not supported
1499 FAIL_NO_CAPABILITY = 8;
1500
1501 // Request aborted for unknown reason
1502 ABORTED = 9;
1503
1504 // Invalid T1-T4 timestamp
1505 FAIL_INVALID_TS = 10;
1506
1507 // 11mc protocol failed
1508 FAIL_PROTOCOL = 11;
1509
1510 // Request could not be scheduled
1511 FAIL_SCHEDULE = 12;
1512
1513 // Responder cannot collaborate at time of request
1514 FAIL_BUSY_TRY_LATER = 13;
1515
1516 // Bad request args
1517 INVALID_REQ = 14;
1518
1519 // WiFi not enabled
1520 NO_WIFI = 15;
1521
1522 // Responder overrides param info, cannot range with new params
1523 FAIL_FTM_PARAM_OVERRIDE = 16;
1524
1525 // HAL did not provide a result to a framework request
1526 MISSING_RESULT = 17;
1527 }
1528
1529 // Histogram bucket for Wi-Fi RTT overall operation status
1530 message RttOverallStatusHistogramBucket {
1531 // status type defining the bucket
1532 optional RttOverallStatusTypeEnum status_type = 1;
1533
1534 // number of samples in the bucket
1535 optional int32 count = 2;
1536 }
1537
1538 // Histogram bucket for Wi-Fi RTT individual operation status
1539 message RttIndividualStatusHistogramBucket {
1540 // status type defining the bucket
1541 optional RttIndividualStatusTypeEnum status_type = 1;
1542
1543 // number of samples in the bucket
1544 optional int32 count = 2;
1545 }
1546}
xshub483b722018-05-22 15:46:26 -07001547
1548// Usage data for the wifi radio while device is running on battery.
1549message WifiRadioUsage {
1550 // Duration of log (ms)
1551 optional int64 logging_duration_ms = 1;
1552
1553 // Total time for which the radio is awake due to scan.
1554 optional int64 scan_time_ms = 2;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001555}
1556
1557message ExperimentValues {
1558 // Indicates if we are logging WifiIsUnusableEvent in metrics
1559 optional bool wifi_is_unusable_logging_enabled = 1;
1560
1561 // Minimum number of txBad to trigger a data stall
1562 optional int32 wifi_data_stall_min_tx_bad = 2;
1563
1564 // Minimum number of txSuccess to trigger a data stall
1565 // when rxSuccess is 0
1566 optional int32 wifi_data_stall_min_tx_success_without_rx = 3;
Jong Wook Kime4aa37f2018-04-23 11:18:24 -07001567
1568 // Indicates if we are logging LinkSpeedCount in metrics
1569 optional bool link_speed_counts_logging_enabled = 4;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001570}
1571
1572message WifiIsUnusableEvent {
1573 enum TriggerType {
1574 // Default/Invalid event
1575 TYPE_UNKNOWN = 0;
1576
1577 // There is a data stall from tx failures
1578 TYPE_DATA_STALL_BAD_TX = 1;
1579
1580 // There is a data stall from rx failures
1581 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
1582
1583 // There is a data stall from both tx and rx failures
1584 TYPE_DATA_STALL_BOTH = 3;
1585
1586 // Firmware generated an alert
1587 TYPE_FIRMWARE_ALERT = 4;
1588 }
1589
1590 // What event triggered WifiIsUnusableEvent.
1591 optional TriggerType type = 1;
1592
1593 // The timestamp at which this event occurred.
1594 // Measured in milliseconds that have elapsed since the device booted.
1595 optional int64 start_time_millis = 2;
1596
1597 // NetworkAgent score of connected wifi.
1598 // Defaults to -1 if the score was never set.
1599 optional int32 last_score = 3 [default = -1];
1600
1601 // Delta of successfully transmitted (ACKed) unicast data packets
1602 // between the last two WifiLinkLayerStats.
1603 optional int64 tx_success_delta = 4;
1604
1605 // Delta of transmitted unicast data retry packets
1606 // between the last two WifiLinkLayerStats.
1607 optional int64 tx_retries_delta = 5;
1608
1609 // Delta of lost (not ACKed) transmitted unicast data packets
1610 // between the last two WifiLinkLayerStats.
1611 optional int64 tx_bad_delta = 6;
1612
1613 // Delta of received unicast data packets
1614 // between the last two WifiLinkLayerStats.
1615 optional int64 rx_success_delta = 7;
1616
1617 // Time in millisecond between the last two WifiLinkLayerStats.
1618 optional int64 packet_update_time_delta = 8;
1619
1620 // The timestamp at which the last WifiLinkLayerStats was updated.
1621 // Measured in milliseconds that have elapsed since the device booted.
1622 optional int64 last_link_layer_stats_update_time = 9;
1623
1624 // Firmware alert code. Only valid when the event was triggered by a firmware alert, otherwise -1.
1625 optional int32 firmware_alert_code = 10 [default = -1];
Ahmed ElArabawyba64b612018-06-15 09:17:45 -07001626}
Ecco Park5a403002018-07-23 15:53:10 -07001627
1628message PasspointProfileTypeCount {
1629 enum EapMethod {
1630 // Unknown Type
1631 TYPE_UNKNOWN = 0;
1632
1633 // EAP_TLS (13)
1634 TYPE_EAP_TLS = 1;
1635
1636 // EAP_TTLS (21)
1637 TYPE_EAP_TTLS = 2;
1638
1639 // EAP_SIM (18)
1640 TYPE_EAP_SIM = 3;
1641
1642 // EAP_AKA (23)
1643 TYPE_EAP_AKA = 4;
1644
1645 // EAP_AKA_PRIME (50)
1646 TYPE_EAP_AKA_PRIME = 5;
1647 }
1648
1649 // Eap method type set in Passpoint profile
1650 optional EapMethod eap_method_type = 1;
1651
1652 // Num of installed Passpoint profile with same eap method
1653 optional int32 count = 2;
1654}