session-android/src/org/thoughtcrime/securesms/sms/SmsTransportDetails.java

113 lines
4.0 KiB
Java
Raw Normal View History

2011-12-20 18:20:44 +00:00
/**
* Copyright (C) 2011 Whisper Systems
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms.sms;
import android.util.Log;
2011-12-20 18:20:44 +00:00
import org.thoughtcrime.securesms.crypto.SessionCipher;
import org.thoughtcrime.securesms.crypto.TransportDetails;
import org.thoughtcrime.securesms.protocol.WirePrefix;
import org.thoughtcrime.securesms.util.Base64;
import java.io.IOException;
2011-12-20 18:20:44 +00:00
public class SmsTransportDetails implements TransportDetails {
public static final int SMS_SIZE = 160;
public static final int MULTIPART_SMS_SIZE = 153;
2013-05-03 23:09:06 +00:00
public static final int BASE_MAX_BYTES = Base64.getEncodedBytesForTarget(SMS_SIZE - WirePrefix.PREFIX_SIZE);
public static final int SINGLE_MESSAGE_MAX_BYTES = BASE_MAX_BYTES - MultipartSmsTransportMessage.SINGLE_MESSAGE_MULTIPART_OVERHEAD;
public static final int MULTI_MESSAGE_MAX_BYTES = BASE_MAX_BYTES - MultipartSmsTransportMessage.MULTI_MESSAGE_MULTIPART_OVERHEAD;
public static final int FIRST_MULTI_MESSAGE_MAX_BYTES = BASE_MAX_BYTES - MultipartSmsTransportMessage.FIRST_MULTI_MESSAGE_MULTIPART_OVERHEAD;
2011-12-20 18:20:44 +00:00
public static final int ENCRYPTED_SINGLE_MESSAGE_BODY_MAX_SIZE = SINGLE_MESSAGE_MAX_BYTES - SessionCipher.ENCRYPTED_MESSAGE_OVERHEAD;
2013-05-03 23:09:06 +00:00
@Override
2011-12-20 18:20:44 +00:00
public byte[] encodeMessage(byte[] messageWithMac) {
String encodedMessage = Base64.encodeBytesWithoutPadding(messageWithMac);
Log.w("SmsTransportDetails", "Encoded Message Length: " + encodedMessage.length());
return encodedMessage.getBytes();
2011-12-20 18:20:44 +00:00
}
2013-05-03 23:09:06 +00:00
@Override
2011-12-20 18:20:44 +00:00
public byte[] decodeMessage(byte[] encodedMessageBytes) throws IOException {
String encodedMessage = new String(encodedMessageBytes);
return Base64.decodeWithoutPadding(encodedMessage);
}
2013-05-03 23:09:06 +00:00
@Override
2011-12-20 18:20:44 +00:00
public byte[] stripPaddedMessage(byte[] messageWithPadding) {
int paddingBeginsIndex = 0;
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
for (int i=1;i<messageWithPadding.length;i++) {
if (messageWithPadding[i] == (byte)0x00) {
paddingBeginsIndex = i;
break;
2013-05-03 23:09:06 +00:00
}
2011-12-20 18:20:44 +00:00
}
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
if (paddingBeginsIndex == 0)
return messageWithPadding;
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
byte[] message = new byte[paddingBeginsIndex];
System.arraycopy(messageWithPadding, 0, message, 0, message.length);
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
return message;
}
2013-05-03 23:09:06 +00:00
@Override
2011-12-20 18:20:44 +00:00
public byte[] getPaddedMessageBody(byte[] messageBody) {
2013-05-03 23:09:06 +00:00
int paddedBodySize = getMaxBodySizeForBytes(messageBody.length);
2011-12-20 18:20:44 +00:00
Log.w("SessionCipher", "Padding message body out to: " + paddedBodySize);
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
byte[] paddedBody = new byte[paddedBodySize];
System.arraycopy(messageBody, 0, paddedBody, 0, messageBody.length);
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
return paddedBody;
2013-05-03 23:09:06 +00:00
}
private int getMaxBodySizeForBytes(int bodyLength) {
int encryptedBodyLength = bodyLength + SessionCipher.ENCRYPTED_MESSAGE_OVERHEAD;
int messageRecordsForBody = getMessageCountForBytes(encryptedBodyLength);
if (messageRecordsForBody == 1) {
return ENCRYPTED_SINGLE_MESSAGE_BODY_MAX_SIZE;
} else {
return
FIRST_MULTI_MESSAGE_MAX_BYTES +
(MULTI_MESSAGE_MAX_BYTES * (messageRecordsForBody-1)) -
SessionCipher.ENCRYPTED_MESSAGE_OVERHEAD;
}
}
public int getMessageCountForBytes(int bytes) {
2011-12-20 18:20:44 +00:00
if (bytes <= SINGLE_MESSAGE_MAX_BYTES)
return 1;
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
bytes = Math.max(bytes - FIRST_MULTI_MESSAGE_MAX_BYTES, 0);
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
int messageCount = 1 + (bytes / MULTI_MESSAGE_MAX_BYTES);
int remainder = bytes % MULTI_MESSAGE_MAX_BYTES;
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
if (remainder > 0)
messageCount++;
2013-05-03 23:09:06 +00:00
2011-12-20 18:20:44 +00:00
return messageCount;
}
}