fixed encrypted ibb file transfer which was broken with ART. fixes #1172
This commit is contained in:
parent
05f0aa614f
commit
e0653c0371
|
@ -99,7 +99,7 @@ public class JingleConnection implements Downloadable {
|
||||||
file.delete();
|
file.delete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Log.d(Config.LOGTAG,"sucessfully transmitted file:" + file.getAbsolutePath());
|
Log.d(Config.LOGTAG,"successfully transmitted file:" + file.getAbsolutePath()+" ("+file.getSha1Sum()+")");
|
||||||
if (message.getEncryption() != Message.ENCRYPTION_PGP) {
|
if (message.getEncryption() != Message.ENCRYPTION_PGP) {
|
||||||
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
||||||
intent.setData(Uri.fromFile(file));
|
intent.setData(Uri.fromFile(file));
|
||||||
|
|
|
@ -8,7 +8,9 @@ import java.security.NoSuchAlgorithmException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
import android.util.Base64;
|
import android.util.Base64;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
import eu.siacs.conversations.Config;
|
||||||
import eu.siacs.conversations.entities.Account;
|
import eu.siacs.conversations.entities.Account;
|
||||||
import eu.siacs.conversations.entities.DownloadableFile;
|
import eu.siacs.conversations.entities.DownloadableFile;
|
||||||
import eu.siacs.conversations.persistance.FileBackend;
|
import eu.siacs.conversations.persistance.FileBackend;
|
||||||
|
@ -110,7 +112,11 @@ public class JingleInbandTransport extends JingleTransport {
|
||||||
this.onFileTransmissionStatusChanged = callback;
|
this.onFileTransmissionStatusChanged = callback;
|
||||||
this.file = file;
|
this.file = file;
|
||||||
try {
|
try {
|
||||||
|
if (this.file.getKey() != null) {
|
||||||
|
this.remainingSize = (this.file.getSize() / 16 + 1) * 16;
|
||||||
|
} else {
|
||||||
this.remainingSize = this.file.getSize();
|
this.remainingSize = this.file.getSize();
|
||||||
|
}
|
||||||
this.fileSize = this.remainingSize;
|
this.fileSize = this.remainingSize;
|
||||||
this.digest = MessageDigest.getInstance("SHA-1");
|
this.digest = MessageDigest.getInstance("SHA-1");
|
||||||
this.digest.reset();
|
this.digest.reset();
|
||||||
|
@ -150,29 +156,33 @@ public class JingleInbandTransport extends JingleTransport {
|
||||||
byte[] buffer = new byte[this.bufferSize];
|
byte[] buffer = new byte[this.bufferSize];
|
||||||
try {
|
try {
|
||||||
int count = fileInputStream.read(buffer);
|
int count = fileInputStream.read(buffer);
|
||||||
if (count == -1) {
|
|
||||||
file.setSha1Sum(CryptoHelper.bytesToHex(digest.digest()));
|
|
||||||
fileInputStream.close();
|
|
||||||
this.onFileTransmissionStatusChanged.onFileTransmitted(file);
|
|
||||||
} else {
|
|
||||||
this.remainingSize -= count;
|
this.remainingSize -= count;
|
||||||
this.digest.update(buffer);
|
if (count != buffer.length && count != -1) {
|
||||||
String base64 = Base64.encodeToString(buffer, Base64.NO_WRAP);
|
int rem = fileInputStream.read(buffer,count,buffer.length-count);
|
||||||
|
if (rem > 0) {
|
||||||
|
count += rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.digest.update(buffer,0,count);
|
||||||
|
String base64 = Base64.encodeToString(buffer,0,count, Base64.NO_WRAP);
|
||||||
IqPacket iq = new IqPacket(IqPacket.TYPE.SET);
|
IqPacket iq = new IqPacket(IqPacket.TYPE.SET);
|
||||||
iq.setTo(this.counterpart);
|
iq.setTo(this.counterpart);
|
||||||
Element data = iq.addChild("data",
|
Element data = iq.addChild("data", "http://jabber.org/protocol/ibb");
|
||||||
"http://jabber.org/protocol/ibb");
|
|
||||||
data.setAttribute("seq", Integer.toString(this.seq));
|
data.setAttribute("seq", Integer.toString(this.seq));
|
||||||
data.setAttribute("block-size",
|
data.setAttribute("block-size", Integer.toString(this.blockSize));
|
||||||
Integer.toString(this.blockSize));
|
|
||||||
data.setAttribute("sid", this.sessionId);
|
data.setAttribute("sid", this.sessionId);
|
||||||
data.setContent(base64);
|
data.setContent(base64);
|
||||||
this.account.getXmppConnection().sendIqPacket(iq,
|
this.account.getXmppConnection().sendIqPacket(iq, this.onAckReceived);
|
||||||
this.onAckReceived);
|
|
||||||
this.seq++;
|
this.seq++;
|
||||||
|
if (this.remainingSize > 0) {
|
||||||
connection.updateProgress((int) ((((double) (this.fileSize - this.remainingSize)) / this.fileSize) * 100));
|
connection.updateProgress((int) ((((double) (this.fileSize - this.remainingSize)) / this.fileSize) * 100));
|
||||||
|
} else {
|
||||||
|
file.setSha1Sum(CryptoHelper.bytesToHex(digest.digest()));
|
||||||
|
this.onFileTransmissionStatusChanged.onFileTransmitted(file);
|
||||||
|
fileInputStream.close();
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
Log.d(Config.LOGTAG,e.getMessage());
|
||||||
FileBackend.close(fileInputStream);
|
FileBackend.close(fileInputStream);
|
||||||
this.onFileTransmissionStatusChanged.onFileTransferAborted();
|
this.onFileTransmissionStatusChanged.onFileTransferAborted();
|
||||||
}
|
}
|
||||||
|
@ -182,14 +192,10 @@ public class JingleInbandTransport extends JingleTransport {
|
||||||
try {
|
try {
|
||||||
byte[] buffer = Base64.decode(data, Base64.NO_WRAP);
|
byte[] buffer = Base64.decode(data, Base64.NO_WRAP);
|
||||||
if (this.remainingSize < buffer.length) {
|
if (this.remainingSize < buffer.length) {
|
||||||
buffer = Arrays
|
buffer = Arrays.copyOfRange(buffer, 0, (int) this.remainingSize);
|
||||||
.copyOfRange(buffer, 0, (int) this.remainingSize);
|
|
||||||
}
|
}
|
||||||
this.remainingSize -= buffer.length;
|
this.remainingSize -= buffer.length;
|
||||||
|
|
||||||
|
|
||||||
this.fileOutputStream.write(buffer);
|
this.fileOutputStream.write(buffer);
|
||||||
|
|
||||||
this.digest.update(buffer);
|
this.digest.update(buffer);
|
||||||
if (this.remainingSize <= 0) {
|
if (this.remainingSize <= 0) {
|
||||||
file.setSha1Sum(CryptoHelper.bytesToHex(digest.digest()));
|
file.setSha1Sum(CryptoHelper.bytesToHex(digest.digest()));
|
||||||
|
@ -200,6 +206,7 @@ public class JingleInbandTransport extends JingleTransport {
|
||||||
connection.updateProgress((int) ((((double) (this.fileSize - this.remainingSize)) / this.fileSize) * 100));
|
connection.updateProgress((int) ((((double) (this.fileSize - this.remainingSize)) / this.fileSize) * 100));
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
Log.d(Config.LOGTAG,e.getMessage());
|
||||||
FileBackend.close(fileOutputStream);
|
FileBackend.close(fileOutputStream);
|
||||||
this.onFileTransmissionStatusChanged.onFileTransferAborted();
|
this.onFileTransmissionStatusChanged.onFileTransferAborted();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue