2014-11-08 19:35:58 +00:00
|
|
|
package org.thoughtcrime.securesms.jobs;
|
2013-07-17 02:52:02 +00:00
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.telephony.TelephonyManager;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MmsCipher;
|
|
|
|
import org.thoughtcrime.securesms.crypto.storage.TextSecureAxolotlStore;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
2013-07-17 02:52:02 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsDatabase;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.thoughtcrime.securesms.database.NoSuchMessageException;
|
|
|
|
import org.thoughtcrime.securesms.jobs.requirements.MasterSecretRequirement;
|
2014-09-16 23:21:41 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.ApnUnavailableException;
|
2013-07-17 02:52:02 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.MmsRadio;
|
|
|
|
import org.thoughtcrime.securesms.mms.MmsRadioException;
|
2013-11-19 18:13:24 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.MmsSendResult;
|
2014-09-16 23:21:41 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingMmsConnection;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.thoughtcrime.securesms.notifications.MessageNotifier;
|
2014-02-03 03:38:06 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
import org.thoughtcrime.securesms.transport.InsecureFallbackApprovalException;
|
|
|
|
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
2014-11-12 19:15:05 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Hex;
|
2014-06-13 23:15:33 +00:00
|
|
|
import org.thoughtcrime.securesms.util.NumberUtil;
|
2014-11-08 19:35:58 +00:00
|
|
|
import org.whispersystems.jobqueue.JobParameters;
|
|
|
|
import org.whispersystems.jobqueue.requirements.NetworkRequirement;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.whispersystems.libaxolotl.NoSessionException;
|
2013-07-17 02:52:02 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Arrays;
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
import ws.com.google.android.mms.MmsException;
|
2013-07-17 02:52:02 +00:00
|
|
|
import ws.com.google.android.mms.pdu.EncodedStringValue;
|
|
|
|
import ws.com.google.android.mms.pdu.PduComposer;
|
|
|
|
import ws.com.google.android.mms.pdu.PduHeaders;
|
|
|
|
import ws.com.google.android.mms.pdu.SendConf;
|
|
|
|
import ws.com.google.android.mms.pdu.SendReq;
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
public class MmsSendJob extends MasterSecretJob {
|
2013-07-17 02:52:02 +00:00
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
private static final String TAG = MmsSendJob.class.getSimpleName();
|
2014-11-03 23:16:04 +00:00
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
private final long messageId;
|
2013-07-17 02:52:02 +00:00
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
public MmsSendJob(Context context, long messageId) {
|
|
|
|
super(context, JobParameters.newBuilder()
|
|
|
|
.withGroupId("mms-operation")
|
|
|
|
.withRequirement(new NetworkRequirement(context))
|
|
|
|
.withRequirement(new MasterSecretRequirement(context))
|
|
|
|
.withPersistence()
|
|
|
|
.create());
|
|
|
|
|
|
|
|
this.messageId = messageId;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAdded() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-12 03:57:53 +00:00
|
|
|
public void onRun(MasterSecret masterSecret) throws MmsException, NoSuchMessageException {
|
|
|
|
MmsDatabase database = DatabaseFactory.getMmsDatabase(context);
|
|
|
|
SendReq message = database.getOutgoingMessage(masterSecret, messageId);
|
2014-11-08 19:35:58 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
MmsSendResult result = deliver(masterSecret, message);
|
|
|
|
|
|
|
|
if (result.isUpgradedSecure()) {
|
|
|
|
database.markAsSecure(messageId);
|
|
|
|
}
|
|
|
|
|
|
|
|
database.markAsSent(messageId, result.getMessageId(), result.getResponseStatus());
|
|
|
|
} catch (UndeliverableMessageException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
database.markAsSentFailed(messageId);
|
|
|
|
notifyMediaMessageDeliveryFailed(context, messageId);
|
|
|
|
} catch (InsecureFallbackApprovalException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
database.markAsPendingInsecureSmsFallback(messageId);
|
|
|
|
notifyMediaMessageDeliveryFailed(context, messageId);
|
|
|
|
}
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
@Override
|
2014-11-12 05:11:57 +00:00
|
|
|
public boolean onShouldRetryThrowable(Exception exception) {
|
2014-11-08 19:35:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCanceled() {
|
|
|
|
DatabaseFactory.getMmsDatabase(context).markAsSentFailed(messageId);
|
|
|
|
notifyMediaMessageDeliveryFailed(context, messageId);
|
|
|
|
}
|
|
|
|
|
|
|
|
public MmsSendResult deliver(MasterSecret masterSecret, SendReq message)
|
|
|
|
throws UndeliverableMessageException, InsecureFallbackApprovalException
|
2014-04-01 01:47:24 +00:00
|
|
|
{
|
2014-02-23 22:38:41 +00:00
|
|
|
|
2014-06-13 23:15:33 +00:00
|
|
|
validateDestinations(message);
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
MmsRadio radio = MmsRadio.getInstance(context);
|
|
|
|
|
2013-07-17 02:52:02 +00:00
|
|
|
try {
|
|
|
|
if (isCdmaDevice()) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, "Sending MMS directly without radio change...");
|
2013-07-17 02:52:02 +00:00
|
|
|
try {
|
2014-11-08 19:35:58 +00:00
|
|
|
return sendMms(masterSecret, radio, message, false, false);
|
2013-07-17 02:52:02 +00:00
|
|
|
} catch (IOException e) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, e);
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, "Sending MMS with radio change and proxy...");
|
2013-07-17 02:52:02 +00:00
|
|
|
radio.connect();
|
|
|
|
|
|
|
|
try {
|
2014-11-08 19:35:58 +00:00
|
|
|
MmsSendResult result = sendMms(masterSecret, radio, message, true, true);
|
2013-07-17 02:52:02 +00:00
|
|
|
radio.disconnect();
|
|
|
|
return result;
|
|
|
|
} catch (IOException e) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, e);
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, "Sending MMS with radio change and without proxy...");
|
2013-07-17 02:52:02 +00:00
|
|
|
|
|
|
|
try {
|
2014-11-08 19:35:58 +00:00
|
|
|
MmsSendResult result = sendMms(masterSecret, radio, message, true, false);
|
2013-07-17 02:52:02 +00:00
|
|
|
radio.disconnect();
|
|
|
|
return result;
|
|
|
|
} catch (IOException ioe) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, ioe);
|
2013-07-17 02:52:02 +00:00
|
|
|
radio.disconnect();
|
|
|
|
throw new UndeliverableMessageException(ioe);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (MmsRadioException mre) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, mre);
|
2013-07-17 02:52:02 +00:00
|
|
|
throw new UndeliverableMessageException(mre);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
private MmsSendResult sendMms(MasterSecret masterSecret, MmsRadio radio, SendReq message,
|
|
|
|
boolean usingMmsRadio, boolean useProxy)
|
2014-04-01 01:47:24 +00:00
|
|
|
throws IOException, UndeliverableMessageException, InsecureFallbackApprovalException
|
2013-07-17 02:52:02 +00:00
|
|
|
{
|
2013-11-19 18:13:24 +00:00
|
|
|
String number = ((TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE)).getLine1Number();
|
|
|
|
boolean upgradedSecure = false;
|
2013-07-17 02:52:02 +00:00
|
|
|
|
|
|
|
if (MmsDatabase.Types.isSecureType(message.getDatabaseMessageBox())) {
|
2014-11-08 19:35:58 +00:00
|
|
|
message = getEncryptedMessage(masterSecret, message);
|
2013-11-19 18:13:24 +00:00
|
|
|
upgradedSecure = true;
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (number != null && number.trim().length() != 0) {
|
|
|
|
message.setFrom(new EncodedStringValue(number));
|
|
|
|
}
|
|
|
|
|
2014-09-16 23:21:41 +00:00
|
|
|
try {
|
|
|
|
OutgoingMmsConnection connection = new OutgoingMmsConnection(context, radio.getApnInformation(), new PduComposer(context, message).make());
|
|
|
|
SendConf conf = connection.send(usingMmsRadio, useProxy);
|
2013-07-17 02:52:02 +00:00
|
|
|
|
2014-09-16 23:21:41 +00:00
|
|
|
for (int i=0;i<message.getBody().getPartsNum();i++) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, "Sent MMS part of content-type: " + new String(message.getBody().getPart(i).getContentType()));
|
2014-09-16 23:21:41 +00:00
|
|
|
}
|
2013-07-17 02:52:02 +00:00
|
|
|
|
2014-09-16 23:21:41 +00:00
|
|
|
if (conf == null) {
|
|
|
|
throw new UndeliverableMessageException("No M-Send.conf received in response to send.");
|
|
|
|
} else if (conf.getResponseStatus() != PduHeaders.RESPONSE_STATUS_OK) {
|
|
|
|
throw new UndeliverableMessageException("Got bad response: " + conf.getResponseStatus());
|
|
|
|
} else if (isInconsistentResponse(message, conf)) {
|
|
|
|
throw new UndeliverableMessageException("Mismatched response!");
|
|
|
|
} else {
|
|
|
|
return new MmsSendResult(conf.getMessageId(), conf.getResponseStatus(), upgradedSecure, false);
|
|
|
|
}
|
|
|
|
} catch (ApnUnavailableException aue) {
|
|
|
|
throw new IOException("no APN was retrievable");
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
private SendReq getEncryptedMessage(MasterSecret masterSecret, SendReq pdu)
|
|
|
|
throws InsecureFallbackApprovalException
|
|
|
|
{
|
2014-02-03 03:38:06 +00:00
|
|
|
try {
|
2014-11-03 23:16:04 +00:00
|
|
|
MmsCipher cipher = new MmsCipher(new TextSecureAxolotlStore(context, masterSecret));
|
|
|
|
return cipher.encrypt(context, pdu);
|
|
|
|
} catch (NoSessionException e) {
|
|
|
|
throw new InsecureFallbackApprovalException(e);
|
2014-02-03 03:38:06 +00:00
|
|
|
} catch (RecipientFormattingException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isInconsistentResponse(SendReq message, SendConf response) {
|
2014-11-03 23:16:04 +00:00
|
|
|
Log.w(TAG, "Comparing: " + Hex.toString(message.getTransactionId()));
|
|
|
|
Log.w(TAG, "With: " + Hex.toString(response.getTransactionId()));
|
2013-07-17 02:52:02 +00:00
|
|
|
return !Arrays.equals(message.getTransactionId(), response.getTransactionId());
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isCdmaDevice() {
|
|
|
|
return ((TelephonyManager)context
|
|
|
|
.getSystemService(Context.TELEPHONY_SERVICE))
|
|
|
|
.getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA;
|
|
|
|
}
|
|
|
|
|
2014-06-13 23:15:33 +00:00
|
|
|
private void validateDestination(EncodedStringValue destination) throws UndeliverableMessageException {
|
|
|
|
if (destination == null || !NumberUtil.isValidSmsOrEmail(destination.getString())) {
|
|
|
|
throw new UndeliverableMessageException("Invalid destination: " +
|
2014-11-08 19:35:58 +00:00
|
|
|
(destination == null ? null : destination.getString()));
|
2014-06-13 23:15:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void validateDestinations(SendReq message) throws UndeliverableMessageException {
|
|
|
|
if (message.getTo() != null) {
|
|
|
|
for (EncodedStringValue to : message.getTo()) {
|
|
|
|
validateDestination(to);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.getCc() != null) {
|
|
|
|
for (EncodedStringValue cc : message.getCc()) {
|
|
|
|
validateDestination(cc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.getBcc() != null) {
|
|
|
|
for (EncodedStringValue bcc : message.getBcc()) {
|
|
|
|
validateDestination(bcc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.getTo() == null && message.getCc() == null && message.getBcc() == null) {
|
|
|
|
throw new UndeliverableMessageException("No to, cc, or bcc specified!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-08 19:35:58 +00:00
|
|
|
private void notifyMediaMessageDeliveryFailed(Context context, long messageId) {
|
|
|
|
long threadId = DatabaseFactory.getMmsDatabase(context).getThreadIdForMessage(messageId);
|
|
|
|
Recipients recipients = DatabaseFactory.getThreadDatabase(context).getRecipientsForThreadId(threadId);
|
|
|
|
|
|
|
|
MessageNotifier.notifyMessageDeliveryFailed(context, recipients, threadId);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-17 02:52:02 +00:00
|
|
|
}
|