diff options
author | Oleh Kopeykin <78897971+OlehKopeykin@users.noreply.github.com> | 2024-04-17 21:49:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 18:49:31 +0000 |
commit | 86466819a9138811474466b77c67ad61b826bfbd (patch) | |
tree | 545bf8347096c1d54a6668972435f8ce955d1748 /app | |
parent | 882aba8228be5da4e097b053d7ef57f548594286 (diff) |
Fix obtaining pgp identifiers to decrypting file. (#3009)
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/app/passwordstore/ui/autofill/AutofillDecryptActivity.kt | 43 | ||||
-rw-r--r-- | app/src/main/java/app/passwordstore/ui/crypto/DecryptActivity.kt | 14 |
2 files changed, 40 insertions, 17 deletions
diff --git a/app/src/main/java/app/passwordstore/ui/autofill/AutofillDecryptActivity.kt b/app/src/main/java/app/passwordstore/ui/autofill/AutofillDecryptActivity.kt index fdc797ac..1af46a89 100644 --- a/app/src/main/java/app/passwordstore/ui/autofill/AutofillDecryptActivity.kt +++ b/app/src/main/java/app/passwordstore/ui/autofill/AutofillDecryptActivity.kt @@ -14,8 +14,10 @@ import android.view.autofill.AutofillManager import androidx.fragment.app.setFragmentResultListener import androidx.lifecycle.lifecycleScope import app.passwordstore.R +import app.passwordstore.crypto.PGPIdentifier import app.passwordstore.data.crypto.PGPPassphraseCache import app.passwordstore.data.passfile.PasswordEntry +import app.passwordstore.data.repo.PasswordRepository import app.passwordstore.ui.crypto.BasePGPActivity import app.passwordstore.ui.crypto.PasswordDialog import app.passwordstore.util.auth.BiometricAuthenticator @@ -92,7 +94,10 @@ class AutofillDecryptActivity : BasePGPActivity() { action: AutofillAction, authResult: Result, ) { - val gpgIdentifiers = getPGPIdentifiers("") ?: return + val gpgIdentifiers = + getPGPIdentifiers( + getParentPath(filePath, PasswordRepository.getRepositoryDirectory().toString()) + ) ?: return lifecycleScope.launch(dispatcherProvider.main()) { when (authResult) { // Internally handled by the prompt dialog @@ -101,7 +106,8 @@ class AutofillDecryptActivity : BasePGPActivity() { is Result.CanceledBySystem, is Result.CanceledByUser, is Result.Failure, - is Result.HardwareUnavailableOrDisabled -> askPassphrase(filePath, clientState, action) + is Result.HardwareUnavailableOrDisabled -> + askPassphrase(filePath, gpgIdentifiers, clientState, action) // is Result.Success -> { val cachedPassphrase = @@ -110,23 +116,34 @@ class AutofillDecryptActivity : BasePGPActivity() { gpgIdentifiers.first() ) if (cachedPassphrase != null) { - decryptWithPassphrase(File(filePath), clientState, action, cachedPassphrase) + decryptWithPassphrase( + File(filePath), + gpgIdentifiers, + clientState, + action, + cachedPassphrase + ) } else { - askPassphrase(filePath, clientState, action) + askPassphrase(filePath, gpgIdentifiers, clientState, action) } } } } } - private fun askPassphrase(filePath: String, clientState: Bundle, action: AutofillAction) { + private fun askPassphrase( + filePath: String, + identifiers: List<PGPIdentifier>, + clientState: Bundle, + action: AutofillAction, + ) { val dialog = PasswordDialog() dialog.show(supportFragmentManager, "PASSWORD_DIALOG") dialog.setFragmentResultListener(PasswordDialog.PASSWORD_RESULT_KEY) { key, bundle -> if (key == PasswordDialog.PASSWORD_RESULT_KEY) { val value = bundle.getString(PasswordDialog.PASSWORD_RESULT_KEY)!! lifecycleScope.launch(dispatcherProvider.main()) { - decryptWithPassphrase(File(filePath), clientState, action, value) + decryptWithPassphrase(File(filePath), identifiers, clientState, action, value) } } } @@ -134,11 +151,12 @@ class AutofillDecryptActivity : BasePGPActivity() { private suspend fun decryptWithPassphrase( filePath: File, + identifiers: List<PGPIdentifier>, clientState: Bundle, action: AutofillAction, password: String, ) { - val credentials = decryptCredential(filePath, password) + val credentials = decryptCredential(filePath, password, identifiers) if (credentials == null) { setResult(RESULT_CANCELED) } else { @@ -159,8 +177,11 @@ class AutofillDecryptActivity : BasePGPActivity() { withContext(dispatcherProvider.main()) { finish() } } - private suspend fun decryptCredential(file: File, password: String): Credentials? { - val gpgIdentifiers = getPGPIdentifiers("") ?: return null + private suspend fun decryptCredential( + file: File, + password: String, + identifiers: List<PGPIdentifier>, + ): Credentials? { runCatching { file.readBytes().inputStream() } .onFailure { e -> logcat(ERROR) { e.asLog("File to decrypt not found") } @@ -172,7 +193,7 @@ class AutofillDecryptActivity : BasePGPActivity() { val outputStream = ByteArrayOutputStream() repository.decrypt( password, - gpgIdentifiers, + identifiers, encryptedInput, outputStream, ) @@ -185,7 +206,7 @@ class AutofillDecryptActivity : BasePGPActivity() { } .onSuccess { result -> return runCatching { - passphraseCache.cachePassphrase(this, gpgIdentifiers.first(), password) + passphraseCache.cachePassphrase(this, identifiers.first(), password) val entry = passwordEntryFactory.create(result.toByteArray()) AutofillPreferences.credentialsFromStoreEntry(this, file, entry, directoryStructure) } diff --git a/app/src/main/java/app/passwordstore/ui/crypto/DecryptActivity.kt b/app/src/main/java/app/passwordstore/ui/crypto/DecryptActivity.kt index d36c1a9f..b222f2ea 100644 --- a/app/src/main/java/app/passwordstore/ui/crypto/DecryptActivity.kt +++ b/app/src/main/java/app/passwordstore/ui/crypto/DecryptActivity.kt @@ -154,7 +154,7 @@ class DecryptActivity : BasePGPActivity() { } private fun decrypt(isError: Boolean, authResult: BiometricResult) { - val gpgIdentifiers = getPGPIdentifiers("") ?: return + val gpgIdentifiers = getPGPIdentifiers(relativeParentPath) ?: return lifecycleScope.launch(dispatcherProvider.main()) { when (authResult) { // Internally handled by the prompt dialog @@ -199,11 +199,13 @@ class DecryptActivity : BasePGPActivity() { val passphrase = bundle.getString(PasswordDialog.PASSWORD_RESULT_KEY)!! lifecycleScope.launch(dispatcherProvider.main()) { decryptWithPassphrase(passphrase, gpgIdentifiers, authResult) { - passphraseCache.cachePassphrase( - this@DecryptActivity, - gpgIdentifiers.first(), - passphrase, - ) + if (authResult is BiometricResult.Success) { + passphraseCache.cachePassphrase( + this@DecryptActivity, + gpgIdentifiers.first(), + passphrase, + ) + } } } } |