From a2a350ba5c914dbb65a71951eb1ee0994049f5d4 Mon Sep 17 00:00:00 2001 From: James Devine Date: Thu, 22 Feb 2024 19:17:28 +0000 Subject: [PATCH] Add device log files for 23.05 release --- .../commonerror_yml/app_manager_error.yml | 109 + .../commonerror_yml/app_manifest_error.yml | 209 ++ .../23.05/commonerror_yml/azcore_error.yml | 104 + .../commonerror_yml/bsp_generic_error.yml | 10 + .../commonerror_yml/byte_reader_error.yml | 10 + .../commonerror_yml/certstorage_error.yml | 81 + .../23.05/commonerror_yml/curl_error.yml | 3 + .../commonerror_yml/deviceauth_error.yml | 63 + .../commonerror_yml/firewall_rules_error.yml | 19 + .../flash_image_builder_error.yml | 49 + .../23.05/commonerror_yml/hal_error.yml | 257 ++ .../commonerror_yml/hal_mt3620_error.yml | 26 + .../23.05/commonerror_yml/http_error.yml | 29 + .../23.05/commonerror_yml/i2c_error.yml | 39 + .../commonerror_yml/image_metadata_error.yml | 20 + .../commonerror_yml/image_update_error.yml | 148 + .../23.05/commonerror_yml/ipc_error.yml | 16 + .../23.05/commonerror_yml/json_error.yml | 8 + .../lifetime_manager_error.yml | 83 + .../23.05/commonerror_yml/linux_error.yml | 6 + .../commonerror_yml/log_manager_error.yml | 44 + .../23.05/commonerror_yml/mounter_error.yml | 51 + .../23.05/commonerror_yml/netconfig_error.yml | 123 + .../23.05/commonerror_yml/networkd_error.yml | 220 ++ .../23.05/commonerror_yml/partition_error.yml | 91 + .../commonerror_yml/peripheral_error.yml | 68 + .../commonerror_yml/permissions_error.yml | 81 + .../23.05/commonerror_yml/pluton_error.yml | 20 + .../prov_services_client_error.yml | 3 + .../23.05/commonerror_yml/recovery_error.yml | 143 + .../recovery_table_builder_error.yml | 55 + .../resource_manager_error.yml | 18 + .../23.05/commonerror_yml/rest_app_error.yml | 60 + .../23.05/commonerror_yml/rest_error.yml | 99 + .../commonerror_yml/rest_update_error.yml | 28 + .../23.05/commonerror_yml/sd_emmc_error.yml | 75 + .../security_monitor_syscall_error.yml | 12 + .../23.05/commonerror_yml/spi_error.yml | 43 + .../system_event_manager_error.yml | 44 + .../23.05/commonerror_yml/wifi_error.yml | 93 + .../commonerror_yml/wifi_request_error.yml | 91 + .../23.05/commonerror_yml/wolfcrypt_error.yml | 2 + .../23.05/commonerror_yml/wolfssl_error.yml | 2 + .../log_manifests/adctool_log_manifest.json | 1001 +++++ .../app_launch_log_manifest.json | 9 + .../application-manager_log_manifest.json | 1314 +++++++ .../appman_apps_log_manifest.json | 733 ++++ .../appman_handlers_log_manifest.json | 372 ++ .../appman_init_log_manifest.json | 320 ++ .../appman_permissions_log_manifest.json | 331 ++ .../appman_system_events_log_manifest.json | 223 ++ .../appman_util_log_manifest.json | 242 ++ .../appmanifest_log_manifest.json | 149 + .../async_request_log_manifest.json | 37 + .../log_manifests/azured_log_manifest.json | 1188 ++++++ .../certstorage_log_manifest.json | 107 + .../deviceauth_log_manifest.json | 220 ++ .../log_manifests/firewall_log_manifest.json | 200 + .../firewall_rules_log_manifest.json | 37 + .../log_manifests/gatewayd_log_manifest.json | 520 +++ .../log_manifests/httpd_log_manifest.json | 31 + .../23.05/log_manifests/i2c_log_manifest.json | 23 + .../23.05/log_manifests/ipc_log_manifest.json | 141 + .../log_manifests/libwifi_log_manifest.json | 71 + .../log_manifests/netconfig_log_manifest.json | 247 ++ .../log_manifests/netsocket_log_manifest.json | 133 + .../log_manifests/networkd_log_manifest.json | 3327 +++++++++++++++++ .../peripheral_log_manifest.json | 349 ++ .../log_manifests/quota_log_manifest.json | 6 + .../log_manifests/rebooter_log_manifest.json | 43 + .../rftest_server_log_manifest.json | 247 ++ .../log_manifests/skuser_log_manifest.json | 44 + .../23.05/log_manifests/spi_log_manifest.json | 27 + .../testagentd_log_manifest.json | 229 ++ .../log_manifests/uidmap_log_manifest.json | 147 + 75 files changed, 14823 insertions(+) create mode 100644 ParseDeviceLog/23.05/commonerror_yml/app_manager_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/app_manifest_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/azcore_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/bsp_generic_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/byte_reader_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/certstorage_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/curl_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/deviceauth_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/firewall_rules_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/flash_image_builder_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/hal_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/hal_mt3620_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/http_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/i2c_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/image_metadata_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/image_update_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/ipc_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/json_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/lifetime_manager_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/linux_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/log_manager_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/mounter_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/netconfig_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/networkd_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/partition_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/peripheral_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/permissions_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/pluton_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/prov_services_client_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/recovery_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/recovery_table_builder_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/resource_manager_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/rest_app_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/rest_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/rest_update_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/sd_emmc_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/security_monitor_syscall_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/spi_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/system_event_manager_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/wifi_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/wifi_request_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/wolfcrypt_error.yml create mode 100644 ParseDeviceLog/23.05/commonerror_yml/wolfssl_error.yml create mode 100644 ParseDeviceLog/23.05/log_manifests/adctool_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/app_launch_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/application-manager_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appman_apps_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appman_handlers_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appman_init_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appman_permissions_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appman_system_events_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appman_util_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/appmanifest_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/async_request_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/azured_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/certstorage_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/deviceauth_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/firewall_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/firewall_rules_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/gatewayd_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/httpd_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/i2c_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/ipc_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/libwifi_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/netconfig_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/netsocket_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/networkd_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/peripheral_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/quota_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/rebooter_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/rftest_server_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/skuser_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/spi_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/testagentd_log_manifest.json create mode 100644 ParseDeviceLog/23.05/log_manifests/uidmap_log_manifest.json diff --git a/ParseDeviceLog/23.05/commonerror_yml/app_manager_error.yml b/ParseDeviceLog/23.05/commonerror_yml/app_manager_error.yml new file mode 100644 index 0000000..6d23aff --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/app_manager_error.yml @@ -0,0 +1,109 @@ +# Appman error codes +category_id: 1 +name: AppManagerError +namespace: azure_sphere +codes: + - id: 1 + name: InvalidState + msg: Application in an invalid state for the requested operation + - id: 2 + name: CustomerManifestHasPolicy + msg: Customer manifest specified a policy + openapi: true + - id: 3 + name: CustomerRequestedIllegalCapability + msg: Customer requested a first-party-only capability + openapi: true + - id: 4 + name: NoAppWithMatchingId + msg: No application found with specified id + - id: 5 + name: DebuggerAlreadyLoaded + msg: Attempted to install a second debugger + - id: 6 + name: BadUserId + msg: Application id is nobody + - id: 7 + name: AppSpecificInitializationFailed + msg: Application specific initialization failed + - id: 8 + name: NoPeripheralsForCapability + msg: Peripheral capability requested, but no peipherals of that type are specified in application manifest. + - id: 9 + name: NoGpiosForCapability + msg: Gpio capability requested, but no gpios are specified in application manifest. + - id: 10 + name: NotAllowedToTalkToAppman + msg: An unexpected process requested communication with Application Manager + - id: 11 + name: UnknownCommunication + msg: Format of request to Application Manager is not recognized + - id: 12 + name: FailedToKillApplication + msg: Application Manager failed to kill requested application + - id: 13 + name: ApplicationInWrongState + msg: Application is in the wrong state for the requested operation + - id: 14 + name: BadApplicationInfo + msg: Could not find important information about the application. + - id: 15 + name: FailedToExecProcess + msg: Could not execute application. + openapi: true + - id: 16 + name: FailedToGetAzsphereSvcInfo + msg: Could not get information on the azspheresvc address. + - id: 17 + name: FailedToWriteToIPC + msg: Application Manager could not write response to IPC. + - id: 18 + name: IllegalRequest + msg: Application does not have the required capability to perform the requested action. + - id: 19 + name: BadRequestFormat + msg: Requested action was not formatted correctly. + - id: 20 + name: DeviceNotDevUnlocked + msg: Requested action requires device to be dev unlocked. + openapi: true + - id: 21 + name: DeviceFailedToReboot + msg: Reboot failed. + - id: 22 + name: FailedToAcquireMutableStorageCapability + msg: Could not acquire the mutable storage capability, either setting Linux quota or making the mutable storage directory. + - id: 23 + name: CouldNotReleaseMutableStorageCapability + msg: Could not remove mutable storage directory or zero out the user's quota. + - id: 24 + name: IllegalCapabilityInManifest + msg: An invalid capability type was found in an application's app manifest file. + - id: 25 + name: RequestedPinsAlreadyUsed + msg: Application requested use of a peripheral that is already used. + openapi: true + - id: 26 + name: CouldNotResetStorageQuotaForUninstalledApps + msg: Could not reset storage quotas for uninstalled applications + - id: 27 + name: CouldNotRemoveUIDEntriesForUninstalledApps + msg: Could not remove UID map entries for uninstalled applications + - id: 28 + name: FailedToForkProcess + msg: Could not fork application manager to launch app. + - id: 29 + name: FailedToOpenPipeForStatus + msg: Could not open pipe for checking status of child process. + - id: 30 + name: InvalidApplicationTarget + msg: Invalid Application Target + - id: 31 + name: NoCoreAvailable + msg: No matching core available to run application + - id: 32 + name: PinGpioTranslationFailed + msg: The translation of pin numbers to GPIO instance failed. + - id: 33 + name: DeviceFailedToPowerDown + msg: Power-down failed. diff --git a/ParseDeviceLog/23.05/commonerror_yml/app_manifest_error.yml b/ParseDeviceLog/23.05/commonerror_yml/app_manifest_error.yml new file mode 100644 index 0000000..4796e3f --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/app_manifest_error.yml @@ -0,0 +1,209 @@ +# Appman error codes +category_id: 2 +name: AppManifestError +namespace: azure_sphere +codes: + - id: 1 + name: InvalidJson + msg: Application manifest contains ill-formed json + openapi: true + - id: 2 + name: ErrorReadingFile + msg: An error occurred during file read of the application manifest + - id: 3 + name: MissingEntryPoint + msg: Application manifest does not contain an entry point + openapi: true + - id: 4 + name: MissingSchemaVersion + msg: Application manifest does not contain a schema version + openapi: true + - id: 5 + name: CmdArgParseError + msg: Could not parse command args from the application manifest + openapi: true + - id: 6 + name: MissingCapabilitiesList + msg: Application manifest does not contain a list of capabilities + openapi: true + - id: 7 + name: __DEPRECATED_ToggleStateParseError + msg: Could not parse 'toggle state' field from application manifest + openapi: true + - id: 8 + name: DebugParseError + msg: Could not parse 'debug' field from application manifest + - id: 9 + name: ConnectionsParseError + msg: Could not parse 'connections' field from application manifest + openapi: true + - id: 10 + name: GpioParseError + msg: Could not parse 'gpio' field from application manifest + openapi: true + - id: 11 + name: NetworkConfigParseError + msg: Could not parse 'network config' field from application manifest + - id: 13 + name: PeripheralParseError + msg: Could not parse peripheral capability field from application manifest + openapi: true + - id: 14 + name: UpdateParseError + msg: Could not parse 'update' field from application manifest + - id: 15 + name: WifiParseError + msg: Could not parse 'wifi config' field from application manifest + openapi: true + - id: 16 + name: BadEntryPoint + msg: Application manifest contains an invalid entry point + openapi: true + - id: 17 + name: IncompatibleSchemaVersion + msg: Application manifest contains an incompatible schema version + openapi: true + - id: 18 + name: UartNotAvailable + msg: One or more uarts requested in the application manifest is not available + openapi: true + - id: 19 + name: UninstallError + msg: Error uninstalling application + - id: 20 + name: ErrorParsingPolicyGroups + msg: Error parsing supplementary groups from application manifest + - id: 21 + name: ErrorParsingPolicyCapabilities + msg: Error parsing linux capabilities from application manifest + openapi: true + - id: 22 + name: SpecifiedEntryPointDoesNotExist + msg: Entry point specified in application manifest does not exist on the system + openapi: true + - id: 23 + name: SpecifiedEntryPointIsNotAFile + msg: Entry point specified in application manifest is not a file + openapi: true + - id: 24 + name: DeviceAuthTenantIdParseError + msg: Error parsing device auth tenant id from application manifest + openapi: true + - id: 25 + name: NoAppManifest + msg: Could not find the application manifest file + openapi: true + - id: 26 + name: BadAppType + msg: Unknown application type specified in the application manifest + openapi: true + - id: 27 + name: NonStringAppType + msg: Application type specified in the application manifest is not a string + - id: 28 + name: InvalidTenantId + msg: Tenant id specified in the application manifest is unavailable for use + openapi: true + - id: 29 + name: DeviceAuthTenantIdTooLong + msg: Device auth tenant id too long + openapi: true + - id: 30 + name: SystemTimeParseError + msg: Could not parse 'SystemTime' field from application manifest + openapi: true + - id: 31 + name: NonObjectMutableStorageType + msg: Mutable Storage type specified in the application manifest is not an object + openapi: true + - id: 32 + name: MutableStorageMissingRequiredField + msg: Mutable Storage type specified in the application manifest is missing one or more required fields + openapi: true + - id: 33 + name: ErrorParsingMutableStorageField + msg: There was an error parsing the Mutable Storage object specified in the application manifest + openapi: true + - id: 34 + name: MutableStorageRequestTooLarge + msg: Application manifest specified an illegally large value for mutable storage size + openapi: true + - id: 35 + name: RequestedPeripheralsRequireSamePin + msg: Application manifest requested multiple peripherals that map to the same logical pin. + openapi: true + - id: 36 + name: AllowedTcpPortsParseError + msg: Could not parse 'AllowedTcpServerPorts' field from application manifest + openapi: true + - id: 37 + name: AllowedUdpPortsParseError + msg: Could not parse 'AllowedUdpServerPorts' field from application manifest + openapi: true + - id: 38 + name: IllegalTcpPortsValue + msg: Application manifest specified an illegal value for allowed TCP ports + openapi: true + - id: 39 + name: IllegalUdpPortsValue + msg: Application manifest specified an illegal value for allowed UDP ports + openapi: true + - id: 40 + name: TimeSyncConfigParseError + msg: Could not parse 'TimeSyncConfig' field from application manifest + openapi: true + - id: 41 + name: DhcpServiceParseError + msg: Could not parse 'DhcpService' field from application manifest + openapi: true + - id: 42 + name: SntpServiceParseError + msg: Could not parse 'SntpService' field from application manifest + openapi: true + - id: 43 + name: AllowedApplicationConnectionsParseError + msg: Could not parse 'AllowedApplicationConnections' field from application manifest + openapi: true + - id: 44 + name: CertStoreParseError + msg: Could not parse 'CertStore' field from application manifest + openapi: true + - id: 45 + name: EnterpriseWifiConfigParseError + msg: Could not parse 'EnterpriseWifiConfig' field from application manifest + openapi: true + - id: 46 + name: SystemEventNotificationsParseError + msg: Could not parse 'SystemEventNotifications' field from application manifest + openapi: true + - id: 47 + name: SoftwareUpdateDeferralParseError + msg: Could not parse 'SoftwareUpdateDeferral' field from application manifest + openapi: true + - id: 48 + name: PowerControlsMalformedParseError + msg: The 'PowerControls' field from the application manifest is malformed (it isn't an array of PowerControls, or contains duplicate entries). + openapi: true + - id: 49 + name: PowerControlsEmptyParseError + msg: The 'PowerControls' field from the application manifest is empty. + openapi: true + - id: 50 + name: PowerControlsInvalidEntryParseError + msg: Application manifest specified an illegal value for one of the 'PowerControls' entries. + openapi: true + - id: 51 + name: HardwareAddressConfigParseError + msg: Could not parse 'HardwareAddressConfig' field from application manifest. + - id: 56 + name: ReadNetworkProxyConfigParseError + msg: Could not parse 'ReadNetworkProxyConfig' field from application manifest. + - id: 57 + name: ResetMemoryWatermarksParseError + msg: Could not parse 'ResetMemoryWatermarks' field from application manifest. + - id: 58 + name: HeapMemStatsParseError + msg: Could not parse 'HeapMemStats' field from application manifest. + - id: 59 + name: MallocVersionParseError + msg: Could not parse malloc version from the application manifest \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/azcore_error.yml b/ParseDeviceLog/23.05/commonerror_yml/azcore_error.yml new file mode 100644 index 0000000..e024603 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/azcore_error.yml @@ -0,0 +1,104 @@ +# Gatewayd error codes +category_id: 45 +name: AzcoreError +codes: + - + id: 1 + name: MissingResponseToken + msg: FirstLevelRequest - ResponseToken missing. + - + id: 2 + name: MissingSession + msg: FirstLevelRequest - Session missing. + - + id: 3 + name: MissingCrashId + msg: FirstLevelRequest - CrashId missing. + - + id: 4 + name: MissingiData + msg: FirstLevelRequest - iData missing. + - + id: 5 + name: NoDumpRequested + msg: FirstLevelRequest - No dump requested. + - + id: 6 + name: DumpTokenParse + msg: Failed to parse DumpToken. + - + id: 7 + name: GetRandomFailed + msg: getrandom failed. + - + id: 8 + name: CurlEasyInitFailed + msg: curl_easy_init failed. + - + id: 9 + name: WolfSSLCTXNewFailed + msg: wolfSSL_CTX_new failed. + - + id: 10 + name: Base64CertDecodingFailed + msg: Base64-encoded certificate failed to decode + - + id: 11 + name: WcInitShaFailed + msg: wc_InitSha failed + - + id: 12 + name: WcShaUpdateFailed + msg: wc_ShaUpdate failed + - + id: 13 + name: WcShaFinalFailed + msg: wc_ShaFinal failed + - + id: 14 + name: WolfSSLX509d2iFailed + msg: wolfSSL_X509_d2i failed + - + id: 15 + name: WolfSSLX509getpubkey + msg: wolfSSL_X509_get_pubkey failed + - + id: 16 + name: WcInitRsaKey + msg: wc_InitRsaKey failed + - + id: 17 + name: WcRsaPublicKeyDecode + msg: wc_RsaPublicKeyDecode failed + - + id: 18 + name: WcInitRng + msg: wc_InitRng failed + - + id: 19 + name: WcRNG_GenerateBlock + msg: wc_RNG_GenerateBlock failed + - + id: 20 + name: WcRsaPublicEncrypt + msg: wc_RsaPublicEncrypt failed + - + id: 21 + name: WcAesInit + msg: wc_AesInit failed + - + id: 22 + name: WcAesSetKey + msg: wc_AesSetKey failed + - + id: 23 + name: WcAesCbcEncrypt + msg: wc_AesCbcEncrypt failed + - + id: 24 + name: InsufficientBuffer + msg: Insufficient buffer to add PKCS padding + - + id: 25 + name: CertificateTooLarge + msg: Encryption certificate is too large diff --git a/ParseDeviceLog/23.05/commonerror_yml/bsp_generic_error.yml b/ParseDeviceLog/23.05/commonerror_yml/bsp_generic_error.yml new file mode 100644 index 0000000..d9d585d --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/bsp_generic_error.yml @@ -0,0 +1,10 @@ +category_id: 48 +name: BspGenericError +enumPrefix: BspGenericError +inlineDefs: true +namespace: azure_sphere::hal::drivers::microsoft +codes: + # One-time programming errors + - id: 100 + name: OtpNotSupported + msg: One-time programming not supported by this platform diff --git a/ParseDeviceLog/23.05/commonerror_yml/byte_reader_error.yml b/ParseDeviceLog/23.05/commonerror_yml/byte_reader_error.yml new file mode 100644 index 0000000..8a040bc --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/byte_reader_error.yml @@ -0,0 +1,10 @@ +category_id: 43 +name: ByteReaderError +namespace: azure_sphere +codes: + - id: 1 + name: NullPointer + msg: Pointer is null and cannot be read. + - id: 2 + name: Overflow + msg: The offset overflows the type \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/certstorage_error.yml b/ParseDeviceLog/23.05/commonerror_yml/certstorage_error.yml new file mode 100644 index 0000000..eb7dc9b --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/certstorage_error.yml @@ -0,0 +1,81 @@ +category_id: 37 +name: CertStorageError +codes: + - id: 1 + name: InvalidVersionError + msg: Invalid version of netconfig error + - id: 2 + name: CertIdentifierInvalid + msg: The Certificate identifier is invalid + openapi: true + - id: 3 + name: CertContentInvalid + msg: Certificate content is empty or invalid + openapi: true + - id: 4 + name: CertIdentifierTooLong + msg: The Certificate identifier is too long + openapi: true + - id: 5 + name: CertContentTooLong + msg: Certificate content is too long to store + - id: 6 + name: CertBlobNotFound + msg: Certificate blob was not found + - id: 7 + name: CertNotFound + msg: Certificate is not found in the certstore + openapi: true + - id: 8 + name: PemExtractionFailed + msg: Failed to extract single PEM's payload + - id: 9 + name: InvalidBase64Argument + msg: Invalid Base64 argument + - id: 10 + name: CertIndexOutOfRange + msg: The index for the Certificate is out of range + - id: 11 + name: OutOfSpace + msg: No more space to store a certificate + openapi: true + - id: 12 + name: InvalidCertType + msg: Invalid certificate type + openapi: true + - id: 13 + name: PublicCertContentInvalid + msg: Public certificate is empty or not found + openapi: true + - id: 14 + name: PublicCertContentTooLong + msg: Public certificate is too long + openapi: true + - id: 15 + name: PrivateKeyContentInvalid + msg: Private key content is empty or invalid + openapi: true + - id: 16 + name: PrivateKeyContentTooLong + msg: Private key content is too long + openapi: true + - id: 17 + name: PrivateKeyNotAllowed + msg: Private key is not allowed for this certificate type + openapi: true + - id: 18 + name: PrivateKeyPasswordTooLong + msg: Private key password is too long + openapi: true + - id: 19 + name: PrivateKeyPasswordNotAllowed + msg: Private key password is not allowed for this certificate type + openapi: true + - id: 20 + name: CertPrivateKeyMismatched + msg: Certificate and private key pair do not match + openapi: true + - id: 21 + name: PrivateKeyPasswordNotRequired + msg: Private key password provided for unencrypted key + openapi: true diff --git a/ParseDeviceLog/23.05/commonerror_yml/curl_error.yml b/ParseDeviceLog/23.05/commonerror_yml/curl_error.yml new file mode 100644 index 0000000..364b8cc --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/curl_error.yml @@ -0,0 +1,3 @@ +category_id: 21 +name: CurlError +include: \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/deviceauth_error.yml b/ParseDeviceLog/23.05/commonerror_yml/deviceauth_error.yml new file mode 100644 index 0000000..0eb351a --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/deviceauth_error.yml @@ -0,0 +1,63 @@ +category_id: 23 +name: DeviceAuthError +codes: + - + id: 1 + name: ProtobufDecodeError + msg: Protobuf decoding error + - + id: 2 + name: ProtobufEncodeError + msg: Protobug encoding error + - + id: 3 + name: ServicesRequestError + msg: Services request error + - + id: 4 + name: ServicesRespondedWithError + msg: Services responded with an error + - + id: 5 + name: ServicesResponseInvalidError + msg: Services response has an invalid error + - + id: 6 + name: AttestationRuntimeError + msg: Attestation runtime error + - + id: 7 + name: DeviceauthInternalStateError + msg: Device auth internal state error + - + id: 8 + name: InvalidTenantId + msg: Invalid tenant id + - + id: 9 + name: StoreCertificateError + msg: Store certificate error + - + id: 10 + name: ErrorFromSecureKernel + msg: Error from secure kernel + - + id: 11 + name: CertificateVerificationFailed + msg: Certificate Verification Failed + - + id: 12 + name: CachedCertificatePersistenceError + msg: Cached certificate persistence failed + - + id: 13 + name: CachedClientAuthKeyPersistenceError + msg: Cached client auth private key seed persistence failed + - + id: 14 + name: CachedCertificateRestorationError + msg: Cached certificate restoration failed + - + id: 15 + name: PublicKeyVerificationFailed + msg: The public key generated from Pluton did not match the ones stored in the cached certificates \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/firewall_rules_error.yml b/ParseDeviceLog/23.05/commonerror_yml/firewall_rules_error.yml new file mode 100644 index 0000000..da37acf --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/firewall_rules_error.yml @@ -0,0 +1,19 @@ +category_id: 44 +name: FirewallRulesError +codes: + - + id: 1 + name: ErrorReadingRulesFile + msg: An error occurred while trying to read the firewall rules file + - + id: 2 + name: UnknownUserId + msg: Encountered an unknown user id while parsing firewall rules + - + id: 3 + name: InvalidFirewallRulesCount + msg: The number of firewall rules specified by the count is larger than the firewall rules file + - + id: 4 + name: InvalidFirewallRulesTag + msg: Encountered an invalid tag while parsing firewall rules diff --git a/ParseDeviceLog/23.05/commonerror_yml/flash_image_builder_error.yml b/ParseDeviceLog/23.05/commonerror_yml/flash_image_builder_error.yml new file mode 100644 index 0000000..b0d2574 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/flash_image_builder_error.yml @@ -0,0 +1,49 @@ +category_id: 25 +name: FlashImageBuilderError +namespace: azure_sphere +codes: + - id: 1 + name: InvalidLocatorTableHash + msg: Invalid locator table hash + - id: 2 + name: LocatorParsingError + msg: Locator parsing error. + - id: 3 + name: LocatorMountingError + msg: Locator mounting error. + - id: 4 + name: ImageMetadataParsingError + msg: Image metadata parsing error. + - id: 5 + name: FailedToFindPartitionForImage + msg: Failed to find parition for image. + - id: 6 + name: NotEnoughSpaceInPartition + msg: Not enough space in partition. + - id: 7 + name: CannotFindManagedPartition + msg: Cannot find managed partition. + - id: 8 + name: BadWriteRange + msg: Bad write range. + - id: 9 + name: BadEraseRange + msg: Bad erase range. + - id: 10 + name: NoMemoryFilePresent + msg: No memory file present. + - id: 11 + name: NoLocatorPartitionPresent + msg: No locator partition present. + - id: 12 + name: CannotFindBackupsPartition + msg: Cannot find backups partition. + - id: 13 + name: FailedToGenerateHashes + msg: Failed to generate hashes. + - id: 14 + name: FailedToGenerateErasureCodes + msg: Failed to generate erasure codes. + - id: 15 + name: FailedToBackupCritImages + msg: Failed to backup critical images. diff --git a/ParseDeviceLog/23.05/commonerror_yml/hal_error.yml b/ParseDeviceLog/23.05/commonerror_yml/hal_error.yml new file mode 100644 index 0000000..5592374 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/hal_error.yml @@ -0,0 +1,257 @@ +category_id: 32 +name: HalError +enumPrefix: HalError +inlineDefs: true +namespace: azure_sphere::hal +codes: + - id: 100 + name: IoCoreInitialSyncTimeout + msg: IO Core initial sync failed (bootloader did not start?) + - id: 101 + name: IoCoreInitialSyncIncorrect + msg: IO Core initial sync incorrect (incorrect bootloader version?) + - id: 102 + name: IoCoreLoadBinaryTimeout + msg: IO Core timeout while loading binary (bootloader not catching fatal issue with supplied binary?) + - id: 103 + name: IoCoreLoadBinaryFailure + msg: IO Core returned invalid status (bad binary to load) + - id: 104 + name: IoCoreCommunicationTimeout + msg: IO Core communication timeout + - id: 105 + name: IoCoreFinalSyncIncorrect + msg: IO Core final sync incorrect + - id: 106 + name: PowerManagementRequestFailed + msg: Power Management request to Pluton Runtime failed + - id: 107 + name: IoCoreInvalidXipOffset + msg: IO Core returned out-of-range XIP offset (bad binary to load) + - id: 108 + name: IoCoreExecutableTooSmall + msg: IO Core executable not large enough to contain header + - id: 109 + name: IoCoreExecutableHeaderInvalid + msg: IO Core executable failed header check + - id: 110 + name: IoCoreExecutableIncompatiblePhdr + msg: IO Core executable has invalid segment + - id: 111 + name: IoCoreExecutableAlignmentRequired + msg: IO Core executable XIP region is not sufficiently aligned + - id: 112 + name: IoCoreExecutableInvalidBase + msg: IO Core executable not in a valid location + - id: 113 + name: IoCoreCommunicationInvalidBufferLocation + msg: IO Core communication buffer is not in SYSRAM + - id: 114 + name: IoCoreCommunicationInvalidBufferAlignment + msg: IO Core communication buffer not sufficiently aligned + - id: 115 + name: IoCoreCommunicationInvalidBufferType + msg: IO Core communication buffer invalid type + - id: 116 + name: IoCoreInvalidId + msg: IO Core invalid core ID + - id: 117 + name: InterruptControllerInvalidIrq + msg: Invalid IRQ number + - id: 118 + name: InterruptControllerUnsupported + msg: Unsupported Interrupt Controller operation + - id: 119 + name: FlashOperationOutOfBounds + msg: The requested operation is beyond the bounds of the flash + - id: 120 + name: FlashNoMoreChunks + msg: There are no more chunks to perform + - id: 121 + name: FlashUnexpectedOpType + msg: The flash API encountered an unexpected operation type + - id: 122 + name: FlashDriverUnexpectedBytesRead + msg: The flash device read an unexpected number of bytes + - id: 123 + name: FlashDriverUnexpectedBytesWritten + msg: The flash device wrote an unexpected number of bytes + - id: 124 + name: FlashDriverUnexpectedBytesErased + msg: The flash device erased an unexpected number of bytes + - id: 125 + name: FlashDriverUnsupportedOperationParameters + msg: The flash driver is reporting minimum, maximum, and preferred operation sizes that are not supported + - id: 126 + name: FlashDriverUnsupportedOperation + msg: The flash driver does not support the requested operation + - id: 127 + name: FlashDriverInvalidArgument + msg: An argument passed to the flash driver is invalid + - id: 128 + name: FlashDriverWriteCrossesBoundary + msg: The requested write would cross a page boundary + - id: 129 + name: FlashDriverFlashTimeout + msg: The flash hardware timed out while attempting the requested operation + - id: 130 + name: FlashDriverReadError + msg: An error occurred during the read operation + - id: 131 + name: FlashDriverWriteError + msg: An error occurred during the write operation + - id: 132 + name: FlashDriverEraseError + msg: An error occurred during the erase operation + - id: 133 + name: SignalManagerNoMoreSignals + msg: All available signals have been allocated from the signal manager + - id: 134 + name: IpcSendFull + msg: The send buffer is full + - id: 135 + name: IpcReceiveEmpty + msg: The receive buffer is empty + - id: 136 + name: MemoryMapFailed + msg: Memory protection driver failed to map memory + - id: 137 + name: VirtualPhysicalDifferentlyAligned + msg: The requested physical to virtual mapping results in addresses that are aligned differently + - id: 138 + name: TranslationTableFactoryFailure + msg: The translation table factory failed to create an entry for the request + - id: 139 + name: NoMoreAddressRegions + msg: The memory protection driver does not have any remaining regions + - id: 140 + name: AddressRegionConflict + msg: The requested mapping conflicts with a previous entry + - id: 141 + name: InvalidAddressRegionLength + msg: The requested mapping has an invalid length + - id: 142 + name: PeripheralsUnsupported + msg: Requested peripheral is not supported on this hardware + - id: 143 + name: PeripheralsReleasingUnreferencedResource + msg: Attempting to release a peripheral with resources that don't have any current references + - id: 144 + name: PeripheralExistingOwner + msg: Attempting to acquire a peripheral that is already owned + - id: 145 + name: PeripheralResourceDisallowedDomain + msg: Attempting to acquire a resource to a disallowed domain + - id: 146 + name: PeripheralResourceOnOtherDomain + msg: Attempting to acquire a resource that is already assigned to another domain + - id: 147 + name: PeripheralPinExistingOwner + msg: Attempting to acquire a pin that is already owned + - id: 148 + name: PeripheralResourceExistingOwner + msg: Attempting to acquire a resource that is already owned + - id: 149 + name: PeripheralAcquireErrors + msg: Peripheral acquisition resulted in errors. Check error list. + - id: 150 + name: PeripheralInvalidAppId + msg: Releasing peripherals for an invalid App ID + - id: 151 + name: RtcInvalidTime + msg: The supplied time is invalid for the RTC + - id: 152 + name: RtcNotPresent + msg: There is no present RTC hardware + - id: 153 + name: RtcInvalidOperationMode + msg: The supplied operation mode is invalid for the RTC + - id: 154 + name: PinmuxInvalidPin + msg: Specified pin is outside the valid range +# id: 155 Deprecated in favor of an error defined in security_monitor.h. Left here commented in case we need it for +# old logs, etc. +# name: PinmuxConfigurationLocked +# msg: Unable to change the configuration due to it being locked +# - id: 156 Deprecated in favor of an error defined in security_monitor.h. Left here commented in case we need it for +# old logs, etc. +# name: PeripheralConfigurationLocked +# msg: Unable to change the configuration due to it being locked + - id: 157 + name: IpcInvalidMessageSize + msg: Message does not fit in allocated buffer size + - id: 158 + name: IpcResponseTimeout + msg: Timed out waiting for IPC response + - id: 159 + name: IpcMalformedResponse + msg: IPC response message is malformed + - id: 160 + name: IpcConnectionSetupFailure + msg: IPC setup connection failed + - id: 161 + name: IpcNoConnection + msg: IPC endpoint not connected to remote + - id: 162 + name: IpcConnectTimeout + msg: Timed out trying to connect to remote peer + - id: 163 + name: FlashInvalidReadSize + msg: The read size is invalid + - id: 164 + name: FlashOperationOverlap + msg: The requested destination overlaps origin + - id: 165 + name: FlashRegionInUse + msg: The requested flash region is already in use + - id: 166 + name: FlashPtrSizeTooLarge + msg: The requested size is too large for the FlashPtr's buffer + - id: 167 + name: FlashPtrSizeTooSmall + msg: The requested size is too small for the FlashPtr + - id: 168 + name: FlashModifyInProgress + msg: Flash is currently being modified and cannot be read + - id: 169 + name: DvfsInvalidDomain + msg: DVFS is not supported for this code execution domain + - id: 170 + name: DvfsInvalidOppTable + msg: DVFS is not supported due to invalid OppTable information + - id: 171 + name: DvfsMismatchedEnterExitCalls + msg: Mismatched calls to DVFS methods Enter/ExitDefaultFrequencyMode + - id: 172 + name: DvfsUnsupportedFrequency + msg: Invalid frequency parameter provided to SetDomainFrequency() + - id: 200 + name: UnsupportedExecutionLevel + msg: Unsupported execution level supplied + + # Board config errors + - id: 300 + name: BoardConfigParseError + msg: Error in parsing boot config image + - id: 301 + name: BoardConfigEntryNotFound + msg: Entry not found in boot config image index + - id: 302 + name: BoardConfigInvalidIndexLength + msg: GetSetting does not support this length + + # Recovery API errors + - id: 400 + name: InvalidImageRequestId + msg: An invalid message ID was passed to InitializeTransfer + + # Crypto Errors + - id: 500 + name: InvalidDigest + msg: The digest is unsupported by the crypto hardware + - id: 501 + name: InvalidHashContext + msg: The hash context is not the correct size for the crypto hardware + - id: 502 + name: HashInvalidParameter + msg: One or more parameters sent to Hash() are invalid diff --git a/ParseDeviceLog/23.05/commonerror_yml/hal_mt3620_error.yml b/ParseDeviceLog/23.05/commonerror_yml/hal_mt3620_error.yml new file mode 100644 index 0000000..a84958b --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/hal_mt3620_error.yml @@ -0,0 +1,26 @@ +category_id: 40 +name: HalMt3620Error +enumPrefix: HalMt3620Error +namespace: azure_sphere +codes: + - id: 1 + name: UnsupportedDomain + msg: Supplied Domain ID not supported for this operation + - id: 2 + name: FlashRangeOutOfBounds + msg: Supplied flash range lies outside the valid bounds of flash + - id: 3 + name: FirewallFlashRegionsFull + msg: Attempted to program more flash regions into the firewall than the supported 8 + - id: 4 + name: MemoryRangeOutOfBounds + msg: Supplied memory range lies outside the valid bounds of SYSRAM + - id: 5 + name: FirewallIoCoreRangeFull + msg: Attempted to allow region that, due to size and alignment, did not fit in its range + - id: 6 + name: UnsupportedFirewallIoCoreRange + msg: Supplied IO core firewall range identifier not supported + - id: 7 + name: RtcDisabled + msg: RTC is disabled diff --git a/ParseDeviceLog/23.05/commonerror_yml/http_error.yml b/ParseDeviceLog/23.05/commonerror_yml/http_error.yml new file mode 100644 index 0000000..9dd7b69 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/http_error.yml @@ -0,0 +1,29 @@ +# Http error codes +category_id: 15 +name: HttpError +codes: + - id: 1 + name: InvalidRequestMethod + msg: Invalid request method. + - id: 2 + name: InvalidRequestUri + msg: Invalid Request URI. + - id: 3 + name: InvalidRequestProtocol + msg: Invalid Request protocol. + - id: 4 + name: InvalidContentLength + msg: Invalid content length. + openapi: true + - id: 5 + name: InvalidHeaderTerminator + msg: Invalid header terminator. + - id: 6 + name: ResponseContentLengthOverrun + msg: Response content length overrun. + - id: 7 + name: RequestHeaderIsTooLarge + msg: Response header is too large. + - id: 8 + name: NetSocketError + msg: An error occurred while using a net socket. diff --git a/ParseDeviceLog/23.05/commonerror_yml/i2c_error.yml b/ParseDeviceLog/23.05/commonerror_yml/i2c_error.yml new file mode 100644 index 0000000..c847332 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/i2c_error.yml @@ -0,0 +1,39 @@ +category_id: 34 +name: I2cError +codes: + - + id: 1 + name: NoSuchDevice + msg: Specified I2C device does not exist + - + id: 2 + name: DeviceInaccessible + msg: I2C device is inaccessible to the caller + - + id: 3 + name: InvalidTransferLength + msg: I2C data transfer length is not supported + - + id: 4 + name: InvalidFileDescriptor + msg: I2C device file descriptor is not valid + - + id: 5 + name: DeviceBusy + msg: I2C device is busy + - + id: 6 + name: OperationTimedOut + msg: I2C operation timed out before completing + - + id: 7 + name: TransferNack + msg: I2C operation was NAKd + - + id: 8 + name: InvalidAddress + msg: I2C device address is invalid + - + id: 9 + name: InvalidBuffer + msg: I2C operation used invalid buffer diff --git a/ParseDeviceLog/23.05/commonerror_yml/image_metadata_error.yml b/ParseDeviceLog/23.05/commonerror_yml/image_metadata_error.yml new file mode 100644 index 0000000..0b31162 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/image_metadata_error.yml @@ -0,0 +1,20 @@ +category_id: 42 +name: ImageMetadataError +namespace: azure_sphere +codes: + - id: 1 + name: InvalidMetadata + msg: The associated metadata is invalid. + - id: 2 + name: SectionOverflowsMetadata + msg: The section overflows the image's metadata + - id: 3 + name: EmptySection + msg: An empty metadata section was encountered + - id: 4 + name: SectionTooLarge + msg: The section is larger than the maximum size + - id: 5 + name: SectionNotFound + msg: The requested section was not found + diff --git a/ParseDeviceLog/23.05/commonerror_yml/image_update_error.yml b/ParseDeviceLog/23.05/commonerror_yml/image_update_error.yml new file mode 100644 index 0000000..6073369 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/image_update_error.yml @@ -0,0 +1,148 @@ +category_id: 7 +name: ImageUpdateError +namespace: azure_sphere +# Temporary alias +namespaceAlias: exp23 +enumPrefix: ImageUpdateReturn +codes: + - id: 1 + name: ImageAlreadyLoaded + msg: Image already loaded. No update necessary. + - id: 2 + name: FailedToFindFreeSpace + msg: Out of space for an update. + - id: 3 + name: NotImplemented + msg: Functionality not implemented. + - id: 4 + name: BadImageCount + msg: Bad count or count mismatch. + - id: 5 + name: BadReplicaValue + msg: Invalid replica value for this method. + - id: 6 + name: ImageNotFound + msg: Can't find the image. + - id: 7 + name: UpdateAlreadyInProgress + msg: Update is already in progress. + - id: 8 + name: BadHandle + msg: Bad handle value. + - id: 9 + name: BadOffsetAlignment + msg: Offset is not on a valid alignment. + - id: 10 + name: OffsetOutOfBounds + msg: Offset outside boundary of file. + - id: 11 + name: WriteFailed + msg: Write to flash failed. + - id: 12 + name: UpdateCommitFailed + msg: Update commit failed. + - id: 13 + name: RpcCallFailed + msg: RPC call to kernel failed. + - id: 14 + name: InvalidParameter + msg: There are one or more invalid parameters. + - id: 15 + name: VerificationFailed + msg: Verification of the image failed. + - id: 16 + name: DecompressionFailed + msg: Image decompression failed. + - id: 17 + name: FlashEraseFailed + msg: Erasing flash failed. + - id: 18 + name: ImageStagingFailed + msg: Staging the image for update failed. + - id: 19 + name: ImageExceedsComponentSizeLimit + msg: The update failed because its compressed or uncompressed size component exceeds its size limits. + - id: 20 + name: ImageIdentityInconsistency + msg: The component ids and types of existing images are inconsistent with proposed changes + - id: 21 + name: XIPAddressForImageOutOfBounds + msg: The images offset is outside of executable flash + - id: 22 + name: MustDownloadMissingImages + msg: The secure kernel must download images to update. + - id: 23 + name: FailedToFindPartitionTable + msg: Failed to find a valid partition table. + - id: 24 + name: ImageInstallFailed + msg: Installing updates failed. + - id: 25 + name: VerificationTimedOut + msg: Verification of the image timed out. + - id: 26 + name: MalformedManifestPayload + msg: The manifest payload is malformed. Manifests may be missing, or may not represent valid (or bootable) lists of images. + - id: 27 + name: ErasureCodingFailed + msg: Erasure coding failed. + - id: 28 + name: ECRepairFailed + msg: Erasure coding repair failed. + - id: 29 + name: ECUpdateFailed + msg: Erasure coding update failed. + - id: 30 + name: OTAOutOfOrderImage + msg: We got a valid image for staging, but the image id was unexpected during an OTA update. + - id: 31 + name: ManifestSetHeaderHasBadMagic + msg: ImageManifestSetHeader had a bad magic value. + - id: 32 + name: ManifestSetHeaderHasInvalidVersion + msg: ImageManifestSetHeader had an invalid version number. + - id: 33 + name: ManifestSetHeaderIsTooSmall + msg: ImageManifestSetHeader is too small to be parsable. + - id: 34 + name: ManifestSetHeaderSizeIsInconsistent + msg: ImageManifestSetHeader disagrees about its size. + - id: 35 + name: ManifestSetDataSizeIsTooBig + msg: ImageManifests are too big. + - id: 36 + name: ManifestSetTotalSizeIsTooSmall + msg: Image manifest set's total size is too small. + - id: 37 + name: PermissionDenied + msg: Permission denied. + - id: 38 + name: NoOTAUpdateInProgress + msg: No OTA update in progress. + - id: 39 + name: OTAUpdateInProgress + msg: OTA update in progress. + - id: 40 + name: CouldNotFindABIVersions + msg: Could not find required ABI runtime version numbers. + - id: 41 + name: InvalidABITypeFound + msg: The Type of the ABI identity is not recognized. + - id: 42 + name: ImageExceedsImageTypeSizeLimit + msg: The image is too big for its image type. + - id: 43 + name: CannotStageMultipleComponentsForImageType + msg: Multiple images of this type cannot be staged at the same time. + - id: 44 + name: ManifestCountIsInconsistent + msg: The number of manifests in the set is inconsistent or invalid. + - id: 45 + name: InvalidRuntimePartition + msg: The staged entry does not identify a valid runtime partition. + - id: 46 + name: NoCorruptionDetected + msg: No corruption was detected in the flash range. + - id: 47 + name: InvalidComponentId + msg: The staged entry has an invalid component ID. diff --git a/ParseDeviceLog/23.05/commonerror_yml/ipc_error.yml b/ParseDeviceLog/23.05/commonerror_yml/ipc_error.yml new file mode 100644 index 0000000..f541b54 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/ipc_error.yml @@ -0,0 +1,16 @@ +# Ipc error codes +category_id: 31 +name: IpcError +codes: + - + id: 1 + name: AccessDenied + msg: The IPC client does not have permissions for this call. + - + id: 2 + name: ClientClosed + msg: The operation can't be performed because the IPC client is closed. + - + id: 3 + name: ClientAlreadyConnected + msg: The IPC client can't connect because it's already connected. diff --git a/ParseDeviceLog/23.05/commonerror_yml/json_error.yml b/ParseDeviceLog/23.05/commonerror_yml/json_error.yml new file mode 100644 index 0000000..a02139f --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/json_error.yml @@ -0,0 +1,8 @@ +# Json error codes +category_id: 18 +name: JsonError +codes: + - + id: 1 + name: InvalidJsonObject + msg: Invalid JSON Object \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/lifetime_manager_error.yml b/ParseDeviceLog/23.05/commonerror_yml/lifetime_manager_error.yml new file mode 100644 index 0000000..69677c9 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/lifetime_manager_error.yml @@ -0,0 +1,83 @@ +# Appman error codes +category_id: 3 +name: LifetimeManagerError +namespace: azure_sphere +codes: + - id: 1 + name: AppAlreadyExists + msg: Application already exists on the device + openapi: true + - id: 2 + name: NullOrInvalidAppFoundation + msg: Application has not been correctly initialized + - id: 3 + name: NullAppManifest + msg: Application manifest is null + - id: 4 + name: MountedImageIsNotADirectory + msg: Application's image is not a directory + - id: 5 + name: UnknownAppRequestingInstall + msg: Unknown application is requesting an installation + - id: 6 + name: FailedToMakeImageManager + msg: Could not make an image manager + - id: 7 + name: RebootRequired + msg: Reboot is required + openapi: true + - id: 8 + name: FailedToUpdateFirewallRules + msg: Failed to update firewall rules + - id: 9 + name: FailedToUpdateDeviceAuthTenantList + msg: Failed to update device auth tenant list + - id: 10 + name: NoDebuggerAvailable + msg: Attempt to debug an application without a debugger + openapi: true + - id: 11 + name: CantDebugDebugger + msg: Attempt to debug the debugger application + - id: 12 + name: CantStartDebugger + msg: Attempt to manually start the debugger + - id: 13 + name: CantStopDebugger + msg: Attempt to manually stop the debugger + - id: 14 + name: CouldNotRemountDebugger + msg: Failed to remount the debugger application + - id: 15 + name: DebuggingNotSupported + msg: Attempt to debug a non-customer application + - id: 16 + name: CouldNotDeleteUid + msg: An error occurred when attempting to delete entry from uid_map + - id: 17 + name: CouldNotInvalidateImage + msg: An error occurred when attempting to invalidate the image + - id: 18 + name: ErrorDeletingDeviceTenant + msg: An error occurred when attempting to delete application's device tenant entry + - id: 19 + name: ErrorDeletingFirewallRules + msg: An error occurred when attempting to delete application's firewall entries + - id: 20 + name: DuplicateTcpUdpPortDetected + msg: Application tried to add a TCP or UDP port that a previous application added + - id: 21 + name: CouldNotDeleteApp + msg: An error occurred while deleting application + - id: 22 + name: IncompatibleApplicationRuntime + msg: The application is incompatible with the current runtime. + - id: 23 + name: FailedToUpdateAzSpioFirewallRules + msg: Failed to update application communication firewall rules + - id: 24 + name: ErrorDeletingAzSpioFirewallRules + msg: Failed to update application communication firewall rules + - id: 25 + name: PeripheralManagerIsNull + msg: Could not make peripheral manager - likely an issue with getting system user or group ID diff --git a/ParseDeviceLog/23.05/commonerror_yml/linux_error.yml b/ParseDeviceLog/23.05/commonerror_yml/linux_error.yml new file mode 100644 index 0000000..ade0fe5 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/linux_error.yml @@ -0,0 +1,6 @@ +category_id: 0 +name: LinuxError +namespace: azure_sphere +# Temporary alias +namespaceAlias: exp23 +include: \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/log_manager_error.yml b/ParseDeviceLog/23.05/commonerror_yml/log_manager_error.yml new file mode 100644 index 0000000..173978c --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/log_manager_error.yml @@ -0,0 +1,44 @@ +# Http error codes +category_id: 17 +name: LogManagerError +codes: + - + id: 1 + name: CannotCreateMessage + msg: Cannot create message. + - + id: 2 + name: CannotCreateBinaryAttribute + msg: Cannot create binary attribute. + - + id: 3 + name: RpcCallFailed + msg: RPC call failed. + - + id: 4 + name: LogDataIsTooBig + msg: Log data is too big. + - + id: 5 + name: InvalidData + msg: Invalid data. + - + id: 6 + name: RpcNotInitialized + msg: RPC not initialized. + - + id: 7 + name: RequestedSizeIsTooBig + msg: Response size is too big. + - + id: 8 + name: UnexpectedError + msg: Unexpected error. + - + id: 9 + name: OutOfMemory + msg: Out of memory. + - + id: 10 + name: PermissionDenied + msg: Permission denied. \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/mounter_error.yml b/ParseDeviceLog/23.05/commonerror_yml/mounter_error.yml new file mode 100644 index 0000000..3226611 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/mounter_error.yml @@ -0,0 +1,51 @@ +# Appman error codes +category_id: 4 +name: MounterError +namespace: azure_sphere +codes: + - id: 1 + name: MntSysCallFailure + msg: Mount system call has failed + - id: 2 + name: AlreadyMounted + msg: Image is already mounted + openapi: true + - id: 3 + name: UnmountFailed + msg: Unmount failed + - id: 4 + name: CouldNotRemoveMountPoint + msg: Failed to remove mount point + - id: 5 + name: BadImageType + msg: Invalid image type for mount operations + - id: 6 + name: CreateMountPointFailed + msg: Failed to create mount point + - id: 7 + name: MountFailed + msg: Mount failed + - id: 8 + name: FindUserIdFailed + msg: Failure to find user id + - id: 9 + name: NoImageFoundWithMatchingComponentId + msg: No image found with matching component id + - id: 10 + name: MountFailedWithEbusy + msg: Mount failed with EBUSY system error + - id: 11 + name: UnmountFailedWithEbusy + msg: Unmount failed with EBUSY system error + - id: 12 + name: FailedToGetSysUserId + msg: Could not get the user id for 'sys' + - id: 13 + name: MountCertStoreFailed + msg: Could not mount the cert store + - id: 14 + name: CreateAppMTDDeviceFailed + msg: Failed to map application to MTD + - id: 15 + name: RemoveAppMTDDeviceFailed + msg: Failed to remove application MTD diff --git a/ParseDeviceLog/23.05/commonerror_yml/netconfig_error.yml b/ParseDeviceLog/23.05/commonerror_yml/netconfig_error.yml new file mode 100644 index 0000000..05fd169 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/netconfig_error.yml @@ -0,0 +1,123 @@ +category_id: 30 +name: NetConfigError +codes: + - id: 1 + name: InvalidVersionError + msg: Invalid version of netconfig error + - id: 2 + name: UnexpectedJsonValueError + msg: Unexpected value for json field (wrong type or missing) + - id: 3 + name: IncompatibleServicesError + msg: Desired set of network services are incompatible with each other + - id: 4 + name: StringTooLongError + msg: String value was too long + - id: 5 + name: EmptyConfigFileError + msg: Configuration file was empty + - id: 6 + name: InvalidMacAddress + msg: MAC address was invalid + openapi: true + - id: 7 + name: InvalidIpAddress + msg: IP address was invalid + - id: 8 + name: InvalidServiceTypeError + msg: Service type was invalid + - id: 9 + name: IPCConnectionFailed + msg: Network configuration IPC connection failed + - id: 10 + name: InvalidIPCRequestFormat + msg: Invalid network configuration request format + - id: 11 + name: IPCRequestFailed + msg: Network configuration request failed + - id: 12 + name: InvalidIPCResponse + msg: Invalid network configuration response + - id: 13 + name: IPCRequestNotAllowed + msg: Network configuration request not allowed + - id: 14 + name: InvalidInterface + msg: The provided interface name is not available + openapi: true + - id: 15 + name: InterfaceNotPermitted + msg: The operation is not permitted on the specified interface + openapi: true + - id: 16 + name: TryAgain + msg: Try the operation again + - id: 17 + name: InvalidClientId + msg: Client ID was invalid + - id: 18 + name: InvalidNetworkInterfaceFile + msg: Invalid or null network interface file + - id: 19 + name: InvalidDhcpServerConfig + msg: Invalid or DHCP Server configuration + - id: 20 + name: InvalidJsonFormat + msg: File not valid JSON format + - id: 21 + name: AccessDenied + msg: The caller does not have access to the operation + - id: 22 + name: InvalidSubnetMask + msg: Subnet mask was invalid + - id: 23 + name: InvalidGatewayAddress + msg: Gateway address was invalid + - id: 24 + name: CouldNotFindInterfaceOption + msg: The interface configuration could not be found + - id: 25 + name: OutOfSpace + msg: Out of space to save configuration + - id: 26 + name: InvalidFirewallRulesetHook + msg: Invalid firewall ruleset hook + - id: 27 + name: InvalidInterfaceAttribute + msg: Invalid interface attribute + - id: 28 + name: OutOfRange + msg: Argument out of range + - id: 29 + name: BufferTooSmall + msg: Buffer is too small + - id: 30 + name: InvalidProxyClientOption + msg: Invalid proxy client option + - id: 31 + name: InvalidProxyClientAuthType + msg: Invalid proxy client authentication mode + - id: 32 + name: AnonymousAuthDoesNotUseUsernameOrPassword + msg: Anonymous authentication does not use username or password + - id: 33 + name: BasicAuthrequiresUsernameAndPassword + msg: Basic authentication requires username and password + - id: 34 + name: InvalidUsername + msg: Invalid username + - id: 35 + name: InvalidPassword + msg: Invalid password + - id: 36 + name: InvalidNoProxyAddresses + msg: Invalid noProxyAddresses + - id: 37 + name: InvalidProxyAddress + msg: Invalid proxy address + - id: 38 + name: InvalidProxyType + msg: Invalid proxy type + - id: 39 + name: ProxyClientConfigurationNotFound + msg: Proxy client configuration not found diff --git a/ParseDeviceLog/23.05/commonerror_yml/networkd_error.yml b/ParseDeviceLog/23.05/commonerror_yml/networkd_error.yml new file mode 100644 index 0000000..7d2836e --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/networkd_error.yml @@ -0,0 +1,220 @@ +category_id: 11 +name: NetworkdError +codes: + - id: 1 + name: InvalidWpaCtrl + msg: Invalid wpa_ctrl + - id: 2 + name: WaitForPendingEventTimedOut + msg: Timed out waiting on a pending event + - id: 3 + name: WpaCommandNotAllowed + msg: WPA command not allowed + - id: 4 + name: CouldNotReadMacAddress + msg: Could not read MAC address + - id: 5 + name: FailedToCheckFileExistence + msg: Failed to check for file existence + - id: 6 + name: FailedToWriteToMacAddressFile + msg: Failed to write to MAC address file + - id: 7 + name: FailedToReplaceBadMacAddressFile + msg: Filed to replace bad MAC address file + - id: 8 + name: FailedToSetMacAddress + msg: Failed to set MAC address + - id: 9 + name: NullPtrArgument + msg: Null pointer provided as an argument + - id: 10 + name: SocketError + msg: An error occurred with the socket + - id: 11 + name: IoctlError + msg: An error occurred with the ioctl + - id: 12 + name: InvalidMacAddress + msg: Invalid MAC address + - id: 13 + name: FailedToOpenFile + msg: Failed to open file + - id: 14 + name: InvalidWifiConfigRequestVersion + msg: Invalid wifi config request version + - id: 15 + name: InvalidWifiConfigRequestFormat + msg: Invalid wifi config request format + - id: 16 + name: TimeoutExceeded + msg: Timeout exceeded + - id: 17 + name: SendReceiveError + msg: Error on send/receive + - id: 18 + name: UnknownWpaCtrlError + msg: Unknown error received from wpa_ctrl + - id: 19 + name: DeviceAuthManagerError + msg: Error during DeviceAuthManager operations + - id: 20 + name: MissingSecurityServicesTenantError + msg: Tenant list is missing AS3 tenant. + - id: 21 + name: MissingSecurityServicesCertificateError + msg: Successful DAA was missing AS3 tenant certificate. + - id: 22 + name: UnknownNetConfigIPCRequest + msg: Unknown netconfig IPC request + - id: 23 + name: InvalidNetConfigIPCRequest + msg: Invalid netconfig IPC request + - id: 24 + name: FailedToDeleteWirelessMacFile + msg: Failed to delete deprecated wi-fi mac address file. + - id: 25 + name: NetConfigIPCRequestNotAllowed + msg: Netconfig request is not allowed + - id: 26 + name: CouldNotParseFirewallRulesFile + msg: An error occurred while parsing the firewall.rules file + - id: 27 + name: MsgBrokerInvalidOperation + msg: GetNextInput called when HasInput was false, or ProcessOutput was called when IsDone is true. + - id: 28 + name: WpaCtrlCommandFailed + msg: wpa_ctrl command failed + - id: 29 + name: WpaSuplicantMessageTooLarge + msg: A message from WPA Supplicant is larger than expected. + - id: 30 + name: CouldNotWriteDhcpServerOptionsFile + msg: An error occurred while writing DHCP server options to file + - id: 31 + name: WpaConnectionStatusMonitorIsDisabled + msg: The Wpa Connection Status Monitor is disabled, reenable before use + - id: 32 + name: DnsMessageNotParsed + msg: DNS message was not parsed + - id: 33 + name: DnsMessageUnspecifiedError + msg: DNS message could not be parsed due to an unspecified error + - id: 34 + name: DnsMessageTooSmall + msg: DNS message is too small + - id: 35 + name: DnsMessageInvalidOffset + msg: DNS message contains an invalid offset + - id: 36 + name: DnsMessageFailingResponseCode + msg: DNS message has a failing response code + - id: 37 + name: DnsMessageInvalidQuestion + msg: DNS message contains an invalid question + - id: 38 + name: DnsMessageFailedToReadQuestionType + msg: DNS message contains an invalid question type + - id: 39 + name: DnsMessageFailedToReadQuestionClass + msg: DNS message contains an invalid question class + - id: 40 + name: DnsMessageFailedToReadQuestionName + msg: DNS message contains an invalid question name + - id: 41 + name: DnsMessageFailedToReadQuestionTtl + msg: DNS message contains an invalid question TTL + - id: 42 + name: DnsMessageFailedToReadQuestionDataSize + msg: DNS message contains an invalid question length field + - id: 43 + name: DnsMessageInvalidAnswer + msg: DNS message contains an invalid answer + - id: 44 + name: DnsMessageFailedToReadAnswerType + msg: DNS message contains an invalid answer type + - id: 45 + name: DnsMessageFailedToReadAnswerClass + msg: DNS message contains an invalid answer class + - id: 46 + name: DnsMessageFailedToReadAnswerName + msg: DNS message contains an invalid answer name + - id: 47 + name: DnsMessageFailedToReadAnswerTtl + msg: DNS message contains an invalid answer TTL + - id: 48 + name: DnsMessageFailedToReadAnswerDataSize + msg: DNS message contains an invalid answer length field + - id: 49 + name: DnsMessageInvalidAdditionalRecord + msg: DNS message contains an invalid additional record + - id: 50 + name: DnsMessageInvalidAuthorityRecord + msg: DNS message contains an invalid authority record + - id: 51 + name: DnsResponseNotValid + msg: DNS response not valid + - id: 52 + name: DnsMessageNotResponse + msg: DNS message is not a response + - id: 53 + name: DnsResponseTooManyQuestions + msg: DNS response has too many questions + - id: 54 + name: DnsResponseTooFewQuestions + msg: DNS response has too few questions + - id: 55 + name: DnsResponseWrongQuestion + msg: DNS response is not for a question we asked + - id: 56 + name: DnsResponseMissingIpv4Answer + msg: DNS response does not contain an IPV4 answer + - id: 57 + name: DnsResponseInvalidIpAddress + msg: DNS response contains invalid IP address + - id: 58 + name: SlAttachFailed + msg: Failed to configure slip terminal settings + - id: 59 + name: DnsMessageInvalidHeaderSize + msg: DNS message has invalid header size + - id: 60 + name: NtpMessageInvalidSize + msg: NTP message has invalid size + - id: 61 + name: DnsXidIsZero + msg: DNS Xid is zero + - id: 62 + name: DnsXidIsDifferentThanMessageXid + msg: DNS Xid is different than message Xid + - id: 63 + name: CouldNotGetIPv4AddressFromDnsResponse + msg: Could not get IPv4 address from DNS response + - id: 64 + name: NtpMessageFromUnexpectedAddress + msg: NTP message from unexpected address + - id: 65 + name: NtpMessageFlagNotServerMode + msg: NTP message flag not ServerMode + - id: 66 + name: OriginateTimestampDifferentThanTransmitTimestamp + msg: Originate timestamp different than transmit timestamp + - id: 67 + name: InvalidTimestamp + msg: Invalid timestamp + - id: 68 + name: NtpMessageInvalidStratum + msg: NTP message has invalid stratum + - id: 69 + name: DelayIsNegative + msg: Delay is negative + - id: 70 + name: DelayIsTooBig + msg: Delay is too big + - id: 71 + name: NtpUnexpectedMessage + msg: Received unexpected NTP message + - + id: 72 + name: UnexpectedMessage + msg: Received unexpected message diff --git a/ParseDeviceLog/23.05/commonerror_yml/partition_error.yml b/ParseDeviceLog/23.05/commonerror_yml/partition_error.yml new file mode 100644 index 0000000..e91b352 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/partition_error.yml @@ -0,0 +1,91 @@ +category_id: 26 +name: PartitionError +namespace: azure_sphere +codes: + - id: 1 + name: TooManyEntriesInTable + msg: Too many entries in table. + - id: 2 + name: ImageNotFound + msg: Image not found. + - id: 3 + name: PrimaryLocatorTableCorrupt + msg: Primary locator table is corrupt. + - id: 4 + name: RuntimePrimaryPartitionTableCorrupt + msg: Runtime primary partition table is corrupt. + - id: 5 + name: AllRuntimePartitionEntryCorrupt + msg: All runtime partition entries are corrupt. + - id: 6 + name: RuntimeImageCorrupt + msg: Runtime image is corrupt. + - id: 7 + name: ImageLoadedFromBackupPartition + msg: Image loaded from backup partition. + - id: 8 + name: FailedToLoadLocatorTables + msg: Failed to load locator tables. + - id: 9 + name: BackupPartitionEntryTableCorrupt + msg: Backup partition entry table is corrupt. + - id: 10 + name: NoImagesToInstall + msg: No images to install. + - id: 11 + name: InstallFailed + msg: Install failed. + - id: 12 + name: DecompressionFailed + msg: Decompression failed. + - id: 13 + name: FlashWriteFailed + msg: Flash write failed. + - id: 14 + name: FlashEraseFailed + msg: Flash erase failed. + - id: 15 + name: FailedToCopyImagesToBackupPart + msg: Failed to copy images to backup partition. + - id: 16 + name: FlashOffsetOutOfBounds + msg: Flash offset is out of bounds. + - id: 17 + name: BadBlockAlignment + msg: Bad block alignment. + - id: 18 + name: PartitionHasNoTable + msg: Partition has no table. + - id: 19 + name: ImageVerificationFailed + msg: Image verification failed. + - id: 20 + name: ImageVerificationTimedOut + msg: Image verification timed out. + - id: 21 + name: BadErasureCodeValue + msg: Bad erasure code value. + - id: 22 + name: RollbackTargetsAbsent + msg: Rollback targets are absent. + - id: 23 + name: RollbackFailed + msg: Rollback has failed. + - id: 24 + name: CommitTablePartitionTypesMismatched + msg: Attempted to commit a table to a layout with a different partition type. + - id: 25 + name: InvalidRollbackPartition + msg: Attempt to rollback a partition that does not support rollback. + - id: 26 + name: HashIndexOutOfBounds + msg: The requested hash index is out of bounds of the hash structure + - id: 1000 + name: FlashSizeTooSmall + msg: Flash size is too small to build a layout. + - id: 1001 + name: FlashSizeNotAligned + msg: Flash size is not aligned with erase size + - id: 1002 + name: NoMemory + msg: Input memory is insufficient to hold result diff --git a/ParseDeviceLog/23.05/commonerror_yml/peripheral_error.yml b/ParseDeviceLog/23.05/commonerror_yml/peripheral_error.yml new file mode 100644 index 0000000..1506d42 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/peripheral_error.yml @@ -0,0 +1,68 @@ +# Appman error codes +category_id: 5 +name: PeripheralError +namespace: azure_sphere +codes: + - id: 1 + name: FailedToOpenGpioChipFd + msg: An error occurred while opening the gpio chip file descriptor + - id: 2 + name: FailedToGetGpioChipInfo + msg: An error occurred while getting information about the gpio chip + - id: 3 + name: UndefinedGpioInManifest + msg: Application manifest contains a gpio that is not defined on this device + openapi: true + - id: 4 + name: RequestedGpioAlreadyInUse + msg: Application manifest is requesting a gpio that is already in use by another application + openapi: true + - id: 5 + name: FailedToSetGpioPinAccess + msg: An error occurred while setting gpio permissions + - id: 6 + name: FailedToGetSysUserId + msg: Could not get the user id for 'sys' + - id: 7 + name: UndefinedPeripheralInManifest + msg: Application manifest contains a peripheral that is not defined on this device + openapi: true + - id: 8 + name: RequestedPeripheralAlreadyInUse + msg: Application manifest requests a peripheral that is already in use by another application + openapi: true + - id: 9 + name: FailedToChangePeripheralOwnership + msg: An error occurred when setting peripheral ownership + - id: 10 + name: FailedToEnablePeripheral + msg: An error occurred when enabling peripheral + - id: 11 + name: FailedToDisablePeripheral + msg: An error occurred when disabling peripheral + - id: 12 + name: FailedToEnablePeripheralDriver + msg: An error occurred when enabling peripheral driver + - id: 13 + name: FailedToDisablePeripheralDriver + msg: An error occurred when disabling peripheral driver + - id: 14 + name: UnsupportedPeripheralType + msg: An operation encountered an unsupported peripheral type + - id: 15 + name: GpioBlockConflict + msg: A GPIO block could not allocated, because it could not be shared with another application that already uses this GPIO block + openapi: true + - id: 16 + name: PwmOpenFailed + msg: A PWM group could not be opened, possibly because another application already uses it + openapi: true + - id: 17 + name: PwmReadFailed + msg: A PWM group could not be read + - id: 18 + name: PwmIoctlFailed + msg: A PWM ioctl operation failed + - id: 19 + name: CouldNotGetDeviceInfo + msg: Failed to get device status information while trying to lock peripheral config diff --git a/ParseDeviceLog/23.05/commonerror_yml/permissions_error.yml b/ParseDeviceLog/23.05/commonerror_yml/permissions_error.yml new file mode 100644 index 0000000..aac7192 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/permissions_error.yml @@ -0,0 +1,81 @@ +# Appman error codes +category_id: 6 +name: PermissionsError +namespace: azure_sphere +codes: + - + id: 1 + name: SetLinuxCapabilityError + msg: An error occurred when setting linux capabilities for the application + - + id: 2 + name: SetAmbientCapabilityError + msg: An error occurred when setting ambient capabilities for the application + - + id: 3 + name: SetUidError + msg: An error occurred when setting the uid of the process + - + id: 4 + name: SetGidError + msg: An error occurred when setting the gid of the process + - + id: 5 + name: SetGroupsError + msg: An error occurred when setting the supplementary groups of the process + - + id: 6 + name: GetUidError + msg: An error occurred when getting the uid + - + id: 7 + name: FailedToSetCGroup + msg: An error occurred while setting cgroup for the application + - + id: 8 + name: GetGroupError + msg: An error occurred while finding the specified group + - + id: 9 + name: SetProcessInfoError + msg: An error occurred while setting process information + - + id: 10 + name: ErrorQueryingDiskSpace + msg: Could not query mutable disk size + - + id: 11 + name: RequestedSpaceNotAvailable + msg: Not enough space remaining in /mnt/config to allocate requested storage + - + id: 12 + name: RequestedMoreSpaceThanMax + msg: Application requested more than the max allowed storage space + - + id: 13 + name: CouldNotAllocateStorageSpace + msg: An error occurred while allocating mutable storage space to an application. + - + id: 14 + name: ErrorReleasingStorageSpace + msg: An error occurred while releasing mutable storage space to an application. + - + id: 15 + name: CouldNotCalculateDiskUse + msg: Overflow occurred while calculating current disk utilization. + - + id: 16 + name: ErrorSettingAppPermissions + msg: An internal error occurred while setting app permissions. + - + id: 17 + name: InvalidPath + msg: Invalid path specified. + - + id: 18 + name: FailedToChangeFilePermissions + msg: An error occurred when setting file permissions. + - + id: 19 + name: FailedToChangeFileOwnership + msg: An error occurred when setting file ownership. diff --git a/ParseDeviceLog/23.05/commonerror_yml/pluton_error.yml b/ParseDeviceLog/23.05/commonerror_yml/pluton_error.yml new file mode 100644 index 0000000..399ff15 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/pluton_error.yml @@ -0,0 +1,20 @@ +#Pluton runtime error codes +category_id: 46 +name: PlutonRtError +namespace: azure_sphere::pluton_runtime +codes: + - id: 1 + name: LocatorNotFound + msg: Could not find partition locator table + - id: 2 + name: BadFirmwarePartition + msg: Bad firmware partition + + # Board config errors + - id: 100 + name: BoardConfigImageTooBig + msg: Board Config image in fw partition of flash is too big + - id: 101 + name: BoardConfigImageBadMetadataOrSignature + msg: Digital signature of Board Config image does not check or + metadata is invalid \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/prov_services_client_error.yml b/ParseDeviceLog/23.05/commonerror_yml/prov_services_client_error.yml new file mode 100644 index 0000000..266812e --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/prov_services_client_error.yml @@ -0,0 +1,3 @@ +category_id: 29 +name: ProvServicesClientError +include: diff --git a/ParseDeviceLog/23.05/commonerror_yml/recovery_error.yml b/ParseDeviceLog/23.05/commonerror_yml/recovery_error.yml new file mode 100644 index 0000000..862092e --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/recovery_error.yml @@ -0,0 +1,143 @@ +#Recovery error codes +category_id: 39 +name: RecoveryError +inlineDefs: true +namespace: azure_sphere::hal::recovery +codes: + - id: 1 + name: BadImageManifestFormat + msg: The received file does not represent a valid image manifest + - id: 2 + name: BadImage + msg: The received file does not represent a valid image + - id: 3 + name: UnsupportedVersion + msg: The version of the image or manifest is not supported + - id: 4 + name: UntrustedCertificate + msg: The certificate used to sign the image or manifest is not in the trusted list + - id: 5 + name: BadSignature + msg: The digital signature of the image or manifest does not check + - id: 6 + name: BadComponentUid + msg: The received image file does not match the component in the manifest + - id: 7 + name: BadImageUid + msg: The received image file does not match the id in the manifest + - id: 8 + name: BadImageFileSize + msg: The received image file size does not match the size in the manifest + - id: 9 + name: BadImageType + msg: The received image type does not match the type in the manifest + - id: 10 + name: ReceiveBufferTooSmall + msg: Buffer to receive a file transfer is smaller than the transfer length + - id: 11 + name: TooManyImages + msg: Tried to install more than the maximum allowed image count + - id: 12 + name: StreamSyncFailed + msg: Failed to resynchronize transport after configuration switch + - id: 13 + name: UnsupportedProtocolVersion + msg: The requested protocol version is not supported + - id: 14 + name: UnsupportedRecoveryMode + msg: The requested recovery mode is not supported + + # Recovery Driver errors + - id: 50 + name: GetServerResponseTimedOut + msg: Recovery timed out waiting for a server response + - id: 51 + name: InvalidServerResponse + msg: The data read from the server failed driver error checking + - id: 52 + name: SendRequestPacketFailed + msg: Error sending a request message + + # Errors from recovery 1.0 + - id: 100 + name: GenericRecoveryError + msg: Use this when you are too lazy to actually generate a real error + - id: 101 + name: FlashWriteFailed + msg: Flash write failed + - id: 102 + name: ImageNotPageAligned + msg: The image passed to write to flash is not page aligned + - id: 103 + name: FlashEraseFailed + msg: The attempt to erase flash failed + - id: 104 + name: OutOfMemory + msg: Recovery is out of memory + - id: 105 + name: BadState + msg: Recovery process is in a state it shouldn't be + - id: 107 + name: FileTransferFailed + msg: A failure occurred in the file transfer process + - id: 108 + name: ErasureCodingFailed + msg: Erasure coding failed + - id: 109 + name: DataHashingFailed + msg: Data hashing failed + - id: 110 + name: PrimaryBackupMismatch + msg: Unexpected primary/backup mismatch when recovering images + - id: 111 + name: DuplicateTableEntries + msg: Table has a duplicate entry for an image + - id: 112 + name: NoReceiverFound + msg: No receiver found for receiving a message + - id: 113 + name: DoubleImageEntry + msg: Unexpected. Receiver already set. Double-entry for an image + - id: 114 + name: PartitionTableOffsetNotFound + msg: Not able to find the partition layout for a specific partition type + - id: 115 + name: PartitionLayoutNotFound + msg: Partition does not exist in the partition layout + - id: 116 + name: TransferConfigFatal + msg: Configuration failed and driver is in unrecoverable state + - id: 117 + name: TransferConfigNonfatal + msg: Configuration error occurred, recovery will continue with previous configuration + + # Image request errors + - id: 150 + name: ImageNotFound + msg: Requested image not found on the server + - id: 151 + name: UnauthorizedAccess + msg: Server is not authorized to access requested image + - id: 152 + name: UnknownImageRequestServerError + msg: Server responded to an image request with an unrecognized error code + + # UART transfer errors + - id: 200 + name: BaudrateNotSupported + msg: The server does not support the requested baudrate + - id: 202 + name: FrameReadCrcCheckFailed + msg: CRC check failed when reading from the UART + - id: 203 + name: FrameReadUartTimeoutError + msg: UART read failed when waiting for an incoming recovery frame + - id: 204 + name: ReadPayloadTooSmall + msg: The received payload exceeds the maximum payload length passed as a parameter + - id: 205 + name: XmodemBadStartState + msg: XMODEM transfer is not in the correct state to start file reception + - id: 206 + name: XmodemInvalidBufferCapacity + msg: Buffer size provided to XMODEM ReceiveFilePacket is less than max packet size diff --git a/ParseDeviceLog/23.05/commonerror_yml/recovery_table_builder_error.yml b/ParseDeviceLog/23.05/commonerror_yml/recovery_table_builder_error.yml new file mode 100644 index 0000000..30ecdfd --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/recovery_table_builder_error.yml @@ -0,0 +1,55 @@ +category_id: 27 +name: RecoveryTableBuilderError +namespace: azure_sphere +codes: + - id: 1 + name: UnsupportedImageType + msg: Unsupported image type. + - id: 2 + name: OutOfAllocationSpace + msg: Out of allocation space. + - id: 3 + name: UnexpectedAllocationError + msg: Unexpected allocation. + - id: 4 + name: BadTableAlignment + msg: Bad table alignment. + - id: 5 + name: BadBlockAlignment + msg: Bad block alignment. + - id: 6 + name: BadBlockSize + msg: Bad block size. + - id: 7 + name: BadTableLocation + msg: Bad table location. + - id: 8 + name: BadOffsetAlignment + msg: Bad offset alignment. + - id: 9 + name: ImageTableFull + msg: Image table is full. + - id: 10 + name: UnexpectedImageError + msg: Unexpected image. + - id: 11 + name: TooManyImagesOfSameType + msg: Too many images of the same type. + - id: 12 + name: RequiredImageTypeNotFound + msg: Required image type not found. + - id: 14 + name: TableTooLarge + msg: Table too large. + - id: 15 + name: BadAddressRange + msg: Bad address range. + - id: 16 + name: ImageTableWriteFailed + msg: Image table write failed. + - id: 17 + name: FlashOverflow + msg: Flash overflow. + - id: 18 + name: InvalidPartitionType + msg: Invalid partition type. diff --git a/ParseDeviceLog/23.05/commonerror_yml/resource_manager_error.yml b/ParseDeviceLog/23.05/commonerror_yml/resource_manager_error.yml new file mode 100644 index 0000000..42df633 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/resource_manager_error.yml @@ -0,0 +1,18 @@ +# Resource Manager error codes +category_id: 35 +name: ResourceManagerError +namespace: azure_sphere +codes: + - + id: 1 + name: ResourceAlreadyAdded + msg: The same resource was already added + - + id: 2 + name: ResourceNotAvailable + msg: The resource is not available. + - + id: 3 + name: ResourceAlreadyAllocated + msg: The resource was already allocated, and reference counting is not enabled for this resource type. + diff --git a/ParseDeviceLog/23.05/commonerror_yml/rest_app_error.yml b/ParseDeviceLog/23.05/commonerror_yml/rest_app_error.yml new file mode 100644 index 0000000..ad9385e --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/rest_app_error.yml @@ -0,0 +1,60 @@ +# Gatewayd error codes +category_id: 14 +name: RestAppError +codes: + - id: 1 + name: CannotMountImage + msg: Cannot mount image. + - id: 2 + name: CannotUnmountImage + msg: Cannot unmount image. + - id: 3 + name: CannotWriteImage + msg: Cannot write image. + - id: 4 + name: UnknownError + msg: Unknown error. + - id: 5 + name: CannotOpenImage + msg: Cannot open image. + - id: 6 + name: CannotStartApp + msg: Cannot start app. + - id: 7 + name: CannotStopApp + msg: Cannot stop app. + - id: 8 + name: CannotRemoveApp + msg: Cannot remove app. + - id: 9 + name: TriggerDoesNotExist + msg: Trigger does not exist. + - id: 10 + name: IsBusy + msg: Busy. + - id: 11 + name: CannotStartDebug + msg: Cannot start debug. + - id: 12 + name: AppNotPresent + msg: App is not present. + openapi: true + - id: 13 + name: AppStateUnknown + msg: App state is unknown. + + #id: 14 - No longer used + - id: 15 + name: CannotParseComponentId + msg: Cannot parse component ID. + - id: 16 + name: ErrorCreatingAppControl + msg: An error occurred while creating an app control. + - id: 17 + name: CannotCommitImage + msg: An error occurred while committing image. + openapi: true + - id: 18 + name: NotEnoughFreeSpace + msg: Not enough free space. + openapi: true diff --git a/ParseDeviceLog/23.05/commonerror_yml/rest_error.yml b/ParseDeviceLog/23.05/commonerror_yml/rest_error.yml new file mode 100644 index 0000000..d2b137c --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/rest_error.yml @@ -0,0 +1,99 @@ +# Gatewayd error codes +category_id: 10 +name: RestError +codes: + - id: 1 + name: InvalidJsonRequest + msg: Invalid JSON Request. + openapi: true + - id: 2 + name: InvalidJsonData + msg: Invalid JSON data field. + - id: 3 + name: RequestDataExpected + msg: Request data is expected. + - id: 4 + name: ContentLengthExpected + msg: Content length is expected. + - id: 5 + name: InterfaceIsBusy + msg: Interface is busy. + openapi: true + - id: 6 + name: InternalError + msg: Internal error. + openapi: true + - id: 7 + name: InvalidQueryString + msg: Invalid query string. + - id: 8 + name: OutOfMemory + msg: Out of memory. + - id: 9 + name: TargetedScanNotABoolean + msg: The targetedScan variable must be a boolean. + - id: 10 + name: ReloadConfigNotABoolean + msg: The reload variable must be a boolean. + - id: 11 + name: CaCertStoreIdentifierTooLong + msg: The given caCertStoreIdentifier is too long. + - id: 12 + name: ClientCertStoreIdentifierTooLong + msg: The given clientCertStoreIdentifier is too long. + openapi: true + - id: 13 + name: ClientIdentityTooLong + msg: The given clientIdentity is too long. + - id: 14 + name: ClientPrivateKeyCertStoreIdentifierTooLong + msg: The given clientPrivateKeyCertStoreIdentifier is too long. + - id: 15 + name: ClientPrivateKeyPasswordTooLong + msg: The given clientPrivateKeyPassword is too long. + - id: 16 + name: ConfigNameTooLong + msg: The given config name is too long. + openapi: true + - id: 17 + name: RequestEntityTooLarge + msg: The request entity is too large. + - id: 18 + name: CommandAuthorizationFailed + msg: Requested command is not authorized. + - id: 19 + name: EnabledNotABoolean + msg: The 'enabled' variable must be a boolean. + - id: 20 + name: InvalidNetworkPort + msg: Invalid network port. + - id: 21 + name: InvalidProxyAddress + msg: Invalid proxy address. + - id: 22 + name: InvalidNoProxyAddresses + msg: Invalid noProxyAddresses. + - id: 23 + name: InvalidUsername + msg: Invalid username. + - id: 24 + name: InvalidPassword + msg: Invalid password. + - id: 25 + name: InvalidAuthenticationType + msg: Invalid authentication type. + - id: 26 + name: InvalidProxyType + msg: Invalid proxy type. + - id: 27 + name: RequiredNetworkPort + msg: Network port is required. + - id: 28 + name: RequiredProxyAddress + msg: Proxy address is required. + - id: 29 + name: RequiredAuthenticationType + msg: Authentication type is required + - id: 30 + name: PowerSavingsNotABoolean + msg: The powerSavings variable must be a boolean. diff --git a/ParseDeviceLog/23.05/commonerror_yml/rest_update_error.yml b/ParseDeviceLog/23.05/commonerror_yml/rest_update_error.yml new file mode 100644 index 0000000..6e329f8 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/rest_update_error.yml @@ -0,0 +1,28 @@ +# Gatewayd error codes +category_id: 16 +name: RestUpdateError +codes: + - + id: 1 + name: NotImplemented + msg: Not implemented. + - + id: 2 + name: UnsupportedImageType + msg: Unsupported image type. + - + id: 3 + name: InvalidImage + msg: Invalid image. + - + id: 4 + name: ComponentIdExpected + msg: Component ID expected. + - + id: 5 + name: InconsistentComponentImageData + msg: Inconsistent component image data. + - + id: 6 + name: ImageManagerCommandFailed + msg: Image Manager command failed. \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/sd_emmc_error.yml b/ParseDeviceLog/23.05/commonerror_yml/sd_emmc_error.yml new file mode 100644 index 0000000..35f8475 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/sd_emmc_error.yml @@ -0,0 +1,75 @@ +category_id: 47 +name: SdEmmcError +enumPrefix: SdEmmcError +inlineDefs: true +namespace: azure_sphere::hal::drivers::generic +codes: + - id: 1 + name: SdCommandBusError + msg: SD Bus error during command sequence + - id: 2 + name: SdCommandTimeout + msg: SD Bus timeout during command sequence + - id: 3 + name: SdTransferBusError + msg: SD Bus error during transfer sequence + - id: 4 + name: SdTransferTimeout + msg: SD Bus timeout during transfer sequence + - id: 5 + name: SdCardInitError + msg: SD Card initialization error + - id: 6 + name: SdCardUnsupported + msg: The SD card is not supported by the host driver + - id: 100 + name: CardStatusOutOfRange + msg: Command's argument was out of the allowed range for this card. + - id: 101 + name: CardStatusAddressError + msg: Misaligned address which did not match the block length was used in this command. + - id: 102 + name: CardStatusBlockLenError + msg: Block length not allowed for this card. + - id: 103 + name: CardStatusEraseSeqError + msg: Error in the sequence of erase commands. + - id: 104 + name: CardStatusEraseParam + msg: Invalid selection of write-blocks for erase occurred. + - id: 105 + name: CardStatusWpViolation + msg: Host attempted to write to a protected block. + - id: 106 + name: CardStatusCardIsLocked + msg: Indicates the card is locked by the host. + - id: 107 + name: CardStatusLockUnlockFailed + msg: Sequence or password error has been detected in lock/unlock card command. + - id: 108 + name: CardStatusComCrcError + msg: CRC check of the previous command failed. + - id: 109 + name: CardStatusIllegalCommand + msg: Command not legal for the card state. + - id: 110 + name: CardStatusCardEccFailed + msg: Card internal ECC was applited but failed to correct the data. + - id: 111 + name: CardStatusCcError + msg: Internal card controller error. + - id: 112 + name: CardStatusGenericError + msg: General or unknown error occurred during the operation. + - id: 113 + name: CardStatusCsdOverwrite + msg: Read-only section of CSD does not match card content. + - id: 114 + name: CardStatusWpEraseSkip + msg: Only partial address space was erased due to existing write protected blocks + - id: 115 + name: CardStatusAkeSeqError + msg: Error in the sequence of the authentication process. + - id: 116 + name: SdCommandConflict + msg: SD Bus conflict during command sequence diff --git a/ParseDeviceLog/23.05/commonerror_yml/security_monitor_syscall_error.yml b/ParseDeviceLog/23.05/commonerror_yml/security_monitor_syscall_error.yml new file mode 100644 index 0000000..21373cc --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/security_monitor_syscall_error.yml @@ -0,0 +1,12 @@ +category_id: 49 +name: SecurityMonitorSyscallErrors +namespace: azure_sphere +# The errors that are part of the syscall contract are defined here so that the error tooling (specifically +# error_codes.py in exp23-yocto) will work as expected. Development practice expects the errors to be found in a YML +# file and the tooling helps ensure that we don't have overlapping errors. However, the errors that are part of the +# contract should be defined and used by code in security_monitor.h. So this file covers the tooling, and code should +# use security_monitor.h to get the error definitions. +codes: + - id: 1 + name: PeripheralConfigurationLocked + msg: Unable to change the configuration due to it being locked \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/spi_error.yml b/ParseDeviceLog/23.05/commonerror_yml/spi_error.yml new file mode 100644 index 0000000..97478c2 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/spi_error.yml @@ -0,0 +1,43 @@ +category_id: 33 +name: SpiError +codes: + - + id: 1 + name: NoSuchDevice + msg: Specified SPI device does not exist + - + id: 2 + name: DeviceInaccessible + msg: SPI device is inaccessible to the caller + - + id: 3 + name: InvalidMode + msg: SPI mode is invalid or unsupported + - + id: 4 + name: InvalidPolarity + msg: SPI chip select polarity is invalid or unsupported + - + id: 5 + name: InvalidBitOrder + msg: SPI data bit order is invalid or unsupported + - + id: 6 + name: InvalidTransferLength + msg: SPI data transfer length is not supported + - + id: 7 + name: InvalidFileDescriptor + msg: SPI device file descriptor is not valid + - + id: 8 + name: DeviceBusy + msg: SPI device is busy + - + id: 9 + name: OperationTimedOut + msg: SPI operation timed out before completing + - + id: 10 + name: InvalidBuffer + msg: SPI operation used invalid buffer diff --git a/ParseDeviceLog/23.05/commonerror_yml/system_event_manager_error.yml b/ParseDeviceLog/23.05/commonerror_yml/system_event_manager_error.yml new file mode 100644 index 0000000..d9b8367 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/system_event_manager_error.yml @@ -0,0 +1,44 @@ +# SystemEventManager error codes +category_id: 38 +name: SystemEventManagerError +namespace: azure_sphere +codes: + - id: 1 + name: InvalidSystemTimerValue + msg: The system event manager used an invalid timer value + - id: 2 + name: NoSystemEventHandler + msg: There are no system event handlers for the requested command ID + - id: 3 + name: InvalidEventDeferralRequest + msg: The event deferral request was invalid + - id: 4 + name: InvalidEventResumeRequest + msg: The event resume request was invalid + - id: 5 + name: NoMatchingEventForDeferral + msg: The deferral does not match a pending event + - id: 6 + name: EventDeferralDuplication + msg: The event has already been deferred by this application + - id: 7 + name: EventDeferralPermissionDenied + msg: The application does not have permission to defer + - id: 8 + name: NoMatchingEventForResume + msg: The resume request does not match a pending event + - id: 9 + name: EventResumePermissionDenied + msg: The application does not have permission to resume + - id: 10 + name: FailedToCreateSystemEventManager + msg: Failed to create the system event manager + - id: 11 + name: FailedToSetSystemEventTimer + msg: Failed to set the system event timer + - id: 12 + name: EventDeferralNotAllowed + msg: Deferral of the event was not allowed + - id: 13 + name: FailedToResumeNonDeferredEvent + msg: Attempting to resume an event that was not deferred diff --git a/ParseDeviceLog/23.05/commonerror_yml/wifi_error.yml b/ParseDeviceLog/23.05/commonerror_yml/wifi_error.yml new file mode 100644 index 0000000..d4460d0 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/wifi_error.yml @@ -0,0 +1,93 @@ +category_id: 13 +name: WifiError +codes: + - id: 1 + name: RequestFailed + msg: Request has failed + openapi: true + - id: 2 + name: NetworkAlreadyExists + msg: Network already exists + openapi: true + - id: 3 + name: NetworkNotFound + msg: Network not found + openapi: true + - id: 4 + name: NetworkNotConnected + msg: Network not connected + openapi: true + - id: 5 + name: InvalidOperation + msg: Invalid operation! + - id: 6 + name: RequestNotAllowed + msg: Request not allowed + - id: 7 + name: RequestVersionNotSupported + msg: Requested version is not supported + - id: 8 + name: InvalidRequestFormat + msg: Invalid request format + openapi: true + - id: 9 + name: VendorCommandResponseTooLong + msg: Vendor command response took too long + - id: 10 + name: InvalidResponse + msg: Invalid response received + - id: 11 + name: InvalidObjectInResponse + msg: Invalid object in response + openapi: true + - id: 12 + name: InvalidNetworkProperties + msg: Invalid network properties + - id: 13 + name: IPCConnectionFailed + msg: IPC connection failed + - id: 14 + name: IPCConnectionFailedEacces + msg: IPC connection failed eacces + - id: 15 + name: SsidTooLong + msg: SSID's length is too long + openapi: true + - id: 16 + name: PskTooLong + msg: PSK's length is too long + openapi: true + - id: 17 + name: TryAgain + msg: IPC connection not ready. Try Again. + openapi: true + - id: 18 + name: WifiDisabled + msg: The Wi-Fi network interface is disabled + openapi: true + - id: 19 + name: InsufficientSpaceToPersistWiFiConfig + msg: There is insufficent space to persist the Wi-Fi config + openapi: true + - id: 20 + name: InvalidLength + msg: Length is invalid + - id: 21 + name: InvalidWifiConfigCommand + msg: The given wificonfig command is invalid + - id: 22 + name: NetworkLimitReached + msg: The limit on number of network configurations has been reached + openapi: true + - id: 23 + name: ConfigNameNotUnique + msg: The given configuration name is not unique + openapi: true + - id: 24 + name: ClientCertStoreIdentifierMissing + msg: The Client CertStore Identifier is missing from the request body + openapi: true + - id: 25 + name: PskTooShort + msg: PSK's length is too short + openapi: true diff --git a/ParseDeviceLog/23.05/commonerror_yml/wifi_request_error.yml b/ParseDeviceLog/23.05/commonerror_yml/wifi_request_error.yml new file mode 100644 index 0000000..84a8af9 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/wifi_request_error.yml @@ -0,0 +1,91 @@ +category_id: 12 +name: WifiRequestError +codes: + - + id: 1 + name: InternalError + msg: Internal error occurred + - + id: 2 + name: NetworkAlreadyExists + msg: Network already exists + - + id: 3 + name: NetworkNotFound + msg: Network not found + - + id: 4 + name: NetworkNotConnected + msg: Network not connected + - + id: 5 + name: InvalidOperation + msg: Invalid operation! + - + id: 6 + name: RequestNotAllowed + msg: Request not allowed + - + id: 7 + name: RequestVersionNotSupported + msg: Requested version is not supported + - + id: 8 + name: InvalidRequestFormat + msg: Invalid request format + - + id: 9 + name: VendorCommandResponseTooLong + msg: Vendor command response took too long + - + id: 10 + name: StringParsingError + msg: Error parsing string + - + id: 11 + name: InvalidFrequencyValue + msg: Invalid frequency value + - + id: 12 + name: InvalidRssiValue + msg: Invalid RSSI value + - + id: 13 + name: InvalidNetworkProperties + msg: Invalid network properties + - + id: 14 + name: InvalidNetworkConfigState + msg: Invalid network config state + - + id: 15 + name: WpaCtrlCommandFailed + msg: wpa_ctrl command failed + - + id: 16 + name: CannotUpdateKeyManagement + msg: Cannot update key management + - + id: 17 + name: WifiDisabled + msg: Cannot complete request, Wi-Fi is disabled + - + id: 18 + name: InsufficientSpaceToPersistWiFiConfig + msg: There is insufficent space to persist the Wi-Fi config + - + id: 19 + name: InvalidLength + msg: Length is invalid + - + id: 20 + name: InvalidWifiConfigCommand + msg: The given wificonfig command is invalid + - + id: 21 + name: NetworkLimitReached + msg: The limit on number of network configurations has been reached + - + id: 22 + name: ConfigNameNotUnique + msg: The given configuration name is not unique diff --git a/ParseDeviceLog/23.05/commonerror_yml/wolfcrypt_error.yml b/ParseDeviceLog/23.05/commonerror_yml/wolfcrypt_error.yml new file mode 100644 index 0000000..5ac3dce --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/wolfcrypt_error.yml @@ -0,0 +1,2 @@ +category_id: 28 +name: WolfCryptError \ No newline at end of file diff --git a/ParseDeviceLog/23.05/commonerror_yml/wolfssl_error.yml b/ParseDeviceLog/23.05/commonerror_yml/wolfssl_error.yml new file mode 100644 index 0000000..708b5a6 --- /dev/null +++ b/ParseDeviceLog/23.05/commonerror_yml/wolfssl_error.yml @@ -0,0 +1,2 @@ +category_id: 22 +name: WolfSslError \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/adctool_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/adctool_log_manifest.json new file mode 100644 index 0000000..058e7bf --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/adctool_log_manifest.json @@ -0,0 +1,1001 @@ +{ + "version": "1.0", + "categoryId": 28, + "categoryName": "adctool", + "msgIds": [ + { + "msgName": "StartingAdctool", + "msgId": 1, + "msgString": "Starting adctool", + "msgPriority": "Info" + }, + { + "msgName": "DriverOpenFail", + "msgId": 2, + "msgString": "Failed to open driver!", + "msgPriority": "Error" + }, + { + "msgName": "DevInfo", + "msgId": 3, + "msgString": "Device Info", + "msgPriority": "Info", + "params": [ + { + "paramName": "size", + "paramType": "unsignedInteger" + }, + { + "paramName": "modes", + "paramType": "integer" + }, + { + "paramName": "currentmode", + "paramType": "integer" + }, + { + "paramName": "masklength", + "paramType": "unsignedInteger" + }, + { + "paramName": "name", + "paramType": "string" + } + ] + }, + { + "msgName": "Channel", + "msgId": 4, + "msgString": "Channel", + "msgPriority": "Info", + "params": [ + { + "paramName": "type", + "paramType": "integer" + }, + { + "paramName": "channel", + "paramType": "integer" + }, + { + "paramName": "channel2", + "paramType": "integer" + }, + { + "paramName": "address", + "paramType": "unsignedInteger" + }, + { + "paramName": "index", + "paramType": "integer" + }, + { + "paramName": "scan_type_realbits", + "paramType": "integer" + }, + { + "paramName": "scan_type_storagebits", + "paramType": "integer" + }, + { + "paramName": "scan_type_shift", + "paramType": "integer" + }, + { + "paramName": "scan_type_repeat", + "paramType": "integer" + }, + { + "paramName": "scan_type_endianness", + "paramType": "integer" + }, + { + "paramName": "info_mask_separate", + "paramType": "integer" + }, + { + "paramName": "info_mask_shared_by_type", + "paramType": "integer" + }, + { + "paramName": "info_mask_shared_by_dir", + "paramType": "integer" + }, + { + "paramName": "info_mask_shared_by_all", + "paramType": "integer" + }, + { + "paramName": "num_event_specs", + "paramType": "integer" + }, + { + "paramName": "extended_name", + "paramType": "string" + }, + { + "paramName": "datasheet_name", + "paramType": "string" + }, + { + "paramName": "modified", + "paramType": "integer" + }, + { + "paramName": "indexed", + "paramType": "integer" + }, + { + "paramName": "output", + "paramType": "integer" + }, + { + "paramName": "differential", + "paramType": "integer" + } + ] + }, + { + "msgName": "ExtInfo", + "msgId": 5, + "msgString": "ExtInfo", + "msgPriority": "Info", + "params": [ + { + "paramName": "name", + "paramType": "string" + }, + { + "paramName": "sharing", + "paramType": "integer" + } + ] + }, + { + "msgName": "OpenDriver", + "msgId": 6, + "msgString": "Open Driver", + "msgPriority": "Debug" + }, + { + "msgName": "CallGetDeviceInfoBufferTotalSize", + "msgId": 7, + "msgString": "Called Get Device Info Buffer Total Size", + "msgPriority": "Debug" + }, + { + "msgName": "DeviceInfoBufferTotalSizeError", + "msgId": 8, + "msgString": "Device Info Buffer Total Size Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "DeviceInfoBufferTotalSize", + "msgId": 9, + "msgString": "Device Info Buffer Total Size", + "msgPriority": "Info", + "params": [ + { + "paramName": "size", + "paramType": "integer" + } + ] + }, + { + "msgName": "CallGetDeviceInfoBuffer", + "msgId": 10, + "msgString": "Called Get Device Info Buffer", + "msgPriority": "Debug" + }, + { + "msgName": "DeviceInfoBufferError", + "msgId": 11, + "msgString": "Device Info Buffer Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "GetChannelSpecBufferTotalSize", + "msgId": 12, + "msgString": "Channel Spec Buffer Total Size", + "msgPriority": "Info", + "params": [ + { + "paramName": "index", + "paramType": "integer" + }, + { + "paramName": "total_size", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "GetChannelSpecBufferTotalSizeError", + "msgId": 13, + "msgString": "Channel Spec Buffer Total Size Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "GetChannelSpecBufferError", + "msgId": 14, + "msgString": "Channel Spec Buffer Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadRawChannelInfoError", + "msgId": 15, + "msgString": "Read Raw Channel info Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadRawChannel", + "msgId": 16, + "msgString": "Read Raw Channel Info", + "msgPriority": "Info", + "params": [ + { + "paramName": "return_value", + "paramType": "integer" + }, + { + "paramName": "value", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadFrequencyError", + "msgId": 17, + "msgString": "Read Frequency Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadFrequency", + "msgId": 18, + "msgString": "Read Frequency", + "msgPriority": "Info", + "params": [ + { + "paramName": "return_value", + "paramType": "integer" + }, + { + "paramName": "value", + "paramType": "integer" + } + ] + }, + { + "msgName": "WriteFrequencyError", + "msgId": 19, + "msgString": "Write Frequency Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "WriteFrequency", + "msgId": 20, + "msgString": "Read Frequency", + "msgPriority": "Info", + "params": [ + { + "paramName": "return_value", + "paramType": "integer" + }, + { + "paramName": "value", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedAllocateDevInfoBuffer", + "msgId": 21, + "msgString": "Failed to Allocate Device Info Buffer", + "msgPriority": "Error" + }, + { + "msgName": "ChannelEnabled", + "msgId": 22, + "msgString": "Channel Enabled", + "msgPriority": "Info", + "params": [ + { + "paramName": "index", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelDisabled", + "msgId": 23, + "msgString": "Channel Disabled", + "msgPriority": "Info", + "params": [ + { + "paramName": "index", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelQuery", + "msgId": 24, + "msgString": "Channel Query", + "msgPriority": "Info", + "params": [ + { + "paramName": "index", + "paramType": "integer" + }, + { + "paramName": "enabled", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferEnableGet", + "msgId": 25, + "msgString": "Buffer Enable Get", + "msgPriority": "Info", + "params": [ + { + "paramName": "enabled", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferEnableSet", + "msgId": 26, + "msgString": "Buffer Enable Set", + "msgPriority": "Info", + "params": [ + { + "paramName": "enabled", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferLengthGet", + "msgId": 27, + "msgString": "Buffer Length Get", + "msgPriority": "Info", + "params": [ + { + "paramName": "length", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferLengthSet", + "msgId": 28, + "msgString": "Buffer Length Set", + "msgPriority": "Info", + "params": [ + { + "paramName": "length", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferWatermarkSet", + "msgId": 29, + "msgString": "Buffer Watermark Set", + "msgPriority": "Info", + "params": [ + { + "paramName": "length", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferWatermarkGet", + "msgId": 30, + "msgString": "Buffer Watermark Get", + "msgPriority": "Info", + "params": [ + { + "paramName": "length", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadExtendedChannelProperty", + "msgId": 31, + "msgString": "Read Extended Channel Property", + "msgPriority": "Info", + "params": [ + { + "paramName": "channel_index", + "paramType": "integer" + }, + { + "paramName": "property_index", + "paramType": "integer" + }, + { + "paramName": "value", + "paramType": "string" + } + ] + }, + { + "msgName": "WriteExtendedChannelProperty", + "msgId": 32, + "msgString": "Write Extended Channel Property", + "msgPriority": "Info", + "params": [ + { + "paramName": "result", + "paramType": "integer" + } + ] + }, + { + "msgName": "InterScanPeriodGet", + "msgId": 33, + "msgString": "Inter Scan Period Get", + "msgPriority": "Debug" + }, + { + "msgName": "ScanInitPeriodGet", + "msgId": 34, + "msgString": "Scan Init Period Get", + "msgPriority": "Debug" + }, + { + "msgName": "ScanInitPeriodSet", + "msgId": 35, + "msgString": "Scan Init Period Set", + "msgPriority": "Debug", + "params": [ + { + "paramName": "period", + "paramType": "string" + } + ] + }, + { + "msgName": "ChanPeriodGet", + "msgId": 36, + "msgString": "Channel Period Get", + "msgPriority": "Debug" + }, + { + "msgName": "ChanPeriodSet", + "msgId": 37, + "msgString": "Channel Period Set", + "msgPriority": "Debug", + "params": [ + { + "paramName": "period", + "paramType": "string" + } + ] + }, + { + "msgName": "StartPeriodicCapture", + "msgId": 38, + "msgString": "Channel Period Set", + "msgPriority": "Debug", + "params": [ + { + "paramName": "frequency", + "paramType": "integer" + }, + { + "paramName": "length", + "paramType": "integer" + }, + { + "paramName": "channel_mask", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelValue", + "msgId": 39, + "msgString": "Channel Value", + "msgPriority": "Debug", + "params": [ + { + "paramName": "channel", + "paramType": "unsignedInteger" + }, + { + "paramName": "raw", + "paramType": "unsignedInteger" + }, + { + "paramName": "scale_volts", + "paramType": "string" + }, + { + "paramName": "timestamp", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ReadError", + "msgId": 40, + "msgString": "Read Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadZeroBytes", + "msgId": 41, + "msgString": "Read Zero Bytes", + "msgPriority": "Error" + }, + { + "msgName": "ReadTooFewBytes", + "msgId": 42, + "msgString": "Read Zero Bytes", + "msgPriority": "Error", + "params": [ + { + "paramName": "bytes", + "paramType": "integer" + } + ] + }, + { + "msgName": "PeriodicCaptureComplete", + "msgId": 43, + "msgString": "Periodic Capture Complete", + "msgPriority": "Debug" + }, + { + "msgName": "BaselineTiming", + "msgId": 44, + "msgString": "Basline Timing", + "msgPriority": "Debug", + "params": [ + { + "paramName": "elapsed_time", + "paramType": "string" + }, + { + "paramName": "count_per_ms", + "paramType": "string" + } + ] + }, + { + "msgName": "TestTiming", + "msgId": 45, + "msgString": "Test Timing", + "msgPriority": "Debug", + "params": [ + { + "paramName": "elapsed_time", + "paramType": "string" + }, + { + "paramName": "count_per_ms", + "paramType": "string" + } + ] + }, + { + "msgName": "CountFactor", + "msgId": 46, + "msgString": "Count Factor", + "msgPriority": "Info", + "params": [ + { + "paramName": "factor", + "paramType": "string" + } + ] + }, + { + "msgName": "ChannelEnableError", + "msgId": 47, + "msgString": "Channel Enable Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "scan_index", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelDisableError", + "msgId": 48, + "msgString": "Channel Disable Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "scan_index", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelQueryError", + "msgId": 49, + "msgString": "Channel Query Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "scan_index", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferEnableSetError", + "msgId": 50, + "msgString": "Buffer Enable Set Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "enable", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferEnableGetError", + "msgId": 51, + "msgString": "Buffer Enable Set Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferLengthGetError", + "msgId": 52, + "msgString": "Buffer Length Get Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferLengthSetError", + "msgId": 53, + "msgString": "Buffer Length Set Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferWatermarkGetError", + "msgId": 54, + "msgString": "Buffer Watermark Get Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "BufferWatermarkSetError", + "msgId": 55, + "msgString": "Buffer Watermark Set", + "msgPriority": "Error", + "params": [ + { + "paramName": "length", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadExtendedChannelPropertyError", + "msgId": 56, + "msgString": "Read Extended Channel Property Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "channel_index", + "paramType": "integer" + }, + { + "paramName": "property_index", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "WriteExtendedChannelPropertyError", + "msgId": 57, + "msgString": "Write Extended Channel Property Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "channel_index", + "paramType": "integer" + }, + { + "paramName": "property_index", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "StartPeformanceTesting", + "msgId": 58, + "msgString": "Start Performance Testing", + "msgPriority": "Debug", + "params": [ + { + "paramName": "set_frequency", + "paramType": "integer" + }, + { + "paramName": "frequency", + "paramType": "integer" + }, + { + "paramName": "scans_per_batch", + "paramType": "integer" + }, + { + "paramName": "total_scans", + "paramType": "integer" + }, + { + "paramName": "buffer_length", + "paramType": "integer" + }, + { + "paramName": "channel_count", + "paramType": "integer" + }, + { + "paramName": "channel_mask", + "paramType": "integer" + } + ] + }, + { + "msgName": "PerfThreadCreateFail", + "msgId": 59, + "msgString": "Perf Thread Creation Failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadIncompleteScan", + "msgId": 60, + "msgString": "Read an incomplete scan line", + "msgPriority": "Error", + "params": [ + { + "paramName": "bytes", + "paramType": "integer" + }, + { + "paramName": "scan_size", + "paramType": "integer" + } + ] + }, + { + "msgName": "CapturedScans", + "msgId": 61, + "msgString": "Scans Capture3d", + "msgPriority": "Debug", + "params": [ + { + "paramName": "scans_requested", + "paramType": "integer" + }, + { + "paramName": "scans_read", + "paramType": "integer" + } + ] + }, + { + "msgName": "PerfMainTiming", + "msgId": 62, + "msgString": "Performance Main Timing", + "msgPriority": "Debug", + "params": [ + { + "paramName": "elapsed_us", + "paramType": "integer" + }, + { + "paramName": "process_us", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelAverageValue", + "msgId": 63, + "msgString": "Channel Average Value", + "msgPriority": "Info", + "params": [ + { + "paramName": "channel", + "paramType": "integer" + }, + { + "paramName": "average", + "paramType": "string" + } + ] + }, + { + "msgName": "ChannelZeroCount", + "msgId": 64, + "msgString": "Channel Zero Count", + "msgPriority": "Info", + "params": [ + { + "paramName": "channel", + "paramType": "integer" + }, + { + "paramName": "zero_count", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChannelMaxCount", + "msgId": 65, + "msgString": "Channel Max Count", + "msgPriority": "Info", + "params": [ + { + "paramName": "channel", + "paramType": "integer" + }, + { + "paramName": "max_count", + "paramType": "integer" + } + ] + }, + { + "msgName": "Bandwidth", + "msgId": 66, + "msgString": "Bandwidth", + "msgPriority": "Info", + "params": [ + { + "paramName": "bandwidth", + "paramType": "string" + } + ] + }, + { + "msgName": "PropertyIndexNotFound", + "msgId": 67, + "msgString": "Property Index Not Found!", + "msgPriority": "Error", + "params": [ + { + "paramName": "property_name", + "paramType": "string" + } + ] + }, + { + "msgName": "ChannelSyncCount", + "msgId": 68, + "msgString": "Channel Synchronization Error Counter", + "msgPriority": "Info", + "params": [ + { + "paramName": "channel", + "paramType": "integer" + }, + { + "paramName": "sync_count", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/app_launch_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/app_launch_log_manifest.json new file mode 100644 index 0000000..5e458ef --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/app_launch_log_manifest.json @@ -0,0 +1,9 @@ +{ + "comment": "APP LAUNCH LOGS ARE DEPRECATED, BUT THIS IS HERE TO RESERVE THE CATEGORY ID.", + "version": "1.0", + "categoryId": 11, + "categoryName": "applaunch", + "msgIds": [ + {} + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/application-manager_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/application-manager_log_manifest.json new file mode 100644 index 0000000..9e98ddd --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/application-manager_log_manifest.json @@ -0,0 +1,1314 @@ +{ + "version": "1.0", + "categoryId": 7, + "categoryName": "appman", + "msgIds": [ + { + "msgName": "GetAddrInfoError", + "msgId": 1, + "msgString": "Error getting IP address ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "NoRulesToSet", + "msgId": 2, + "msgString": "No rule to set. Exiting", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "UnexpectedApp", + "msgId": 3, + "msgString": "Unexpected app parameters during initialize. App should be either a Customer app or Normal world service type", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "AlreadyManagedApp", + "msgId": 4, + "msgString": "The app is already being managed", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToInitializeApp", + "msgId": 5, + "msgString": "Failed to initialize app", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "AppIsRunning", + "msgId": 6, + "msgString": "App is running. App needs to be stopped before remove", + "msgPriority": "Error" + }, + { + "msgName": "AppStatus", + "msgId": 7, + "msgString": "App status", + "msgPriority": "Info", + "params": [ + { + "paramName": "name", + "paramType": "string" + }, + { + "paramName": "state", + "paramType": "integer" + } + ] + }, + { + "msgName": "NonExistentApp", + "msgId": 8, + "msgString": "No such app or app already removed", + "msgPriority": "Info" + }, + { + "msgName": "FailedToInvokeGdb", + "msgId": 9, + "msgString": "Failed to invoke gdbserver.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ] + }, + { + "msgName": "AppState", + "msgId": 10, + "msgString": "App state", + "msgPriority": "Info", + "params": [ + { + "paramName": "state", + "paramType": "integer" + } + ] + }, + { + "msgName": "DebuggingNotSupported", + "msgId": 11, + "msgString": "App debugging is supported only for customer apps", + "msgPriority": "Error" + }, + { + "msgName": "KillingPid", + "msgId": 12, + "msgString": "Killing PID", + "msgPriority": "Info", + "params": [ + { + "paramName": "Pid", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "GetApplicationImageCountFailed", + "msgId": 13, + "msgString": "Skuser_GetApplicationImageCount failed.", + "msgPriority": "Error" + }, + { + "msgName": "ListAllApplicationImagesFailed", + "msgId": 14, + "msgString": "Skuser_ListAllApplicationImages failed.", + "msgPriority": "Error" + }, + { + "msgName": "FoundImages", + "msgId": 15, + "msgString": "Found:", + "msgPriority": "Info", + "params": [ + { + "paramName": "NumberOfImages", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "AppParameters", + "msgId": 16, + "msgString": "Application:", + "msgPriority": "Info", + "params": [ + { + "paramName": "ImageType", + "paramType": "integer" + }, + { + "paramName": "ComponentUID", + "paramType": "string" + }, + { + "paramName": "AppName", + "paramType": "string" + } + ] + }, + { + "msgName": "NoSuchDirectory", + "msgId": 17, + "msgString": "Failed to add app. No such directory:", + "msgPriority": "Error", + "params": [ + { + "paramName": "directory", + "paramType": "string" + } + ] + }, + { + "msgName": "AddingApp", + "msgId": 18, + "msgString": "Adding app:", + "msgPriority": "Debug", + "params": [ + { + "paramName": "name", + "paramType": "string" + }, + { + "paramName": "ImageType", + "paramType": "integer" + }, + { + "paramName": "path", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToInitializeNetworking", + "msgId": 19, + "msgString": "Could not initialize networking. Failed to add networkd.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToInitializeAzured", + "msgId": 20, + "msgString": "Could not initialize azured. Failed to add azured.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToInitializeRngd", + "msgId": 21, + "msgString": "Could not initialize rngd. Failed to add rngd.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SetLinuxCapabilities", + "msgId": 22, + "msgString": "Setting linux capabilities", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "ErrorOnSetLinuxCapabilities", + "msgId": 23, + "msgString": "Error when setting linux capabilities", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToAddApp", + "msgId": 24, + "msgString": "App manager could not add app", + "msgPriority": "Error", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "FailedSkuserInitializeImageApis", + "msgId": 25, + "msgString": "Skuser_InitializeImageApis failed.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "MountingOneImage", + "msgId": 26, + "msgString": "Mounting images for app", + "msgPriority": "Info", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ], + "obsolete": true + }, + { + "msgName": "AlreadyMounted", + "msgId": 27, + "msgString": "Item is already mounted.", + "msgPriority": "Info" + }, + { + "msgName": "MountPointFail", + "msgId": 28, + "msgString": "Failed to create mount point", + "msgPriority": "Error" + }, + { + "msgName": "MountSysCallFail", + "msgId": 29, + "msgString": "Mount system call failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "NothingToUnmount", + "msgId": 30, + "msgString": "No target found to unmount", + "msgPriority": "Info" + }, + { + "msgName": "FailedUmountSysCall", + "msgId": 31, + "msgString": "umount system call failed.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CouldNotLoadMountPoint", + "msgId": 32, + "msgString": "Could not load mount points", + "msgPriority": "Error" + }, + { + "msgName": "Mounting", + "msgId": 33, + "msgString": "Mounting", + "msgPriority": "Info", + "params": [ + { + "paramName": "name", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "CouldNotFindImage", + "msgId": 34, + "msgString": "No image found with matching component id", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedRmdir", + "msgId": 35, + "msgString": "Failed to remove directory", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToUnmountConfigDirectory", + "msgId": 36, + "msgString": "Failed to unmount '/mnt/config' directory", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "RebootOrShutdownReturnedUnexpectedly", + "msgId": 37, + "msgString": "Reboot or shutdown has returned unexpectedly.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToParseAppManifest", + "msgId": 38, + "msgString": "Failed to parse application manifest", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToInitializeDebugShell", + "msgId": 40, + "msgString": "Failed to initialize debug shell.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToAcquireCapabilities", + "msgId": 41, + "msgString": "Failed to acquire all capabilities for application.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_id", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "CustomerManifestSpecifiedPolicy", + "msgId": 42, + "msgString": "Customer manifest illegally includes policy information.", + "msgPriority": "Error" + }, + { + "msgName": "MountNonApplication", + "msgId": 43, + "msgString": "Skipping non-application in application partition", + "msgPriority": "Warning", + "params": [ + { + "paramName": "name", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "StoppingAllManagedApplications", + "msgId": 44, + "msgString": "Stopping all managed applications.", + "msgPriority": "Info" + }, + { + "msgName": "SystemHasStartedRebooting", + "msgId": 45, + "msgString": "System has started rebooting.", + "msgPriority": "Info" + }, + { + "msgName": "FailedToSetFirewallRules", + "msgId": 46, + "msgString": "Failed to set default firewall rules.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToOpenGpioChipFd", + "msgId": 47, + "msgString": "Failed to open gpio chip file descriptor.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToEnableGpioPinAccess", + "msgId": 48, + "msgString": "Failed to enable gpio pin access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToGetGpioChipInfo", + "msgId": 49, + "msgString": "Failed to gpio information for device.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToInitializeGpioAccess", + "msgId": 50, + "msgString": "Failed to initialize gpio access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "SafeModeActive", + "msgId": 51, + "msgString": "SAFE MODE active; not launching third-party apps.", + "msgPriority": "Info" + }, + { + "msgName": "CriticalUptimeReached", + "msgId": 52, + "msgString": "Reached critical uptime.", + "msgPriority": "Info" + }, + { + "msgName": "AppsFailedToStart", + "msgId": 53, + "msgString": "One or more apps failed to start", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SignalfdFailedCreate", + "msgId": 54, + "msgString": "Failed to create signalfd", + "msgPriority": "Error", + "params": [ + { + "paramName": "_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SignalfdFailedPoll", + "msgId": 55, + "msgString": "Failed to poll signalfd", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SignalfdFailedRead", + "msgId": 56, + "msgString": "Failed to read signalfd", + "msgPriority": "Error", + "params": [ + { + "paramName": "_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedWaitChildProcesses", + "msgId": 57, + "msgString": "failed to wait for child processes", + "msgPriority": "Error", + "params": [ + { + "paramName": "_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "CreateImageManagerFailed", + "msgId": 58, + "msgString": "Error getting image manager. Could not mount apps.", + "msgPriority": "Error" + }, + { + "msgName": "InitializeAppFailed", + "msgId": 59, + "msgString": "failed to initialize application", + "params": [ + { + "paramName": "imageName", + "paramType": "string" + }, + { + "paramName": "errvalue", + "paramType": "commonError" + } + ], + "msgPriority": "Error" + }, + { + "msgName": "InitializeAllAppsFailed", + "msgId": 60, + "msgString": "Failed to mount one or more applications.", + "msgPriority": "Error" + }, + { + "msgName": "MountedImageNotADirectory", + "msgId": 61, + "msgString": "Mounted image is not a directory.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_id", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "FailedToGetComponentId", + "msgId": 62, + "msgString": "Failed to find component id associated with uid", + "msgPriority": "Error", + "params": [ + { + "paramName": "uid", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedSkuserCreateImageManager", + "msgId": 63, + "msgString": "Skuser_CreateImageManager failed.", + "msgPriority": "Error" + }, + { + "msgName": "SideloadRequiresReboot", + "msgId": 64, + "msgString": "One or more images requires a system reboot.", + "msgPriority": "Info" + }, + { + "msgName": "ErrorGettingImagesFromSkuser", + "msgId": 65, + "msgString": "An error occurred while getting images from skuser.", + "msgPriority": "Error" + }, + { + "msgName": "ErrorInstallingImages", + "msgId": 66, + "msgString": "A skuser error occurred while installing staged images.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidatingImage", + "msgId": 67, + "msgString": "App initialization failed, invalidating image.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_id", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "AppmanInitStart", + "msgId": 68, + "msgString": "--------------APP INIT START---------------------", + "msgPriority": "Debug" + }, + { + "msgName": "ErrorOnScan", + "msgId": 69, + "msgString": "Error occurred when querying a scan in lifetime manager.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToSetPeripheralPermissions", + "msgId": 71, + "msgString": "Failure to set peripheral permissions. Exiting.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToInitGpioAccess", + "msgId": 72, + "msgString": "Failure enabling gpio pin access. Exiting.", + "msgPriority": "Error" + }, + { + "msgName": "NotEnoughArgs", + "msgId": 73, + "msgString": "Not enough arguments. Exiting.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToSetDefaultFirewall", + "msgId": 74, + "msgString": "Failed to set default firewall rules. Exiting.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "AppmanInitEnd", + "msgId": 75, + "msgString": "--------------APP INIT END---------------------", + "msgPriority": "Debug" + }, + { + "msgName": "ChildExited", + "msgId": 76, + "msgString": "Child exited! PID = ", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "pid", + "paramType": "integer" + } + ] + }, + { + "msgName": "RetryingUnmount", + "msgId": 77, + "msgString": "Retrying umount after failure. Wait and see if a child process exits.", + "msgPriority": "Info" + }, + { + "msgName": "CouldNotFindApplication", + "msgId": 78, + "msgString": "No managed app with the specified uid.", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "FailedToUpdateFirewallRules", + "msgId": 79, + "msgString": "Failed to update firewall rules.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToUpdateTenantList", + "msgId": 80, + "msgString": "Failed to update tenant id list.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorInvalidatingImageAfterInitializeFailure", + "msgId": 81, + "msgString": "Invalidating image failed after installation failure.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_id", + "paramType": "uniqueId" + }, + { + "paramName": "image_update_return_code", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DevLockPreventedSideloadManualStart", + "msgId": 82, + "msgString": "Sideload with manual start operation prevented by lack of development capability.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_id", + "paramType": "uniqueId" + }, + { + "paramName": "image_type", + "paramType": "integer" + } + ] + }, + { + "msgName": "ProcessExitError", + "msgId": 83, + "msgString": "Process exited with error code.", + "msgPriority": "Error", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DebuggerAlreadyLoaded", + "msgId": 84, + "msgString": "Attempting to install a second debugger.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToUnmountDebugger", + "msgId": 85, + "msgString": "Failed to unmount debugger.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToRemountDebugger", + "msgId": 86, + "msgString": "Failed to mount debugger as application.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToGetStatusOfDebugger", + "msgId": 87, + "msgString": "Failed to get status of debugger executable.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToDeleteDeviceTenant", + "msgId": 88, + "msgString": "Failed to delete device tenant entry for user.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "uid", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToDeleteFirewallRules", + "msgId": 89, + "msgString": "Failed to delete firewall entries for user.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "uid", + "paramType": "integer" + } + ] + }, + { + "msgName": "CouldNotInitializePinList", + "msgId": 90, + "msgString": "Failed to initialize pin map from device tree.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedGarbageCollection", + "msgId": 91, + "msgString": "Failed application garbage collection", + "msgPriority": "Warning" + }, + { + "msgName": "GetUpdateCertStoreImageInfoFailed", + "msgId": 92, + "msgString": "Skuser_GetUpdateCertStoreImageInfo failed.", + "msgPriority": "Error" + }, + { + "msgName": "InitializeUpdateCertStoreFailed", + "msgId": 93, + "msgString": "Failed to mount the update certificate store.", + "msgPriority": "Error" + }, + { + "msgName": "DuplicateTcpUdpPortFound", + "msgId": 94, + "msgString": "Tried to add a TCP or UDP port that a previous application added.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Port", + "paramType": "integer" + } + ] + }, + { + "msgName": "RelaunchedApp", + "msgId": 95, + "msgString": "Successfully relaunched an appliation.", + "msgPriority": "Trace", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "AppRelaunchError", + "msgId": 96, + "msgString": "Could not relaunch an application.", + "msgPriority": "Error", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AppmanPollError", + "msgId": 97, + "msgString": "Failed to poll the signal or app relaunch fds", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AppRelaunchFdFailedRead", + "msgId": 98, + "msgString": "Failed to read the app relaunch fd", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AppRelaunchFdFailedCreate", + "msgId": 99, + "msgString": "Failed to create the app relaunch fd", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotCreateAppLifetimeManager", + "msgId": 100, + "msgString": "Could not create App Lifetime Manager, exiting", + "msgPriority": "Error" + }, + { + "msgName": "AppRelaunchTimerFdGetTimeError", + "msgId": 101, + "msgString": "Failed to get the time remaining till next timer expiration from app relaunch timer fd", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AppRelaunchTimerFdSetTimeError", + "msgId": 102, + "msgString": "Failed to set the app relaunch timer", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToSetI2cMasterPermissions", + "msgId": 103, + "msgString": "Failure to set I2cMaster permissions. Exiting.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToSetSpiMasterPermissions", + "msgId": 104, + "msgString": "Failure to set SpiMaster permissions. Exiting.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ChildExitedWithStatus", + "msgId": 105, + "msgString": "Child exited!", + "msgPriority": "Info", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + }, + { + "paramName": "status", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChildTerminatedBySignal", + "msgId": 106, + "msgString": "Child terminated by signal!", + "msgPriority": "Info", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + }, + { + "paramName": "signal", + "paramType": "integer" + } + ] + }, + { + "msgName": "ChildStopped", + "msgId": 107, + "msgString": "Child stopped!", + "msgPriority": "Info", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + }, + { + "paramName": "signal", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedInvalidateDuringDelete", + "msgId": 108, + "msgString": "Could not invalidate image for unmanaged application.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "component_uid", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "NoDevUnlockCapabilityOnDelete", + "msgId": 109, + "msgString": "Illegal attempt to delete app without dev unlock capability.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "component_uid", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "NoMatchingImage", + "msgId": 110, + "msgString": "No image found with matching component id.", + "msgPriority": "Error", + "params": [ + { + "paramName": "component_uid", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "ProcessSignaled", + "msgId": 111, + "msgString": "A process has been signaled.", + "msgPriority": "Warning", + "params": [ + { + "paramName": "app_id", + "paramType": "uniqueId" + }, + { + "paramName": "signal_number", + "paramType": "integer" + }, + { + "paramName": "signal_code", + "paramType": "integer" + } + ] + }, + { + "msgName": "AzSpioFirewallError", + "msgId": 112, + "msgString": "Error modifying the AZ SPIO Firewall State.", + "msgPriority": "Error", + "params": [ + { + "paramName": "dst", + "paramType": "uniqueId" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToAcquireAllConnections", + "msgId": 113, + "msgString": "Error creating all connections for app.", + "msgPriority": "Error", + "params": [ + { + "paramName": "component", + "paramType": "uniqueId" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SystemHasStartedPoweringDown", + "msgId": 114, + "msgString": "System has started powering down.", + "msgPriority": "Info" + }, + { + "msgName": "FailedToSetRealTimeClockAlarm", + "msgId": 115, + "msgString": "Failed to set the real-time clock wakeup alarm.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToPowerDown", + "msgId": 116, + "msgString": "Failed to power-down the system.", + "msgPriority": "Error" + }, + { + "msgName": "CouldNotFindImage", + "msgId": 117, + "msgString": "Could not find image associated with component uid.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "FailedToGetImageList", + "msgId": 118, + "msgString": "Failed to retrieve list of ASXIPFS-compatible images.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToUnmapApplication", + "msgId": 119, + "msgString": "Failed to unmap an application's MTD/block device.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_name", + "paramType": "string" + }, + { + "paramName": "error_code", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToMapAppToMTD", + "msgId": 120, + "msgString": "Failed to set up an application MTD/block device.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_name", + "paramType": "string" + }, + { + "paramName": "error_code", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToMountCertStore", + "msgId": 121, + "msgString": "Failed to mount cert store.", + "msgPriority": "Error", + "params": [ + { + "paramName": "app_name", + "paramType": "string" + }, + { + "paramName": "error_code", + "paramType": "integer" + } + ] + }, + { + "msgName": "CouldNotFindSystemUserInfo", + "msgId": 122, + "msgString": "Couldn't find system uid or appman gid", + "msgPriority": "Error" + }, + { + "msgName": "PeripheralConfigRequiresReboot", + "msgId": 123, + "msgString": "Peripheral config changed, and requires reboot", + "msgPriority": "Info", + "params": [ + { + "paramName": "app_uid", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "PeripheralConfigHasExtraApps", + "msgId": 124, + "msgString": "On install, applications requiring peripherals were removed", + "msgPriority": "Info" + }, + { + "msgName": "FailedToLockPeripheralConfig", + "msgId": 125, + "msgString": "Failed to lock peripheral configuration", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appman_apps_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appman_apps_log_manifest.json new file mode 100644 index 0000000..a314af6 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appman_apps_log_manifest.json @@ -0,0 +1,733 @@ +{ + "version": "1.0", + "categoryId": 16, + "categoryName": "appman_apps", + "msgIds": [ + { + "msgName": "FailedToGetUidForComponentId", + "msgId": 1, + "msgString": "Failed to get UID for component", + "msgPriority": "Error", + "params": [ + { + "paramName": "componentId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "BadUserId", + "msgId": 2, + "msgString": "User 'nobody' has no rights.", + "msgPriority": "Error" + }, + { + "msgName": "ErrorAcquiringUart", + "msgId": 3, + "msgString": "Error acquiring uart.", + "msgPriority": "Error", + "params": [ + { + "paramName": "uart", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorAcquiringGpio", + "msgId": 4, + "msgString": "Could not acquire one or more of the requested gpios.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ErrorReleasingUart", + "msgId": 5, + "msgString": "Error releasing uart.", + "msgPriority": "Error", + "params": [ + { + "paramName": "uart", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorReleasingGpio", + "msgId": 6, + "msgString": "Error while releasing gpios.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "EntryPointDoesNotExist", + "msgId": 7, + "msgString": "Entry point specified in application manifest does not exist on disk.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "EntryPointIsNotAFile", + "msgId": 8, + "msgString": "Entry point specified in application manifest is not a file.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToCreateCapServerFile", + "msgId": 9, + "msgString": "Failed to create file for capability server.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedChown", + "msgId": 10, + "msgString": "Failed to chown file", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "StoppingApp", + "msgId": 11, + "msgString": "Stopping app...", + "msgPriority": "Info", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "AppInWrongState", + "msgId": 12, + "msgString": "App is in the wrong state for the requested operation", + "msgPriority": "Info", + "params": [ + { + "paramName": "appName", + "paramType": "string" + }, + { + "paramName": "currentState", + "paramType": "integer" + }, + { + "paramName": "requestedState", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToStopApp", + "msgId": 13, + "msgString": "Fail to stop app.", + "msgPriority": "Error", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + }, + { + "paramName": "appType", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DebuggingApp", + "msgId": 14, + "msgString": "Debugging app...", + "msgPriority": "Info", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "FailedToStartAppDebugging", + "msgId": 15, + "msgString": "Error starting debugging of app. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ] + }, + { + "msgName": "StartingApp", + "msgId": 16, + "msgString": "Starting app...", + "msgPriority": "Debug", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "AppIsRunning", + "msgId": 17, + "msgString": "App is running. App needs to be stopped before remove", + "msgPriority": "Error" + }, + { + "msgName": "FailedToStartApp", + "msgId": 18, + "msgString": "Error starting app. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "appId", + "paramType": "uniqueId" + }, + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "posixError", + "paramType": "integer" + } + ] + }, + { + "msgName": "InitializingNetworkd", + "msgId": 19, + "msgString": "Initializing networkd", + "msgPriority": "Info" + }, + { + "msgName": "FailedChmod", + "msgId": 20, + "msgString": "Failed to chmod: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetRngdUid", + "msgId": 21, + "msgString": "Failed to get uid for rngd application.", + "msgPriority": "Error" + }, + { + "msgName": "ErrorAcquiringMutableStorage", + "msgId": 22, + "msgString": "Error acquiring mutable storage", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorReleasingMutableStorage", + "msgId": 23, + "msgString": "Error releasing mutable storage", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "userId", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "CouldNotResetUserQuota", + "msgId": 24, + "msgString": "Could not reset user quota, continuing", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorRemovingWifiDir", + "msgId": 25, + "msgString": "Error occurred when removing deprecated wifi directory", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "CouldNotStatDirectory", + "msgId": 26, + "msgString": "Stat failed while looking for wifi directory", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "CouldNotCopyMacFile", + "msgId": 27, + "msgString": "Failed to copy old wlan0 mac file to new location", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "CouldNotCopySupplicantFile", + "msgId": 28, + "msgString": "Failed to copy old wpa_supplicant file to new location", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "CouldNotDeleteWifiDir", + "msgId": 29, + "msgString": "Failed to delete deprecated wifi directory and contents", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "CouldNotStatFile", + "msgId": 30, + "msgString": "Stat failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "CouldNotCopyFile", + "msgId": 31, + "msgString": "File copy failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "CouldNotChownFile", + "msgId": 32, + "msgString": "File chown failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "CouldNotDeleteFile", + "msgId": 33, + "msgString": "Removing file failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "RequestedPinsAlreadyUsed", + "msgId": 34, + "msgString": "Application requested pins that are already used", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "MultipleRequestForPin", + "msgId": 35, + "msgString": "Application requested multiple peripherals that map to the same logical pin", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "CouldNotFindUartIndex", + "msgId": 36, + "msgString": "Error finding index of UART", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "CouldNotRemoveUIDEntriesForUninstalledApps", + "msgId": 37, + "msgString": "Could not remove uid entries for uninstalled apps", + "msgPriority": "Warning" + }, + { + "msgName": "CouldNotGetUidOfApplicationToKeep", + "msgId": 38, + "msgString": "Could not get the uid of an application meant to be kept during garbage collection", + "msgPriority": "Error", + "params": [ + { + "paramName": "componentId", + "paramType": "uniqueId" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotOpenMutableStorageParentDirectory", + "msgId": 39, + "msgString": "Could not open the directory where Mutable Storage directories are located", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorRemovingMutableStorageForUninstalledApps", + "msgId": 40, + "msgString": "Could not remove mutable storage capabilities for uninstalled apps", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotResetStorageQuotaForUninstalledApps", + "msgId": 41, + "msgString": "Could not reset storage quota for uninstalled apps", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotGetDirectoryInformation", + "msgId": 42, + "msgString": "Could not get information about a directory", + "msgPriority": "Warning", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotFindPeripheralIndex", + "msgId": 43, + "msgString": "Error finding index of peripheral", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ErrorAcquiringPeripheral", + "msgId": 44, + "msgString": "Error acquiring peripheral.", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralName", + "paramType": "string" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorReleasingPeripheral", + "msgId": 45, + "msgString": "Error releasing peripheral.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralName", + "paramType": "string" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NoCoreAvailable", + "msgId": 46, + "msgString": "No core was available to run application", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ErrorAcquiringGpioPeripheral", + "msgId": 47, + "msgString": "Allocation conflict of GPIO peripheral - unsupported sharing of GPIO block", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToGetSysUid", + "msgId": 48, + "msgString": "Failed to get uid for sys user.", + "msgPriority": "Error" + }, + { + "msgName": "CreateNetworkStatusFileFailed", + "msgId": 49, + "msgString": "Failed to create and take ownership of network status file.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorAcquiringGpioInstance", + "msgId": 50, + "msgString": "Could not acquire requested gpio.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "requestedGpioInstance", + "paramType": "integer" + } + ] + }, + { + "msgName": "ConflictAcquiringPeripheral", + "msgId": 51, + "msgString": "Conflict acquiring peripheral.", + "msgPriority": "Error", + "params": [ + { + "paramName": "conflictType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralNumber", + "paramType": "unsignedInteger" + }, + { + "paramName": "conflictPeripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "conflictPeripheralNumber", + "paramType": "unsignedInteger" + }, + { + "paramName": "conflictAppUid", + "paramType": "unsignedInteger" + } + ], + "obsolete": true + }, + { + "msgName": "PwmPeripheralExportFailure", + "msgId": 52, + "msgString": "Failed to export/unexport PWM.", + "msgPriority": "Error", + "params": [ + { + "paramName": "isExport", + "paramType": "unsignedInteger" + }, + { + "paramName": "pwmInstance", + "paramType": "unsignedInteger" + } + ], + "obsolete": true + }, + { + "msgName": "FailureReleasingAllPeripherals", + "msgId": 53, + "msgString": "Failed to release all peripherals for app", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToReleasePeripheralInstance", + "msgId": 54, + "msgString": "Failed to release peripheral instance", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralInstance", + "paramType": "unsignedInteger" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "NoPinsAssociatedWithPeripheral", + "msgId": 55, + "msgString": "No GPIO pins were associated with peripheral", + "msgPriority": "Warning", + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralInstance", + "paramType": "unsignedInteger" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToReleaseGpioPinsBackToSystem", + "msgId": 56, + "msgString": "Failed to release pins back to the system", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToAddLineAccessControlToGpios", + "msgId": 57, + "msgString": "Failed add line access control to GPIOs", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToFindPeripheralInDeviceTree", + "msgId": 58, + "msgString": "Failed to find the capability peripheral in the device tree", + "msgPriority": "Error", + "params": [ + { + "paramName": "capabilityId", + "paramType": "unsignedInteger" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CreatedApplicationProfile", + "msgId": 59, + "msgString": "Created user profile for application", + "msgPriority": "Trace", + "params": [ + { + "paramName": "uid", + "paramType": "unsignedInteger" + }, + { + "paramName": "coreType", + "paramType": "unsignedInteger" + }, + { + "paramName": "coreId", + "paramType": "unsignedInteger" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appman_handlers_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appman_handlers_log_manifest.json new file mode 100644 index 0000000..96cf53f --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appman_handlers_log_manifest.json @@ -0,0 +1,372 @@ +{ + "version": "1.0", + "categoryId": 17, + "categoryName": "appman_handlers", + "msgIds": [ + { + "msgName": "CouldNotFindAppIpcGroup", + "msgId": 1, + "msgString": "App manager could not find app-ipc group!", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ReceivedCommand", + "msgId": 2, + "msgString": "Received command", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "command", + "paramType": "string" + } + ] + }, + { + "msgName": "AppDoesNotHaveCapability", + "msgId": 3, + "msgString": "App does not have appropriate capability to run command", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "CommandName", + "paramType": "string" + } + ] + }, + { + "msgName": "BadCommand", + "msgId": 4, + "msgString": "Bad command received. Command format: or customer_app.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "CommandReceived", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToParseAppId", + "msgId": 5, + "msgString": "Unable to parse app ID ", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "Command", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToRestoreAutoControl", + "msgId": 6, + "msgString": "Error restoring auto control for the app. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToStartApp", + "msgId": 7, + "msgString": "Error starting app. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToStartAppDebugging", + "msgId": 8, + "msgString": "Error starting debugging of app. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ] + }, + { + "msgName": "StopAppFailedWithError", + "msgId": 9, + "msgString": "Stop app failed with error.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToRemoveApp", + "msgId": 10, + "msgString": "Error removing app. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToListApps", + "msgId": 11, + "msgString": "Failed to get list of applications.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "InvalidPid", + "msgId": 12, + "msgString": "Invalid pid", + "msgPriority": "Error", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedSigterm", + "msgId": 13, + "msgString": "Failed to send SIGTERM to pid", + "msgPriority": "Error", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCheckForPid", + "msgId": 14, + "msgString": "Failed to check for pid", + "msgPriority": "Error", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedSigkill", + "msgId": 15, + "msgString": "Failed SIGKILL - process still running", + "msgPriority": "Error", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedClone", + "msgId": 16, + "msgString": "Failed to clone", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "error", + "paramType": "integer" + }, + { + "paramName": "permissions_error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedFork", + "msgId": 17, + "msgString": "Failed to fork", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AzspheresvcSearchFailed", + "msgId": 24, + "msgString": "searching the 'azspheresvc' interface failed.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorParsingAzsphereSvcToString", + "msgId": 25, + "msgString": "Error parsing azspheresvc adapter address to string.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "Forking", + "msgId": 26, + "msgString": "Forking....", + "msgPriority": "Info" + }, + { + "msgName": "GdbserverPid", + "msgId": 29, + "msgString": "Pid in gdbserver", + "msgPriority": "Info", + "params": [ + { + "paramName": "pid", + "paramType": "integer" + } + ] + }, + { + "msgName": "CallerNotAllowed", + "msgId": 30, + "msgString": "Caller not allowed to communicate with Application manager. ", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "CallerUID", + "paramType": "integer" + } + ] + }, + { + "msgName": "DevLockPreventedCommand", + "msgId": 31, + "msgString": "Command denied due to lack of development capability.", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommandName", + "paramType": "string" + }, + { + "paramName": "app_id", + "paramType": "uniqueId" + }, + { + "paramName": "image_type", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "InvalidMessageLength", + "msgId": 32, + "msgString": "Message length is invalid.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "Length", + "paramType": "integer" + } + ] + }, + { + "msgName": "ManualControlCommandNotAllowed", + "msgId": 33, + "msgString": "App manual control command denied due to app type or lack of development capability.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "CommandName", + "paramType": "string" + }, + { + "paramName": "app_id", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "CouldNotWriteIpcCommandResponse", + "msgId": 34, + "msgString": "Could not write ipc command response to the given file descriptor.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToGetQuotaInfo", + "msgId": 35, + "msgString": "Error getting app quota info. ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ReceivedCommandValue", + "msgId": 36, + "msgString": "Received command value", + "msgPriority": "Info", + "params": [ + { + "paramName": "command", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appman_init_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appman_init_log_manifest.json new file mode 100644 index 0000000..2fba9db --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appman_init_log_manifest.json @@ -0,0 +1,320 @@ +{ + "version": "1.0", + "categoryId": 3, + "categoryName": "appman_init", + "msgIds": [ + { + "msgName": "LoggerStarted", + "msgId": 1, + "msgString": "Appman started and log server ready", + "msgPriority": "Info" + }, + { + "msgName": "StackSizeLimitFailed", + "msgId": 2, + "msgString": "Failed to limit stack size", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ProcCountLimitFailed", + "msgId": 3, + "msgString": "Failed to set thread count limit", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "NotADirectory", + "msgId": 4, + "msgString": "Expected existing file to be a directory", + "msgPriority": "Error" + }, + { + "msgName": "FailedToStatDirectory", + "msgId": 5, + "msgString": "Failed to stat directory", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCreateDirectory", + "msgId": 6, + "msgString": "Failed to create directory", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToChmod", + "msgId": 7, + "msgString": "Failed to chmod", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToChown", + "msgId": 8, + "msgString": "Failed to chown", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToMount", + "msgId": 10, + "msgString": "Failed to mount", + "msgPriority": "Error", + "params": [ + { + "paramName": "target", + "paramType": "string" + }, + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToSetWakeup", + "msgId": 12, + "msgString": "Failed to set write_wakeup_threshold", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSetVmMin", + "msgId": 13, + "msgString": "Failed to set vm_min_free_kb", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSetVmSwappiness", + "msgId": 14, + "msgString": "Failed to set vm_swappiness", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSetVmWatermark", + "msgId": 15, + "msgString": "Failed to set vm_watermark_scale_factor", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CouldNotReadDev", + "msgId": 16, + "msgString": "Could not read /dev", + "msgPriority": "Error" + }, + { + "msgName": "CouldNotOpenCgroupsConfig", + "msgId": 17, + "msgString": "Could not open cgroups config", + "msgPriority": "Error" + }, + { + "msgName": "CouldNotWriteCgroupsConfig", + "msgId": 18, + "msgString": "Could not write to cgroups config", + "msgPriority": "Error" + }, + { + "msgName": "CouldNotCreateAppsCgroup", + "msgId": 19, + "msgString": "Cannot create apps cgroup", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToChownCgroup", + "msgId": 20, + "msgString": "Failed to chown /mnt/cgroup", + "msgPriority": "Error" + }, + { + "msgName": "FailedToChownCgroupApps", + "msgId": 21, + "msgString": "Failed to chown /mnt/cgroup/apps", + "msgPriority": "Error" + }, + { + "msgName": "FailedToChownCgroupAppsProc", + "msgId": 22, + "msgString": "Failed to chown /mnt/cgroup/apps/cgroup.procs", + "msgPriority": "Error" + }, + { + "msgName": "FailedToChmodRun", + "msgId": 24, + "msgString": "Failed to chmod /run", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "Init", + "msgId": 25, + "msgString": "------------------- INIT ----------------", + "msgPriority": "Debug" + }, + { + "msgName": "ErrorSettingSysUser", + "msgId": 26, + "msgString": "Error setting appman to user 'sys'", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorSettingAppmanGid", + "msgId": 27, + "msgString": "Error setting appman to group 'appman'", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToChownFtd", + "msgId": 28, + "msgString": "Failed to chown device tree", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CpufreqDeviceDoesNotExist", + "msgId": 29, + "msgString": "The /dev/cpufreq device does not exist. This is likely expected as not all platforms support DVFS.", + "msgPriority": "Info" + }, + { + "msgName": "CouldNotCreateMsftCgroup", + "msgId": 30, + "msgString": "Cannot create msft cgroup", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CouldNotCreateCustomerCgroup", + "msgId": 31, + "msgString": "Cannot create customer cgroup", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToChownMsftCgroup", + "msgId": 32, + "msgString": "Failed to chown /mnt/cgroup/apps/msft", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToChownCustomerCgroup", + "msgId": 33, + "msgString": "Failed to chown /mnt/cgroup/apps/customer", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToSetHighOrderAllocDisable", + "msgId": 34, + "msgString": "Failed to set high_oder_alloc_disable kernel parameter", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSetWaterMarkPermissions", + "msgId": 35, + "msgString": "Failed to set memory watermark permissions", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appman_permissions_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appman_permissions_log_manifest.json new file mode 100644 index 0000000..fc1a78f --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appman_permissions_log_manifest.json @@ -0,0 +1,331 @@ +{ + "version": "1.0", + "categoryId": 18, + "categoryName": "appman_permissions", + "msgIds": [ + { + "msgName": "FailedToSetUser", + "msgId": 1, + "msgString": "Failed to set user id: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "uid", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSetGroup", + "msgId": 2, + "msgString": "Failed to set group id: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "gid", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedGroupLookup", + "msgId": 3, + "msgString": "Failed to look up group: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "name", + "paramType": "string" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedUserLookup", + "msgId": 4, + "msgString": "Failed to look up user: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "name", + "paramType": "string" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "InitializingUartPermissions", + "msgId": 6, + "msgString": "Initializing permissions for UARTs", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "FailedChmod", + "msgId": 7, + "msgString": "Failed to chmod: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedChown", + "msgId": 8, + "msgString": "Failed to chown file", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToOpenGpioChipFd", + "msgId": 9, + "msgString": "Failed to open gpio chip file descriptor.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToEnableGpioPinAccess", + "msgId": 10, + "msgString": "Failed to enable gpio pin access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToGetGpioChipInfo", + "msgId": 11, + "msgString": "Failed to get gpio information for device.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToInitializeGpioAccess", + "msgId": 12, + "msgString": "Failed to initialize gpio access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorValidatingDirectory", + "msgId": 13, + "msgString": "Expected a directory", + "msgPriority": "Error" + }, + { + "msgName": "FailedStat", + "msgId": 14, + "msgString": "Failed to stat: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedMkdir", + "msgId": 15, + "msgString": "Failed to mkdir: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "UpdatingDirectoryOwner", + "msgId": 16, + "msgString": "User id has changed, updating file permissions", + "msgPriority": "Info" + }, + { + "msgName": "ErrorQueryingDiskSpace", + "msgId": 17, + "msgString": "Failed to query mutable disk size", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "RequestedMoreSpaceThanMax", + "msgId": 18, + "msgString": "Application requested more space than allowed", + "msgPriority": "Error" + }, + { + "msgName": "NotEnoughSpace", + "msgId": 20, + "msgString": "Disk does not have enough remaining space to allocate storage", + "msgPriority": "Error" + }, + { + "msgName": "ErrorGettingCurrentQuota", + "msgId": 21, + "msgString": "Could not query current system quotas", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorSettingQuota", + "msgId": 22, + "msgString": "Could not set quota for user", + "msgPriority": "Error", + "params": [ + { + "paramName": "user_id", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorReleasingQuota", + "msgId": 23, + "msgString": "Could not set quota for user to zero", + "msgPriority": "Error", + "params": [ + { + "paramName": "user_id", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "OverflowDuringQuotaCalc", + "msgId": 24, + "msgString": "Overflow occurred during quota calculations", + "msgPriority": "Error" + }, + { + "msgName": "FailedToDeleteDirectoryAndItsContents", + "msgId": 25, + "msgString": "Could not delete a directory and its contents", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ReachedMaxPathnameLengthWhileRecursivelyDeletingDirectory", + "msgId": 26, + "msgString": "Reach the max pathname length while trying to recursively delete a directory its contents", + "msgPriority": "Error" + }, + { + "msgName": "FailedChmodPeripheralFiles", + "msgId": 27, + "msgString": "Failed to chmod peripheral files", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "type", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "InitializingI2cMasterPermissions", + "msgId": 28, + "msgString": "Initializing permissions for I2C-master devices", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "InitializingSpiMasterPermissions", + "msgId": 29, + "msgString": "Initializing permissions for SPI-master devices", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "InitializingPeripheralPermissions", + "msgId": 30, + "msgString": "Initializing permissions for peripheral type", + "msgPriority": "Info", + "params": [ + { + "paramName": "type", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "InitializingAdcPermissions", + "msgId": 31, + "msgString": "Initializing permissions for ADC devices", + "msgPriority": "Info", + "obsolete": true + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appman_system_events_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appman_system_events_log_manifest.json new file mode 100644 index 0000000..55bbfd8 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appman_system_events_log_manifest.json @@ -0,0 +1,223 @@ +{ + "version": "1.0", + "categoryId": 31, + "categoryName": "appman_sysevent", + "msgIds": [ + { + "msgName": "SendSystemEventNotificationFailed", + "msgId": 1, + "msgString": "Failed to send system event", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToReadSystemEventTimer", + "msgId": 2, + "msgString": "Failed to read system event timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "SystemEventFiredTooSoon", + "msgId": 3, + "msgString": "The system event timer fired too soon", + "msgPriority": "Warning", + "params": [ + { + "paramName": "next_event_time", + "paramType": "integer" + } + ] + }, + { + "msgName": "InvalidDeferralRequest", + "msgId": 4, + "msgString": "Invalid software update deferral request", + "msgPriority": "Error" + }, + { + "msgName": "DeferFailedNoMatchingSystemEvent", + "msgId": 5, + "msgString": "No matching event for deferral", + "msgPriority": "Warning", + "params": [ + { + "paramName": "event", + "paramType": "integer" + } + ] + }, + { + "msgName": "InvalidEventResumeRequest", + "msgId": 6, + "msgString": "Invalid software update resume request", + "msgPriority": "Error" + }, + { + "msgName": "ResumeFailedNoMatchingSystemEvent", + "msgId": 7, + "msgString": "No matching event for event resume", + "msgPriority": "Warning", + "params": [ + { + "paramName": "event", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCreateSystemEventTimer", + "msgId": 8, + "msgString": "Failed to create system event timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToSetSystemEventTimer", + "msgId": 9, + "msgString": "Failed to set system event timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCreateSystemNotificationSocketForApp", + "msgId": 10, + "msgString": "Failed to create system event notification socket for app", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToConnectToSystemToAppSocket", + "msgId": 11, + "msgString": "Failed to connect the system to app event socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CloudLoadFailed", + "msgId": 12, + "msgString": "Failed to install cloud loaded software", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCreateSystemEventManager", + "msgId": 13, + "msgString": "Failed to create system event manager", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UnknownUpdateEventNotificationCommand", + "msgId": 14, + "msgString": "Unknown command ID for update event notification handler", + "msgPriority": "Error", + "params": [ + { + "paramName": "commandID", + "paramType": "integer" + } + ] + }, + { + "msgName": "UpdateDeferralFailure", + "msgId": 15, + "msgString": "Unable to defer software update", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UpdateResumeFailure", + "msgId": 16, + "msgString": "Unable to resume software update", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidUpdateStateParameter", + "msgId": 17, + "msgString": "Invalid update state parameter", + "msgPriority": "Error" + }, + { + "msgName": "InvalidUpdateState", + "msgId": 18, + "msgString": "Invalid update state", + "msgPriority": "Error", + "params": [ + { + "paramName": "state", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSetUpdateState", + "msgId": 19, + "msgString": "Failed to set update state", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCreateUpdateNotificationEvent", + "msgId": 20, + "msgString": "Failed to create a system event", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appman_util_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appman_util_log_manifest.json new file mode 100644 index 0000000..8d84ab8 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appman_util_log_manifest.json @@ -0,0 +1,242 @@ +{ + "version": "1.0", + "categoryId": 19, + "categoryName": "appman_util", + "msgIds": [ + { + "msgName": "FoundUart", + "msgId": 1, + "msgString": "Requested uart found.", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "FailedStat", + "msgId": 2, + "msgString": "Failed to stat: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedChown", + "msgId": 3, + "msgString": "Failed to chown file", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "PeripheralNotAvailable", + "msgId": 4, + "msgString": "Peripheral is not currently available.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "requestingUserUid", + "paramType": "integer" + }, + { + "paramName": "currentPeripheralOwnerUid", + "paramType": "integer" + }, + { + "paramName": "peripheralType", + "paramType": "integer" + } + ] + }, + { + "msgName": "UartNotFound", + "msgId": 5, + "msgString": "Requested uart name not valid for this application.", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "ErrorOnPwnamSysCall", + "msgId": 6, + "msgString": "Error when calling getpwnam for app", + "msgPriority": "Error", + "params": [ + { + "paramName": "appName", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToGetGpioChipInfo", + "msgId": 7, + "msgString": "Failed to get gpio information for device.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToInitializeGpioAccess", + "msgId": 8, + "msgString": "Failed to initialize gpio access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorGettingGpioOwner", + "msgId": 9, + "msgString": "Could not retrieve current gpio owner.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "GpioAlreadyReserved", + "msgId": 10, + "msgString": "Gpio pin not available, currently held by another user.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToOpenGpioChipFd", + "msgId": 11, + "msgString": "Failed to open gpio chip file descriptor.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "UndefinedGpioRequestedInManifest", + "msgId": 12, + "msgString": "Application manifest requested a gpio that is not defined on this device.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToSetPeripheralEnable", + "msgId": 13, + "msgString": "Failed to set peripheral enable status", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "peripheralType", + "paramType": "integer" + }, + { + "paramName": "peripheralInstance", + "paramType": "integer" + } + ] + }, + { + "msgName": "RemovedUnsupportedAppCapability", + "msgId": 14, + "msgString": "Removed unsupported application capability.", + "msgPriority": "Warning", + "params": [ + { + "paramName": "capability", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "PeripheralNotFound", + "msgId": 15, + "msgString": "Requested peripheral name not valid for this application.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "peripheralType", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToConfigurePeripheralDriver", + "msgId": 16, + "msgString": "Failed to set peripheral driver enable status", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "integer" + }, + { + "paramName": "peripheralInstance", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "UnsupportedPeripheralType", + "msgId": 17, + "msgString": "Unsupported peripheral type.", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "FailedChmod", + "msgId": 18, + "msgString": "Failed to chmod file", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToUnexportPwm", + "msgId": 19, + "msgString": "Failed to unexport PWM device", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/appmanifest_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/appmanifest_log_manifest.json new file mode 100644 index 0000000..8d3682c --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/appmanifest_log_manifest.json @@ -0,0 +1,149 @@ +{ + "version": "1.0", + "categoryId": 8, + "categoryName": "appmanifest", + "msgIds": [ + { + "msgName": "InvalidJson", + "msgId": 1, + "msgString": "Invalid JSON in app_manifest.json", + "msgPriority": "Error" + }, + { + "msgName": "MissingMandatoryField", + "msgId": 2, + "msgString": "app_manifest.json missing mandatory field: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "fieldName", + "paramType": "string" + } + ] + }, + { + "msgName": "BadFieldValue", + "msgId": 3, + "msgString": "app_manifest.json has a bad value for field: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "fieldName", + "paramType": "string" + } + ] + }, + { + "msgName": "IncompatibleSchemaVersion", + "msgId": 4, + "msgString": "app_manifest.json has incompatible schema version", + "msgPriority": "Error", + "params": [ + { + "paramName": "versionOnDevice", + "paramType": "integer" + }, + { + "paramName": "versionInManifest", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorReadingManifest", + "msgId": 6, + "msgString": "Could not read application manifest", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AppManifestNotFound", + "msgId": 7, + "msgString": "No application manifest file found", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "DeviceAuthTenantIdTooLong", + "msgId": 8, + "msgString": "DeviceAuth tenant id is too long", + "msgPriority": "Error" + }, + { + "msgName": "DeviceAuthTenantIdParseError", + "msgId": 9, + "msgString": "DeviceAuth tenant id failed to parse.", + "msgPriority": "Error" + }, + { + "msgName": "AllowedConnectionsParseError", + "msgId": 10, + "msgString": "Parse error for AllowedConnections entry: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "value", + "paramType": "string" + } + ] + }, + { + "msgName": "AllowedTcpPortsIllegalValue", + "msgId": 11, + "msgString": "Illegal value for AllowedTcpServerPorts entry: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "value", + "paramType": "integer" + } + ] + }, + { + "msgName": "AllowedUdpPortsIllegalValue", + "msgId": 12, + "msgString": "Illegal value for AllowedUdpServerPorts entry: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "value", + "paramType": "integer" + } + ] + }, + { + "msgName": "PowerControlIllegalValue", + "msgId": 13, + "msgString": "Illegal value for PowerControl entry: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "value", + "paramType": "string" + } + ] + }, + { + "msgName": "EmptyContainerValue", + "msgId": 14, + "msgString": "The value is either not an array, or is empty: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "value", + "paramType": "string" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/async_request_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/async_request_log_manifest.json new file mode 100644 index 0000000..9fffab3 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/async_request_log_manifest.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "categoryId": 35, + "categoryName": "async_request", + "msgIds": [ + { + "msgName": "AsyncRequestInvalidContentLength", + "msgId": 1, + "msgString": "Invalid content length received", + "msgPriority": "Error" + }, + { + "msgName": "AsyncRequestNoSsl", + "msgId": 2, + "msgString": "Cannot handle SSL connection without specified certificate path.", + "msgPriority": "Error" + }, + { + "msgName": "AsyncRequestInvalidSsl", + "msgId": 3, + "msgString": "AsyncRequest wolfSSL error loading certificates from path.", + "msgPriority": "Error" + }, + { + "msgName": "CurlInternalStateUnexpected", + "msgId": 4, + "msgString": "Unexpected output from curl, illegal internal state observed.", + "msgPriority": "Error" + }, + { + "msgName": "AsyncRequestStateViolation", + "msgId": 5, + "msgString": "AsyncRequest encountered unexpected state.", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/azured_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/azured_log_manifest.json new file mode 100644 index 0000000..fe54f97 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/azured_log_manifest.json @@ -0,0 +1,1188 @@ +{ + "version": "1.0", + "categoryId": 10, + "categoryName": "azured", + "msgIds": [ + { + "msgName": "StartingAzureD", + "msgId": 1, + "msgString": "Starting AzureD", + "msgPriority": "Info", + "params": [ + { + "paramName": "uid", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "OpenImageForUpdate", + "msgId": 3, + "msgString": "open image for update", + "msgPriority": "Trace" + }, + { + "msgName": "DownloadImage", + "msgId": 4, + "msgString": "download image", + "msgPriority": "Trace", + "obsolete": true + }, + { + "msgName": "ImageDownloaded", + "msgId": 6, + "msgString": "image downloaded", + "msgPriority": "Trace" + }, + { + "msgName": "CommitImage", + "msgId": 10, + "msgString": "commit image", + "msgPriority": "Trace" + }, + { + "msgName": "UpdateFinished", + "msgId": 12, + "msgString": "update finished", + "msgPriority": "Trace", + "obsolete": true + }, + { + "msgName": "TimedOutCheckingForUpdates", + "msgId": 14, + "msgString": "timed out checking for updates", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "CheckForUpdates", + "msgId": 16, + "msgString": "check for updates", + "msgPriority": "Trace" + }, + { + "msgName": "ConnectingToServices", + "msgId": 18, + "msgString": "connecting to services", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "CheckForUpdatesResult", + "msgId": 19, + "msgString": "IoT hub acknowledged check-for-updates request", + "msgPriority": "Trace", + "obsolete": true, + "params": [ + { + "paramName": "Accepting", + "paramType": "integer" + }, + { + "paramName": "ConfirmationCode", + "paramType": "integer" + } + ] + }, + { + "msgName": "Sleep", + "msgId": 22, + "msgString": "sleep until next check", + "msgPriority": "Info", + "params": [ + { + "paramName": "IntervalInSeconds", + "paramType": "integer" + } + ] + }, + { + "msgName": "ImageUrisRequestMessageConfirmation", + "msgId": 27, + "msgString": "ImageUrisRequestMessage IoT hub confirmation", + "msgPriority": "Trace", + "obsolete": true, + "params": [ + { + "paramName": "Code", + "paramType": "integer" + } + ] + }, + { + "msgName": "SendingUpdateTelemetry", + "msgId": 29, + "msgString": "sending update telemetry", + "msgPriority": "Trace", + "obsolete": true + }, + { + "msgName": "ObtainIotHubClient", + "msgId": 32, + "msgString": "Obtaining IotHubClient handle from DPS", + "obsolete": true, + "msgPriority": "Info" + }, + { + "msgName": "IotHubUrl", + "msgId": 34, + "msgString": "DPS provided the IotHub url:", + "msgPriority": "Trace", + "obsolete": true, + "params": [ + { + "paramName": "HubUrl", + "paramType": "string" + } + ] + }, + { + "msgName": "IotHubRegistrationStatusChange", + "msgId": 35, + "msgString": "DPS device registration Status:", + "msgPriority": "Trace", + "obsolete": true, + "params": [ + { + "paramName": "RegistrationStatus", + "paramType": "string" + } + ] + }, + { + "msgName": "UpdateMonitorNotAcceptingImageManifests", + "msgId": 36, + "msgString": "The update monitor is not accepting image manifests.", + "msgPriority": "Warning" + }, + { + "msgName": "ErrorConnectingToServices", + "msgId": 1001, + "msgString": "error connecting to Services", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorRequestingPackageUri", + "msgId": 1002, + "msgString": "error requesting package uri", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorUpdatingImage", + "msgId": 1003, + "msgString": "error updating image", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorInitializingUpdateMonitor", + "msgId": 1004, + "msgString": "error initializing update monitor", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorSettingDownloader", + "msgId": 1005, + "msgString": "error setting downloader", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorOpeningImageForUpdate", + "msgId": 1006, + "msgString": "error opening image for update", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorWritingImagePage", + "msgId": 1007, + "msgString": "error writing image page", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorDownloadingImage", + "msgId": 1008, + "msgString": "error downloading image", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorCommittingImage", + "msgId": 1013, + "msgString": "error committing image", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorDecodingHubObj", + "msgId": 1016, + "msgString": "error decoding hub object", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "Type", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "StagingUpdateManifest", + "msgId": 1018, + "msgString": "Staging update manifest", + "msgPriority": "Trace" + }, + { + "msgName": "InconsistentMissingImagesCount", + "msgId": 1019, + "msgString": "Inconsistent missing images count from secure world", + "msgPriority": "Error", + "params": [ + { + "paramName": "FirstCount", + "paramType": "unsignedInteger" + }, + { + "paramName": "SecondCount", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "DispatchingMessageFromIoTHub", + "msgId": 1020, + "msgString": "Dispatching message from iot hub", + "msgPriority": "Trace", + "obsolete": true, + "params": [ + { + "paramName": "Size", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ReceivedUnknownIoTHubMessage", + "msgId": 1021, + "msgString": "Received unknown IoT hub message", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "Type", + "paramType": "string" + } + ] + }, + { + "msgName": "AttemptingToInstallStagedUpdates", + "msgId": 1022, + "msgString": "Attempting to install staged updates", + "msgPriority": "Trace" + }, + { + "msgName": "ErrorInstallingUpdates", + "msgId": 1023, + "msgString": "Error installing updates", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToGetCountOfMissingImages", + "msgId": 1024, + "msgString": "Failed to get count of missing images", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToGetMissingImages", + "msgId": 1025, + "msgString": "Failed to get missing images", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorSendingTelemetry", + "msgId": 1026, + "msgString": "Error sending telemetry", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "UpdateTelemetryConfirmationReceived", + "msgId": 1027, + "msgString": "Update telemetry confirmation received", + "msgPriority": "Trace", + "params": [ + { + "paramName": "ConfirmationCode", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "PrepareToDownload", + "msgId": 1029, + "msgString": "preparing to download", + "msgPriority": "Trace", + "params": [ + { + "paramName": "packageUri", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "ProvClientRegistrationTimeoutError", + "msgId": 1031, + "msgString": "Prov_Device_LL_Register_Device did not complete registration within timeout.", + "obsolete": true, + "msgPriority": "Error" + }, + { + "msgName": "RequestingPackageUri", + "msgId": 1033, + "msgString": "requesting package uri", + "msgPriority": "Trace", + "params": [ + { + "paramName": "ImageId", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "DeprecatedUpdateMonitorStateTransition", + "msgId": 1034, + "msgString": "UpdateMonitor state transition (Deprecated)", + "msgPriority": "Trace", + "params": [ + { + "paramName": "NewState", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ReceivedUpdateManifestError", + "msgId": 1035, + "msgString": "Received update manifest with error status code", + "msgPriority": "Error", + "params": [ + { + "paramName": "Size", + "paramType": "unsignedInteger" + }, + { + "paramName": "Status", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReceivedUpdateManifest", + "msgId": 1036, + "msgString": "Received update manifest set", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Size", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "PackageUriResult", + "msgId": 1037, + "msgString": "result of package uri request", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Accepting", + "paramType": "integer" + }, + { + "paramName": "ConfirmationCode", + "paramType": "integer" + }, + { + "paramName": "Status", + "paramType": "integer" + }, + { + "paramName": "ImageId", + "paramType": "uniqueId" + }, + { + "paramName": "PackageUri", + "paramType": "string" + } + ] + }, + { + "msgName": "UpdateMonitorStateTransition", + "msgId": 1038, + "msgString": "UpdateMonitor state change", + "msgPriority": "Info", + "params": [ + { + "paramName": "Major", + "paramType": "integer" + }, + { + "paramName": "Minor", + "paramType": "integer" + } + ] + }, + { + "msgName": "UpdateMonitorRetryDelayLongerThanUpdateTimeout", + "msgId": 1040, + "msgString": "The UpdateMonitor retry delay value is larger than the overall update timeout value.", + "msgPriority": "Warning", + "obsolete": true + }, + { + "msgName": "UpdateMonitorDestroyingProvHandler", + "msgId": 1042, + "msgString": "Destroying provisioning client handle.", + "obsolete": true, + "msgPriority": "Info" + }, + { + "msgName": "UpdateMonitorDestroyingIoTHubClientHandler", + "msgId": 1043, + "msgString": "Destroying IoT Hub client handle.", + "obsolete": true, + "msgPriority": "Info" + }, + { + "msgName": "UpdateMonitorImageUriBadMessageConfirmation", + "msgId": 1044, + "msgString": "Bad Image URI message confirmation.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "UpdateMonitorImageUriErrorResponse", + "msgId": 1045, + "msgString": "Invalid Image URI response.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Status", + "paramType": "integer" + } + ] + }, + { + "msgName": "UpdateMonitorMissingImageToDownloadFailed", + "msgId": 1047, + "msgString": "Failed to get missing images to download", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "DeviceProvisioningInitFailed", + "msgId": 1048, + "msgString": "Device provisioning init failed.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "UpdateMonitorNetworkDown", + "msgId": 1049, + "msgString": "The network status indicates the network is down.", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "ProvServicesFailedToCreateIoTHubClientFromDeviceAuth", + "msgId": 1050, + "msgString": "Failed to create IoT handle from device authentication handle.", + "obsolete": true, + "msgPriority": "Error" + }, + { + "msgName": "UnknownImageUriResponse", + "msgId": 1051, + "msgString": "Received unknown ImageUri.", + "msgPriority": "Warning", + "params": [ + { + "paramName": "ImageId", + "paramType": "uniqueId" + }, + { + "paramName": "ImageUri", + "paramType": "string" + } + ] + }, + { + "msgName": "ImageDownloaderFailedToSetCurlOption", + "msgId": 1052, + "msgString": "ImageDownloader: Failed to set CURL option.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Option", + "paramType": "integer" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ImageDownloaderCurlRetry", + "msgId": 1053, + "msgString": "ImageDownloader: Retry on error.", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ImageDownloaderCurlEasyPerformError", + "msgId": 1054, + "msgString": "ImageDownloader: curl_easy_perform failed.", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Result", + "paramType": "integer" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ImageDownloaderContentLengthAlreadyReceived", + "msgId": 1055, + "msgString": "Content-Length already received.", + "msgPriority": "Warning", + "obsolete": true + }, + { + "msgName": "ImageDownloaderContentLengthExceedsLimit", + "msgId": 1056, + "msgString": "Content-Length exceeds limit.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Length", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ImageDownloaderOverflowOfReceivedData", + "msgId": 1057, + "msgString": "Unexpected! Overflow of the received data size.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ImageDownloaderDataIsLargerThanContentLength", + "msgId": 1058, + "msgString": "Invalid! Actual data is larger than Content-Length!", + "msgPriority": "Error", + "params": [ + { + "paramName": "ContentLength", + "paramType": "integer" + }, + { + "paramName": "RequestedOffset", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ImageDownloaderNoCertificatePath", + "msgId": 1059, + "msgString": "ImageDownloader got SSL, but no cert path specified.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ImageDownloaderWolfSslLoadingError", + "msgId": 1060, + "msgString": "ImageDownloader loading error!", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ImageDownloaderWolfSslError", + "msgId": 1061, + "msgString": "Error string.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "HubServicesClientUnexpectedContentType", + "msgId": 1062, + "msgString": "HubServicesClient: unexpected content type.", + "msgPriority": "Error", + "obsolete": true, + "params": [ + { + "paramName": "ContentType", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReceivedExpiredIotHubMessageResponse", + "msgId": 1063, + "msgString": "Received an expired IoT Hub message response.", + "obsolete": true, + "msgPriority": "Info", + "params": [ + { + "paramName": "ContextId", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorGeneratingSystemSoftwareReport", + "msgId": 1064, + "msgString": "Error generating system software report", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorSendingSystemSoftwareReport", + "msgId": 1065, + "msgString": "Error sending system software report", + "msgPriority": "Error", + "params": [ + { + "paramName": "HttpStatus", + "paramType": "integer" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "SendingImageManifestRequestMessage", + "msgId": 1066, + "msgString": "Sending ImageManifestRequestMessage ", + "msgPriority": "Trace", + "params": [ + { + "paramName": "ContextId", + "paramType": "integer" + } + ] + }, + { + "msgName": "SendingImageUrisRequestMessage", + "msgId": 1067, + "msgString": "Sending ImageUrisRequestMessage", + "msgPriority": "Trace", + "params": [ + { + "paramName": "ContextId", + "paramType": "integer" + } + ] + }, + { + "msgName": "TooManyImagesToSend", + "msgId": 1068, + "msgString": "Too many images installed to send to cloud", + "msgPriority": "Error", + "params": [ + { + "paramName": "count", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorGettingInstalledImages", + "msgId": 1069, + "msgString": "Error getting installed images", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "StagingBaseManifest", + "msgId": 1070, + "msgString": "Staging trusted keys & certs manifest", + "msgPriority": "Trace" + }, + { + "msgName": "UpdateMonitorMissingBaseImageToDownloadFailed", + "msgId": 1074, + "msgString": "Failed to get missing trusted keys and certs images to download", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToStageBaseManifest", + "msgId": 1075, + "msgString": "Failed to stage manifest for trusted keys and certs update", + "msgPriority": "Error", + "params": [ + { + "paramName": "ImageUpdateReturnCode", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToIdentifyHardwareSoCType", + "msgId": 1076, + "msgString": "Failed to identify the hardware SoC type.", + "msgPriority": "Error", + "params": [ + { + "paramName": "ReturnCode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToDownloadTrustedKeysAndCertsManifest", + "msgId": 1077, + "msgString": "Failed to download trusted keys and certificates manifest.", + "msgPriority": "Error", + "params": [ + { + "paramName": "DownloadReturnCode", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToDownloadAndStageImage", + "msgId": 1078, + "msgString": "Failed to download service request", + "msgPriority": "Error", + "params": [ + { + "paramName": "DownloadAndStageReturnCode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToWaitForNetwork", + "msgId": 1079, + "msgString": "An error occurred while waiting to connect to a network", + "msgPriority": "Error", + "params": [ + { + "paramName": "WaitForNetworkReturnCode", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "SoftwareRollback", + "msgId": 1080, + "msgString": "A software rollback was detected, skipping update", + "msgPriority": "Warning" + }, + { + "msgName": "ErrorRequestingImageManifest", + "msgId": 1081, + "msgString": "Error requesting image manifest", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorInvalidUriTemplateData", + "msgId": 1082, + "msgString": "Invalid URI template data in image URI response", + "msgPriority": "Error" + }, + { + "msgName": "ErrorDecodingUpdateServicesMessage", + "msgId": 1083, + "msgString": "Error decoding update services message protobuf", + "msgPriority": "Error", + "params": [ + { + "paramName": "Type", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ReceivedExpiredUpdateServicesMessageResponse", + "msgId": 1084, + "msgString": "Received an expired update services message response.", + "msgPriority": "Error", + "params": [ + { + "paramName": "ContextId", + "paramType": "integer" + } + ] + }, + { + "msgName": "UpdateMessageBadHttpResponseCode", + "msgId": 1085, + "msgString": "Update services replied with non-OK response code.", + "msgPriority": "Error", + "params": [ + { + "paramName": "statusCode", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "AttemptedToLogErrorInInvalidState", + "msgId": 1086, + "msgString": "Attempted to log error to telemetry in invalid state.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Major", + "paramType": "integer" + }, + { + "paramName": "Minor", + "paramType": "integer" + } + ] + }, + { + "msgName": "UploadTelemetry", + "msgId": 1087, + "msgString": "upload telemetry", + "msgPriority": "Trace" + }, + { + "msgName": "ErrorUploadingTelemetry", + "msgId": 1088, + "msgString": "Error uploading telemetry", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ForcingRebootForUpdate", + "msgId": 1089, + "msgString": "Forcing a device reboot to force an install on a stalled update", + "msgPriority": "Error" + }, + { + "msgName": "ForcingRebootForUpdateFailed", + "msgId": 1090, + "msgString": "Forcing a device reboot for update failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "InvalidStateTransition", + "msgId": 1091, + "msgString": "Unexpected state transition", + "msgPriority": "Error", + "params": [ + { + "paramName": "PreviousState", + "paramType": "integer" + }, + { + "paramName": "CurrentState", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedCdnRequest", + "msgId": 1092, + "msgString": "Failed update service request", + "msgPriority": "Error", + "params": [ + { + "paramName": "Url", + "paramType": "string" + }, + { + "paramName": "IpAddress", + "paramType": "string" + }, + { + "paramName": "x_cid", + "paramType": "integer" + }, + { + "paramName": "x_ccc", + "paramType": "string" + }, + { + "paramName": "error_code", + "paramType": "integer" + } + ] + }, + { + "msgName": "ImageDownloaderInvalidContentLength", + "msgId": 1093, + "msgString": "Invalid HTTP content length", + "msgPriority": "Error", + "params": [ + { + "paramName": "Content_Length", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "FailedCrashdumpOptIn", + "msgId": 1094, + "msgString": "SetCrashdumpOptIn() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorApplyingProxySettings", + "msgId": 1095, + "msgString": "Error applying proxy settings", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "RebootingForAppInstall", + "msgId": 1096, + "msgString": "Rebooting for app installation", + "msgPriority": "Info" + }, + { + "msgName": "RebootingForAppInstallFailed", + "msgId": 1097, + "msgString": "Failed to reboot for app installation", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CurrentNetworkStatus", + "msgId": 1098, + "msgString": "Current network status is: ", + "msgPriority": "Trace", + "params": [ + { + "paramName": "status", + "paramType": "string" + } + ] + }, + { + "msgName": "CrashdumpOptInStatus", + "msgId": 1099, + "msgString": "Crashdump: ", + "msgPriority": "Info", + "params": [ + { + "paramName": "opt_in", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToStageManifest", + "msgId": 1100, + "msgString": "Failed to stage manifest", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UnexpectedStateExecution", + "msgId": 1101, + "msgString": "Unexpected state execution", + "msgPriority": "Info", + "params": [ + { + "paramName": "UpdateMonitorState", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/certstorage_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/certstorage_log_manifest.json new file mode 100644 index 0000000..054ac47 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/certstorage_log_manifest.json @@ -0,0 +1,107 @@ +{ + "version": "1.0", + "categoryId": 30, + "categoryName": "certstorage", + "msgIds": [ + { + "msgName": "PemCertificateValidationError", + "msgId": 1, + "msgString": "Data is not valid PEM certificate.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WolfSSLCertParseError", + "msgId": 2, + "msgString": "Failed to parse certificate with wolfSSL/wolfcrypt.", + "msgPriority": "Error", + "params": [ + { + "paramName": "WolfSSLError", + "paramType": "integer" + } + ] + }, + { + "msgName": "WolfSSLCertPemToDerError", + "msgId": 3, + "msgString": "Failed to convert certificate from PEM to DER format with wolfSSL.", + "msgPriority": "Error", + "params": [ + { + "paramName": "WolfSSLError", + "paramType": "integer" + } + ] + }, + { + "msgName": "WolfSSLKeyPemToDerError", + "msgId": 4, + "msgString": "Failed to convert key from PEM to DER format with wolfSSL.", + "msgPriority": "Error", + "params": [ + { + "paramName": "WolfSSLError", + "paramType": "integer" + } + ] + }, + { + "msgName": "WolfSSLCertKeyMatchError", + "msgId": 5, + "msgString": "Failed to check that the private key is a match with the certificate with wolfSSL.", + "msgPriority": "Error", + "params": [ + { + "paramName": "WolfSSLError", + "paramType": "integer" + }, + { + "paramName": "CommonError", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidCertificateParameters", + "msgId": 6, + "msgString": "One or more certificate parameters are invalid.", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommonError", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WolfSSLClientMethodError", + "msgId": 7, + "msgString": "Failed to initialize a wolfSSL method structure.", + "msgPriority": "Error" + }, + { + "msgName": "WolfSSLNewContextError", + "msgId": 8, + "msgString": "Failed to initialize a wolfSSL context.", + "msgPriority": "Error" + }, + { + "msgName": "InstallCertificateError", + "msgId": 9, + "msgString": "Failed to install certificate.", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommonError", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/deviceauth_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/deviceauth_log_manifest.json new file mode 100644 index 0000000..d9a60b8 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/deviceauth_log_manifest.json @@ -0,0 +1,220 @@ +{ + "version": "1.0", + "categoryId": 12, + "categoryName": "deviceauth", + "msgIds": [ + { + "msgName": "MakeAttestationRequestError", + "msgId": 1, + "msgString": "Error occurred while attempting to send request to attestation runtime.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "MakeAttestationRuntimeError", + "msgId": 2, + "msgString": "Error occurred in attestation runtime while processing attestation.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "StoreCertificateError", + "msgId": 3, + "msgString": "Error while attempting to store certificate on filesystem.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "commonError" + }, + { + "paramName": "c_path", + "paramType": "string" + } + ] + }, + { + "msgName": "GetDeviceIdError", + "msgId": 4, + "msgString": "Error while attempting to get device id.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ServicesRequestContentLengthError", + "msgId": 5, + "msgString": "Invalid content length received from services request.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ServicesRequestNoSslError", + "msgId": 6, + "msgString": "Cannot handle SSL connection without specified certificate path.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ServicesRequestInvalidSslError", + "msgId": 7, + "msgString": "ServicesRequest wolfSSL error loading certificates from path.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ServicesRespondedWithError", + "msgId": 8, + "msgString": "ServicesRequest returned device attestation error.", + "msgPriority": "Error", + "params": [ + { + "paramName": "DeviceAttestationErrorCode", + "paramType": "integer" + } + ] + }, + { + "msgName": "ServicesResponseInvalidError", + "msgId": 9, + "msgString": "ServicesRequest returned bad data.", + "msgPriority": "Error" + }, + { + "msgName": "GenerateClientAuthKeyRequestError", + "msgId": 10, + "msgString": "Key pair generation failed for DAA.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "commonError" + } + ] + }, + { + "msgName": "Pkcs7DecodeError", + "msgId": 11, + "msgString": "Unable to decode pkcs7 to PEM with wolfSSL.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CurlInternalStateError", + "msgId": 12, + "msgString": "Unexpected output from curl, illegal internal state observed.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "ServicesRequestStateViolation", + "msgId": 13, + "msgString": "ServicesRequest encountered unexpected state.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "DeviceAuthStateViolation", + "msgId": 14, + "msgString": "DeviceAuth encountered unexpected state.", + "msgPriority": "Error" + }, + { + "msgName": "LongRetryAfterTime", + "msgId": 15, + "msgString": "DeviceAuth encountered an unexpectedly long retry-after time and capped it.", + "msgPriority": "Warning" + }, + { + "msgName": "CertificateRequestDeviceIdTrace", + "msgId": 16, + "msgString": "Deviceauth using device_id for certificate request.", + "msgPriority": "Trace", + "params": [ + { + "paramName": "device_id", + "paramType": "string" + } + ] + }, + { + "msgName": "ServicesRequestError", + "msgId": 17, + "msgString": "Services request encountered error.", + "msgPriority": "Error", + "params": [ + { + "paramName": "common_error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ServicesHttpErrorCode", + "msgId": 18, + "msgString": "Services responded with http error code.", + "msgPriority": "Error", + "params": [ + { + "paramName": "http_code", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "DerDecodeError", + "msgId": 19, + "msgString": "Unable to decode a DER certificate to WOLFSSL_X509.", + "msgPriority": "Error" + }, + { + "msgName": "TrustedMeasurementsDecodeError", + "msgId": 20, + "msgString": "Unable to decode a TrustedMeasurements extension from a tenant certificate.", + "msgPriority": "Error" + }, + { + "msgName": "PersistClientAuthKeyRequestError", + "msgId": 21, + "msgString": "Persisting client auth key seed for caching failed.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CachedCertificateRestorationError", + "msgId": 22, + "msgString": "An error was encountered while restoring certificates from cache.", + "msgPriority": "Error", + "params": [ + { + "paramName": "state", + "paramType": "integer" + }, + { + "paramName": "common_error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/firewall_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/firewall_log_manifest.json new file mode 100644 index 0000000..980e652 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/firewall_log_manifest.json @@ -0,0 +1,200 @@ +{ + "version": "1.0", + "categoryId": 13, + "categoryName": "firewall", + "msgIds": [ + { + "msgName": "ErrorCreatingSocket", + "msgId": 1, + "msgString": "Error creating socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorRunningNetfilterGetOperation", + "msgId": 2, + "msgString": "Error during netfilter get op", + "msgPriority": "Error", + "params": [ + { + "paramName": "op", + "paramType": "unsignedInteger" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorAllocatingMemoryForEntries", + "msgId": 3, + "msgString": "Could not allocate memory for entries", + "msgPriority": "Error" + }, + { + "msgName": "RulesetDetails", + "msgId": 4, + "msgString": "Ruleset Details", + "msgPriority": "Trace", + "params": [ + { + "paramName": "hook", + "paramType": "string" + }, + { + "paramName": "is valid", + "paramType": "integer" + } + ] + }, + { + "msgName": "InvalidHook", + "msgId": 5, + "msgString": "Rule has invalid hook, skipping", + "msgPriority": "Warning" + }, + { + "msgName": "InterfaceNotSupported", + "msgId": 6, + "msgString": "Rule has interface which is not supported", + "msgPriority": "Warning", + "obsolete": true + }, + { + "msgName": "FlagsNotSupported", + "msgId": 7, + "msgString": "Rule has flags which are not supported", + "msgPriority": "Warning" + }, + { + "msgName": "MatchNotSupported", + "msgId": 8, + "msgString": "Rule has match type which is not supported", + "msgPriority": "Warning" + }, + { + "msgName": "OwnerNotSupported", + "msgId": 9, + "msgString": "Rule has owner data which is not supported", + "msgPriority": "Warning" + }, + { + "msgName": "TargetNotSupported", + "msgId": 10, + "msgString": "Rule has target data which is not supported", + "msgPriority": "Warning" + }, + { + "msgName": "VerdictNotSupported", + "msgId": 11, + "msgString": "Rule has verdict data which is not supported", + "msgPriority": "Warning" + }, + { + "msgName": "ErrorRunningNetfilterSetOperation", + "msgId": 12, + "msgString": "Error during netfilter set op", + "msgPriority": "Error", + "params": [ + { + "paramName": "op", + "paramType": "unsignedInteger" + }, + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "DumpRuleWithInterface", + "msgId": 13, + "msgString": "Rule Details", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Source IP", + "paramType": "ipAddress" + }, + { + "paramName": "Source Mask", + "paramType": "ipAddress" + }, + { + "paramName": "Dest IP", + "paramType": "ipAddress" + }, + { + "paramName": "Dest Mask", + "paramType": "ipAddress" + }, + { + "paramName": "UID", + "paramType": "unsignedInteger" + }, + { + "paramName": "Action", + "paramType": "integer" + }, + { + "paramName": "InterfaceIn", + "paramType": "string" + }, + { + "paramName": "InterfaceOut", + "paramType": "string" + }, + { + "paramName": "State", + "paramType": "integer" + }, + { + "paramName": "TcpMask", + "paramType": "integer" + }, + { + "paramName": "TcpCmp", + "paramType": "integer" + }, + { + "paramName": "TcpInv", + "paramType": "integer" + }, + { + "paramName": "Proto", + "paramType": "integer" + }, + { + "paramName": "SrcPortMin", + "paramType": "integer" + }, + { + "paramName": "SrcPortMax", + "paramType": "integer" + }, + { + "paramName": "DestPortMin", + "paramType": "integer" + }, + { + "paramName": "DestPortMax", + "paramType": "integer" + }, + { + "paramName": "Pkts", + "paramType": "unsignedInteger" + }, + { + "paramName": "Bytes", + "paramType": "unsignedInteger" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/firewall_rules_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/firewall_rules_log_manifest.json new file mode 100644 index 0000000..a773f65 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/firewall_rules_log_manifest.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "categoryId": 26, + "categoryName": "firewall_rules", + "msgIds": [ + { + "msgName": "FirewallConfigParseError", + "msgId": 1, + "msgString": "Failed to parse the firewall configuration file", + "msgPriority": "Error" + }, + { + "msgName": "FirewallParseUnrecognizedTag", + "msgId": 2, + "msgString": "Unrecognized tag in firewall rules files", + "msgPriority": "Error" + }, + { + "msgName": "UnknownUid", + "msgId": 3, + "msgString": "Unrecognized uid in firewall rules file", + "msgPriority": "Error" + }, + { + "msgName": "FirewallRulesHasBadData", + "msgId": 4, + "msgString": "Firewall rules file specifies an inconsistent length", + "msgPriority": "Error" + }, + { + "msgName": "DnsNameTooLong", + "msgId": 5, + "msgString": "Firewall rules file contains a DNS path that is longer than allowed", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/gatewayd_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/gatewayd_log_manifest.json new file mode 100644 index 0000000..a642246 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/gatewayd_log_manifest.json @@ -0,0 +1,520 @@ +{ + "version": "1.0", + "categoryId": 6, + "categoryName": "gatewayd", + "msgIds": [ + { + "msgName": "StartingSideload", + "msgId": 1, + "msgString": "Starting component sideload", + "msgPriority": "Info" + }, + { + "msgName": "BadImageManager", + "msgId": 6, + "msgString": "Unknown error creating image manager", + "msgPriority": "Error" + }, + { + "msgName": "SuccessfulSideloadNoop", + "msgId": 11, + "msgString": "Image sideload skipped because exact image already exists", + "msgPriority": "Info" + }, + { + "msgName": "CommonError", + "msgId": 16, + "msgString": "CommonError", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ReceivedBytes", + "msgId": 17, + "msgString": "ReceivedBytes", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Offset", + "paramType": "unsignedInteger" + }, + { + "paramName": "Increment", + "paramType": "unsignedInteger" + }, + { + "paramName": "MaxSize", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "CommittingImage", + "msgId": 18, + "msgString": "Committing Image", + "msgPriority": "Info" + }, + { + "msgName": "GetComponentCountFailed", + "msgId": 20, + "msgString": "Calling GetComponentCount failed", + "msgPriority": "Error" + }, + { + "msgName": "GetComponentSummaryFailed", + "msgId": 21, + "msgString": "Calling GetComponentSummary failed", + "msgPriority": "Error" + }, + { + "msgName": "GetComponentImagesFailed", + "msgId": 22, + "msgString": "Calling GetComponentImages failed", + "msgPriority": "Error" + }, + { + "msgName": "GetComponentImagesReturnedMismatchedData", + "msgId": 23, + "msgString": "GetComponentImages returned inconsistent data", + "msgPriority": "Error" + }, + { + "msgName": "CannotRestart", + "msgId": 25, + "msgString": "Cannot restart the system", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "DeleteApp", + "msgId": 32, + "msgString": "Deleting application", + "msgPriority": "Info", + "params": [ + { + "paramName": "Component ID", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "CouldNotEnableTLSForSocket", + "msgId": 134, + "msgString": "Error enabling TLS for socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotProcessRequest", + "msgId": 135, + "msgString": "Error processing request", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotParseIpv4AddressAndPortNumber", + "msgId": 136, + "msgString": "could not parse ipv4 address and port number", + "msgPriority": "Error" + }, + { + "msgName": "CouldNotStartThreadPool", + "msgId": 137, + "msgString": "Error starting thread pool", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotFindCertificateFiles", + "msgId": 138, + "msgString": "Error locating gatewayd certificate files", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorInitializingSSL", + "msgId": 139, + "msgString": "Error initializing SSL", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorGettingInternetAddrOfAzspheresvc", + "msgId": 140, + "msgString": "Error searching the 'azspheresvc' interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorBindingServerSocket", + "msgId": 141, + "msgString": "Binding server socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorListeningToServerSocket", + "msgId": 142, + "msgString": "Error listening to server socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorAcceptingSocketConnection", + "msgId": 143, + "msgString": "Error accepting connection", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorQueuingToThreadPool", + "msgId": 144, + "msgString": "Error queuing to thread pool", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "IncomingConnection", + "msgId": 145, + "msgString": "---------", + "msgPriority": "Trace" + }, + { + "msgName": "ErrorCallingSysInfo", + "msgId": 146, + "msgString": "Error calling sysinfo", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "StageImageSuccess", + "msgId": 148, + "msgString": "Successfully staged an image for update", + "msgPriority": "Info", + "params": [ + { + "paramName": "Component ID", + "paramType": "uniqueId" + }, + { + "paramName": "Image ID", + "paramType": "uniqueId" + }, + { + "paramName": "Image Type", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorGettingCountOfABITypes", + "msgId": 149, + "msgString": "Error getting count of ABI types", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorGettingABIVersions", + "msgId": 150, + "msgString": "Error getting ABI identities", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidABITypeFound", + "msgId": 151, + "msgString": "The type of the current ABI identity is invalid", + "msgPriority": "Error", + "params": [ + { + "paramName": "abi_type", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "UnknownABITypeFound", + "msgId": 152, + "msgString": "The type of the current ABI identity is invalid", + "msgPriority": "Trace", + "params": [ + { + "paramName": "abi_type", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "Request", + "msgId": 153, + "msgString": "Request", + "msgPriority": "Trace", + "params": [ + { + "paramName": "method", + "paramType": "integer" + }, + { + "paramName": "requestPath", + "paramType": "string" + } + ] + }, + { + "msgName": "DeleteAppFailed", + "msgId": 154, + "msgString": "Error deleting application", + "msgPriority": "Error", + "params": [ + { + "paramName": "Component ID", + "paramType": "uniqueId" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NetworkingSocketUnavailable", + "msgId": 155, + "msgString": "Networking not ready, retrying...", + "msgPriority": "Warning" + }, + { + "msgName": "SuccessfulDelete", + "msgId": 156, + "msgString": "Image successfully deleted", + "msgPriority": "Info", + "params": [ + { + "paramName": "Component ID", + "paramType": "uniqueId" + } + ] + }, + { + "msgName": "HeapCorruptionDetected", + "msgId": 157, + "msgString": "Heap Corruption Detected", + "msgPriority": "Error" + }, + { + "msgName": "InvalidJsonField", + "msgId": 158, + "msgString": "JSON field is invalid", + "msgPriority": "Trace", + "params": [ + { + "paramName": "json", + "paramType": "string" + } + ] + }, + { + "msgName": "ErrorSettingNetworkAttribute", + "msgId": 159, + "msgString": "Could not set network attribute", + "msgPriority": "Trace", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "attribute", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ErrorPersistingConfig", + "msgId": 160, + "msgString": "Could not persist network configuration", + "msgPriority": "Trace", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorReloadingConfig", + "msgId": 161, + "msgString": "Could not reload network configuration", + "msgPriority": "Trace", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorInstallingBase64Certificate", + "msgId": 162, + "msgString": "Could not add certificate to cert store", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorGettingCertificateInfo", + "msgId": 163, + "msgString": "Could not get certificate info from cert store", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorInstallingCertificate", + "msgId": 164, + "msgString": "Could not add certificate(s) to cert store", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorRetrievingNetworkInterfaceAttribute", + "msgId": 165, + "msgString": "Could not retrieve network interface attribute", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "attribute", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorSettingSocketBufferSize", + "msgId": 166, + "msgString": "Could not set socket buffer size", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DidNotReadUpToFullSize", + "msgId": 167, + "msgString": "Chunk size is zero even though more to write", + "msgPriority": "Trace", + "params": [ + { + "paramName": "remainingBytes", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorSettingPowerSavingsAttribute", + "msgId": 168, + "msgString": "Could not set power savings attribute", + "msgPriority": "Trace", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/httpd_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/httpd_log_manifest.json new file mode 100644 index 0000000..cdb66a9 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/httpd_log_manifest.json @@ -0,0 +1,31 @@ +{ + "version": "1.0", + "categoryId": 29, + "categoryName": "httpd", + "msgIds": [ + { + "msgName": "FailedToFetchHttpHeader", + "msgId": 1, + "msgString": "Failed to fetch HTTP header", + "msgPriority": "Debug", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCompleteResponse", + "msgId": 2, + "msgString": "Failed to complete HTTP response", + "msgPriority": "Debug", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/i2c_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/i2c_log_manifest.json new file mode 100644 index 0000000..6fa8c4d --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/i2c_log_manifest.json @@ -0,0 +1,23 @@ +{ + "version": "1.0", + "categoryId": 25, + "categoryName": "i2c", + "msgIds": [ + { + "msgName": "OpenFailure", + "msgId": 1, + "msgString": "Failed opening I2C device", + "msgPriority": "Error", + "params": [ + { + "paramName": "interfaceId", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/ipc_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/ipc_log_manifest.json new file mode 100644 index 0000000..3e5849d --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/ipc_log_manifest.json @@ -0,0 +1,141 @@ +{ + "version": "1.0", + "categoryId": 15, + "categoryName": "ipc", + "msgIds": [ + { + "msgName": "SocketFailed", + "msgId": 1, + "msgString": "socket() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "BindFailed", + "msgId": 2, + "msgString": "bind() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "ListenFailed", + "msgId": 3, + "msgString": "listen() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "GetUidFailed", + "msgId": 4, + "msgString": "Error getting UID", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "WriteFailed", + "msgId": 5, + "msgString": "write() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadFailed", + "msgId": 6, + "msgString": "read() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "GetGroupsFailed", + "msgId": 7, + "msgString": "Error getting groups", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + }, + { + "msgName": "ReadError", + "msgId": 8, + "msgString": "read() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "count", + "paramType": "integer" + }, + { + "paramName": "err", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WriteError", + "msgId": 9, + "msgString": "write() failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "count", + "paramType": "integer" + }, + { + "paramName": "err", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ClientClosedError", + "msgId": 10, + "msgString": "Client closed during request execution", + "msgPriority": "Error" + }, + { + "msgName": "SocketPathOversized", + "msgId": 11, + "msgString": "bind() failed, socket path truncated", + "msgPriority": "Error", + "params": [ + { + "paramName": "err", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/libwifi_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/libwifi_log_manifest.json new file mode 100644 index 0000000..6f6fa5e --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/libwifi_log_manifest.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "categoryId": 34, + "categoryName": "libwifi", + "msgIds": [ + { + "msgName": "InvalidResponseError", + "msgId": 1, + "msgString": "Received an invalid broker response", + "msgPriority": "Error" + }, + { + "msgName": "UnknownIpcError", + "msgId": 2, + "msgString": "Unknown IPC error", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UnknownNetworkAttribute", + "msgId": 3, + "msgString": "Unknown network attribute", + "msgPriority": "Error", + "params": [ + { + "paramName": "NetworkAttribute", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "IpcClientCallUnexpectedError", + "msgId": 4, + "msgString": "IPC client call failed with unexpected error", + "msgPriority": "Error", + "params": [ + { + "paramName": "Function", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorWithinResponse", + "msgId": 5, + "msgString": "Networkd's response contains error", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WifiNotSupported", + "msgId": 6, + "msgString": "The WiFi interface is not supported", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/netconfig_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/netconfig_log_manifest.json new file mode 100644 index 0000000..8dc7042 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/netconfig_log_manifest.json @@ -0,0 +1,247 @@ +{ + "version": "1.0", + "categoryId": 22, + "categoryName": "netconfig", + "msgIds": [ + { + "msgName": "NetworkInterfaceListMissingError", + "msgId": 1, + "msgString": "Missing network interfaces list", + "msgPriority": "Error" + }, + { + "msgName": "FailedToParseNetworkInterfaceError", + "msgId": 2, + "msgString": "Failed to parse an interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + }, + { + "paramName": "fieldType", + "paramType": "unsignedInteger" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToCreateNetConfigJson", + "msgId": 3, + "msgString": "Failed to create the netconfig json object", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "IpcConnectionFailed", + "msgId": 4, + "msgString": "Failed to connect through IPC. Try again", + "msgPriority": "Info", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidNetworkInterfaceFile", + "msgId": 5, + "msgString": "Network interface file is null or invalid.", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "JsonParseError", + "msgId": 6, + "msgString": "Network interface file is inaccessible or is ill-formed JSON.", + "msgPriority": "Info", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + }, + { + "paramName": "isPrimary", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "RequestDoesNotMatchResponse", + "msgId": 7, + "msgString": "Net config IPC request type does not match the response type.", + "msgPriority": "Error", + "params": [ + { + "paramName": "requestType", + "paramType": "integer" + }, + { + "paramName": "responseType", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSaveNetConfig", + "msgId": 8, + "msgString": "Failed to save net config.", + "msgPriority": "Error", + "params": [ + { + "paramName": "key", + "paramType": "integer" + }, + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToReadNetConfigField", + "msgId": 9, + "msgString": "Failed to read net config field.", + "msgPriority": "Error", + "params": [ + { + "paramName": "key", + "paramType": "integer" + } + ] + }, + { + "msgName": "InvalidIpAddress", + "msgId": 10, + "msgString": "Invalid IpAddress", + "msgPriority": "Error", + "params": [ + { + "paramName": "address", + "paramType": "string" + } + ] + }, + { + "msgName": "InvalidGatewayAddress", + "msgId": 11, + "msgString": "Invalid gateway address", + "msgPriority": "Error", + "params": [ + { + "paramName": "gateway", + "paramType": "string" + } + ] + }, + { + "msgName": "InvalidSubnetMask", + "msgId": 12, + "msgString": "Invalid subnet mask", + "msgPriority": "Error", + "params": [ + { + "paramName": "subnet_mask", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToLoadNetworkConfig", + "msgId": 13, + "msgString": "Failed to load network interfaces config", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "IsRollbackConfig", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCreateNetworkConfig", + "msgId": 14, + "msgString": "Failed to create the network interfaces config", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToInstallCertificate", + "msgId": 15, + "msgString": "Failed to install certificate", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToReadProxyAddressField", + "msgId": 16, + "msgString": "Failed to read proxy address field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadNoProxyAddressesField", + "msgId": 17, + "msgString": "Failed to read noProxyAddresses field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadProxyUsernameField", + "msgId": 18, + "msgString": "Failed to read proxy username field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadProxyPasswordField", + "msgId": 19, + "msgString": "Failed to read proxy password field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadProxyOptionsField", + "msgId": 20, + "msgString": "Failed to read proxy options field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadProxyPortField", + "msgId": 21, + "msgString": "Failed to read proxy port field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadProxyAuthTypeField", + "msgId": 22, + "msgString": "Failed to read proxy authType field", + "msgPriority": "Error" + }, + { + "msgName": "FailedToReadProxyTypeField", + "msgId": 23, + "msgString": "Failed to read proxy type field", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/netsocket_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/netsocket_log_manifest.json new file mode 100644 index 0000000..79b978e --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/netsocket_log_manifest.json @@ -0,0 +1,133 @@ +{ + "version": "1.0", + "categoryId": 4, + "categoryName": "netsocket", + "msgIds": [ + { + "msgName": "WolfSSLAlreadyInitializedError", + "msgId": 1, + "msgString": "WolfSSL already initialized", + "msgPriority": "Error" + }, + { + "msgName": "InitializeWolfSSLError", + "msgId": 2, + "msgString": "Unable to initializing WolfSSL.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "TLSMethodInitError", + "msgId": 3, + "msgString": "Unable to get TLS v.1.2 init method.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "TLSContextError", + "msgId": 4, + "msgString": "Unable to create TLS context.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "ServerCertLoadError", + "msgId": 5, + "msgString": "Error loading the server certificate.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + }, + { + "paramName": "path", + "paramType": "string" + } + ] + }, + { + "msgName": "ServerKeyLoadError", + "msgId": 6, + "msgString": "Error loading the server key.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + }, + { + "paramName": "path", + "paramType": "string" + } + ] + }, + { + "msgName": "SSLNotInitializedError", + "msgId": 7, + "msgString": "WolfSSL is not initialized.", + "msgPriority": "Error" + }, + { + "msgName": "TLSAlreadyInitializedError", + "msgId": 8, + "msgString": "Transport level security already initialized for the socket.", + "msgPriority": "Error" + }, + { + "msgName": "SSLCreateError", + "msgId": 9, + "msgString": "Error creating SSL object.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SSLEnableError", + "msgId": 10, + "msgString": "Error enabling SSL for the socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SocketIOError", + "msgId": 11, + "msgString": "Error on socket IO.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + }, + { + "paramName": "direction", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/networkd_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/networkd_log_manifest.json new file mode 100644 index 0000000..701f6a7 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/networkd_log_manifest.json @@ -0,0 +1,3327 @@ +{ + "version": "1.0", + "categoryId": 2, + "categoryName": "networkd", + "msgIds": [ + { + "msgName": "StartingNetworkD", + "msgId": 1, + "msgString": "Starting NetworkD", + "msgPriority": "Info", + "params": [ + { + "paramName": "uid", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "SigTermError", + "msgId": 7, + "msgString": "Received SIGTERM, exiting.", + "msgPriority": "Info" + }, + { + "msgName": "ExecError", + "msgId": 8, + "msgString": "failed to exec", + "msgPriority": "Error", + "params": [ + { + "paramName": "Executable Path", + "paramType": "string" + } + ] + }, + { + "msgName": "InterfaceOrMacIsNullError", + "msgId": 14, + "msgString": "interface & mac_data must be non-null!", + "msgPriority": "Error" + }, + { + "msgName": "GetMacAddressError", + "msgId": 16, + "msgString": "Failed to get MAC address", + "msgPriority": "Error", + "params": [ + { + "paramName": "ErrnoValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "MacFileOrMacDataIsNullError", + "msgId": 17, + "msgString": "mac_file & mac_data must be non-null!", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "MacAddressFileOpenFailed", + "msgId": 18, + "msgString": "failed to open mac address file", + "msgPriority": "Error", + "params": [ + { + "paramName": "Mac address file", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "MacAddressReadFromFileError", + "msgId": 23, + "msgString": "failed to read mac address from file", + "msgPriority": "Error", + "params": [ + { + "paramName": "file", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "MacDataOrInterfaceIsNullError", + "msgId": 24, + "msgString": "mac_data & interface must be non-null!", + "msgPriority": "Error" + }, + { + "msgName": "FileDoesNotExistError", + "msgId": 25, + "msgString": "Failed to check if file exists", + "msgPriority": "Error", + "params": [ + { + "paramName": "file", + "paramType": "string" + } + ] + }, + { + "msgName": "SetMacAddressError", + "msgId": 34, + "msgString": "failed to set mac address", + "msgPriority": "Error" + }, + { + "msgName": "PingToWpaCtrlReturnedError", + "msgId": 49, + "msgString": "Error sending PING to wpa_ctrl interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Return Code", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UnknownResponseFromWpaCtrl", + "msgId": 51, + "msgString": "Unknown response from wpa_ctrl interface!", + "msgPriority": "Error", + "params": [ + { + "paramName": "len", + "paramType": "integer" + }, + { + "paramName": "msg", + "paramType": "string" + } + ] + }, + { + "msgName": "AttachToWpaSupplicantFailedDueToTimeOut", + "msgId": 53, + "msgString": "Failed to attach to wpa_supplicant: request to attach to wpa_supplicant timed out.", + "msgPriority": "Error" + }, + { + "msgName": "AttachToWpaSupplicantFailed", + "msgId": 54, + "msgString": "Failed to attach to wpa_supplicant", + "msgPriority": "Error", + "params": [ + { + "paramName": "Return Code", + "paramType": "integer" + } + ] + }, + { + "msgName": "WpaCtlAttachSucceeded", + "msgId": 55, + "msgString": "Successfully attached to wpa_ctl interface.", + "msgPriority": "Info" + }, + { + "msgName": "RecvPendingMsgError", + "msgId": 56, + "msgString": "Failed to recv pending msg", + "msgPriority": "Error" + }, + { + "msgName": "FailedToSetInterfaceUp", + "msgId": 65, + "msgString": "Failed to set interface to \"UP\"", + "msgPriority": "Error", + "params": [ + { + "paramName": "Interface Name", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SetupWpaCtrl", + "msgId": 76, + "msgString": "SetupWpaCtrl()", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "GetNetworkIdWpaCtrlError", + "msgId": 77, + "msgString": "Error getting ssid from wpa_ctrl interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Return Code", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ConnectedToNewNetwork", + "msgId": 78, + "msgString": "Connected to new network", + "msgPriority": "Info", + "params": [ + { + "paramName": "SSID", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToCopyIpAddress", + "msgId": 81, + "msgString": "Failed to copy ip address", + "msgPriority": "Error", + "params": [ + { + "paramName": "address", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToSetStaticIpAddress", + "msgId": 82, + "msgString": "Failed to set static ip address", + "msgPriority": "Error", + "params": [ + { + "paramName": "address", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToOpenTty", + "msgId": 88, + "msgString": "Failed to open TTY for SLIP", + "msgPriority": "Error", + "params": [ + { + "paramName": "tty_name", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToGetTtyState", + "msgId": 89, + "msgString": "Failed to get TTY state", + "msgPriority": "Error" + }, + { + "msgName": "FailedToSetTtyState", + "msgId": 90, + "msgString": "Failed to set TTY state", + "msgPriority": "Error" + }, + { + "msgName": "WpaIpcServerFailedToStart", + "msgId": 94, + "msgString": "WPA IPC server failed to start", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidWpaCtrl", + "msgId": 96, + "msgString": "Failed to find a valid wpa_ctrl", + "msgPriority": "Error" + }, + { + "msgName": "FailedToCheckWpaPendingEvent", + "msgId": 97, + "msgString": "Failed to check whether there are pending WPA events", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToReceiveWpaMessage", + "msgId": 98, + "msgString": "Failed to receive a pending control interface message", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WaitForPendingEventTimedOut", + "msgId": 99, + "msgString": "Wait for WPA pending event timed out", + "msgPriority": "Error" + }, + { + "msgName": "InvalidWpaCtrlCommandReceived", + "msgId": 100, + "msgString": "Received invalid WPA ctrl command", + "msgPriority": "Error" + }, + { + "msgName": "WpaCtrlCommandNotAllowed", + "msgId": 101, + "msgString": "Received an unallowed WPA ctrl command", + "msgPriority": "Error" + }, + { + "msgName": "WpaCtrlRequestFailed", + "msgId": 102, + "msgString": "WPA Ctrl request failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "PidDoesNotBelongToNetRestricted", + "msgId": 105, + "msgString": "Wpa request denied because pid does not belong to net-restricted group", + "msgPriority": "Error" + }, + { + "msgName": "WpaRequestDenied", + "msgId": 106, + "msgString": "Wpa request has been denied", + "msgPriority": "Error" + }, + { + "msgName": "SettingWlanMac", + "msgId": 108, + "msgString": "Setting mac address for", + "msgPriority": "Info", + "params": [ + { + "paramName": "interface", + "paramType": "string" + }, + { + "paramName": "Mac", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "SetWlanMacAddressFailed", + "msgId": 110, + "msgString": "Unable to set MAC address for", + "msgPriority": "Error", + "params": [ + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "WlanMacReadError", + "msgId": 111, + "msgString": "Unable to read MAC address of", + "msgPriority": "Error", + "params": [ + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "ErrorReceivingPacket", + "msgId": 112, + "msgString": "Error receiving packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorSendingPacket", + "msgId": 113, + "msgString": "Error sending packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "DhcpLeaseAcquired", + "msgId": 114, + "msgString": "Acquired DHCP lease", + "msgPriority": "Info", + "params": [ + { + "paramName": "duration", + "paramType": "unsignedInteger" + }, + { + "paramName": "address", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "ErrorSettingIpProps", + "msgId": 115, + "msgString": "Error setting IP properties", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorInitializingPollManager", + "msgId": 116, + "msgString": "Error initializing poll manager", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorSettingClock", + "msgId": 117, + "msgString": "Error setting clock", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "TimeSyncStatusChanged", + "msgId": 118, + "msgString": "Time sync status changed", + "msgPriority": "Info", + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "IpStatusChanged", + "msgId": 119, + "msgString": "IP Address status changed", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ConnectedStatusChanged", + "msgId": 120, + "msgString": "Connected status changed", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "NetworkUpStatusChanged", + "msgId": 121, + "msgString": "Netdev up status changed", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "InternetConnectivityChanged", + "msgId": 122, + "msgString": "Internet connectivity status changed", + "msgPriority": "Info", + "obsolete": true, + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ErrorSavingFirewallRules", + "msgId": 123, + "msgString": "Error saving firewall rules", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WPASupplicantExited", + "msgId": 124, + "msgString": "WPA supplicant exited with status", + "msgPriority": "Error", + "params": [ + { + "paramName": "status", + "paramType": "integer" + } + ] + }, + { + "msgName": "PidDoesNotBelongToWifiConfig", + "msgId": 125, + "msgString": "Wpa request denied because pid does not belong to wifi-config group", + "msgPriority": "Error" + }, + { + "msgName": "FailedToGetWifiConfigGroup", + "msgId": 127, + "msgString": "Failed to get wifi-config group", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetNetRestrictedGroup", + "msgId": 128, + "msgString": "Failed to get net-restricted group", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ] + }, + { + "msgName": "CopyingWpaConfig", + "msgId": 130, + "msgString": "WPA config not found, copying from app bin to config directory", + "msgPriority": "Info" + }, + { + "msgName": "InvalidWpaCtrlConfig", + "msgId": 131, + "msgString": "WPA ctrl configurator was not set up properly", + "msgPriority": "Info" + }, + { + "msgName": "DeviceAuthSuccess", + "msgId": 132, + "msgString": "Successfully acquired certificate chain from DAA", + "msgPriority": "Info" + }, + { + "msgName": "DeviceAuthFailure", + "msgId": 133, + "msgString": "Failed to acquire certificate chain from DAA", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DeviceAuthManagerError", + "msgId": 134, + "msgString": "Error occuring during DeviceAuthManager operations", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "TenantCertificateParseError", + "msgId": 135, + "msgString": "Error occurred during parsing date from tenant certificate", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DeviceAuthSleepDurationTrace", + "msgId": 136, + "msgString": "DeviceAuthManager will sleep for sleep_duration seconds", + "msgPriority": "Trace", + "params": [ + { + "paramName": "sleep_duration", + "paramType": "integer" + } + ] + }, + { + "msgName": "TenantListParseError", + "msgId": 137, + "msgString": "Error occurred while parsing tenant list file", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DeviceauthDirectoryUnlinkError", + "msgId": 138, + "msgString": "Error occurred while deleting file in DAA directory", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + }, + { + "paramName": "Filename", + "paramType": "string" + } + ] + }, + { + "msgName": "TenantCertificateParseErrorTrace", + "msgId": 140, + "msgString": "Error occurred during parsing date from tenant certificate", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "details", + "paramType": "string" + } + ] + }, + { + "msgName": "TenantCertificateDetailTrace", + "msgId": 141, + "msgString": "Certificate data", + "msgPriority": "Trace", + "params": [ + { + "paramName": "size", + "paramType": "integer" + }, + { + "paramName": "content", + "paramType": "string" + } + ] + }, + { + "msgName": "WpaCtrlRequestTimedOut", + "msgId": 142, + "msgString": "Wpa Ctrl request timed out", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestHandlerError", + "msgId": 143, + "msgString": "An error occurred while handling a wifi request", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorBringingUpInterface", + "msgId": 144, + "msgString": "Error bringing up the interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Interface name", + "paramType": "string" + } + ] + }, + { + "msgName": "InvalidNetworkInterfaceManagerState", + "msgId": 145, + "msgString": "Network interface manager is in invalid state", + "msgPriority": "Error", + "params": [ + { + "paramName": "state", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToInitializeNetworking", + "msgId": 146, + "msgString": "Failed to initialize networking", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToBringUpInterfaces", + "msgId": 148, + "msgString": "Failed to bring up interfaces", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidNetworkInterfaceState", + "msgId": 149, + "msgString": "Network interface is in invalid state", + "msgPriority": "Error", + "params": [ + { + "paramName": "state", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetInterfaceFlags", + "msgId": 150, + "msgString": "Failed to get interface flags", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToSetInterfaceFlags", + "msgId": 151, + "msgString": "Failed to set interface flags", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SocketOpenError", + "msgId": 152, + "msgString": "Failed to open socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToWriteSysctlEntry", + "msgId": 153, + "msgString": "Failed to write Sysctl entry", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToReadCmdline", + "msgId": 154, + "msgString": "Could not read /proc/cmdline", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToRunSlAttach", + "msgId": 155, + "msgString": "Failed to run slattach", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WpaSupplicantStarted", + "msgId": 156, + "msgString": "wpa_supplicant started", + "msgPriority": "Info", + "params": [ + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToInitializeService", + "msgId": 157, + "msgString": "Failed to Initialize service", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "ServiceType", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToStartService", + "msgId": 158, + "msgString": "Failed to start service", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "ServiceType", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToShutDownService", + "msgId": 159, + "msgString": "Failed to shut down service", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "ServiceType", + "paramType": "integer" + } + ] + }, + { + "msgName": "ForkError", + "msgId": 160, + "msgString": "failed to fork", + "msgPriority": "Error", + "params": [ + { + "paramName": "Executable Path", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NullInterfaceError", + "msgId": 161, + "msgString": "interface must be non-null!", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToStartWpaSupplicant", + "msgId": 162, + "msgString": "Failed to start wpa_supplicant", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCheckFileExists", + "msgId": 163, + "msgString": "Failed to check if file exists", + "msgPriority": "Error", + "params": [ + { + "paramName": "File Path", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCopyFile", + "msgId": 164, + "msgString": "Failed to copy file", + "msgPriority": "Error", + "params": [ + { + "paramName": "From", + "paramType": "string" + }, + { + "paramName": "To", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToPatchWpaSupplicant", + "msgId": 165, + "msgString": "Failed to patch wpa_supplicant config file", + "msgPriority": "Error", + "params": [ + { + "paramName": "File Path", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToReadIntoMemory", + "msgId": 166, + "msgString": "Failed to read into memory", + "msgPriority": "Error", + "params": [ + { + "paramName": "File Path", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToOpenAndTruncate", + "msgId": 167, + "msgString": "Failed to open and truncate", + "msgPriority": "Error", + "params": [ + { + "paramName": "File Path", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToWriteFile", + "msgId": 168, + "msgString": "Failed to write file", + "msgPriority": "Error", + "params": [ + { + "paramName": "File Path", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToGetPathToExe", + "msgId": 169, + "msgString": "Failed to get the path to running process' executable", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToInitializeGlobalServices", + "msgId": 170, + "msgString": "Failed to initialize global services", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToReadCertificateData", + "msgId": 171, + "msgString": "Failed to read certificate data", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "InvalidNetConfigRequestCommand", + "msgId": 172, + "obsolete": true, + "msgString": "Invalid NetConfig request command", + "msgPriority": "Error" + }, + { + "msgName": "UnknownNetworkServiceOption", + "msgId": 173, + "msgString": "Unknown network service option", + "msgPriority": "Error", + "params": [ + { + "paramName": "NetworkServiceType", + "paramType": "integer" + } + ] + }, + { + "msgName": "NetworkInterfacesNotFoundInDeviceTree", + "msgId": 174, + "msgString": "No network devices were found in the device tree", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToDeleteMacAddressFile", + "msgId": 175, + "msgString": "Failed to delete mac address file", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "UnhandledNetworkInterfaceType", + "msgId": 176, + "msgString": "Unhandled network interface type", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Interface Type", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCreateDeviceTree", + "msgId": 177, + "msgString": "Failed to create the device tree", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToFindWiFiInDeviceTree", + "msgId": 178, + "msgString": "Couldn't find the WiFi node in the device tree", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToSaveNetworkConfig", + "msgId": 179, + "msgString": "Failed to save network configuration file", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UsingBackupNetworkConfig", + "msgId": 180, + "msgString": "Using backup network config", + "msgPriority": "Warning" + }, + { + "msgName": "FirewallInvalidState", + "msgId": 182, + "msgString": "Firewall in invalid state", + "msgPriority": "Warning" + }, + { + "msgName": "NetConfigRequestDenied", + "msgId": 183, + "obsolete": true, + "msgString": "NetConfig request has been denied", + "msgPriority": "Error" + }, + { + "msgName": "NetConfigIpcServerFailedToSendResponse", + "msgId": 184, + "msgString": "NetConfig IPC server failed to send response", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetNetworkConfigGroup", + "msgId": 185, + "msgString": "Failed to get net-config group", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "PidDoesNotBelongToNetConfig", + "msgId": 186, + "msgString": "NetConfig request denied because pid does not belong to net-config group", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "FailedToSaveBackupNetworkConfig", + "msgId": 187, + "msgString": "Failed to save backup network config json", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToRecoverFromBackupNetworkConfig", + "msgId": 188, + "msgString": "Failed to recover from backup network config, reverting to default config", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "InterfaceNotFound", + "msgId": 189, + "msgString": "The specified interface was not found", + "msgPriority": "Error", + "params": [ + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "InterfaceAlreadyUp", + "msgId": 190, + "msgString": "The interface is already up", + "msgPriority": "Info", + "params": [ + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "InterfaceAlreadyDown", + "msgId": 191, + "msgString": "The interface is already down", + "msgPriority": "Info", + "params": [ + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "ErrorBringingDownInterface", + "msgId": 192, + "msgString": "Error bringing down the interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Interface name", + "paramType": "string" + } + ] + }, + { + "msgName": "EnableOperationNotPermittedOnTheInterface", + "msgId": 193, + "msgString": "Enable interface operation is not permitted on the interface mentioned", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Interface name", + "paramType": "string" + } + ] + }, + { + "msgName": "DisableOperationNotPermittedOnTheInterface", + "msgId": 194, + "msgString": "Disable interface operation is not permitted on the interface mentioned", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Interface name", + "paramType": "string" + } + ] + }, + { + "msgName": "WarningUnableToSetGatewayAddress", + "msgId": 195, + "msgString": "Failed to set gateway address", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DeviceAuthServiceContactingDAA", + "msgId": 196, + "msgString": "DeviceAuthService attempting to get a certificate from DAA.", + "msgPriority": "Trace" + }, + { + "msgName": "DeviceAuthServiceWaitingForTime", + "msgId": 197, + "msgString": "DeviceAuthService waiting for internet and time sync", + "msgPriority": "Trace" + }, + { + "msgName": "WarningSetMacAddressErrorFatal", + "msgId": 199, + "msgString": "Setting up MAC address for network interface failed, but continuing to save other interfaces", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Interface Name", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToRestartSntpServer", + "msgId": 200, + "msgString": "Failed to restart SNTP server after IP address change by DHCP client", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCreateEventFd", + "msgId": 201, + "msgString": "Failed to create Event file descriptor", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToCreateTimer", + "msgId": 202, + "msgString": "Failed to create timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToSetSocketOption", + "msgId": 203, + "msgString": "Failed to set socket option", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToBindSocket", + "msgId": 204, + "msgString": "Failed to bind socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NoIpAddressForInterface", + "msgId": 205, + "msgString": "No IP address assigned for interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "InterfaceNameIsNull", + "msgId": 206, + "msgString": "Interface name is null", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DhcpServerNoIpAddressError", + "msgId": 207, + "msgString": "DHCP Server initialization failure. Interface has no IP address set.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToRestartDhcpServer", + "msgId": 208, + "msgString": "Failed to restart DHCP server after IP address change.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToAddUnsupportedNetworkService", + "msgId": 209, + "msgString": "Failed to add unsupported network service to firewall.", + "msgPriority": "Error", + "params": [ + { + "paramName": "ServiceType", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToGetIpAddressForInterface", + "msgId": 210, + "msgString": "Failed to retrieve IP address for interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToGetMaskForInterface", + "msgId": 211, + "msgString": "Failed to get mask for interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "InterfaceName", + "paramType": "string" + } + ] + }, + { + "msgName": "DhcpServerOutOfAddresses", + "msgId": 212, + "msgString": "Failed to allocate IP address for client.", + "msgPriority": "Error" + }, + { + "msgName": "DhcpServerAddressDeclined", + "msgId": 213, + "msgString": "Client declined IP address offered.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Client ID", + "paramType": "string" + }, + { + "paramName": "address", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "FailedToStartWpaConnectionStatusMonitor", + "msgId": 214, + "msgString": "Failed to start the Wpa Connection Status monitor.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ServiceAlreadyExists", + "msgId": 215, + "msgString": "The network service already exists in the specified interface", + "msgPriority": "Info", + "params": [ + { + "paramName": "ServiceType", + "paramType": "unsignedInteger" + }, + { + "paramName": "Interface name", + "paramType": "string" + } + ] + }, + { + "msgName": "NoGroupFoundWarning", + "msgId": 216, + "msgString": "User requested group not found", + "msgPriority": "Warning" + }, + { + "msgName": "ChmodGroupFailedWarning", + "msgId": 217, + "msgString": "chmod to group failed", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "ChownGroupFailedWarning", + "msgId": 218, + "msgString": "chown to group failed", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WpaWorkQueueStateChange", + "msgId": 219, + "msgString": "WpaWorkQueue state change", + "msgPriority": "Info", + "params": [ + { + "paramName": "from", + "paramType": "integer" + }, + { + "paramName": "to", + "paramType": "integer" + } + ] + }, + { + "msgName": "WpaWorkQueueError", + "msgId": 220, + "msgString": "WpaWorkQueue Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "state", + "paramType": "integer" + }, + { + "paramName": "event", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WpaWorkQueueBindError", + "msgId": 221, + "msgString": "WpaWorkQueue Bind Error", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WpaWorkQueueFailResponse", + "msgId": 222, + "msgString": "WpaWorkQueue received a fail response", + "msgPriority": "Error", + "params": [ + { + "paramName": "text", + "paramType": "string" + } + ] + }, + { + "msgName": "WifiRequestErrorInvalidSsid", + "msgId": 223, + "msgString": "Encountered invalid ssid when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorInvalidKeyMgmt", + "msgId": 224, + "msgString": "Encountered invalid key management when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorInvalidPsk", + "msgId": 225, + "msgString": "Encountered invalid psk when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorParseAddNetwork", + "msgId": 226, + "msgString": "Failed to parse result of add network when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorParseWpaStatus", + "msgId": 227, + "msgString": "Failed to parse result of status when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorParseScanResults", + "msgId": 228, + "msgString": "Failed to parse result of scan results when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorUpdateNetworkSsidMismatch", + "msgId": 229, + "msgString": "Update network request has ssid mismatch", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorVendorCommandTooLong", + "msgId": 230, + "msgString": "Wifi request vendor command too long", + "msgPriority": "Error" + }, + { + "msgName": "WpaWorkQueueOpenError", + "msgId": 231, + "msgString": "Failed to open WpaWorkQueue", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WpaWorkQueueForwardedError", + "msgId": 232, + "msgString": "WpaWorkQueue forwarding error to broker", + "msgPriority": "Error", + "params": [ + { + "paramName": "broker", + "paramType": "unsignedInteger" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WpaWorkQueueStartWork", + "msgId": 233, + "msgString": "WpaWorkQueue start work", + "msgPriority": "Info", + "params": [ + { + "paramName": "broker", + "paramType": "unsignedInteger" + } + ], + "obsolete": true + }, + { + "msgName": "WpaWorkQueueStopWork", + "msgId": 234, + "msgString": "WpaWorkQueue stop work", + "msgPriority": "Info", + "params": [ + { + "paramName": "broker", + "paramType": "unsignedInteger" + } + ], + "obsolete": true + }, + { + "msgName": "DhcpServerNotSupportedOnTheInterface", + "msgId": 235, + "msgString": "DHCP server service not supported on the specified interface.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Interface name", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToConfigureService", + "msgId": 236, + "msgString": "Failed to configure service.", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "ServiceType", + "paramType": "integer" + } + ] + }, + { + "msgName": "WifiRequestErrorParseSignalPollResults", + "msgId": 237, + "msgString": "Failed to parse result of signal poll when handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "FailedToKillWpaSupplicant", + "msgId": 238, + "msgString": "Could not kill the wpa supplicant process", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Signal", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "ErrorWaitingOnWpaSupplicant", + "msgId": 239, + "msgString": "An error occurred while waiting for the Wpa Supplicant to exit", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "SuccessfullyTerminatedWpaSupplicant", + "msgId": 240, + "msgString": "The WPA supplicant process was successfully terminated", + "msgPriority": "Trace" + }, + { + "msgName": "NoWpaSupplicantToTerminate", + "msgId": 241, + "msgString": "There is no WPA supplicant process to terminate", + "msgPriority": "Trace" + }, + { + "msgName": "InvalidWpaWorkQueue", + "msgId": 242, + "msgString": "The WpaWorkQueue cannot be null", + "msgPriority": "Error" + }, + { + "msgName": "ShutDownFailedNetworkdExiting", + "msgId": 243, + "msgString": "Shutting down Wpa supplicant service failed. Networkd exiting", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FatalFailureCreateTimerNetworkdExiting", + "msgId": 244, + "msgString": "Failed to create timer for recovering Wpa supplicant service. Restarting networkd", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "RetryingConnectionToSupplicant", + "msgId": 245, + "msgString": "WPA Supplicant is not Ready. Retrying connection in a few seconds", + "msgPriority": "Trace" + }, + { + "msgName": "SetupWpaCtrlConnectingToWpa", + "msgId": 246, + "msgString": "Setting up Wpa Ctrl - Connecting to WPA Supplicant", + "msgPriority": "Trace" + }, + { + "msgName": "IpStatusChanged", + "msgId": 247, + "msgString": "IP Address status changed", + "msgPriority": "Info", + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + }, + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "ConnectedStatusChanged", + "msgId": 248, + "msgString": "Connected status changed", + "msgPriority": "Info", + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + }, + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "NetworkUpStatusChanged", + "msgId": 249, + "msgString": "Netdev up status changed", + "msgPriority": "Info", + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + }, + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "InternetConnectivityChanged", + "msgId": 250, + "msgString": "Internet connectivity status changed", + "msgPriority": "Info", + "params": [ + { + "paramName": "value", + "paramType": "unsignedInteger" + }, + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToReceiveMessageFromNetlink", + "msgId": 251, + "msgString": "Receivemsg failed from NETLINK", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorNetlinkMessageReceived", + "msgId": 252, + "msgString": "NETLINK: Error message received", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedCreateInterfaceConfigurator", + "msgId": 253, + "msgString": "Failed to create interface configurator", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "AddedInterfaceDefault", + "msgId": 254, + "msgString": "Added interface default configuration", + "msgPriority": "Info", + "params": [ + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "WPASupplicantProcessSignaled", + "msgId": 255, + "msgString": "WPA Supplicant process has been signaled.", + "msgPriority": "Warning", + "params": [ + { + "paramName": "signal_number", + "paramType": "integer" + }, + { + "paramName": "signal_code", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetRequiredCapabilityGroupId", + "msgId": 256, + "msgString": "Failed to get a required capability group id", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "capabilityType", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "PidDoesNotBelongToTheCorrectCapabilityGroup", + "msgId": 257, + "msgString": "Request denied because pid does not belong to the correct capability group", + "msgPriority": "Error", + "params": [ + { + "paramName": "capabilityType", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToJoinMulticastGroup", + "msgId": 258, + "msgString": "Failed to join multicast group", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + }, + { + "paramName": "multicastAddress", + "paramType": "ipAddress" + }, + { + "paramName": "localAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "FailedToDepartMulticastGroup", + "msgId": 259, + "msgString": "Failed to depart multicast group", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + }, + { + "paramName": "multicastAddress", + "paramType": "ipAddress" + }, + { + "paramName": "localAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "ErrorSendingResponseToApp", + "msgId": 260, + "msgString": "Failed to send DNS response to app", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + }, + { + "paramName": "destAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "ErrorSendingUnicastQuery", + "msgId": 261, + "msgString": "Failed to send unicast DNS query", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + }, + { + "paramName": "destAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "ErrorSendingMulticastQuery", + "msgId": 262, + "msgString": "Failed to send multicast DNS query", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + }, + { + "paramName": "localAddress", + "paramType": "ipAddress" + }, + { + "paramName": "destAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "JoiningMulticastGroup", + "msgId": 263, + "msgString": "Joining multicast group", + "msgPriority": "Trace", + "params": [ + { + "paramName": "multicastAddress", + "paramType": "ipAddress" + }, + { + "paramName": "localAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "DepartingMulticastGroup", + "msgId": 264, + "msgString": "Departing multicast group", + "msgPriority": "Trace", + "params": [ + { + "paramName": "multicastAddress", + "paramType": "ipAddress" + }, + { + "paramName": "localAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "RejectingMDNSMessage", + "msgId": 265, + "msgString": "Rejecting MDNS message from outside subnet", + "msgPriority": "Trace", + "params": [ + { + "paramName": "multicastAddress", + "paramType": "ipAddress" + }, + { + "paramName": "multicastSubnet", + "paramType": "ipAddress" + }, + { + "paramName": "incomingAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "TimeSyncQueryTimerFired", + "msgId": 266, + "msgString": "Timer fired for sending NTP query", + "msgPriority": "Info", + "params": [ + { + "paramName": "serverAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "TimeSyncBadResponse", + "msgId": 267, + "msgString": "Received a bad response attempting to sync time", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "serverAddress", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "TimeSyncWellFormedResponse", + "msgId": 268, + "msgString": "Received well-formed time response", + "msgPriority": "Info", + "params": [ + { + "paramName": "serverAddress", + "paramType": "ipAddress" + }, + { + "paramName": "integerTimePart", + "paramType": "unsignedInteger" + }, + { + "paramName": "fractionalTimePart", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "TenantCertificateExpired", + "msgId": 269, + "msgString": "A tenant certificate has expired", + "msgPriority": "Info", + "params": [ + { + "paramName": "deviceTime", + "paramType": "unsignedInteger" + }, + { + "paramName": "certTime", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToInitUsingMainNetConfig", + "msgId": 270, + "msgString": "Failed to initialize using the main net config", + "msgPriority": "Error", + "params": [ + { + "paramName": "Return Code", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ChmodFailedError", + "msgId": 271, + "msgString": "chmod failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "Chmod file", + "paramType": "string" + }, + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UnexpectedNtpSource", + "msgId": 272, + "msgString": "Ntp message received from unexpected address", + "msgPriority": "Error" + }, + { + "msgName": "WifiRequestErrorInvalidTargetedScan", + "msgId": 273, + "msgString": "Encountered invalid targeted scan value while handling wifi request", + "msgPriority": "Error" + }, + { + "msgName": "FailedToSetupTimer", + "msgId": 274, + "msgString": "Failed to setup timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToStopTimer", + "msgId": 275, + "msgString": "Failed to stop timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorGettingClock", + "msgId": 276, + "msgString": "Error getting clock", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToSyncRtcWithNtpTime", + "msgId": 277, + "msgString": "Failed to sync RTC with NTP time. Expected failure when no RTC is present", + "msgPriority": "Warning", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorSendingNtpQuery", + "msgId": 278, + "msgString": "Error sending NTP query", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "CannotSignalTheWpaSupplicant", + "msgId": 279, + "msgString": "The calling process has insufficient permissions to signal the WPA supplicant", + "msgPriority": "Trace" + }, + { + "msgName": "MigratingFromNetworkInterfacesJson", + "msgId": 280, + "msgString": "Migrating from NetworkInterfaces.json file", + "msgPriority": "Info", + "obsolete": true + }, + { + "msgName": "FailedToMigrateFromNetworkInterfaceJson", + "msgId": 281, + "msgString": "Failed to migrate from Network Interface json file", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToLoadNetworkInterfaceFromJsonFile", + "msgId": 282, + "msgString": "Failed to load NetworkInterfaces.json", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "FailedToFindInterfaceOption", + "msgId": 283, + "msgString": "Could not find configuration for interface", + "msgPriority": "Error", + "params": [ + { + "paramName": "interface", + "paramType": "string" + } + ] + }, + { + "msgName": "WifiRequestErrorInvalidString", + "msgId": 284, + "msgString": "Error parsing string from the supplicant response.", + "msgPriority": "Error" + }, + { + "msgName": "CouldNotOpenResolvConf", + "msgId": 285, + "msgString": "Error reading resolv.conf.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorOpeningCertStoreInCertInstallRequest", + "msgId": 286, + "msgString": "Error opening cert store during cert install request", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorOpeningCertStoreInCertDeleteRequest", + "msgId": 287, + "msgString": "Error opening cert store during delete cert request", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorOpeningCertStoreInGetCertListRequest", + "msgId": 288, + "msgString": "Error opening cert store while retrieving the list of certs", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorOpeningCertStoreInGetAvailableSpaceRequest", + "msgId": 289, + "msgString": "Error opening cert store while retrieving the cert store's available space", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorOpeningCertStoreInGetCertificateInfoRequest", + "msgId": 290, + "msgString": "Error opening cert store while retrieving cert information", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NetworkInterfacesNotFoundInSubsystem", + "msgId": 291, + "msgString": "No network interfaces were found in the subsystem", + "msgPriority": "Error" + }, + { + "msgName": "NoMoreFieldsToDuplicate", + "msgId": 292, + "msgString": "Duplicate Network broker called with no more fields to duplicate", + "msgPriority": "Error" + }, + { + "msgName": "GetConfigNameBrokerHasNotBeenInitialized", + "msgId": 293, + "msgString": "A broker tried to use the GetConfigNames broker without first initializing it", + "msgPriority": "Trace" + }, + { + "msgName": "FoundErrorsReadParseWpaSupplicantConfigFile", + "msgId": 294, + "msgString": "Found errors while reading and parsing WPA supplicant config file", + "msgPriority": "Error", + "params": [ + { + "paramName": "NumberOfErrors", + "paramType": "integer" + } + ] + }, + { + "msgName": "BrokerInvalidOperation", + "msgId": 295, + "msgString": "A broker request failed due to an invalid operation", + "msgPriority": "Error", + "params": [ + { + "paramName": "state", + "paramType": "integer" + }, + { + "paramName": "requestResponseType", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "BrokerStateMarkedDoneInError", + "msgId": 296, + "msgString": "A broker's state was set to done in error", + "msgPriority": "Error" + }, + { + "msgName": "GetConfigNamesBrokerMissingNetworkInformation", + "msgId": 297, + "msgString": "GetConfigNames broker does not have network Id's to retrieve config names for", + "msgPriority": "Trace" + }, + { + "msgName": "FailedToGetTimeOfDay", + "msgId": 298, + "msgString": "Failed to get NTP time of day", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToSetupNetworkInterfaceManagerTimers", + "msgId": 299, + "msgString": "Failed to setup network interface manager timers", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NcsiRequestThrottled", + "msgId": 300, + "msgString": "NCSI request not made due to throttling", + "msgPriority": "Warning", + "params": [ + { + "paramName": "timeRemainingSeconds", + "paramType": "integer" + } + ] + }, + { + "msgName": "WpaWorkQueueBrokerTimedOut", + "msgId": 301, + "msgString": "WpaWorkQueue broker timed out prior to request completion", + "msgPriority": "Error", + "params": [ + { + "paramName": "broker", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "NtpClientBadState", + "msgId": 302, + "msgString": "NTPClientService has entered an unexpected state", + "msgPriority": "Error" + }, + { + "msgName": "MaxFirewallRulesReached", + "msgId": 303, + "msgString": "Reached maximum Firewall rules capacity", + "msgPriority": "Error", + "params": [ + { + "paramName": "max size", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToLoadNetworkConfig", + "msgId": 304, + "msgString": "Failed to load network configuration file", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DnsResponseWithNoAnswer", + "msgId": 305, + "msgString": "Dropping DNS response with no answer.", + "msgPriority": "Warning", + "params": [ + { + "paramName": "DNS Server", + "paramType": "ipAddress" + }, + { + "paramName": "QueryName", + "paramType": "string" + }, + { + "paramName": "ResponseFlags", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToSetMtu", + "msgId": 306, + "msgString": "Failed to set MTU", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "Interface", + "paramType": "string" + } + ] + }, + { + "msgName": "ProxyClientServiceFailedToProcessDnsMessage", + "msgId": 307, + "msgString": "Proxy client service failed to process DNS message", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ResolvedProxyName", + "msgId": 308, + "msgString": "Resolved proxy name", + "msgPriority": "Info", + "params": [ + { + "paramName": "address", + "paramType": "ipAddress" + } + ] + }, + { + "msgName": "FailedToResolveDnsName", + "msgId": 309, + "msgString": "Failed to resolve DNS name", + "msgPriority": "Error", + "params": [ + { + "paramName": "Name", + "paramType": "string" + } + ] + }, + { + "msgName": "FailedToReceivePeekedMessageFromNetlink", + "msgId": 310, + "msgString": "Peeked Receivemsg failed from NETLINK", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedNetlinkSendMessage", + "msgId": 311, + "msgString": "Netlink Sendmsg request failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NetlinkReceiveMessageTrace", + "msgId": 312, + "msgString": "Netlink receive msg", + "msgPriority": "Trace", + "params": [ + { + "paramName": "IfName", + "paramType": "string" + }, + { + "paramName": "IfIndex", + "paramType": "integer" + }, + { + "paramName": "IfType", + "paramType": "unsignedInteger" + }, + { + "paramName": "IfFlags", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "NetworkServiceFailedToSetIpAddress", + "msgId": 313, + "msgString": "Network service failed to set IP Address", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommonError", + "paramType": "commonError" + }, + { + "paramName": "Interface", + "paramType": "string" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "NetworkServiceFailedToGetIpAddress", + "msgId": 314, + "msgString": "Network service failed to get IP Address", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommonError", + "paramType": "commonError" + }, + { + "paramName": "Interface", + "paramType": "string" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "NetworkServiceFailedToGetMacAddress", + "msgId": 315, + "msgString": "Network service failed to get MAC Address", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommonError", + "paramType": "commonError" + }, + { + "paramName": "Interface", + "paramType": "string" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "DhcpClientErrorChangingSocketState", + "msgId": 316, + "msgString": "DHCP Client failed to change socket state", + "msgPriority": "Error", + "params": [ + { + "paramName": "CommonError", + "paramType": "commonError" + }, + { + "paramName": "SocketState", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "DhcpClientErrorSendingMessage", + "msgId": 317, + "msgString": "DHCP Client error sending packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "ErrnoValue", + "paramType": "integer" + }, + { + "paramName": "SocketState", + "paramType": "unsignedInteger" + }, + { + "paramName": "DhcpState", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "DhcpClientErrorReceivingMessage", + "msgId": 318, + "msgString": "DHCP Client error receiving packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "SocketState", + "paramType": "unsignedInteger" + }, + { + "paramName": "DhcpState", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "DhcpClientTimedOutDuringIpAcquisition", + "msgId": 319, + "msgString": "DHCP client timed out during IP acquisition", + "msgPriority": "Warning", + "params": [ + { + "paramName": "DhcpState", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ErrorReceivingPacketInService", + "msgId": 320, + "msgString": "Error receiving packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "ErrorSendingPacketInService", + "msgId": 321, + "msgString": "Error sending packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "NetworkServiceFailedToSetTimer", + "msgId": 322, + "msgString": "Network service failed to set its timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "NetworkServiceFailedToStopTimer", + "msgId": 323, + "msgString": "Network service failed to stop its timer", + "msgPriority": "Error", + "params": [ + { + "paramName": "errnoValue", + "paramType": "integer" + }, + { + "paramName": "ServiceType", + "paramType": "string" + } + ] + }, + { + "msgName": "SntpClientTimedOutWaitingForDnsResponse", + "msgId": 324, + "msgString": "SNTP client timed out waiting for DNS response", + "msgPriority": "Warning", + "obsolete": true + }, + { + "msgName": "SntpClientTimedOutWaitingForNtpResponse", + "msgId": 325, + "msgString": "SNTP client timed out waiting for NTP response", + "msgPriority": "Warning", + "params": [ + { + "paramName": "address", + "paramType": "string" + } + ], + "obsolete": true + }, + { + "msgName": "NcsiClientBadResponse", + "msgId": 326, + "msgString": "Received a bad response attempting to confirm internet connectivity", + "msgPriority": "Warning", + "obsolete": true + }, + { + "msgName": "SocketConnectionError", + "msgId": 327, + "msgString": "Failed to connect to socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NcsiErrorSendingNcsiPacket", + "msgId": 328, + "msgString": "NCSI error sending packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "NcsiErrorReceivingNcsiPacket", + "msgId": 329, + "msgString": "NCSI error receiving NCSI packet", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "NcsiErrorSendingDnsQuery", + "msgId": 330, + "msgString": "NCSI error sending DNS query", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "NcsiServiceInvalidDnsResponse", + "msgId": 331, + "msgString": "NCSI service received an invalid DNS response", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "NcsiErrorReceivingDnsResponse", + "msgId": 332, + "msgString": "NCSI error receiving DNS response", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "NcsiServiceTimedOutWaitingForResponse", + "msgId": 333, + "msgString": "NCSI service timed out confirming internet connectivity", + "msgPriority": "Warning", + "params": [ + { + "paramName": "NcsiState", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "NcsiErrorSendingRequest", + "msgId": 334, + "msgString": "NCSI error sending query to server", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ResyncInterfaceDiscoveryAndConnectivity", + "msgId": 335, + "msgString": "Resynchronizing interface status", + "msgPriority": "Info" + }, + { + "msgName": "NcsiSocketConnectionError", + "msgId": 336, + "msgString": "NCSI error connecting to socket", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ], + "obsolete": true + }, + { + "msgName": "SetSocketOptionFailed", + "msgId": 337, + "msgString": "Failed to set socket option", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "SocketOption", + "paramType": "integer" + } + ] + }, + { + "msgName": "SendingUnicastDnsQuery", + "msgId": 338, + "msgString": "Sending unicast DNS query", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Name", + "paramType": "string" + }, + { + "paramName": "Server", + "paramType": "ipAddress" + }, + { + "paramName": "Xid", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "ReceivedDnsResponse", + "msgId": 339, + "msgString": "Received DNS response", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Name", + "paramType": "string" + }, + { + "paramName": "Address", + "paramType": "ipAddress" + }, + { + "paramName": "TTL", + "paramType": "unsignedInteger" + }, + { + "paramName": "Xid", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "NcsiClientUnexpectedResponse", + "msgId": 340, + "msgString": "Received unexpected response attempting to confirm internet connectivity", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Size", + "paramType": "integer" + } + ] + }, + { + "msgName": "NcsiClientErrorReceivingResponse", + "msgId": 341, + "msgString": "NCSI error receiving response from server", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + }, + { + "paramName": "ResponseCode", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetSockName", + "msgId": 342, + "msgString": "Failed to get socket name", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SntpClientTimedOutWaitingForDnsResponse", + "msgId": 343, + "msgString": "SNTP client timed out waiting for DNS response", + "msgPriority": "Warning", + "params": [ + { + "paramName": "port", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "SntpClientTimedOutWaitingForNtpResponse", + "msgId": 344, + "msgString": "SNTP client timed out waiting for NTP response", + "msgPriority": "Warning", + "params": [ + { + "paramName": "address", + "paramType": "string" + }, + { + "paramName": "port", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "QuotaManagerFailure", + "msgId": 345, + "msgString": "Error occurred while querying quota manager about free space", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DeviceauthUnknownCachedCertificate", + "msgId": 346, + "msgString": "Removing certificate cache file", + "msgPriority": "Warning", + "params": [ + { + "paramName": "filename", + "paramType": "string" + } + ] + }, + { + "msgName": "DeviceauthCacheRefreshStatus", + "msgId": 347, + "msgString": "Cache time until expiry", + "msgPriority": "Info", + "params": [ + { + "paramName": "expiryTime", + "paramType": "integer" + }, + { + "paramName": "refreshRequested", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "TenantCachedCertificate", + "msgId": 348, + "msgString": "Cached certificate info", + "msgPriority": "Info", + "params": [ + { + "paramName": "tenant", + "paramType": "string" + }, + { + "paramName": "deviceTime", + "paramType": "unsignedInteger" + }, + { + "paramName": "status", + "paramType": "commonError" + }, + { + "paramName": "certTime", + "paramType": "unsignedInteger" + }, + { + "paramName": "cachedStatus", + "paramType": "commonError" + }, + { + "paramName": "cachedCertTime", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "DeviceauthSkippingCaching", + "msgId": 349, + "msgString": "Skipping certificate caching due to the presence of blocked tenants", + "msgPriority": "Info" + }, + { + "msgName": "DeviceAuthCachingFailure", + "msgId": 350, + "msgString": "Failed to cache certificate chain acquired from DAA", + "msgPriority": "Error", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "DeviceauthCacheRestorationSuccess", + "msgId": 351, + "msgString": "Successfully restored certificate chain from cache", + "msgPriority": "Info" + }, + { + "msgName": "DeviceauthCacheRestorationFailure", + "msgId": 352, + "msgString": "Failed to restore certificate chain from cache. Proceeding to DAA.", + "msgPriority": "Warning", + "params": [ + { + "paramName": "Error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/peripheral_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/peripheral_log_manifest.json new file mode 100644 index 0000000..fd1bc8b --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/peripheral_log_manifest.json @@ -0,0 +1,349 @@ +{ + "version": "1.0", + "categoryId": 32, + "categoryName": "peripheral", + "msgIds": [ + { + "msgName": "NoRealtimeCoresAvailable", + "msgId": 1, + "msgString": "There are no realtime cores available", + "msgPriority": "Error" + }, + { + "msgName": "FailedToLoadDeviceTree", + "msgId": 2, + "msgString": "Failed to load /proc/fdt", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToCreatePeripheralManager", + "msgId": 3, + "msgString": "Failed to create PeripheralManager", + "msgPriority": "Error" + }, + { + "msgName": "UnknownCoreName", + "msgId": 4, + "msgString": "Unknown core name", + "msgPriority": "Error", + "params": [ + { + "paramName": "coreName", + "paramType": "string" + } + ] + }, + { + "msgName": "NoPeripheralInstanceNumber", + "msgId": 5, + "msgString": "The peripheral instance number is missing", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheral", + "paramType": "string" + } + ] + }, + { + "msgName": "CoreIdNotAvailable", + "msgId": 6, + "msgString": "The realtime core ID is not available", + "msgPriority": "Error", + "params": [ + { + "paramName": "coreId", + "paramType": "integer" + } + ] + }, + { + "msgName": "ConflictAcquiringPeripheral", + "msgId": 7, + "msgString": "Conflict acquiring peripheral.", + "msgPriority": "Error", + "params": [ + { + "paramName": "conflictType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralNumber", + "paramType": "unsignedInteger" + }, + { + "paramName": "conflictPeripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "conflictPeripheralNumber", + "paramType": "unsignedInteger" + }, + { + "paramName": "conflictAppUid", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToReleaseGpioPinsBackToSystem", + "msgId": 8, + "msgString": "Failed to release pins back to the system", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "PwmPeripheralExportFailure", + "msgId": 9, + "msgString": "Failed to export/unexport PWM.", + "msgPriority": "Error", + "params": [ + { + "paramName": "isExport", + "paramType": "unsignedInteger" + }, + { + "paramName": "pwmInstance", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToReleasePeripheralInstance", + "msgId": 10, + "msgString": "Failed to release peripheral instance", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralInstance", + "paramType": "unsignedInteger" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailureReleasingAllPeripherals", + "msgId": 11, + "msgString": "Failed to release all peripherals for app", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedToConfigurePeripheralDriver", + "msgId": 12, + "msgString": "Failed to set peripheral driver enable status", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "integer" + }, + { + "paramName": "peripheralInstance", + "paramType": "integer" + } + ] + }, + { + "msgName": "UnsupportedPeripheralType", + "msgId": 13, + "msgString": "Unsupported peripheral type.", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorAcquiringPeripheral", + "msgId": 14, + "msgString": "Error acquiring peripheral.", + "msgPriority": "Error", + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralName", + "paramType": "string" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NoPinsAssociatedWithPeripheral", + "msgId": 15, + "msgString": "No GPIO pins were associated with peripheral", + "msgPriority": "Warning", + "params": [ + { + "paramName": "peripheralType", + "paramType": "unsignedInteger" + }, + { + "paramName": "peripheralInstance", + "paramType": "unsignedInteger" + } + ] + }, + { + "msgName": "FailedToAddLineAccessControlToGpios", + "msgId": 16, + "msgString": "Failed add line access control to GPIOs", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NoCoreAvailable", + "msgId": 17, + "msgString": "No core was available to run application", + "msgPriority": "Error" + }, + { + "msgName": "FailedChmod", + "msgId": 18, + "msgString": "Failed to chmod: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedChown", + "msgId": 19, + "msgString": "Failed to chown file", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToOpenGpioChipFd", + "msgId": 20, + "msgString": "Failed to open gpio chip file descriptor.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "UndefinedGpioRequestedInManifest", + "msgId": 21, + "msgString": "Application manifest requested a gpio that is not defined on this device.", + "msgPriority": "Error" + }, + { + "msgName": "FailedToInitializeGpioAccess", + "msgId": 22, + "msgString": "Failed to initialize gpio access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToGetGpioChipInfo", + "msgId": 23, + "msgString": "Failed to get gpio information for device.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedToEnableGpioPinAccess", + "msgId": 24, + "msgString": "Failed to enable gpio pin access.", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "FailedLstat", + "msgId": 25, + "msgString": "Failed to lstat: ", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "integer" + } + ] + }, + { + "msgName": "VerifyDeviceStateForConfigLockFailed", + "msgId": 26, + "msgString": "Failed to verify device state before locking peripheral configuration", + "msgPriority": "Error" + }, + { + "msgName": "PeripheralConfigLockFailed", + "msgId": 27, + "msgString": "Failed to lock peripheral configuration", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/quota_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/quota_log_manifest.json new file mode 100644 index 0000000..f262244 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/quota_log_manifest.json @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "categoryId": 21, + "categoryName": "quota", + "msgIds": [] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/rebooter_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/rebooter_log_manifest.json new file mode 100644 index 0000000..1933082 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/rebooter_log_manifest.json @@ -0,0 +1,43 @@ +{ + "version": "1.0", + "categoryId": 20, + "categoryName": "rebooter", + "msgIds": [ + { + "msgName": "CouldNotConnect", + "msgId": 1, + "msgString": "Reboot failed to connect to Appman IPC", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CouldNotCommunicate", + "msgId": 2, + "msgString": "Reboot could not talk to Appman", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + }, + { + "msgName": "FailedReboot", + "msgId": 3, + "msgString": "Reboot failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/rftest_server_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/rftest_server_log_manifest.json new file mode 100644 index 0000000..e341b2e --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/rftest_server_log_manifest.json @@ -0,0 +1,247 @@ +{ + "version": "1.0", + "categoryId": 9, + "categoryName": "rftest_server", + "msgIds": [ + { + "msgName": "ErrorEnablingTlsForSocket", + "msgId": 1, + "msgString": "Error enabling TLS for socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorProcessingHttpRequest", + "msgId": 2, + "msgString": "Error processing http request.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorStartingThreadPool", + "msgId": 3, + "msgString": "Error starting thread pool.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorInitializingSsl", + "msgId": 4, + "msgString": "Error initializing SSL.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorBindingServerSocket", + "msgId": 5, + "msgString": "Error binding server socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorListeningToServerSocket", + "msgId": 6, + "msgString": "Error listening to server socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorAcceptingConnection", + "msgId": 7, + "msgString": "Error accepting connection.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorQueueingToThreadPool", + "msgId": 8, + "msgString": "Error queueing to thread pool.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorGettingInetAddr", + "msgId": 9, + "msgString": "Error getting inet addr for server socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "CannotReadRequestBody", + "msgId": 11, + "msgString": "Cannot read request body.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorProcessingRequest", + "msgId": 13, + "msgString": "Error processing http request.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorWritingResponse", + "msgId": 14, + "msgString": "Error writing http response.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NoContentLength", + "msgId": 15, + "msgString": "No Content Length specified in request.", + "msgPriority": "Error" + }, + { + "msgName": "InvalidContentLength", + "msgId": 16, + "msgString": "Invalid Content Length specified in request.", + "msgPriority": "Error" + }, + { + "msgName": "CannotCreateBuffer", + "msgId": 17, + "msgString": "Error creating buffer for request.", + "msgPriority": "Error" + }, + { + "msgName": "CannotParseRequestArgs", + "msgId": 18, + "msgString": "Cannot parse request args.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "ErrorValidatingRequestArgs", + "msgId": 19, + "msgString": "Error validating request args.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "TestCalledBeforeSetup", + "msgId": 20, + "msgString": "'rftest' called before 'setup' called.", + "msgPriority": "Error" + }, + { + "msgName": "SetupCannotGetNetworks", + "msgId": 21, + "msgString": "Setup cannot get network list.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SetupCannotDeleteNetwork", + "msgId": 22, + "msgString": "Setup cannot delete network.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "SetupCannotDisconnect", + "msgId": 23, + "msgString": "Setup cannot call disconnect.", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "integer" + } + ] + }, + { + "msgName": "ErrorFindingCertFiles", + "msgId": 24, + "msgString": "Error finding cert files.", + "msgPriority": "Error" + }, + { + "msgName": "WaitForDisconnectTimedOut", + "msgId": 25, + "msgString": "Timed out waiting for network disconnect.", + "msgPriority": "Error" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/skuser_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/skuser_log_manifest.json new file mode 100644 index 0000000..b594cab --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/skuser_log_manifest.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "categoryId": 33, + "categoryName": "skuser", + "msgIds": [ + { + "msgName": "Assert", + "msgId": 1092, + "msgString": "Assert occurred", + "msgPriority": "Error", + "params": [ + { + "paramName": "File", + "paramType": "string" + }, + { + "paramName": "Line", + "paramType": "integer" + }, + { + "paramName": "Function", + "paramType": "string" + }, + { + "paramName": "Assertion", + "paramType": "string" + } + ] + }, + { + "msgName": "PlutonSysCall", + "msgId": 1093, + "msgString": "Pluton Syscall", + "msgPriority": "Trace", + "params": [ + { + "paramName": "Id", + "paramType": "integer" + } + ], + "obsolete": true + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/spi_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/spi_log_manifest.json new file mode 100644 index 0000000..f9dbc67 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/spi_log_manifest.json @@ -0,0 +1,27 @@ +{ + "version": "1.0", + "categoryId": 24, + "categoryName": "spi", + "msgIds": [ + { + "msgName": "OpenFailure", + "msgId": 1, + "msgString": "Failed opening SPI device", + "msgPriority": "Error", + "params": [ + { + "paramName": "interfaceId", + "paramType": "integer" + }, + { + "paramName": "chipSelectId", + "paramType": "integer" + }, + { + "paramName": "error", + "paramType": "commonError" + } + ] + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/testagentd_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/testagentd_log_manifest.json new file mode 100644 index 0000000..a981b67 --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/testagentd_log_manifest.json @@ -0,0 +1,229 @@ +{ + "version": "1.0", + "categoryId": 5, + "categoryName": "testagentd", + "msgIds": [ + { + "msgName": "ThreadPoolError", + "msgId": 1, + "msgString": "Error starting thread pool.", + "msgPriority": "Error", + "params": [ + { + "paramName": "threadpool_errorcode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "AzspheresvcError", + "msgId": 2, + "msgString": "Error searching the 'azspheresvc' interface.", + "msgPriority": "Error", + "params": [ + { + "paramName": "azspheresvcAddr_errorcode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "SocketBindError", + "msgId": 3, + "msgString": "Unable to bind to socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SocketListenError", + "msgId": 4, + "msgString": "Unable to listen on socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SocketAcceptError", + "msgId": 5, + "msgString": "Error accepting connection.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "ThreadPoolQueueError", + "msgId": 6, + "msgString": "Error queuing to thread pool.", + "msgPriority": "Error", + "params": [ + { + "paramName": "threadpool_errorcode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NetSocketWriteError", + "msgId": 7, + "msgString": "Error writing to NetSocket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "netsocket_write_errorcode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "NetSocketReadError", + "msgId": 8, + "msgString": "Error reading from NetSocket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "netsocket_read_errorcode", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "SocketRecvError", + "msgId": 9, + "msgString": "Error during socket recv.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "UnexpectedSocketDeathError", + "msgId": 10, + "msgString": "Socket unexpectedly died.", + "msgPriority": "Error" + }, + { + "msgName": "PollError", + "msgId": 11, + "msgString": "Error using poll on file descriptors.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "OpenError", + "msgId": 12, + "msgString": "Error opening a path.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + }, + { + "paramName": "path", + "paramType": "string" + } + ] + }, + { + "msgName": "PipeError", + "msgId": 13, + "msgString": "Error returned from pipe.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "ForkAndExecError", + "msgId": 14, + "msgString": "Error occurred during call to ForkAndExec.", + "msgPriority": "Error", + "params": [ + { + "paramName": "forkandexec_errorcode", + "paramType": "commonError" + } + ] + }, + { + "msgName": "WaitpidError", + "msgId": 15, + "msgString": "Error occurred during call to waitpid.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SocketWriteError", + "msgId": 16, + "msgString": "Error occurred writing to socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ] + }, + { + "msgName": "SocketReadError", + "msgId": 17, + "msgString": "Error occurred reading from socket.", + "msgPriority": "Error", + "params": [ + { + "paramName": "c_errno", + "paramType": "integer" + } + ], + "obsolete": true + }, + { + "msgName": "UnexpectedSocketState", + "msgId": 18, + "msgString": "revents returned by poll were unexpected.", + "msgPriority": "Error", + "params": [ + { + "paramName": "revents", + "paramType": "integer" + } + ] + }, + { + "msgName": "NetworkingSocketUnavailable", + "msgId": 19, + "msgString": "Networking not ready, retrying...", + "msgPriority": "Info" + } + ] +} \ No newline at end of file diff --git a/ParseDeviceLog/23.05/log_manifests/uidmap_log_manifest.json b/ParseDeviceLog/23.05/log_manifests/uidmap_log_manifest.json new file mode 100644 index 0000000..5a7c20a --- /dev/null +++ b/ParseDeviceLog/23.05/log_manifests/uidmap_log_manifest.json @@ -0,0 +1,147 @@ +{ + "version": "1.0", + "categoryId": 14, + "categoryName": "uidmap", + "msgIds": [ + { + "msgName": "FailedToReadUidMap", + "msgId": 1, + "msgString": "Failed to read uid_map, resetting file.", + "msgPriority": "Info" + }, + { + "msgName": "CouldNotFindUidMap", + "msgId": 2, + "msgString": "Could not find uid_map", + "msgPriority": "Error" + }, + { + "msgName": "FailedToAddNewUser", + "msgId": 3, + "msgString": "Failed to add new user", + "msgPriority": "Error" + }, + { + "msgName": "BadFilePointer", + "msgId": 4, + "msgString": "Bad file pointer to uid_map", + "msgPriority": "Error" + }, + { + "msgName": "WriteUnsuccessful", + "msgId": 5, + "msgString": "Write to uid_map failed", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "BadFileFormat", + "msgId": 6, + "msgString": "uid_map has incorrect data format", + "msgPriority": "Error", + "obsolete": true + }, + { + "msgName": "InvalidUid", + "msgId": 7, + "msgString": "uid_map contains an invalid uid", + "msgPriority": "Info" + }, + { + "msgName": "ResettingFile", + "msgId": 8, + "msgString": "uid_map corruption detected, resetting file", + "msgPriority": "Info" + }, + { + "msgName": "ErrorSettingInstance", + "msgId": 9, + "msgString": "Failed to create UidMapParser instance", + "msgPriority": "Error" + }, + { + "msgName": "ErrorUpdatingUidMapPermissions", + "msgId": 11, + "msgString": "Failed to update uid_map mode", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "StatFailedOnUidMap", + "msgId": 12, + "msgString": "Failed to stat uid_map", + "msgPriority": "Error", + "params": [ + { + "paramName": "errorValue", + "paramType": "commonError" + } + ] + }, + { + "msgName": "UidMapWriteUnsuccessful", + "msgId": 13, + "msgString": "Write to uid_map failed", + "msgPriority": "Error", + "params": [ + { + "paramName": "_errno", + "paramType": "integer" + }, + { + "paramName": "stringSize", + "paramType": "integer" + } + ] + }, + { + "msgName": "UidMapBadFileFormat", + "msgId": 14, + "msgString": "uid_map has incorrect data format", + "msgPriority": "Error", + "params": [ + { + "paramName": "data", + "paramType": "string" + } + ] + }, + { + "msgName": "UidMapWriteTooShort", + "msgId": 15, + "msgString": "uid_map fwrite too short", + "msgPriority": "Error", + "params": [ + { + "paramName": "actual_length", + "paramType": "integer" + }, + { + "paramName": "expected_length", + "paramType": "integer" + } + ] + }, + { + "msgName": "WritingToFile", + "msgId": 16, + "msgString": "uid_map writing", + "msgPriority": "Info", + "params": [ + { + "paramName": "mode", + "paramType": "string" + }, + { + "paramName": "length", + "paramType": "integer" + } + ] + } + ] +} \ No newline at end of file