2014-10-22 12:38:44 -04:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
2015-08-10 13:48:36 -04:00
|
|
|
import android.content.Context;
|
|
|
|
import android.os.PowerManager;
|
2015-07-31 19:19:16 -04:00
|
|
|
import android.util.Log;
|
|
|
|
import android.util.Pair;
|
|
|
|
|
|
|
|
import org.bouncycastle.crypto.engines.AESEngine;
|
|
|
|
import org.bouncycastle.crypto.modes.AEADBlockCipher;
|
|
|
|
import org.bouncycastle.crypto.modes.GCMBlockCipher;
|
|
|
|
import org.bouncycastle.crypto.params.AEADParameters;
|
|
|
|
import org.bouncycastle.crypto.params.KeyParameter;
|
|
|
|
|
|
|
|
import java.io.FileInputStream;
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
import java.security.InvalidAlgorithmParameterException;
|
|
|
|
import java.security.InvalidKeyException;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
|
|
|
|
import javax.crypto.Cipher;
|
|
|
|
import javax.crypto.CipherInputStream;
|
|
|
|
import javax.crypto.CipherOutputStream;
|
|
|
|
import javax.crypto.NoSuchPaddingException;
|
|
|
|
import javax.crypto.spec.IvParameterSpec;
|
|
|
|
import javax.crypto.spec.SecretKeySpec;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
|
|
|
|
2014-10-22 12:38:44 -04:00
|
|
|
public class AbstractConnectionManager {
|
|
|
|
protected XmppConnectionService mXmppConnectionService;
|
|
|
|
|
|
|
|
public AbstractConnectionManager(XmppConnectionService service) {
|
|
|
|
this.mXmppConnectionService = service;
|
|
|
|
}
|
|
|
|
|
|
|
|
public XmppConnectionService getXmppConnectionService() {
|
|
|
|
return this.mXmppConnectionService;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getAutoAcceptFileSize() {
|
|
|
|
String config = this.mXmppConnectionService.getPreferences().getString(
|
|
|
|
"auto_accept_file_size", "524288");
|
|
|
|
try {
|
|
|
|
return Long.parseLong(config);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return 524288;
|
|
|
|
}
|
|
|
|
}
|
2015-07-31 19:19:16 -04:00
|
|
|
|
2015-08-11 10:50:00 -04:00
|
|
|
public static Pair<InputStream,Integer> createInputStream(DownloadableFile file, boolean gcm) throws FileNotFoundException {
|
2015-07-31 19:19:16 -04:00
|
|
|
FileInputStream is;
|
|
|
|
int size;
|
2015-08-11 10:50:00 -04:00
|
|
|
is = new FileInputStream(file);
|
|
|
|
size = (int) file.getSize();
|
|
|
|
if (file.getKey() == null) {
|
|
|
|
return new Pair<InputStream,Integer>(is,size);
|
2015-07-31 19:19:16 -04:00
|
|
|
}
|
|
|
|
try {
|
|
|
|
if (gcm) {
|
|
|
|
AEADBlockCipher cipher = new GCMBlockCipher(new AESEngine());
|
|
|
|
cipher.init(true, new AEADParameters(new KeyParameter(file.getKey()), 128, file.getIv()));
|
|
|
|
InputStream cis = new org.bouncycastle.crypto.io.CipherInputStream(is, cipher);
|
|
|
|
return new Pair<>(cis, cipher.getOutputSize(size));
|
|
|
|
} else {
|
|
|
|
IvParameterSpec ips = new IvParameterSpec(file.getIv());
|
|
|
|
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
|
|
|
|
cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(file.getKey(), "AES"), ips);
|
|
|
|
Log.d(Config.LOGTAG, "opening encrypted input stream");
|
2015-08-10 06:55:37 -04:00
|
|
|
final int s = Config.REPORT_WRONG_FILESIZE_IN_OTR_JINGLE ? size : (size / 16 + 1) * 16;
|
|
|
|
return new Pair<InputStream,Integer>(new CipherInputStream(is, cipher),s);
|
2015-07-31 19:19:16 -04:00
|
|
|
}
|
|
|
|
} catch (InvalidKeyException e) {
|
|
|
|
return null;
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
return null;
|
|
|
|
} catch (NoSuchPaddingException e) {
|
|
|
|
return null;
|
|
|
|
} catch (InvalidAlgorithmParameterException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static OutputStream createOutputStream(DownloadableFile file, boolean gcm) {
|
|
|
|
FileOutputStream os;
|
|
|
|
try {
|
|
|
|
os = new FileOutputStream(file);
|
|
|
|
if (file.getKey() == null) {
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
if (gcm) {
|
|
|
|
AEADBlockCipher cipher = new GCMBlockCipher(new AESEngine());
|
|
|
|
cipher.init(false, new AEADParameters(new KeyParameter(file.getKey()), 128, file.getIv()));
|
|
|
|
return new org.bouncycastle.crypto.io.CipherOutputStream(os, cipher);
|
|
|
|
} else {
|
|
|
|
IvParameterSpec ips = new IvParameterSpec(file.getIv());
|
|
|
|
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
|
|
|
|
cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(file.getKey(), "AES"), ips);
|
|
|
|
Log.d(Config.LOGTAG, "opening encrypted output stream");
|
|
|
|
return new CipherOutputStream(os, cipher);
|
|
|
|
}
|
|
|
|
} catch (InvalidKeyException e) {
|
|
|
|
return null;
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
return null;
|
|
|
|
} catch (NoSuchPaddingException e) {
|
|
|
|
return null;
|
|
|
|
} catch (InvalidAlgorithmParameterException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2015-08-10 13:48:36 -04:00
|
|
|
|
|
|
|
public PowerManager.WakeLock createWakeLock(String name) {
|
|
|
|
PowerManager powerManager = (PowerManager) mXmppConnectionService.getSystemService(Context.POWER_SERVICE);
|
|
|
|
return powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,name);
|
|
|
|
}
|
2014-10-22 12:38:44 -04:00
|
|
|
}
|