2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.crypto;
|
2014-02-27 23:22:56 +00:00
|
|
|
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.app.PendingIntent;
|
|
|
|
import android.content.Intent;
|
2021-01-18 17:26:46 +00:00
|
|
|
import androidx.annotation.StringRes;
|
2016-05-05 11:17:04 +00:00
|
|
|
import android.util.Log;
|
2015-07-20 12:26:29 +00:00
|
|
|
|
2016-08-30 11:12:09 +00:00
|
|
|
import org.openintents.openpgp.OpenPgpError;
|
2015-07-20 12:26:29 +00:00
|
|
|
import org.openintents.openpgp.OpenPgpSignatureResult;
|
|
|
|
import org.openintents.openpgp.util.OpenPgpApi;
|
|
|
|
import org.openintents.openpgp.util.OpenPgpApi.IOpenPgpCallback;
|
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
import java.io.ByteArrayInputStream;
|
|
|
|
import java.io.ByteArrayOutputStream;
|
2014-05-06 19:34:30 +00:00
|
|
|
import java.io.FileInputStream;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
2014-02-27 23:22:56 +00:00
|
|
|
import java.io.InputStream;
|
2014-05-01 20:33:49 +00:00
|
|
|
import java.io.OutputStream;
|
2014-02-27 23:22:56 +00:00
|
|
|
|
2016-05-05 11:17:04 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-05-12 12:59:46 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-04-03 15:39:57 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-05-07 10:33:55 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
2014-05-22 18:54:54 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-10-14 10:02:48 +00:00
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
2014-05-01 20:33:49 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
2015-11-25 19:47:02 +00:00
|
|
|
import eu.siacs.conversations.persistance.FileBackend;
|
2014-05-06 19:34:30 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2014-05-12 12:59:46 +00:00
|
|
|
import eu.siacs.conversations.ui.UiCallback;
|
2014-02-27 23:22:56 +00:00
|
|
|
|
|
|
|
public class PgpEngine {
|
|
|
|
private OpenPgpApi api;
|
2014-05-06 19:34:30 +00:00
|
|
|
private XmppConnectionService mXmppConnectionService;
|
2014-02-27 23:22:56 +00:00
|
|
|
|
2014-05-06 19:34:30 +00:00
|
|
|
public PgpEngine(OpenPgpApi api, XmppConnectionService service) {
|
2014-02-27 23:22:56 +00:00
|
|
|
this.api = api;
|
2014-05-06 19:34:30 +00:00
|
|
|
this.mXmppConnectionService = service;
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 10:44:23 +00:00
|
|
|
private static void logError(Account account, OpenPgpError error) {
|
|
|
|
if (error != null) {
|
2018-10-25 16:16:02 +00:00
|
|
|
error.describeContents();
|
|
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid().toString() + ": OpenKeychain error '" + error.getMessage() + "' code=" + error.getErrorId()+" class="+error.getClass().getName());
|
2018-02-27 10:44:23 +00:00
|
|
|
} else {
|
2018-03-05 17:30:40 +00:00
|
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid().toString() + ": OpenKeychain error with no message");
|
2018-02-27 10:44:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 16:44:11 +00:00
|
|
|
public void encrypt(final Message message, final UiCallback<Message> callback) {
|
2014-05-06 19:34:30 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_ENCRYPT);
|
2018-04-26 11:22:31 +00:00
|
|
|
final Conversation conversation = (Conversation) message.getConversation();
|
2015-11-26 16:44:11 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
long[] keys = {
|
|
|
|
conversation.getContact().getPgpKeyId(),
|
|
|
|
conversation.getAccount().getPgpId()
|
|
|
|
};
|
2014-05-22 18:54:54 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_IDS, keys);
|
|
|
|
} else {
|
2015-11-26 16:44:11 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_IDS, conversation.getMucOptions().getPgpKeyIds());
|
2014-05-22 18:54:54 +00:00
|
|
|
}
|
2014-06-07 11:25:27 +00:00
|
|
|
|
2015-06-29 13:38:16 +00:00
|
|
|
if (!message.needsUploading()) {
|
2014-05-08 15:31:53 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
2015-06-29 13:38:16 +00:00
|
|
|
String body;
|
|
|
|
if (message.hasFileOnRemoteHost()) {
|
2015-06-30 15:15:02 +00:00
|
|
|
body = message.getFileParams().url.toString();
|
2015-06-29 13:38:16 +00:00
|
|
|
} else {
|
|
|
|
body = message.getBody();
|
|
|
|
}
|
|
|
|
InputStream is = new ByteArrayInputStream(body.getBytes());
|
2014-05-08 15:31:53 +00:00
|
|
|
final OutputStream os = new ByteArrayOutputStream();
|
2018-02-27 10:44:23 +00:00
|
|
|
api.executeApiAsync(params, is, os, result -> {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, OpenPgpApi.RESULT_CODE_ERROR)) {
|
2014-05-06 19:34:30 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
2014-08-13 09:21:07 +00:00
|
|
|
try {
|
|
|
|
os.flush();
|
|
|
|
StringBuilder encryptedMessageBody = new StringBuilder();
|
|
|
|
String[] lines = os.toString().split("\n");
|
2014-09-03 13:33:44 +00:00
|
|
|
for (int i = 2; i < lines.length - 1; ++i) {
|
|
|
|
if (!lines[i].contains("Version")) {
|
|
|
|
encryptedMessageBody.append(lines[i].trim());
|
|
|
|
}
|
2014-08-13 09:21:07 +00:00
|
|
|
}
|
2018-02-27 10:44:23 +00:00
|
|
|
message.setEncryptedBody(encryptedMessageBody.toString());
|
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTED);
|
|
|
|
mXmppConnectionService.sendMessage(message);
|
2014-08-13 09:21:07 +00:00
|
|
|
callback.success(message);
|
|
|
|
} catch (IOException e) {
|
|
|
|
callback.error(R.string.openpgp_error, message);
|
2014-05-08 15:31:53 +00:00
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-05-06 19:34:30 +00:00
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
2019-06-26 15:40:05 +00:00
|
|
|
callback.userInputRequired(result.getParcelableExtra(OpenPgpApi.RESULT_INTENT), message);
|
2014-05-06 19:34:30 +00:00
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2018-10-25 16:16:02 +00:00
|
|
|
OpenPgpError error = result.getParcelableExtra(OpenPgpApi.RESULT_ERROR);
|
|
|
|
String errorMessage = error != null ? error.getMessage() : null;
|
|
|
|
@StringRes final int res;
|
|
|
|
if (errorMessage != null && errorMessage.startsWith("Bad key for encryption")) {
|
|
|
|
res = R.string.bad_key_for_encryption;
|
|
|
|
} else {
|
|
|
|
res = R.string.openpgp_error;
|
|
|
|
}
|
|
|
|
logError(conversation.getAccount(), error);
|
|
|
|
callback.error(res, message);
|
2014-05-06 19:34:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2015-06-29 13:38:16 +00:00
|
|
|
} else {
|
2014-05-08 15:31:53 +00:00
|
|
|
try {
|
2014-10-13 23:06:45 +00:00
|
|
|
DownloadableFile inputFile = this.mXmppConnectionService
|
2014-10-15 20:08:13 +00:00
|
|
|
.getFileBackend().getFile(message, true);
|
2014-10-13 23:06:45 +00:00
|
|
|
DownloadableFile outputFile = this.mXmppConnectionService
|
2014-10-15 20:08:13 +00:00
|
|
|
.getFileBackend().getFile(message, false);
|
2014-11-14 02:27:18 +00:00
|
|
|
outputFile.getParentFile().mkdirs();
|
2014-05-08 15:31:53 +00:00
|
|
|
outputFile.createNewFile();
|
2015-11-25 19:47:02 +00:00
|
|
|
final InputStream is = new FileInputStream(inputFile);
|
|
|
|
final OutputStream os = new FileOutputStream(outputFile);
|
2018-02-27 10:44:23 +00:00
|
|
|
api.executeApiAsync(params, is, os, result -> {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, OpenPgpApi.RESULT_CODE_ERROR)) {
|
2014-05-08 15:31:53 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
2015-11-25 19:47:02 +00:00
|
|
|
try {
|
|
|
|
os.flush();
|
|
|
|
} catch (IOException ignored) {
|
|
|
|
//ignored
|
|
|
|
}
|
|
|
|
FileBackend.close(os);
|
2018-02-27 10:44:23 +00:00
|
|
|
mXmppConnectionService.sendMessage(message);
|
2014-06-07 11:25:27 +00:00
|
|
|
callback.success(message);
|
2014-05-08 15:31:53 +00:00
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
2019-06-26 15:40:05 +00:00
|
|
|
callback.userInputRequired(result.getParcelableExtra(OpenPgpApi.RESULT_INTENT), message);
|
2014-05-08 15:31:53 +00:00
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2018-02-27 10:44:23 +00:00
|
|
|
logError(conversation.getAccount(), result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
|
2014-06-07 11:25:27 +00:00
|
|
|
callback.error(R.string.openpgp_error, message);
|
2014-05-08 15:31:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2014-11-05 20:55:47 +00:00
|
|
|
} catch (final IOException e) {
|
2014-10-27 20:47:41 +00:00
|
|
|
callback.error(R.string.openpgp_error, message);
|
2014-05-08 15:31:53 +00:00
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-07 11:25:27 +00:00
|
|
|
|
2014-05-01 20:33:49 +00:00
|
|
|
public long fetchKeyId(Account account, String status, String signature) {
|
|
|
|
if ((signature == null) || (api == null)) {
|
2014-03-07 23:31:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
if (status == null) {
|
|
|
|
status = "";
|
2014-03-07 23:31:29 +00:00
|
|
|
}
|
2014-11-05 20:55:47 +00:00
|
|
|
final StringBuilder pgpSig = new StringBuilder();
|
2014-02-27 23:22:56 +00:00
|
|
|
pgpSig.append("-----BEGIN PGP SIGNED MESSAGE-----");
|
|
|
|
pgpSig.append('\n');
|
|
|
|
pgpSig.append('\n');
|
|
|
|
pgpSig.append(status);
|
|
|
|
pgpSig.append('\n');
|
|
|
|
pgpSig.append("-----BEGIN PGP SIGNATURE-----");
|
|
|
|
pgpSig.append('\n');
|
|
|
|
pgpSig.append('\n');
|
|
|
|
pgpSig.append(signature.replace("\n", "").trim());
|
|
|
|
pgpSig.append('\n');
|
|
|
|
pgpSig.append("-----END PGP SIGNATURE-----");
|
2014-03-03 04:01:02 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_DECRYPT_VERIFY);
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
2014-02-27 23:22:56 +00:00
|
|
|
InputStream is = new ByteArrayInputStream(pgpSig.toString().getBytes());
|
|
|
|
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
2014-03-03 04:01:02 +00:00
|
|
|
Intent result = api.executeApi(params, is, os);
|
2014-05-01 20:33:49 +00:00
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE,
|
|
|
|
OpenPgpApi.RESULT_CODE_ERROR)) {
|
2018-02-27 10:44:23 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
OpenPgpSignatureResult sigResult = result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_SIGNATURE);
|
|
|
|
if (sigResult != null) {
|
|
|
|
return sigResult.getKeyId();
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
return 0;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2018-10-25 16:16:02 +00:00
|
|
|
logError(account, result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
|
2014-05-01 20:33:49 +00:00
|
|
|
return 0;
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
public void chooseKey(final Account account, final UiCallback<Account> callback) {
|
|
|
|
Intent p = new Intent();
|
|
|
|
p.setAction(OpenPgpApi.ACTION_GET_SIGN_KEY_ID);
|
2018-02-27 10:44:23 +00:00
|
|
|
api.executeApiAsync(p, null, null, result -> {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, 0)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
callback.success(account);
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
2019-06-26 15:40:05 +00:00
|
|
|
callback.userInputRequired(result.getParcelableExtra(OpenPgpApi.RESULT_INTENT), account);
|
2018-02-27 10:44:23 +00:00
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
|
|
|
logError(account, result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
|
|
|
|
callback.error(R.string.openpgp_error, account);
|
2015-10-29 13:03:41 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-03-04 10:43:58 +00:00
|
|
|
public void generateSignature(Intent intent, final Account account, String status, final UiCallback<String> callback) {
|
2016-05-05 11:17:04 +00:00
|
|
|
if (account.getPgpId() == 0) {
|
2015-10-29 13:03:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-12-05 18:16:53 +00:00
|
|
|
Intent params = intent == null ? new Intent() : intent;
|
2015-10-29 13:03:41 +00:00
|
|
|
params.setAction(OpenPgpApi.ACTION_CLEARTEXT_SIGN);
|
2014-03-03 04:01:02 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
2015-10-29 13:03:41 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_SIGN_KEY_ID, account.getPgpId());
|
2014-02-27 23:22:56 +00:00
|
|
|
InputStream is = new ByteArrayInputStream(status.getBytes());
|
2014-05-01 20:33:49 +00:00
|
|
|
final OutputStream os = new ByteArrayOutputStream();
|
2018-03-05 17:30:40 +00:00
|
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": signing status message \"" + status + "\"");
|
2018-02-27 10:44:23 +00:00
|
|
|
api.executeApiAsync(params, is, os, result -> {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, 0)) {
|
2014-05-01 20:33:49 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
StringBuilder signatureBuilder = new StringBuilder();
|
2014-09-03 11:05:22 +00:00
|
|
|
try {
|
|
|
|
os.flush();
|
|
|
|
String[] lines = os.toString().split("\n");
|
|
|
|
boolean sig = false;
|
2014-09-08 21:58:37 +00:00
|
|
|
for (String line : lines) {
|
2014-09-03 11:05:22 +00:00
|
|
|
if (sig) {
|
|
|
|
if (line.contains("END PGP SIGNATURE")) {
|
|
|
|
sig = false;
|
|
|
|
} else {
|
2014-09-03 13:33:44 +00:00
|
|
|
if (!line.contains("Version")) {
|
|
|
|
signatureBuilder.append(line.trim());
|
|
|
|
}
|
2014-09-03 11:05:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (line.contains("BEGIN PGP SIGNATURE")) {
|
|
|
|
sig = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
2018-03-04 10:43:58 +00:00
|
|
|
callback.error(R.string.openpgp_error, null);
|
2014-09-03 11:05:22 +00:00
|
|
|
return;
|
2014-05-01 20:33:49 +00:00
|
|
|
}
|
2018-03-04 10:43:58 +00:00
|
|
|
callback.success(signatureBuilder.toString());
|
2014-05-01 20:33:49 +00:00
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
2019-06-26 15:40:05 +00:00
|
|
|
callback.userInputRequired(result.getParcelableExtra(OpenPgpApi.RESULT_INTENT), status);
|
2014-05-01 20:33:49 +00:00
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2016-10-19 09:53:55 +00:00
|
|
|
OpenPgpError error = result.getParcelableExtra(OpenPgpApi.RESULT_ERROR);
|
|
|
|
if (error != null && "signing subkey not found!".equals(error.getMessage())) {
|
2018-03-04 10:43:58 +00:00
|
|
|
callback.error(0, null);
|
2016-10-19 09:53:55 +00:00
|
|
|
} else {
|
|
|
|
logError(account, error);
|
|
|
|
callback.error(R.string.unable_to_connect_to_keychain, null);
|
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
});
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
2014-06-07 11:25:27 +00:00
|
|
|
|
|
|
|
public void hasKey(final Contact contact, final UiCallback<Contact> callback) {
|
2014-05-01 20:33:49 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_GET_KEY);
|
2014-05-07 10:33:55 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_ID, contact.getPgpKeyId());
|
2014-05-09 18:47:03 +00:00
|
|
|
api.executeApiAsync(params, null, null, new IOpenPgpCallback() {
|
2014-06-07 11:25:27 +00:00
|
|
|
|
2014-05-01 20:33:49 +00:00
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, 0)) {
|
2018-02-27 10:44:23 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
callback.success(contact);
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
2019-06-26 15:40:05 +00:00
|
|
|
callback.userInputRequired(result.getParcelableExtra(OpenPgpApi.RESULT_INTENT), contact);
|
2018-02-27 10:44:23 +00:00
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
|
|
|
logError(contact.getAccount(), result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
|
|
|
|
callback.error(R.string.openpgp_error, contact);
|
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
}
|
|
|
|
});
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
2014-06-07 11:25:27 +00:00
|
|
|
|
2016-08-30 11:12:09 +00:00
|
|
|
public PendingIntent getIntentForKey(long pgpKeyId) {
|
2014-06-01 08:22:42 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_GET_KEY);
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_ID, pgpKeyId);
|
|
|
|
Intent result = api.executeApi(params, null, null);
|
2016-08-30 11:12:09 +00:00
|
|
|
return (PendingIntent) result.getParcelableExtra(OpenPgpApi.RESULT_INTENT);
|
2014-06-01 08:22:42 +00:00
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|