2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.crypto;
|
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.FileNotFoundException;
|
|
|
|
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
|
|
|
|
|
|
|
import org.openintents.openpgp.OpenPgpError;
|
|
|
|
import org.openintents.openpgp.OpenPgpSignatureResult;
|
|
|
|
import org.openintents.openpgp.util.OpenPgpApi;
|
2014-05-01 20:33:49 +00:00
|
|
|
import org.openintents.openpgp.util.OpenPgpApi.IOpenPgpCallback;
|
2014-02-27 23:22:56 +00:00
|
|
|
|
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-05-01 20:33:49 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
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-05-06 19:34:30 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.JingleFile;
|
2014-02-27 23:22:56 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-03-03 04:01:02 +00:00
|
|
|
import android.content.Intent;
|
2014-05-06 19:34:30 +00:00
|
|
|
import android.graphics.BitmapFactory;
|
2014-04-03 15:39:57 +00:00
|
|
|
import android.util.Log;
|
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
|
|
|
}
|
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
public void decrypt(final Message message, final UiCallback callback) {
|
2014-05-06 19:34:30 +00:00
|
|
|
Log.d("xmppService","decrypting message "+message.getUuid());
|
2014-03-03 04:01:02 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_DECRYPT_VERIFY);
|
2014-05-01 20:33:49 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, message
|
|
|
|
.getConversation().getAccount().getJid());
|
2014-05-06 19:34:30 +00:00
|
|
|
if (message.getType() == Message.TYPE_TEXT) {
|
|
|
|
InputStream is = new ByteArrayInputStream(message.getBody().getBytes());
|
|
|
|
final OutputStream os = new ByteArrayOutputStream();
|
|
|
|
api.executeApiAsync(params, is, os, new IOpenPgpCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE,
|
|
|
|
OpenPgpApi.RESULT_CODE_ERROR)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
message.setBody(os.toString());
|
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTED);
|
|
|
|
callback.success();
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
callback.userInputRequried((PendingIntent) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.openpgp_error);
|
2014-05-06 19:34:30 +00:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else if (message.getType() == Message.TYPE_IMAGE) {
|
|
|
|
try {
|
|
|
|
final JingleFile inputFile = this.mXmppConnectionService.getFileBackend().getJingleFile(message, false);
|
|
|
|
final JingleFile outputFile = this.mXmppConnectionService.getFileBackend().getJingleFile(message,true);
|
|
|
|
outputFile.createNewFile();
|
|
|
|
InputStream is = new FileInputStream(inputFile);
|
|
|
|
OutputStream os = new FileOutputStream(outputFile);
|
|
|
|
api.executeApiAsync(params, is, os, new IOpenPgpCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE,
|
|
|
|
OpenPgpApi.RESULT_CODE_ERROR)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
|
|
|
BitmapFactory.decodeFile(outputFile.getAbsolutePath(),options);
|
|
|
|
int imageHeight = options.outHeight;
|
|
|
|
int imageWidth = options.outWidth;
|
|
|
|
message.setBody(""+outputFile.getSize()+","+imageWidth+","+imageHeight);
|
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTED);
|
|
|
|
PgpEngine.this.mXmppConnectionService.updateMessage(message);
|
|
|
|
PgpEngine.this.mXmppConnectionService.updateUi(message.getConversation(), false);
|
|
|
|
callback.success();
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
callback.userInputRequried((PendingIntent) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.openpgp_error);
|
2014-05-06 19:34:30 +00:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (FileNotFoundException e) {
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.error_decrypting_file);
|
2014-05-06 19:34:30 +00:00
|
|
|
} catch (IOException e) {
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.error_decrypting_file);
|
2014-05-06 19:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
public void encrypt(final Message message,final UiCallback callback) {
|
2014-05-22 18:54:54 +00:00
|
|
|
|
2014-05-06 19:34:30 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_ENCRYPT);
|
2014-05-22 18:54:54 +00:00
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
long[] keys = { message.getConversation().getContact().getPgpKeyId() };
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_IDS, keys);
|
|
|
|
} else {
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_IDS, message.getConversation().getMucOptions().getPgpKeyIds());
|
|
|
|
}
|
2014-05-08 15:31:53 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, message.getConversation().getAccount().getJid());
|
2014-05-06 19:34:30 +00:00
|
|
|
|
2014-05-08 15:31:53 +00:00
|
|
|
if (message.getType() == Message.TYPE_TEXT) {
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
2014-05-06 19:34:30 +00:00
|
|
|
|
2014-05-08 15:31:53 +00:00
|
|
|
InputStream is = new ByteArrayInputStream(message.getBody().getBytes());
|
|
|
|
final OutputStream os = new ByteArrayOutputStream();
|
2014-05-06 19:34:30 +00:00
|
|
|
api.executeApiAsync(params, is, os, new IOpenPgpCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE,
|
|
|
|
OpenPgpApi.RESULT_CODE_ERROR)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
2014-05-08 15:31:53 +00:00
|
|
|
StringBuilder encryptedMessageBody = new StringBuilder();
|
|
|
|
String[] lines = os.toString().split("\n");
|
|
|
|
for (int i = 3; i < lines.length - 1; ++i) {
|
|
|
|
encryptedMessageBody.append(lines[i].trim());
|
|
|
|
}
|
|
|
|
message.setEncryptedBody(encryptedMessageBody.toString());
|
2014-05-06 19:34:30 +00:00
|
|
|
callback.success();
|
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
callback.userInputRequried((PendingIntent) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
|
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.openpgp_error);
|
2014-05-06 19:34:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-05-08 15:31:53 +00:00
|
|
|
} else if (message.getType() == Message.TYPE_IMAGE) {
|
|
|
|
try {
|
|
|
|
JingleFile inputFile = this.mXmppConnectionService.getFileBackend().getJingleFile(message, true);
|
|
|
|
JingleFile outputFile = this.mXmppConnectionService.getFileBackend().getJingleFile(message, false);
|
|
|
|
outputFile.createNewFile();
|
|
|
|
InputStream is = new FileInputStream(inputFile);
|
|
|
|
OutputStream os = new FileOutputStream(outputFile);
|
|
|
|
api.executeApiAsync(params, is, os, new IOpenPgpCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE,
|
|
|
|
OpenPgpApi.RESULT_CODE_ERROR)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
callback.success();
|
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
callback.userInputRequried((PendingIntent) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
|
|
|
|
break;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.openpgp_error);
|
2014-05-08 15:31:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
Log.d("xmppService","file not found: "+e.getMessage());
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.d("xmppService","io exception during file encrypt");
|
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-08 15:31:53 +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-02-27 23:22:56 +00:00
|
|
|
StringBuilder pgpSig = new StringBuilder();
|
|
|
|
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-05-01 20:33:49 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, account.getJid());
|
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)) {
|
2014-03-03 04:01:02 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
2014-05-01 20:33:49 +00:00
|
|
|
OpenPgpSignatureResult sigResult = result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_SIGNATURE);
|
|
|
|
if (sigResult != null) {
|
2014-03-07 23:31:29 +00:00
|
|
|
return sigResult.getKeyId();
|
2014-05-01 20:33:49 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
2014-03-07 23:31:29 +00:00
|
|
|
}
|
2014-03-03 04:01:02 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
2014-05-01 20:33:49 +00:00
|
|
|
return 0;
|
2014-03-03 04:01:02 +00:00
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-07 10:33:55 +00:00
|
|
|
Log.d("xmppService","openpgp error: "+((OpenPgpError) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_ERROR)).getMessage());
|
2014-05-01 20:33:49 +00:00
|
|
|
return 0;
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-01 20:33:49 +00:00
|
|
|
public void generateSignature(final Account account, String status,
|
2014-05-12 12:59:46 +00:00
|
|
|
final UiCallback callback) {
|
2014-03-03 04:01:02 +00:00
|
|
|
Intent params = new Intent();
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
|
|
|
params.setAction(OpenPgpApi.ACTION_SIGN);
|
2014-04-25 21:14:43 +00:00
|
|
|
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, account.getJid());
|
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();
|
|
|
|
api.executeApiAsync(params, is, os, new IOpenPgpCallback() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, 0)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
StringBuilder signatureBuilder = new StringBuilder();
|
|
|
|
String[] lines = os.toString().split("\n");
|
|
|
|
for (int i = 7; i < lines.length - 1; ++i) {
|
|
|
|
signatureBuilder.append(lines[i].trim());
|
|
|
|
}
|
|
|
|
account.setKey("pgp_signature", signatureBuilder.toString());
|
|
|
|
callback.success();
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
callback.userInputRequried((PendingIntent) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.openpgp_error);
|
2014-05-01 20:33:49 +00:00
|
|
|
return;
|
|
|
|
}
|
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-05-01 20:33:49 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
public void hasKey(Contact contact, final UiCallback 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());
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, contact.getAccount().getJid());
|
2014-05-09 18:47:03 +00:00
|
|
|
api.executeApiAsync(params, null, null, new IOpenPgpCallback() {
|
2014-05-01 20:33:49 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReturn(Intent result) {
|
|
|
|
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, 0)) {
|
|
|
|
case OpenPgpApi.RESULT_CODE_SUCCESS:
|
|
|
|
callback.success();
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
|
|
|
|
callback.userInputRequried((PendingIntent) result
|
|
|
|
.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
|
|
|
|
return;
|
|
|
|
case OpenPgpApi.RESULT_CODE_ERROR:
|
2014-05-12 12:59:46 +00:00
|
|
|
callback.error(R.string.openpgp_error);
|
2014-05-01 20:33:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
2014-05-09 18:47:03 +00:00
|
|
|
|
|
|
|
public PendingIntent getIntentForKey(Contact contact) {
|
|
|
|
Intent params = new Intent();
|
|
|
|
params.setAction(OpenPgpApi.ACTION_GET_KEY);
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_KEY_ID, contact.getPgpKeyId());
|
|
|
|
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, contact.getAccount().getJid());
|
|
|
|
Intent result = api.executeApi(params, null, null);
|
|
|
|
return (PendingIntent) result.getParcelableExtra(OpenPgpApi.RESULT_INTENT);
|
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|