2014-04-08 21:15:55 +00:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.util.Log;
|
|
|
|
|
2020-04-01 08:45:03 +00:00
|
|
|
import com.google.common.base.Preconditions;
|
|
|
|
|
2014-04-19 00:19:26 +00:00
|
|
|
import java.util.HashMap;
|
2020-04-01 08:45:03 +00:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.UUID;
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
2015-07-20 12:26:29 +00:00
|
|
|
|
2014-08-31 14:28:21 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Transferable;
|
2014-10-14 10:02:48 +00:00
|
|
|
import eu.siacs.conversations.services.AbstractConnectionManager;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.xml.Element;
|
2020-04-01 08:45:03 +00:00
|
|
|
import eu.siacs.conversations.xml.Namespace;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
2018-03-05 17:30:40 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2014-04-08 21:15:55 +00:00
|
|
|
|
2014-10-13 23:06:45 +00:00
|
|
|
public class JingleConnectionManager extends AbstractConnectionManager {
|
2020-04-01 08:45:03 +00:00
|
|
|
private Map<AbstractJingleConnection.Id, AbstractJingleConnection> connections = new ConcurrentHashMap<>();
|
2019-12-05 13:03:54 +00:00
|
|
|
|
|
|
|
private HashMap<Jid, JingleCandidate> primaryCandidates = new HashMap<>();
|
|
|
|
|
|
|
|
public JingleConnectionManager(XmppConnectionService service) {
|
|
|
|
super(service);
|
|
|
|
}
|
|
|
|
|
2020-04-01 08:45:03 +00:00
|
|
|
public void deliverPacket(final Account account, final JinglePacket packet) {
|
|
|
|
final AbstractJingleConnection.Id id = AbstractJingleConnection.Id.of(account, packet);
|
2020-04-01 11:25:52 +00:00
|
|
|
if (packet.getAction() == JinglePacket.Action.SESSION_INITIATE) { //TODO check that id doesn't exist yet
|
2020-04-01 08:45:03 +00:00
|
|
|
JingleFileTransferConnection connection = new JingleFileTransferConnection(this, id);
|
2019-12-05 13:03:54 +00:00
|
|
|
connection.init(account, packet);
|
2020-04-01 08:45:03 +00:00
|
|
|
connections.put(id, connection);
|
2019-12-05 13:03:54 +00:00
|
|
|
} else {
|
2020-04-01 08:45:03 +00:00
|
|
|
final AbstractJingleConnection abstractJingleConnection = connections.get(id);
|
|
|
|
if (abstractJingleConnection != null) {
|
|
|
|
abstractJingleConnection.deliverPacket(packet);
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, "unable to route jingle packet: " + packet);
|
|
|
|
IqPacket response = packet.generateResponse(IqPacket.TYPE.ERROR);
|
|
|
|
Element error = response.addChild("error");
|
|
|
|
error.setAttribute("type", "cancel");
|
|
|
|
error.addChild("item-not-found",
|
|
|
|
"urn:ietf:params:xml:ns:xmpp-stanzas");
|
|
|
|
error.addChild("unknown-session", "urn:xmpp:jingle:errors:1");
|
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
2019-12-05 13:03:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 08:45:03 +00:00
|
|
|
public void startJingleFileTransfer(final Message message) {
|
|
|
|
Preconditions.checkArgument(message.isFileOrImage(), "Message is not of type file or image");
|
|
|
|
final Transferable old = message.getTransferable();
|
2019-12-05 13:03:54 +00:00
|
|
|
if (old != null) {
|
|
|
|
old.cancel();
|
|
|
|
}
|
2020-04-01 08:45:03 +00:00
|
|
|
final AbstractJingleConnection.Id id = AbstractJingleConnection.Id.of(message);
|
|
|
|
final JingleFileTransferConnection connection = new JingleFileTransferConnection(this, id);
|
2019-12-05 13:03:54 +00:00
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_WAITING);
|
|
|
|
connection.init(message);
|
2020-04-01 08:45:03 +00:00
|
|
|
this.connections.put(id, connection);
|
2019-12-05 13:03:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-01 08:45:03 +00:00
|
|
|
void finishConnection(final AbstractJingleConnection connection) {
|
|
|
|
this.connections.remove(connection.getId());
|
2019-12-05 13:03:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-01 08:45:03 +00:00
|
|
|
void getPrimaryCandidate(final Account account, final boolean initiator, final OnPrimaryCandidateFound listener) {
|
2019-12-05 13:03:54 +00:00
|
|
|
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) {
|
2020-04-01 08:45:03 +00:00
|
|
|
final Element streamhost = packet.query().findChild("streamhost", Namespace.BYTE_STREAMS);
|
2019-12-05 13:03:54 +00:00
|
|
|
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()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 08:45:03 +00:00
|
|
|
static String nextRandomId() {
|
|
|
|
return UUID.randomUUID().toString();
|
2019-12-05 13:03:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void deliverIbbPacket(Account account, IqPacket packet) {
|
2020-04-01 13:17:38 +00:00
|
|
|
final String sid;
|
|
|
|
final Element payload;
|
2020-04-01 08:45:03 +00:00
|
|
|
if (packet.hasChild("open", Namespace.IBB)) {
|
|
|
|
payload = packet.findChild("open", Namespace.IBB);
|
2019-12-05 13:03:54 +00:00
|
|
|
sid = payload.getAttribute("sid");
|
2020-04-01 08:45:03 +00:00
|
|
|
} else if (packet.hasChild("data", Namespace.IBB)) {
|
|
|
|
payload = packet.findChild("data", Namespace.IBB);
|
2019-12-05 13:03:54 +00:00
|
|
|
sid = payload.getAttribute("sid");
|
2020-04-01 08:45:03 +00:00
|
|
|
} else if (packet.hasChild("close", Namespace.IBB)) {
|
|
|
|
payload = packet.findChild("close", Namespace.IBB);
|
2019-12-05 13:03:54 +00:00
|
|
|
sid = payload.getAttribute("sid");
|
2020-04-01 13:17:38 +00:00
|
|
|
} else {
|
|
|
|
payload = null;
|
|
|
|
sid = null;
|
2019-12-05 13:03:54 +00:00
|
|
|
}
|
|
|
|
if (sid != null) {
|
2020-04-01 08:45:03 +00:00
|
|
|
for (final AbstractJingleConnection connection : this.connections.values()) {
|
|
|
|
if (connection instanceof JingleFileTransferConnection) {
|
|
|
|
final JingleFileTransferConnection fileTransfer = (JingleFileTransferConnection) connection;
|
|
|
|
final JingleTransport transport = fileTransfer.getTransport();
|
2019-12-05 13:03:54 +00:00
|
|
|
if (transport instanceof JingleInBandTransport) {
|
2020-04-01 13:17:38 +00:00
|
|
|
final JingleInBandTransport inBandTransport = (JingleInBandTransport) transport;
|
|
|
|
if (inBandTransport.matches(account, sid)) {
|
|
|
|
inBandTransport.deliverPayload(packet, payload);
|
|
|
|
}
|
2019-12-05 13:03:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Log.d(Config.LOGTAG, "unable to deliver ibb packet: " + packet.toString());
|
|
|
|
account.getXmppConnection().sendIqPacket(packet.generateResponse(IqPacket.TYPE.ERROR), null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelInTransmission() {
|
2020-04-01 08:45:03 +00:00
|
|
|
for (AbstractJingleConnection connection : this.connections.values()) {
|
|
|
|
/*if (connection.getJingleStatus() == JingleFileTransferConnection.JINGLE_STATUS_TRANSMITTING) {
|
2019-12-05 13:03:54 +00:00
|
|
|
connection.abort("connectivity-error");
|
2020-04-01 08:45:03 +00:00
|
|
|
}*/
|
2019-12-05 13:03:54 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-08 21:15:55 +00:00
|
|
|
}
|