2010-06-06 17:22:52 +02:00
|
|
|
# -*- coding:utf-8 -*-
|
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim 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; version 3 only.
|
|
|
|
##
|
|
|
|
## Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
Handles Jingle File Transfer (XEP 0234)
|
|
|
|
"""
|
|
|
|
|
|
|
|
import gajim
|
|
|
|
import xmpp
|
|
|
|
from jingle_content import contents, JingleContent
|
2010-06-19 16:52:17 +02:00
|
|
|
from jingle_transport import JingleTransportICEUDP, JingleTransportSocks5
|
2010-07-03 10:22:47 +02:00
|
|
|
from common import helpers
|
2010-07-13 04:38:31 +02:00
|
|
|
from common.socks5 import Socks5Receiver
|
2010-07-03 10:22:47 +02:00
|
|
|
|
2010-06-06 17:22:52 +02:00
|
|
|
import logging
|
|
|
|
|
|
|
|
log = logging.getLogger('gajim.c.jingle_ft')
|
|
|
|
|
2010-07-15 07:38:53 +02:00
|
|
|
STATE_NOT_STARTED = 0
|
|
|
|
STATE_INITIALIZED = 1
|
|
|
|
STATE_ACCEPTED = 2
|
|
|
|
STATE_TRANSPORT_INFO = 3
|
|
|
|
STATE_PROXY_ACTIVATED = 4
|
2010-06-06 17:22:52 +02:00
|
|
|
|
|
|
|
class JingleFileTransfer(JingleContent):
|
2010-07-22 09:05:06 +02:00
|
|
|
def __init__(self, session, transport=None, file_props=None, use_security=False):
|
2010-06-06 17:22:52 +02:00
|
|
|
JingleContent.__init__(self, session, transport)
|
|
|
|
|
2010-06-19 16:52:17 +02:00
|
|
|
log.info("transport value: %s" % transport)
|
|
|
|
|
2010-06-06 17:22:52 +02:00
|
|
|
#events we might be interested in
|
|
|
|
self.callbacks['session-initiate'] += [self.__on_session_initiate]
|
|
|
|
self.callbacks['session-accept'] += [self.__on_session_accept]
|
|
|
|
self.callbacks['session-terminate'] += [self.__on_session_terminate]
|
|
|
|
self.callbacks['transport-accept'] += [self.__on_transport_accept]
|
|
|
|
self.callbacks['transport-replace'] += [self.__on_transport_replace] #fallback transport method
|
|
|
|
self.callbacks['transport-reject'] += [self.__on_transport_reject]
|
|
|
|
self.callbacks['transport-info'] += [self.__on_transport_info]
|
2010-07-03 10:22:47 +02:00
|
|
|
self.callbacks['iq-result'] += [self.__on_iq_result]
|
2010-06-06 17:22:52 +02:00
|
|
|
|
2010-07-15 07:38:53 +02:00
|
|
|
self.state = STATE_NOT_STARTED
|
|
|
|
|
2010-07-22 09:05:06 +02:00
|
|
|
self.use_security = use_security
|
|
|
|
|
2010-06-06 17:22:52 +02:00
|
|
|
self.file_props = file_props
|
2010-06-14 15:21:22 +02:00
|
|
|
if file_props is None:
|
2010-06-08 15:24:41 +02:00
|
|
|
self.weinitiate = False
|
|
|
|
else:
|
|
|
|
self.weinitiate = True
|
2010-06-06 17:22:52 +02:00
|
|
|
|
2010-06-14 15:21:22 +02:00
|
|
|
if self.file_props is not None:
|
2010-06-14 14:41:24 +02:00
|
|
|
self.file_props['sender'] = session.ourjid
|
2010-07-03 10:22:47 +02:00
|
|
|
self.file_props['receiver'] = session.peerjid
|
2010-06-14 14:41:24 +02:00
|
|
|
self.file_props['session-type'] = 'jingle'
|
|
|
|
self.file_props['sid'] = session.sid
|
|
|
|
self.file_props['transfered_size'] = []
|
|
|
|
|
2010-06-14 15:21:22 +02:00
|
|
|
log.info("FT request: %s" % file_props)
|
2010-06-14 14:41:24 +02:00
|
|
|
|
|
|
|
|
2010-06-14 15:21:22 +02:00
|
|
|
if transport is None:
|
2010-06-19 16:52:17 +02:00
|
|
|
self.transport = JingleTransportSocks5()
|
|
|
|
self.transport.set_file_props(self.file_props)
|
|
|
|
self.transport.set_our_jid(session.ourjid)
|
2010-07-06 12:29:21 +02:00
|
|
|
self.transport.set_connection(session.connection)
|
2010-06-19 16:52:17 +02:00
|
|
|
log.info('ourjid: %s' % session.ourjid)
|
2010-06-08 15:24:41 +02:00
|
|
|
|
|
|
|
self.session = session
|
2010-06-14 14:41:24 +02:00
|
|
|
self.media = 'file'
|
2010-06-06 17:22:52 +02:00
|
|
|
|
|
|
|
def __on_session_initiate(self, stanza, content, error, action):
|
2010-06-08 15:24:41 +02:00
|
|
|
jid = unicode(stanza.getFrom())
|
2010-06-14 15:21:22 +02:00
|
|
|
log.info("jid:%s" % jid)
|
2010-06-08 15:24:41 +02:00
|
|
|
|
|
|
|
file_props = {'type': 'r'}
|
|
|
|
file_props['sender'] = jid
|
|
|
|
file_props['request-id'] = unicode(stanza.getAttr('id'))
|
|
|
|
|
2010-06-14 14:41:24 +02:00
|
|
|
file_props['session-type'] = 'jingle'
|
|
|
|
|
2010-07-24 04:12:54 +02:00
|
|
|
self.use_security = bool(content.getTag('security'))
|
2010-07-27 07:02:44 +02:00
|
|
|
# TODO: extract fingerprint element, encryption method element for later use
|
2010-07-22 10:20:14 +02:00
|
|
|
|
2010-06-08 15:24:41 +02:00
|
|
|
file_tag = content.getTag('description').getTag('offer').getTag('file')
|
|
|
|
for attribute in file_tag.getAttrs():
|
|
|
|
if attribute in ('name', 'size', 'hash', 'date'):
|
|
|
|
val = file_tag.getAttr(attribute)
|
|
|
|
if val is None:
|
|
|
|
continue
|
|
|
|
file_props[attribute] = val
|
|
|
|
file_desc_tag = file_tag.getTag('desc')
|
|
|
|
if file_desc_tag is not None:
|
|
|
|
file_props['desc'] = file_desc_tag.getData()
|
|
|
|
|
|
|
|
file_props['receiver'] = self.session.ourjid
|
2010-06-14 15:21:22 +02:00
|
|
|
log.info("ourjid: %s" % self.session.ourjid)
|
2010-06-08 15:24:41 +02:00
|
|
|
file_props['sid'] = unicode(stanza.getTag('jingle').getAttr('sid'))
|
|
|
|
file_props['transfered_size'] = []
|
2010-06-14 14:41:24 +02:00
|
|
|
|
|
|
|
self.file_props = file_props
|
2010-07-13 04:38:31 +02:00
|
|
|
self.session.connection.files_props[file_props['sid']] = file_props
|
2010-06-19 16:52:17 +02:00
|
|
|
if self.transport is None:
|
|
|
|
self.transport = JingleTransportSocks5()
|
|
|
|
self.transport.set_our_jid(self.session.ourjid)
|
2010-07-06 12:29:21 +02:00
|
|
|
self.transport.set_connection(self.session.connection)
|
2010-06-19 16:52:17 +02:00
|
|
|
self.transport.set_file_props(self.file_props)
|
2010-07-01 09:48:44 +02:00
|
|
|
if self.file_props.has_key("streamhosts"):
|
|
|
|
self.file_props['streamhosts'].extend(self.transport.remote_candidates)
|
|
|
|
else:
|
|
|
|
self.file_props['streamhosts'] = self.transport.remote_candidates
|
|
|
|
for host in self.file_props['streamhosts']:
|
|
|
|
host['initiator'] = self.session.initiator
|
|
|
|
host['target'] = self.session.responder
|
2010-06-14 15:21:22 +02:00
|
|
|
log.info("FT request: %s" % file_props)
|
2010-06-08 15:24:41 +02:00
|
|
|
|
|
|
|
self.session.connection.dispatch('FILE_REQUEST', (jid, file_props))
|
|
|
|
|
2010-06-06 17:22:52 +02:00
|
|
|
def __on_session_accept(self, stanza, content, error, action):
|
|
|
|
log.info("__on_session_accept")
|
2010-07-22 10:20:14 +02:00
|
|
|
|
|
|
|
security = content.getTag('security')
|
|
|
|
if not security: # responder can not verify our fingerprint
|
|
|
|
self.use_security = False
|
|
|
|
|
2010-06-06 17:22:52 +02:00
|
|
|
|
|
|
|
def __on_session_terminate(self, stanza, content, error, action):
|
|
|
|
log.info("__on_session_terminate")
|
|
|
|
|
|
|
|
def __on_transport_accept(self, stanza, content, error, action):
|
|
|
|
log.info("__on_transport_accept")
|
|
|
|
|
|
|
|
def __on_transport_replace(self, stanza, content, error, action):
|
|
|
|
log.info("__on_transport_replace")
|
|
|
|
|
|
|
|
def __on_transport_reject(self, stanza, content, error, action):
|
|
|
|
log.info("__on_transport_reject")
|
|
|
|
|
|
|
|
def __on_transport_info(self, stanza, content, error, action):
|
|
|
|
log.info("__on_transport_info")
|
2010-07-03 10:22:47 +02:00
|
|
|
|
2010-07-15 07:38:53 +02:00
|
|
|
if not self.weinitiate: # proxy activated from initiator
|
|
|
|
return
|
2010-07-13 04:38:31 +02:00
|
|
|
streamhost_cid = content.getTag('transport').getTag('candidate-used').getAttr('cid')
|
|
|
|
streamhost_used = None
|
|
|
|
for cand in self.transport.candidates:
|
|
|
|
if cand['candidate_id'] == streamhost_cid:
|
|
|
|
streamhost_used = cand
|
|
|
|
break
|
|
|
|
if streamhost_used == None:
|
|
|
|
log.info("unknow streamhost")
|
|
|
|
return
|
|
|
|
if streamhost_used['type'] == 'proxy':
|
|
|
|
self.file_props['streamhost-used'] = True
|
|
|
|
for proxy in self.file_props['proxyhosts']:
|
|
|
|
if proxy['host'] == streamhost_used['host'] and \
|
|
|
|
proxy['port'] == streamhost_used['port'] and \
|
|
|
|
proxy['jid'] == streamhost_used['jid']:
|
|
|
|
streamhost_used = proxy
|
|
|
|
break
|
|
|
|
if 'streamhosts' not in self.file_props:
|
|
|
|
self.file_props['streamhosts'] = []
|
|
|
|
self.file_props['streamhosts'].append(streamhost_used)
|
|
|
|
self.file_props['is_a_proxy'] = True
|
|
|
|
receiver = Socks5Receiver(gajim.idlequeue, streamhost_used,
|
|
|
|
self.file_props['sid'], self.file_props)
|
2010-07-15 08:32:34 +02:00
|
|
|
gajim.socks5queue.add_receiver(self.session.connection.name, receiver)
|
2010-07-13 04:38:31 +02:00
|
|
|
streamhost_used['idx'] = receiver.queue_idx
|
|
|
|
gajim.socks5queue.on_success = self.transport._on_proxy_auth_ok
|
|
|
|
else:
|
|
|
|
jid = gajim.get_jid_without_resource(self.session.ourjid)
|
2010-07-15 08:32:34 +02:00
|
|
|
gajim.socks5queue.send_file(self.file_props, self.session.connection.name)
|
2010-07-13 04:38:31 +02:00
|
|
|
|
2010-07-03 10:22:47 +02:00
|
|
|
def __on_iq_result(self, stanza, content, error, action):
|
|
|
|
log.info("__on_iq_result")
|
|
|
|
|
2010-07-15 07:38:53 +02:00
|
|
|
if self.weinitiate and self.state == STATE_NOT_STARTED:
|
|
|
|
self.state = STATE_INITIALIZED
|
2010-07-13 04:38:31 +02:00
|
|
|
self.session.connection.files_props[self.file_props['sid']] = self.file_props
|
2010-07-03 10:22:47 +02:00
|
|
|
receiver = self.file_props['receiver']
|
|
|
|
sender = self.file_props['sender']
|
|
|
|
|
|
|
|
sha_str = helpers.get_auth_sha(self.file_props['sid'], sender, receiver)
|
|
|
|
self.file_props['sha_str'] = sha_str
|
|
|
|
|
|
|
|
port = gajim.config.get('file_transfers_port')
|
|
|
|
|
|
|
|
listener = gajim.socks5queue.start_listener(port, sha_str,
|
2010-07-27 15:29:12 +02:00
|
|
|
self._store_socks5_sid, self.file_props['sid'], fingerprint = 'server')
|
2010-07-03 10:22:47 +02:00
|
|
|
|
|
|
|
if not listener:
|
|
|
|
return
|
|
|
|
# send error message, notify the user
|
2010-07-15 07:38:53 +02:00
|
|
|
elif not self.weinitiate and self.state == STATE_NOT_STARTED: # session-accept iq-result
|
|
|
|
self.state = STATE_ACCEPTED
|
2010-07-15 08:32:34 +02:00
|
|
|
if not gajim.socks5queue.get_file_props(self.session.connection.name, self.file_props['sid']):
|
|
|
|
gajim.socks5queue.add_file_props(self.session.connection.name, self.file_props)
|
|
|
|
gajim.socks5queue.connect_to_hosts(self.session.connection.name, self.file_props['sid'],
|
2010-07-27 15:29:12 +02:00
|
|
|
self.send_candidate_used, self._on_connect_error,
|
|
|
|
fingerprint = 'client')
|
2010-07-15 07:38:53 +02:00
|
|
|
elif not self.weinitiate and self.state == STATE_ACCEPTED: # transport-info iq-result
|
|
|
|
self.state = STATE_TRANSPORT_INFO
|
|
|
|
elif self.weinitiate and self.state == STATE_INITIALIZED: # proxy activated
|
|
|
|
self.state = STATE_PROXY_ACTIVATED
|
|
|
|
|
2010-07-05 07:46:53 +02:00
|
|
|
def send_candidate_used(self, streamhost):
|
|
|
|
"""
|
|
|
|
send candidate-used stanza
|
|
|
|
"""
|
|
|
|
log.info("send_candidate_used")
|
|
|
|
if streamhost is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
content = xmpp.Node('content')
|
|
|
|
content.setAttr('creator', 'initiator')
|
|
|
|
content.setAttr('name', 'file')
|
|
|
|
|
|
|
|
transport = xmpp.Node('transport')
|
|
|
|
transport.setAttr('xmlns', xmpp.NS_JINGLE_BYTESTREAM)
|
|
|
|
|
|
|
|
candidateused = xmpp.Node('candidate-used')
|
|
|
|
candidateused.setAttr('cid', streamhost['cid'])
|
|
|
|
|
|
|
|
transport.addChild(node=candidateused)
|
|
|
|
content.addChild(node=transport)
|
2010-06-06 17:22:52 +02:00
|
|
|
|
2010-07-05 07:46:53 +02:00
|
|
|
self.session.send_transport_info(content)
|
|
|
|
|
|
|
|
def _on_connect_error(self, to, _id, sid, code=404):
|
|
|
|
log.info("connect error, sid=" + sid)
|
|
|
|
return
|
|
|
|
|
2010-06-06 17:22:52 +02:00
|
|
|
def _fill_content(self, content):
|
2010-06-08 10:39:44 +02:00
|
|
|
description_node = xmpp.simplexml.Node(tag=xmpp.NS_JINGLE_FILE_TRANSFER + ' description')
|
|
|
|
|
|
|
|
sioffer = xmpp.simplexml.Node(tag='offer')
|
|
|
|
file_tag = sioffer.setTag('file', namespace=xmpp.NS_FILE)
|
|
|
|
file_tag.setAttr('name', self.file_props['name'])
|
|
|
|
file_tag.setAttr('size', self.file_props['size'])
|
|
|
|
desc = file_tag.setTag('desc')
|
|
|
|
if 'desc' in self.file_props:
|
|
|
|
desc.setData(self.file_props['desc'])
|
|
|
|
|
|
|
|
description_node.addChild(node=sioffer)
|
2010-07-22 09:05:06 +02:00
|
|
|
|
|
|
|
if self.use_security:
|
|
|
|
security = xmpp.simplexml.Node(tag=xmpp.NS_JINGLE_XTLS + ' security')
|
|
|
|
# TODO: add fingerprint element
|
|
|
|
for m in ('x509', ): # supported authentication methods
|
|
|
|
method = xmpp.simplexml.Node(tag='method')
|
|
|
|
method.setAttr('name', m)
|
|
|
|
security.addChild(node=method)
|
|
|
|
content.addChild(node=security)
|
2010-06-08 10:39:44 +02:00
|
|
|
|
|
|
|
content.addChild(node=description_node)
|
2010-07-03 10:22:47 +02:00
|
|
|
|
|
|
|
def _store_socks5_sid(self, sid, hash_id):
|
|
|
|
# callback from socsk5queue.start_listener
|
|
|
|
self.file_props['hash'] = hash_id
|
|
|
|
return
|
2010-06-08 10:39:44 +02:00
|
|
|
|
|
|
|
def get_content(desc):
|
|
|
|
return JingleFileTransfer
|
|
|
|
|
|
|
|
|
|
|
|
contents[xmpp.NS_JINGLE_FILE_TRANSFER] = get_content
|