Files
open-keychain/APG/src/org/thialfihar/android/apg/service/ApgApiService.java

321 lines
13 KiB
Java
Raw Normal View History

/*
* Copyright (C) 2012 Dominik Schürmann <dominik@dominikschuermann.de>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2012-04-14 16:18:06 +02:00
package org.thialfihar.android.apg.service;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
2012-06-20 20:37:23 +03:00
import java.io.OutputStream;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.SignatureException;
2012-04-20 12:12:07 +02:00
import org.spongycastle.openpgp.PGPException;
2012-04-20 12:12:07 +02:00
import org.thialfihar.android.apg.Constants;
2012-04-25 17:54:02 +02:00
import org.thialfihar.android.apg.Id;
import org.thialfihar.android.apg.R;
import org.thialfihar.android.apg.helper.PGPMain;
import org.thialfihar.android.apg.helper.PGPMain.ApgGeneralException;
2012-12-14 18:22:03 +01:00
import org.thialfihar.android.apg.service.handler.IApgDecryptHandler;
import org.thialfihar.android.apg.service.handler.IApgEncryptHandler;
import org.thialfihar.android.apg.service.handler.IApgGetDecryptionKeyIdHandler;
import org.thialfihar.android.apg.util.InputData;
import org.thialfihar.android.apg.util.Log;
2012-04-20 12:12:07 +02:00
import android.app.Service;
import android.content.Context;
2012-04-20 12:12:07 +02:00
import android.content.Intent;
import android.os.Bundle;
import android.os.IBinder;
2012-04-20 12:12:07 +02:00
import android.os.RemoteException;
2012-09-10 19:57:39 +02:00
2012-12-14 18:22:03 +01:00
public class ApgApiService extends Service {
Context mContext;
2012-04-20 12:12:07 +02:00
@Override
public void onCreate() {
super.onCreate();
mContext = this;
2012-12-14 18:22:03 +01:00
Log.d(Constants.TAG, "ApgApiService, onCreate()");
}
@Override
public void onDestroy() {
super.onDestroy();
2012-12-14 18:22:03 +01:00
Log.d(Constants.TAG, "ApgApiService, onDestroy()");
}
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
2012-12-14 18:22:03 +01:00
// private static void writeToOutputStream(InputStream is, OutputStream os) throws IOException {
// byte[] buffer = new byte[8];
// int len = 0;
// while ((len = is.read(buffer)) != -1) {
// os.write(buffer, 0, len);
// }
// }
2013-01-10 19:37:51 +01:00
private synchronized void encryptAndSignSafe(byte[] inputBytes, String inputUri,
2012-12-12 19:14:09 +01:00
boolean useAsciiArmor, int compression, long[] encryptionKeyIds,
String encryptionPassphrase, int symmetricEncryptionAlgorithm, long signatureKeyId,
int signatureHashAlgorithm, boolean signatureForceV3, String signaturePassphrase,
2012-12-14 18:22:03 +01:00
IApgEncryptHandler handler) throws RemoteException {
try {
// TODO use inputUri
2012-12-12 19:14:09 +01:00
// InputStream inStream = null;
// if (isBlob) {
// ContentResolver cr = getContentResolver();
// try {
// inStream = cr.openInputStream(Uri.parse(pArgs.getString(arg.BLOB.name())));
// } catch (Exception e) {
// Log.e(TAG, "... exception on opening blob", e);
// }
// } else {
// inStream = new ByteArrayInputStream(pArgs.getString(arg.MESSAGE.name()).getBytes());
// }
// InputData in = new InputData(inStream, 0); // XXX Size second param?
// build InputData and write into OutputStream
InputStream inputStream = new ByteArrayInputStream(inputBytes);
long inputLength = inputBytes.length;
InputData input = new InputData(inputStream, inputLength);
OutputStream output = new ByteArrayOutputStream();
PGPMain.encryptAndSign(mContext, null, input, output, useAsciiArmor, compression,
encryptionKeyIds, encryptionPassphrase, symmetricEncryptionAlgorithm,
signatureKeyId, signatureHashAlgorithm, signatureForceV3, signaturePassphrase);
2012-09-08 19:55:17 +02:00
output.close();
2012-12-12 19:14:09 +01:00
// if (isBlob) {
// ContentResolver cr = getContentResolver();
// try {
// OutputStream outStream = cr.openOutputStream(Uri.parse(pArgs.getString(arg.BLOB
// .name())));
// writeToOutputStream(new ByteArrayInputStream(out.toString().getBytes()), outStream);
// outStream.close();
// } catch (Exception e) {
// Log.e(TAG, "... exception on writing blob", e);
// }
// } else {
// pReturn.putString(ret.RESULT.name(), out.toString());
// }
byte[] outputBytes = ((ByteArrayOutputStream) output).toByteArray();
// return over handler on client side
2012-12-14 18:22:03 +01:00
handler.onSuccess(outputBytes, null);
} catch (Exception e) {
Log.e(Constants.TAG, "ApgService, Exception!", e);
2012-06-20 20:37:23 +03:00
try {
handler.onException(getExceptionId(e), e.getMessage());
} catch (Exception t) {
Log.e(Constants.TAG, "Error returning exception to client", t);
}
}
}
2013-01-10 19:37:51 +01:00
private synchronized void decryptAndVerifySafe(byte[] inputBytes, String inputUri,
2012-12-14 18:22:03 +01:00
String passphrase, boolean assumeSymmetric, IApgDecryptHandler handler)
throws RemoteException {
try {
// build InputData and write into OutputStream
InputStream inputStream = new ByteArrayInputStream(inputBytes);
long inputLength = inputBytes.length;
InputData inputData = new InputData(inputStream, inputLength);
2012-06-20 20:37:23 +03:00
OutputStream outputStream = new ByteArrayOutputStream();
Bundle outputBundle = PGPMain.decryptAndVerify(mContext, null, inputData, outputStream,
passphrase, assumeSymmetric);
outputStream.close();
2012-09-08 19:55:17 +02:00
byte[] outputBytes = ((ByteArrayOutputStream) outputStream).toByteArray();
2012-09-08 19:55:17 +02:00
// get signature informations from bundle
boolean signature = outputBundle.getBoolean(ApgIntentService.RESULT_SIGNATURE);
long signatureKeyId = outputBundle.getLong(ApgIntentService.RESULT_SIGNATURE_KEY_ID);
String signatureUserId = outputBundle
.getString(ApgIntentService.RESULT_SIGNATURE_USER_ID);
boolean signatureSuccess = outputBundle
.getBoolean(ApgIntentService.RESULT_SIGNATURE_SUCCESS);
boolean signatureUnknown = outputBundle
.getBoolean(ApgIntentService.RESULT_SIGNATURE_UNKNOWN);
// return over handler on client side
2012-12-14 18:22:03 +01:00
handler.onSuccess(outputBytes, null, signature, signatureKeyId, signatureUserId,
signatureSuccess, signatureUnknown);
} catch (Exception e) {
Log.e(Constants.TAG, "ApgService, Exception!", e);
try {
handler.onException(getExceptionId(e), e.getMessage());
} catch (Exception t) {
Log.e(Constants.TAG, "Error returning exception to client", t);
}
}
}
2012-06-20 20:37:23 +03:00
2013-01-10 19:37:51 +01:00
private synchronized void getDecryptionKeySafe(byte[] inputBytes, String inputUri,
2012-12-14 18:22:03 +01:00
IApgGetDecryptionKeyIdHandler handler) {
// TODO: implement inputUri
try {
InputStream inputStream = new ByteArrayInputStream(inputBytes);
2012-04-25 17:54:02 +02:00
long secretKeyId = Id.key.none;
boolean symmetric;
try {
2012-12-14 18:22:03 +01:00
secretKeyId = PGPMain.getDecryptionKeyId(ApgApiService.this, inputStream);
if (secretKeyId == Id.key.none) {
throw new ApgGeneralException(getString(R.string.error_noSecretKeyFound));
}
symmetric = false;
} catch (PGPMain.NoAsymmetricEncryptionException e) {
secretKeyId = Id.key.symmetric;
2012-12-14 18:22:03 +01:00
if (!PGPMain.hasSymmetricEncryption(ApgApiService.this, inputStream)) {
throw new ApgGeneralException(getString(R.string.error_noKnownEncryptionFound));
}
symmetric = true;
}
2012-12-14 18:22:03 +01:00
handler.onSuccess(secretKeyId, symmetric);
} catch (Exception e) {
Log.e(Constants.TAG, "ApgService, Exception!", e);
2012-09-10 15:02:52 +02:00
try {
handler.onException(getExceptionId(e), e.getMessage());
} catch (Exception t) {
Log.e(Constants.TAG, "Error returning exception to client", t);
2012-09-10 15:02:52 +02:00
}
}
}
2012-09-10 15:02:52 +02:00
/**
* This is the implementation of the interface IApgService. All methods are oneway, meaning
* asynchronous and return to the client using IApgHandler.
*
* The real PGP code is located in PGPMain.
*/
2012-12-14 18:22:03 +01:00
private final IApgApiService.Stub mBinder = new IApgApiService.Stub() {
2012-09-10 17:55:54 +02:00
@Override
public void encryptAsymmetric(byte[] inputBytes, String inputUri, boolean useAsciiArmor,
int compression, long[] encryptionKeyIds, int symmetricEncryptionAlgorithm,
2012-12-14 18:22:03 +01:00
IApgEncryptHandler handler) throws RemoteException {
2012-09-10 17:55:54 +02:00
2013-01-10 19:37:51 +01:00
encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, encryptionKeyIds,
null, symmetricEncryptionAlgorithm, Id.key.none, 0, false, null, handler);
}
2012-04-25 17:54:02 +02:00
@Override
public void encryptSymmetric(byte[] inputBytes, String inputUri, boolean useAsciiArmor,
int compression, String encryptionPassphrase, int symmetricEncryptionAlgorithm,
2012-12-14 18:22:03 +01:00
IApgEncryptHandler handler) throws RemoteException {
2012-09-10 19:57:39 +02:00
2013-01-10 19:37:51 +01:00
encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, null,
encryptionPassphrase, symmetricEncryptionAlgorithm, Id.key.none, 0, false,
null, handler);
}
2012-09-10 19:57:39 +02:00
@Override
public void encryptAndSignAsymmetric(byte[] inputBytes, String inputUri,
boolean useAsciiArmor, int compression, long[] encryptionKeyIds,
int symmetricEncryptionAlgorithm, long signatureKeyId, int signatureHashAlgorithm,
2012-12-14 18:22:03 +01:00
boolean signatureForceV3, String signaturePassphrase, IApgEncryptHandler handler)
2012-12-12 19:14:09 +01:00
throws RemoteException {
2013-01-10 19:37:51 +01:00
encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, encryptionKeyIds,
null, symmetricEncryptionAlgorithm, signatureKeyId, signatureHashAlgorithm,
signatureForceV3, signaturePassphrase, handler);
}
2012-09-10 19:57:39 +02:00
@Override
public void encryptAndSignSymmetric(byte[] inputBytes, String inputUri,
boolean useAsciiArmor, int compression, String encryptionPassphrase,
int symmetricEncryptionAlgorithm, long signatureKeyId, int signatureHashAlgorithm,
2012-12-14 18:22:03 +01:00
boolean signatureForceV3, String signaturePassphrase, IApgEncryptHandler handler)
2012-12-12 19:14:09 +01:00
throws RemoteException {
2012-09-10 19:57:39 +02:00
2013-01-10 19:37:51 +01:00
encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, null,
encryptionPassphrase, symmetricEncryptionAlgorithm, signatureKeyId,
signatureHashAlgorithm, signatureForceV3, signaturePassphrase, handler);
}
2012-09-10 19:57:39 +02:00
@Override
public void decryptAndVerifyAsymmetric(byte[] inputBytes, String inputUri,
2012-12-14 18:22:03 +01:00
String keyPassphrase, IApgDecryptHandler handler) throws RemoteException {
2012-09-10 19:57:39 +02:00
2013-01-10 19:37:51 +01:00
decryptAndVerifySafe(inputBytes, inputUri, keyPassphrase, false, handler);
2012-04-20 12:12:07 +02:00
}
2012-04-25 15:10:12 +02:00
@Override
public void decryptAndVerifySymmetric(byte[] inputBytes, String inputUri,
2012-12-14 18:22:03 +01:00
String encryptionPassphrase, IApgDecryptHandler handler) throws RemoteException {
2012-04-20 12:12:07 +02:00
2013-01-10 19:37:51 +01:00
decryptAndVerifySafe(inputBytes, inputUri, encryptionPassphrase, true, handler);
}
2012-04-25 15:10:12 +02:00
@Override
2012-12-14 18:22:03 +01:00
public void getDecryptionKeyId(byte[] inputBytes, String inputUri,
IApgGetDecryptionKeyIdHandler handler) throws RemoteException {
2012-04-20 12:12:07 +02:00
2013-01-10 19:37:51 +01:00
getDecryptionKeySafe(inputBytes, inputUri, handler);
2012-04-20 12:12:07 +02:00
}
};
/**
* As we can not throw an exception through Android RPC, we assign identifiers to the exception
* types.
*
* @param e
* @return
*/
private int getExceptionId(Exception e) {
if (e instanceof NoSuchProviderException) {
return 0;
} else if (e instanceof NoSuchAlgorithmException) {
return 1;
} else if (e instanceof SignatureException) {
return 2;
} else if (e instanceof IOException) {
return 3;
} else if (e instanceof ApgGeneralException) {
return 4;
} else if (e instanceof PGPException) {
return 5;
} else {
return -1;
2012-04-20 12:12:07 +02:00
}
}
2012-04-14 16:18:06 +02:00
}