1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
/***************************************************************************\
* *
* BitlBee - An IRC to IM gateway *
* Jabber module - SI packets *
* *
* Copyright 2007 Uli Meis <a.sporto+bee@gmail.com> *
* *
* 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 2 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, write to the Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
* *
\***************************************************************************/
#include "jabber.h"
#include "sha1.h"
void jabber_si_answer_request( file_transfer_t *ft );
int jabber_si_send_request(struct im_connection *ic, char *who, struct jabber_transfer *tf );
/* file_transfer free() callback */
void jabber_si_free_transfer( file_transfer_t *ft)
{
struct jabber_transfer *tf = ft->data;
struct jabber_data *jd = tf->ic->proto_data;
if ( tf->watch_in )
b_event_remove( tf->watch_in );
jd->filetransfers = g_slist_remove( jd->filetransfers, tf );
if( tf->fd )
{
close( tf->fd );
tf->fd = 0;
}
g_free( tf->ini_jid );
g_free( tf->tgt_jid );
g_free( tf->iq_id );
g_free( tf->sid );
}
/* file_transfer finished() callback */
void jabber_si_finished( file_transfer_t *ft )
{
struct jabber_transfer *tf = ft->data;
imcb_log( tf->ic, "File %s transferred successfully!" , ft->file_name );
}
/* file_transfer canceled() callback */
void jabber_si_canceled( file_transfer_t *ft, char *reason )
{
struct jabber_transfer *tf = ft->data;
struct xt_node *reply, *iqnode;
if( tf->accepted )
return;
iqnode = jabber_make_packet( "iq", "error", tf->ini_jid, NULL );
xt_add_attr( iqnode, "id", tf->iq_id );
reply = jabber_make_error_packet( iqnode, "forbidden", "cancel", "403" );
xt_free_node( iqnode );
if( !jabber_write_packet( tf->ic, reply ) )
imcb_log( tf->ic, "WARNING: Error generating reply to file transfer request" );
xt_free_node( reply );
}
void jabber_si_transfer_request( struct im_connection *ic, file_transfer_t *ft, char *who )
{
struct jabber_transfer *tf;
struct jabber_data *jd = ic->proto_data;
imcb_log( ic, "Trying to send %s(%zd bytes) to %s", ft->file_name, ft->file_size, who );
tf = g_new0( struct jabber_transfer, 1 );
tf->ic = ic;
tf->ft = ft;
tf->ft->data = tf;
tf->ft->free = jabber_si_free_transfer;
tf->ft->finished = jabber_si_finished;
ft->write = jabber_bs_send_write;
jd->filetransfers = g_slist_prepend( jd->filetransfers, tf );
jabber_si_send_request( ic, who, tf );
imcb_file_recv_start( ft );
}
/*
* First function that gets called when a file transfer request comes in.
* A lot to parse.
*
* We choose a stream type from the options given by the initiator.
* Then we wait for imcb to call the accept or cancel callbacks.
*/
int jabber_si_handle_request( struct im_connection *ic, struct xt_node *node, struct xt_node *sinode)
{
struct xt_node *c, *d, *reply;
char *sid, *ini_jid, *tgt_jid, *iq_id, *s, *ext_jid;
struct jabber_buddy *bud;
int requestok = FALSE;
char *name;
size_t size;
struct jabber_transfer *tf;
struct jabber_data *jd = ic->proto_data;
file_transfer_t *ft;
/* All this means we expect something like this: ( I think )
* <iq from=... to=... id=...>
* <si id=id xmlns=si profile=ft>
* <file xmlns=ft/>
* <feature xmlns=feature>
* <x xmlns=xdata type=submit>
* <field var=stream-method>
*
*/
if( !( ini_jid = xt_find_attr( node, "from" ) ) ||
!( tgt_jid = xt_find_attr( node, "to" ) ) ||
!( iq_id = xt_find_attr( node, "id" ) ) ||
!( sid = xt_find_attr( sinode, "id" ) ) ||
!( strcmp( xt_find_attr( sinode, "profile" ), XMLNS_FILETRANSFER ) == 0 ) ||
!( d = xt_find_node( sinode->children, "file" ) ) ||
!( strcmp( xt_find_attr( d, "xmlns" ), XMLNS_FILETRANSFER ) == 0 ) ||
!( name = xt_find_attr( d, "name" ) ) ||
!( size = (size_t) atoll( xt_find_attr( d, "size" ) ) ) ||
!( d = xt_find_node( sinode->children, "feature" ) ) ||
!( strcmp( xt_find_attr( d, "xmlns" ), XMLNS_FEATURE ) == 0 ) ||
!( d = xt_find_node( d->children, "x" ) ) ||
!( strcmp( xt_find_attr( d, "xmlns" ), XMLNS_XDATA ) == 0 ) ||
!( strcmp( xt_find_attr( d, "type" ), "form" ) == 0 ) ||
!( d = xt_find_node( d->children, "field" ) ) ||
!( strcmp( xt_find_attr( d, "var" ), "stream-method" ) == 0 ) )
{
imcb_log( ic, "WARNING: Received incomplete Stream Initiation request" );
} else
{
/* Check if we support one of the options */
c = d->children;
while( ( c = xt_find_node( c, "option" ) ) )
if( ( d = xt_find_node( c->children, "value" ) ) &&
( strcmp( d->text, XMLNS_BYTESTREAMS ) == 0 ) )
{
requestok = TRUE;
break;
}
if ( !requestok )
imcb_log( ic, "WARNING: Unsupported file transfer request from %s", ini_jid);
}
if ( requestok )
{
/* Figure out who the transfer should come frome... */
if( ( s = strchr( ini_jid, '/' ) ) )
{
if( ( bud = jabber_buddy_by_jid( ic, ini_jid, GET_BUDDY_EXACT ) ) )
{
bud->last_act = time( NULL );
ext_jid = bud->ext_jid ? : bud->bare_jid;
}
else
*s = 0; /* We need to generate a bare JID now. */
}
if( !( ft = imcb_file_send_start( ic, ext_jid, name, size ) ) )
{
imcb_log( ic, "WARNING: Error handling transfer request from %s", ini_jid);
requestok = FALSE;
}
*s = '/';
}
if ( !requestok )
{
reply = jabber_make_error_packet( node, "item-not-found", "cancel", NULL );
if (!jabber_write_packet( ic, reply ))
imcb_log( ic, "WARNING: Error generating reply to file transfer request" );
xt_free_node( reply );
return XT_HANDLED;
}
/* Request is fine. */
imcb_log( ic, "File transfer request from %s for %s (%zd kb). ", xt_find_attr( node, "from" ), name, size/1024 );
imcb_log( ic, "Accept the DCC transfer if you'd like the file. If you don't, issue the 'transfers reject' command.");
tf = g_new0( struct jabber_transfer, 1 );
tf->ini_jid = g_strdup( ini_jid );
tf->tgt_jid = g_strdup( tgt_jid );
tf->iq_id = g_strdup( iq_id );
tf->sid = g_strdup( sid );
tf->ic = ic;
tf->ft = ft;
tf->ft->data = tf;
tf->ft->accept = jabber_si_answer_request;
tf->ft->free = jabber_si_free_transfer;
tf->ft->finished = jabber_si_finished;
tf->ft->canceled = jabber_si_canceled;
jd->filetransfers = g_slist_prepend( jd->filetransfers, tf );
return XT_HANDLED;
}
/*
* imc called the accept callback which probably means that the user accepted this file transfer.
* We send our response to the initiator.
* In the next step, the initiator will send us a request for the given stream type.
* (currently that can only be a SOCKS5 bytestream)
*/
void jabber_si_answer_request( file_transfer_t *ft ) {
struct jabber_transfer *tf = ft->data;
struct xt_node *node, *sinode, *reply;
/* generate response, start with the SI tag */
sinode = xt_new_node( "si", NULL, NULL );
xt_add_attr( sinode, "xmlns", XMLNS_SI );
xt_add_attr( sinode, "profile", XMLNS_FILETRANSFER );
xt_add_attr( sinode, "id", tf->sid );
/* now the file tag */
node = xt_new_node( "file", NULL, NULL );
xt_add_attr( node, "xmlns", XMLNS_FILETRANSFER );
xt_add_child( sinode, node );
/* and finally the feature tag */
node = xt_new_node( "field", NULL, NULL );
xt_add_attr( node, "var", "stream-method" );
xt_add_attr( node, "type", "list-single" );
/* Currently all we can do. One could also implement in-band (IBB) */
xt_add_child( node, xt_new_node( "value", XMLNS_BYTESTREAMS, NULL ) );
node = xt_new_node( "x", NULL, node );
xt_add_attr( node, "xmlns", XMLNS_XDATA );
xt_add_attr( node, "type", "submit" );
node = xt_new_node( "feature", NULL, node );
xt_add_attr( node, "xmlns", XMLNS_FEATURE );
xt_add_child( sinode, node );
reply = jabber_make_packet( "iq", "result", tf->ini_jid, sinode );
xt_add_attr( reply, "id", tf->iq_id );
if( !jabber_write_packet( tf->ic, reply ) )
imcb_log( tf->ic, "WARNING: Error generating reply to file transfer request" );
else
tf->accepted = TRUE;
xt_free_node( reply );
}
static xt_status jabber_si_handle_response(struct im_connection *ic, struct xt_node *node, struct xt_node *orig )
{
struct xt_node *c, *d;
char *ini_jid, *tgt_jid, *iq_id;
GSList *tflist;
struct jabber_transfer *tf=NULL;
struct jabber_data *jd = ic->proto_data;
if( !( tgt_jid = xt_find_attr( node, "from" ) ) ||
!( ini_jid = xt_find_attr( node, "to" ) ) )
{
imcb_log( ic, "Invalid SI response from=%s to=%s", tgt_jid, ini_jid );
return XT_HANDLED;
}
/* All this means we expect something like this: ( I think )
* <iq from=... to=... id=...>
* <si xmlns=si>
* [ <file xmlns=ft/> ] <-- not neccessary
* <feature xmlns=feature>
* <x xmlns=xdata type=submit>
* <field var=stream-method>
* <value>
*/
if( !( tgt_jid = xt_find_attr( node, "from" ) ) ||
!( ini_jid = xt_find_attr( node, "to" ) ) ||
!( iq_id = xt_find_attr( node, "id" ) ) ||
!( c = xt_find_node( node->children, "si" ) ) ||
!( strcmp( xt_find_attr( c, "xmlns" ), XMLNS_SI ) == 0 ) ||
/* !( d = xt_find_node( c->children, "file" ) ) ||
!( strcmp( xt_find_attr( d, "xmlns" ), XMLNS_FILETRANSFER ) == 0 ) || */
!( d = xt_find_node( c->children, "feature" ) ) ||
!( strcmp( xt_find_attr( d, "xmlns" ), XMLNS_FEATURE ) == 0 ) ||
!( d = xt_find_node( d->children, "x" ) ) ||
!( strcmp( xt_find_attr( d, "xmlns" ), XMLNS_XDATA ) == 0 ) ||
!( strcmp( xt_find_attr( d, "type" ), "submit" ) == 0 ) ||
!( d = xt_find_node( d->children, "field" ) ) ||
!( strcmp( xt_find_attr( d, "var" ), "stream-method" ) == 0 ) ||
!( d = xt_find_node( d->children, "value" ) ) )
{
imcb_log( ic, "WARNING: Received incomplete Stream Initiation response" );
return XT_HANDLED;
}
if( !( strcmp( d->text, XMLNS_BYTESTREAMS ) == 0 ) ) {
/* since we should only have advertised what we can do and the peer should
* only have chosen what we offered, this should never happen */
imcb_log( ic, "WARNING: Received invalid Stream Initiation response, method %s", d->text );
return XT_HANDLED;
}
/* Let's see if we can find out what this bytestream should be for... */
for( tflist = jd->filetransfers ; tflist; tflist = g_slist_next(tflist) )
{
struct jabber_transfer *tft = tflist->data;
if( ( strcmp( tft->iq_id, iq_id ) == 0 ) )
{
tf = tft;
break;
}
}
if (!tf)
{
imcb_log( ic, "WARNING: Received bytestream request from %s that doesn't match an SI request", ini_jid );
return XT_HANDLED;
}
tf->ini_jid = g_strdup( ini_jid );
tf->tgt_jid = g_strdup( tgt_jid );
imcb_log( ic, "File %s: %s accepted the transfer!", tf->ft->file_name, tgt_jid );
jabber_bs_send_start( tf );
return XT_HANDLED;
}
int jabber_si_send_request(struct im_connection *ic, char *who, struct jabber_transfer *tf )
{
struct xt_node *node, *sinode;
struct jabber_buddy *bud;
/* who knows how many bits the future holds :) */
char filesizestr[ 1 + ( int ) ( 0.301029995663981198f * sizeof( size_t ) * 8 ) ];
const char *methods[] =
{
XMLNS_BYTESTREAMS,
//XMLNS_IBB,
NULL
};
const char **m;
char *s;
/* Maybe we should hash this? */
tf->sid = g_strdup_printf( "BitlBeeJabberSID%d", tf->ft->local_id );
if( ( s = strchr( who, '=' ) ) && jabber_chat_by_name( ic, s + 1 ) )
bud = jabber_buddy_by_ext_jid( ic, who, 0 );
else
bud = jabber_buddy_by_jid( ic, who, 0 );
/* start with the SI tag */
sinode = xt_new_node( "si", NULL, NULL );
xt_add_attr( sinode, "xmlns", XMLNS_SI );
xt_add_attr( sinode, "profile", XMLNS_FILETRANSFER );
xt_add_attr( sinode, "id", tf->sid );
/* if( mimetype )
xt_add_attr( node, "mime-type", mimetype ); */
/* now the file tag */
/* if( desc )
node = xt_new_node( "desc", descr, NULL ); */
node = xt_new_node( "range", NULL, NULL );
sprintf( filesizestr, "%zd", tf->ft->file_size );
node = xt_new_node( "file", NULL, node );
xt_add_attr( node, "xmlns", XMLNS_FILETRANSFER );
xt_add_attr( node, "name", tf->ft->file_name );
xt_add_attr( node, "size", filesizestr );
/* if (hash)
xt_add_attr( node, "hash", hash );
if (date)
xt_add_attr( node, "date", date ); */
xt_add_child( sinode, node );
/* and finally the feature tag */
node = xt_new_node( "field", NULL, NULL );
xt_add_attr( node, "var", "stream-method" );
xt_add_attr( node, "type", "list-single" );
for ( m = methods ; *m ; m ++ )
xt_add_child( node, xt_new_node( "option", NULL, xt_new_node( "value", (char *)*m, NULL ) ) );
node = xt_new_node( "x", NULL, node );
xt_add_attr( node, "xmlns", XMLNS_XDATA );
xt_add_attr( node, "type", "form" );
node = xt_new_node( "feature", NULL, node );
xt_add_attr( node, "xmlns", XMLNS_FEATURE );
xt_add_child( sinode, node );
/* and we are there... */
node = jabber_make_packet( "iq", "set", bud ? bud->full_jid : who, sinode );
jabber_cache_add( ic, node, jabber_si_handle_response );
tf->iq_id = g_strdup( xt_find_attr( node, "id" ) );
return jabber_write_packet( ic, node );
}
|