nkk71

WIP: Timeout for decrypt

Jan 20th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. PS1
  2. ===
  3. I:operation_start: 'Decrypt'
  4. Decrypt_Device Test 1
  5. cryptfs_check_passwd: going to sleep for 35 and return with 0
  6. E:Decrypt took too long, killing process
  7. I:Child process killed successfully
  8. pwret=-1
  9. Decrypt_Device Test 2
  10. cryptfs_check_passwd: going to sleep for 5 and return with -7
  11. cryptfs_check_passwd: sleep ended, returning with -7
  12. pwret=63744
  13. Decrypt_Device Test 3
  14. cryptfs_check_passwd: going to sleep for 1 and return with 2
  15. cryptfs_check_passwd: sleep ended, returning with 2
  16. pwret=512
  17. Decrypt_Device Test 4
  18. cryptfs_check_passwd: going to sleep for 35 and return with 22
  19. I:TWFunc::Set_Brightness: Setting brightness control to 5
  20. I:TWFunc::Set_Brightness: Setting brightness control to 0
  21. E:Decrypt took too long, killing process
  22. I:Child process killed successfully
  23. pwret=-1
  24. Failed to decrypt data.
  25.  
  26.  
  27. test 1 with WEXITSTATUS
  28. =======================
  29. I:operation_start: 'Decrypt'
  30. Decrypt_Device Test 1
  31. cryptfs_check_passwd: going to sleep for 35 and return with 0
  32. E:Decrypt took too long, killing process
  33. I:Child process killed successfully
  34. pwret=-1
  35. Decrypt_Device Test 2
  36. cryptfs_check_passwd: going to sleep for 5 and return with -7
  37. cryptfs_check_passwd: sleep ended, returning with -7
  38. Decrypt process ended with ERROR: 249
  39. pwret=-1
  40. Decrypt_Device Test 3
  41. cryptfs_check_passwd: going to sleep for 1 and return with 2
  42. cryptfs_check_passwd: sleep ended, returning with 2
  43. Decrypt process ended with ERROR: 2
  44. pwret=-1
  45. Decrypt_Device Test 4
  46. cryptfs_check_passwd: going to sleep for 35 and return with 22
  47. I:TWFunc::Set_Brightness: Setting brightness control to 5
  48. I:TWFunc::Set_Brightness: Setting brightness control to 0
  49. E:Decrypt took too long, killing process
  50. I:Child process killed successfully
  51. pwret=-1
  52. Failed to decrypt data.
  53.  
  54. test 2 with WEXITSTATUS and sign extending res
  55. ==============================================
  56. Decrypt_Device Test 1
  57. cryptfs_check_passwd: going to sleep for 35 and return with 0
  58. E:Decrypt took too long, killing process
  59. I:Child process killed successfully
  60. pwret=-1
  61. Decrypt_Device Test 2
  62. cryptfs_check_passwd: going to sleep for 5 and return with -7
  63. cryptfs_check_passwd: sleep ended, returning with -7
  64. pwret=-7
  65. Decrypt_Device Test 3
  66. cryptfs_check_passwd: going to sleep for 1 and return with 2
  67. cryptfs_check_passwd: sleep ended, returning with 2
  68. pwret=2
  69. Decrypt_Device Test 4
  70. cryptfs_check_passwd: going to sleep for 35 and return with 22
  71. I:TWFunc::Set_Brightness: Setting brightness control to 5
  72. I:TWFunc::Set_Brightness: Setting brightness control to 255
  73. E:Decrypt took too long, killing process
  74. I:Child process killed successfully
  75. pwret=-1
  76. Decrypt_Device Test 5
  77. cryptfs_check_passwd: going to sleep for 2 and return with 0
  78. cryptfs_check_passwd: sleep ended, returning with 0
  79. pwret=0
  80. E:Error retrieving decrypted data block device.
  81. tw_get_context failed to get selinux context
  82. I:Failed to get default contexts and file mode for storage files.
  83. E:Cannot decrypt adopted storage because /data will not mount
Add Comment
Please, Sign In to add comment