488 lines
23 KiB
Java
488 lines
23 KiB
Java
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
import android.util.Base64;
|
|
import android.util.Log;
|
|
|
|
import com.google.common.base.Objects;
|
|
import com.google.common.base.Preconditions;
|
|
|
|
import java.lang.ref.WeakReference;
|
|
import java.security.SecureRandom;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
import eu.siacs.conversations.Config;
|
|
import eu.siacs.conversations.entities.Account;
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
import eu.siacs.conversations.entities.Conversational;
|
|
import eu.siacs.conversations.entities.Message;
|
|
import eu.siacs.conversations.entities.Transferable;
|
|
import eu.siacs.conversations.services.AbstractConnectionManager;
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
import eu.siacs.conversations.xml.Element;
|
|
import eu.siacs.conversations.xml.Namespace;
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.Content;
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.FileTransferDescription;
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.Reason;
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
|
import rocks.xmpp.addr.Jid;
|
|
|
|
public class JingleConnectionManager extends AbstractConnectionManager {
|
|
private final HashMap<RtpSessionProposal, DeviceDiscoveryState> rtpSessionProposals = new HashMap<>();
|
|
private final Map<AbstractJingleConnection.Id, AbstractJingleConnection> connections = new ConcurrentHashMap<>();
|
|
|
|
private HashMap<Jid, JingleCandidate> primaryCandidates = new HashMap<>();
|
|
|
|
public JingleConnectionManager(XmppConnectionService service) {
|
|
super(service);
|
|
}
|
|
|
|
static String nextRandomId() {
|
|
final byte[] id = new byte[16];
|
|
new SecureRandom().nextBytes(id);
|
|
return Base64.encodeToString(id, Base64.NO_WRAP | Base64.NO_PADDING);
|
|
}
|
|
|
|
public void deliverPacket(final Account account, final JinglePacket packet) {
|
|
final String sessionId = packet.getSessionId();
|
|
if (sessionId == null) {
|
|
respondWithJingleError(account, packet, "unknown-session", "item-not-found", "cancel");
|
|
return;
|
|
}
|
|
final AbstractJingleConnection.Id id = AbstractJingleConnection.Id.of(account, packet);
|
|
final AbstractJingleConnection existingJingleConnection = connections.get(id);
|
|
if (existingJingleConnection != null) {
|
|
existingJingleConnection.deliverPacket(packet);
|
|
} else if (packet.getAction() == JinglePacket.Action.SESSION_INITIATE) {
|
|
final Jid from = packet.getFrom();
|
|
final Content content = packet.getJingleContent();
|
|
final String descriptionNamespace = content == null ? null : content.getDescriptionNamespace();
|
|
final AbstractJingleConnection connection;
|
|
if (FileTransferDescription.NAMESPACES.contains(descriptionNamespace)) {
|
|
connection = new JingleFileTransferConnection(this, id, from);
|
|
} else if (Namespace.JINGLE_APPS_RTP.equals(descriptionNamespace) && !usesTor(account)) {
|
|
if (isBusy()) {
|
|
mXmppConnectionService.sendIqPacket(account, packet.generateResponse(IqPacket.TYPE.RESULT), null);
|
|
final JinglePacket sessionTermination = new JinglePacket(JinglePacket.Action.SESSION_TERMINATE, id.sessionId);
|
|
sessionTermination.setTo(id.with);
|
|
sessionTermination.setReason(Reason.BUSY, null);
|
|
mXmppConnectionService.sendIqPacket(account, sessionTermination, null);
|
|
return;
|
|
}
|
|
connection = new JingleRtpConnection(this, id, from);
|
|
} else {
|
|
respondWithJingleError(account, packet, "unsupported-info", "feature-not-implemented", "cancel");
|
|
return;
|
|
}
|
|
connections.put(id, connection);
|
|
connection.deliverPacket(packet);
|
|
} else {
|
|
Log.d(Config.LOGTAG, "unable to route jingle packet: " + packet);
|
|
respondWithJingleError(account, packet, "unknown-session", "item-not-found", "cancel");
|
|
}
|
|
}
|
|
|
|
private boolean usesTor(final Account account) {
|
|
return account.isOnion() || mXmppConnectionService.useTorToConnect();
|
|
}
|
|
|
|
private boolean isBusy() {
|
|
for (AbstractJingleConnection connection : this.connections.values()) {
|
|
if (connection instanceof JingleRtpConnection) {
|
|
return true;
|
|
}
|
|
}
|
|
synchronized (this.rtpSessionProposals) {
|
|
return this.rtpSessionProposals.containsValue(DeviceDiscoveryState.DISCOVERED) || this.rtpSessionProposals.containsValue(DeviceDiscoveryState.SEARCHING);
|
|
}
|
|
}
|
|
|
|
public void respondWithJingleError(final Account account, final IqPacket original, String jingleCondition, String condition, String conditionType) {
|
|
final IqPacket response = original.generateResponse(IqPacket.TYPE.ERROR);
|
|
final Element error = response.addChild("error");
|
|
error.setAttribute("type", conditionType);
|
|
error.addChild(condition, "urn:ietf:params:xml:ns:xmpp-stanzas");
|
|
error.addChild(jingleCondition, "urn:xmpp:jingle:errors:1");
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
|
}
|
|
|
|
public void deliverMessage(final Account account, final Jid to, final Jid from, final Element message, String serverMsgId, long timestamp) {
|
|
Preconditions.checkArgument(Namespace.JINGLE_MESSAGE.equals(message.getNamespace()));
|
|
final String sessionId = message.getAttribute("id");
|
|
if (sessionId == null) {
|
|
return;
|
|
}
|
|
if ("accept".equals(message.getName())) {
|
|
for (AbstractJingleConnection connection : connections.values()) {
|
|
if (connection instanceof JingleRtpConnection) {
|
|
final JingleRtpConnection rtpConnection = (JingleRtpConnection) connection;
|
|
final AbstractJingleConnection.Id id = connection.getId();
|
|
if (id.account == account && id.sessionId.equals(sessionId)) {
|
|
rtpConnection.deliveryMessage(from, message, serverMsgId, timestamp);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
final boolean addressedToSelf = from.asBareJid().equals(account.getJid().asBareJid());
|
|
final AbstractJingleConnection.Id id;
|
|
if (addressedToSelf) {
|
|
if (to.isFullJid()) {
|
|
id = AbstractJingleConnection.Id.of(account, to, sessionId);
|
|
} else {
|
|
return;
|
|
}
|
|
} else {
|
|
id = AbstractJingleConnection.Id.of(account, from, sessionId);
|
|
}
|
|
final AbstractJingleConnection existingJingleConnection = connections.get(id);
|
|
if (existingJingleConnection != null) {
|
|
if (existingJingleConnection instanceof JingleRtpConnection) {
|
|
((JingleRtpConnection) existingJingleConnection).deliveryMessage(from, message, serverMsgId, timestamp);
|
|
} else {
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": " + existingJingleConnection.getClass().getName() + " does not support jingle messages");
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (addressedToSelf) {
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": ignore jingle message from self");
|
|
}
|
|
|
|
if ("propose".equals(message.getName())) {
|
|
final Element description = message.findChild("description");
|
|
final String namespace = description == null ? null : description.getNamespace();
|
|
if (Namespace.JINGLE_APPS_RTP.equals(namespace) && !usesTor(account)) {
|
|
if (isBusy()) {
|
|
final MessagePacket reject = mXmppConnectionService.getMessageGenerator().sessionReject(from, sessionId);
|
|
mXmppConnectionService.sendMessagePacket(account, reject);
|
|
} else {
|
|
final JingleRtpConnection rtpConnection = new JingleRtpConnection(this, id, from);
|
|
this.connections.put(id, rtpConnection);
|
|
rtpConnection.deliveryMessage(from, message, serverMsgId, timestamp);
|
|
}
|
|
} else {
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": unable to react to proposed " + namespace + " session");
|
|
}
|
|
} else if ("proceed".equals(message.getName())) {
|
|
|
|
final RtpSessionProposal proposal = new RtpSessionProposal(account, from.asBareJid(), sessionId);
|
|
synchronized (rtpSessionProposals) {
|
|
if (rtpSessionProposals.remove(proposal) != null) {
|
|
final JingleRtpConnection rtpConnection = new JingleRtpConnection(this, id, account.getJid());
|
|
this.connections.put(id, rtpConnection);
|
|
rtpConnection.transitionOrThrow(AbstractJingleConnection.State.PROPOSED);
|
|
rtpConnection.deliveryMessage(from, message, serverMsgId, timestamp);
|
|
} else {
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": no rtp session proposal found for " + from + " to deliver proceed");
|
|
}
|
|
}
|
|
} else if ("reject".equals(message.getName())) {
|
|
final RtpSessionProposal proposal = new RtpSessionProposal(account, from.asBareJid(), sessionId);
|
|
synchronized (rtpSessionProposals) {
|
|
if (rtpSessionProposals.remove(proposal) != null) {
|
|
writeLogMissedOutgoing(account, proposal.with, proposal.sessionId, serverMsgId, timestamp);
|
|
mXmppConnectionService.notifyJingleRtpConnectionUpdate(account, proposal.with, proposal.sessionId, RtpEndUserState.DECLINED_OR_BUSY);
|
|
} else {
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": no rtp session proposal found for " + from + " to deliver reject");
|
|
}
|
|
}
|
|
} else {
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": retrieved out of order jingle message");
|
|
}
|
|
|
|
}
|
|
|
|
private void writeLogMissedOutgoing(final Account account, Jid with, final String sessionId, String serverMsgId, long timestamp) {
|
|
final Conversation conversation = mXmppConnectionService.findOrCreateConversation(
|
|
account,
|
|
with.asBareJid(),
|
|
false,
|
|
false
|
|
);
|
|
final Message message = new Message(
|
|
conversation,
|
|
Message.STATUS_SEND,
|
|
Message.TYPE_RTP_SESSION,
|
|
sessionId
|
|
);
|
|
message.setServerMsgId(serverMsgId);
|
|
message.setTime(timestamp);
|
|
writeMessage(message);
|
|
}
|
|
|
|
private void writeMessage(final Message message) {
|
|
final Conversational conversational = message.getConversation();
|
|
if (conversational instanceof Conversation) {
|
|
((Conversation) conversational).add(message);
|
|
mXmppConnectionService.databaseBackend.createMessage(message);
|
|
mXmppConnectionService.updateConversationUi();
|
|
} else {
|
|
throw new IllegalStateException("Somehow the conversation in a message was a stub");
|
|
}
|
|
}
|
|
|
|
public void startJingleFileTransfer(final Message message) {
|
|
Preconditions.checkArgument(message.isFileOrImage(), "Message is not of type file or image");
|
|
final Transferable old = message.getTransferable();
|
|
if (old != null) {
|
|
old.cancel();
|
|
}
|
|
final Account account = message.getConversation().getAccount();
|
|
final AbstractJingleConnection.Id id = AbstractJingleConnection.Id.of(message);
|
|
final JingleFileTransferConnection connection = new JingleFileTransferConnection(this, id, account.getJid());
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_WAITING);
|
|
this.connections.put(id, connection);
|
|
connection.init(message);
|
|
}
|
|
|
|
void finishConnection(final AbstractJingleConnection connection) {
|
|
this.connections.remove(connection.getId());
|
|
}
|
|
|
|
void getPrimaryCandidate(final Account account, final boolean initiator, final OnPrimaryCandidateFound listener) {
|
|
if (Config.DISABLE_PROXY_LOOKUP) {
|
|
listener.onPrimaryCandidateFound(false, null);
|
|
return;
|
|
}
|
|
if (!this.primaryCandidates.containsKey(account.getJid().asBareJid())) {
|
|
final Jid proxy = account.getXmppConnection().findDiscoItemByFeature(Namespace.BYTE_STREAMS);
|
|
if (proxy != null) {
|
|
IqPacket iq = new IqPacket(IqPacket.TYPE.GET);
|
|
iq.setTo(proxy);
|
|
iq.query(Namespace.BYTE_STREAMS);
|
|
account.getXmppConnection().sendIqPacket(iq, new OnIqPacketReceived() {
|
|
|
|
@Override
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
final Element streamhost = packet.query().findChild("streamhost", Namespace.BYTE_STREAMS);
|
|
final String host = streamhost == null ? null : streamhost.getAttribute("host");
|
|
final String port = streamhost == null ? null : streamhost.getAttribute("port");
|
|
if (host != null && port != null) {
|
|
try {
|
|
JingleCandidate candidate = new JingleCandidate(nextRandomId(), true);
|
|
candidate.setHost(host);
|
|
candidate.setPort(Integer.parseInt(port));
|
|
candidate.setType(JingleCandidate.TYPE_PROXY);
|
|
candidate.setJid(proxy);
|
|
candidate.setPriority(655360 + (initiator ? 30 : 0));
|
|
primaryCandidates.put(account.getJid().asBareJid(), candidate);
|
|
listener.onPrimaryCandidateFound(true, candidate);
|
|
} catch (final NumberFormatException e) {
|
|
listener.onPrimaryCandidateFound(false, null);
|
|
}
|
|
} else {
|
|
listener.onPrimaryCandidateFound(false, null);
|
|
}
|
|
}
|
|
});
|
|
} else {
|
|
listener.onPrimaryCandidateFound(false, null);
|
|
}
|
|
|
|
} else {
|
|
listener.onPrimaryCandidateFound(true,
|
|
this.primaryCandidates.get(account.getJid().asBareJid()));
|
|
}
|
|
}
|
|
|
|
public void retractSessionProposal(final Account account, final Jid with) {
|
|
synchronized (this.rtpSessionProposals) {
|
|
RtpSessionProposal matchingProposal = null;
|
|
for (RtpSessionProposal proposal : this.rtpSessionProposals.keySet()) {
|
|
if (proposal.account == account && with.asBareJid().equals(proposal.with)) {
|
|
matchingProposal = proposal;
|
|
break;
|
|
}
|
|
}
|
|
if (matchingProposal != null) {
|
|
this.rtpSessionProposals.remove(matchingProposal);
|
|
final MessagePacket messagePacket = mXmppConnectionService.getMessageGenerator().sessionRetract(matchingProposal);
|
|
writeLogMissedOutgoing(account, matchingProposal.with, matchingProposal.sessionId, null, System.currentTimeMillis());
|
|
mXmppConnectionService.sendMessagePacket(account, messagePacket);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
public void proposeJingleRtpSession(final Account account, final Jid with) {
|
|
synchronized (this.rtpSessionProposals) {
|
|
for (Map.Entry<RtpSessionProposal, DeviceDiscoveryState> entry : this.rtpSessionProposals.entrySet()) {
|
|
RtpSessionProposal proposal = entry.getKey();
|
|
if (proposal.account == account && with.asBareJid().equals(proposal.with)) {
|
|
final DeviceDiscoveryState preexistingState = entry.getValue();
|
|
if (preexistingState != null && preexistingState != DeviceDiscoveryState.FAILED) {
|
|
mXmppConnectionService.notifyJingleRtpConnectionUpdate(
|
|
account,
|
|
with,
|
|
proposal.sessionId,
|
|
preexistingState.toEndUserState()
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
final RtpSessionProposal proposal = RtpSessionProposal.of(account, with.asBareJid());
|
|
this.rtpSessionProposals.put(proposal, DeviceDiscoveryState.SEARCHING);
|
|
mXmppConnectionService.notifyJingleRtpConnectionUpdate(
|
|
account,
|
|
proposal.with,
|
|
proposal.sessionId,
|
|
RtpEndUserState.FINDING_DEVICE
|
|
);
|
|
final MessagePacket messagePacket = mXmppConnectionService.getMessageGenerator().sessionProposal(proposal);
|
|
Log.d(Config.LOGTAG, messagePacket.toString());
|
|
mXmppConnectionService.sendMessagePacket(account, messagePacket);
|
|
}
|
|
}
|
|
|
|
public void deliverIbbPacket(Account account, IqPacket packet) {
|
|
final String sid;
|
|
final Element payload;
|
|
if (packet.hasChild("open", Namespace.IBB)) {
|
|
payload = packet.findChild("open", Namespace.IBB);
|
|
sid = payload.getAttribute("sid");
|
|
} else if (packet.hasChild("data", Namespace.IBB)) {
|
|
payload = packet.findChild("data", Namespace.IBB);
|
|
sid = payload.getAttribute("sid");
|
|
} else if (packet.hasChild("close", Namespace.IBB)) {
|
|
payload = packet.findChild("close", Namespace.IBB);
|
|
sid = payload.getAttribute("sid");
|
|
} else {
|
|
payload = null;
|
|
sid = null;
|
|
}
|
|
if (sid != null) {
|
|
for (final AbstractJingleConnection connection : this.connections.values()) {
|
|
if (connection instanceof JingleFileTransferConnection) {
|
|
final JingleFileTransferConnection fileTransfer = (JingleFileTransferConnection) connection;
|
|
final JingleTransport transport = fileTransfer.getTransport();
|
|
if (transport instanceof JingleInBandTransport) {
|
|
final JingleInBandTransport inBandTransport = (JingleInBandTransport) transport;
|
|
if (inBandTransport.matches(account, sid)) {
|
|
inBandTransport.deliverPayload(packet, payload);
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Log.d(Config.LOGTAG, "unable to deliver ibb packet: " + packet.toString());
|
|
account.getXmppConnection().sendIqPacket(packet.generateResponse(IqPacket.TYPE.ERROR), null);
|
|
}
|
|
|
|
public void cancelInTransmission() {
|
|
for (AbstractJingleConnection connection : this.connections.values()) {
|
|
/*if (connection.getJingleStatus() == JingleFileTransferConnection.JINGLE_STATUS_TRANSMITTING) {
|
|
connection.abort("connectivity-error");
|
|
}*/
|
|
}
|
|
}
|
|
|
|
public WeakReference<JingleRtpConnection> findJingleRtpConnection(Account account, Jid with, String sessionId) {
|
|
final AbstractJingleConnection.Id id = AbstractJingleConnection.Id.of(account, Jid.ofEscaped(with), sessionId);
|
|
final AbstractJingleConnection connection = connections.get(id);
|
|
if (connection instanceof JingleRtpConnection) {
|
|
return new WeakReference<>((JingleRtpConnection) connection);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void updateProposedSessionDiscovered(Account account, Jid from, String sessionId, final DeviceDiscoveryState target) {
|
|
final RtpSessionProposal sessionProposal = new RtpSessionProposal(account, from.asBareJid(), sessionId);
|
|
synchronized (this.rtpSessionProposals) {
|
|
final DeviceDiscoveryState currentState = rtpSessionProposals.get(sessionProposal);
|
|
if (currentState == null) {
|
|
Log.d(Config.LOGTAG, "unable to find session proposal for session id " + sessionId);
|
|
return;
|
|
}
|
|
if (currentState == DeviceDiscoveryState.DISCOVERED) {
|
|
Log.d(Config.LOGTAG, "session proposal already at discovered. not going to fall back");
|
|
return;
|
|
}
|
|
this.rtpSessionProposals.put(sessionProposal, target);
|
|
mXmppConnectionService.notifyJingleRtpConnectionUpdate(account, sessionProposal.with, sessionProposal.sessionId, target.toEndUserState());
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": flagging session " + sessionId + " as " + target);
|
|
}
|
|
}
|
|
|
|
public void rejectRtpSession(final String sessionId) {
|
|
for (final AbstractJingleConnection connection : this.connections.values()) {
|
|
if (connection.getId().sessionId.equals(sessionId)) {
|
|
if (connection instanceof JingleRtpConnection) {
|
|
((JingleRtpConnection) connection).rejectCall();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void endRtpSession(final String sessionId) {
|
|
for (final AbstractJingleConnection connection : this.connections.values()) {
|
|
if (connection.getId().sessionId.equals(sessionId)) {
|
|
if (connection instanceof JingleRtpConnection) {
|
|
((JingleRtpConnection) connection).endCall();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void failProceed(Account account, final Jid with, String sessionId) {
|
|
final AbstractJingleConnection.Id id = AbstractJingleConnection.Id.of(account, with, sessionId);
|
|
final AbstractJingleConnection existingJingleConnection = connections.get(id);
|
|
if (existingJingleConnection instanceof JingleRtpConnection) {
|
|
((JingleRtpConnection) existingJingleConnection).deliverFailedProceed();
|
|
}
|
|
}
|
|
|
|
public enum DeviceDiscoveryState {
|
|
SEARCHING, DISCOVERED, FAILED;
|
|
|
|
public RtpEndUserState toEndUserState() {
|
|
switch (this) {
|
|
case SEARCHING:
|
|
return RtpEndUserState.FINDING_DEVICE;
|
|
case DISCOVERED:
|
|
return RtpEndUserState.RINGING;
|
|
default:
|
|
return RtpEndUserState.CONNECTIVITY_ERROR;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static class RtpSessionProposal {
|
|
public final Jid with;
|
|
public final String sessionId;
|
|
private final Account account;
|
|
|
|
private RtpSessionProposal(Account account, Jid with, String sessionId) {
|
|
this.account = account;
|
|
this.with = with;
|
|
this.sessionId = sessionId;
|
|
}
|
|
|
|
public static RtpSessionProposal of(Account account, Jid with) {
|
|
return new RtpSessionProposal(account, with, nextRandomId());
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) return true;
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
RtpSessionProposal proposal = (RtpSessionProposal) o;
|
|
return Objects.equal(account.getJid(), proposal.account.getJid()) &&
|
|
Objects.equal(with, proposal.with) &&
|
|
Objects.equal(sessionId, proposal.sessionId);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hashCode(account.getJid(), with, sessionId);
|
|
}
|
|
}
|
|
}
|