[2c2df7d] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2007 Uli Meis <a.sporto+bee@gmail.com> * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* |
---|
| 8 | This program is free software; you can redistribute it and/or modify |
---|
| 9 | it under the terms of the GNU General Public License as published by |
---|
| 10 | the Free Software Foundation; either version 2 of the License, or |
---|
| 11 | (at your option) any later version. |
---|
| 12 | |
---|
| 13 | This program is distributed in the hope that it will be useful, |
---|
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | GNU General Public License for more details. |
---|
| 17 | |
---|
| 18 | You should have received a copy of the GNU General Public License with |
---|
| 19 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
[6f10697] | 20 | if not, write to the Free Software Foundation, Inc., 51 Franklin St., |
---|
| 21 | Fifth Floor, Boston, MA 02110-1301 USA |
---|
[2c2df7d] | 22 | */ |
---|
| 23 | |
---|
| 24 | #define BITLBEE_CORE |
---|
| 25 | #include "bitlbee.h" |
---|
| 26 | #include "ft.h" |
---|
| 27 | #include "dcc.h" |
---|
| 28 | #include <netinet/tcp.h> |
---|
[2ff2076] | 29 | #include <regex.h> |
---|
[a02f34f] | 30 | #include "lib/ftutil.h" |
---|
[4358b10] | 31 | |
---|
[2c2df7d] | 32 | /* |
---|
| 33 | * Since that might be confusing a note on naming: |
---|
| 34 | * |
---|
| 35 | * Generic dcc functions start with |
---|
| 36 | * |
---|
| 37 | * dcc_ |
---|
| 38 | * |
---|
| 39 | * ,methods specific to DCC SEND start with |
---|
| 40 | * |
---|
| 41 | * dccs_ |
---|
| 42 | * |
---|
| 43 | * . Since we can be on both ends of a DCC SEND, |
---|
| 44 | * functions specific to one end are called |
---|
| 45 | * |
---|
| 46 | * dccs_send and dccs_recv |
---|
| 47 | * |
---|
| 48 | * ,respectively. |
---|
| 49 | */ |
---|
| 50 | |
---|
| 51 | |
---|
| 52 | /* |
---|
| 53 | * used to generate a unique local transfer id the user |
---|
| 54 | * can use to reject/cancel transfers |
---|
| 55 | */ |
---|
| 56 | unsigned int local_transfer_id=1; |
---|
| 57 | |
---|
| 58 | /* |
---|
| 59 | * just for debugging the nr. of chunks we received from im-protocols and the total data |
---|
| 60 | */ |
---|
| 61 | unsigned int receivedchunks=0, receiveddata=0; |
---|
| 62 | |
---|
[17a6ee9] | 63 | void dcc_finish( file_transfer_t *file ); |
---|
| 64 | void dcc_close( file_transfer_t *file ); |
---|
[2c2df7d] | 65 | gboolean dccs_send_proto( gpointer data, gint fd, b_input_condition cond ); |
---|
[17a6ee9] | 66 | int dccs_send_request( struct dcc_file_transfer *df, irc_user_t *iu, struct sockaddr_storage *saddr ); |
---|
[2ff2076] | 67 | gboolean dccs_recv_proto( gpointer data, gint fd, b_input_condition cond); |
---|
[dce3903] | 68 | gboolean dccs_recv_write_request( file_transfer_t *ft ); |
---|
[d56ee38] | 69 | gboolean dcc_progress( gpointer data, gint fd, b_input_condition cond ); |
---|
[a02f34f] | 70 | gboolean dcc_abort( dcc_file_transfer_t *df, char *reason, ... ); |
---|
[2c2df7d] | 71 | |
---|
[17a6ee9] | 72 | dcc_file_transfer_t *dcc_alloc_transfer( const char *file_name, size_t file_size, struct im_connection *ic ) |
---|
[2ff2076] | 73 | { |
---|
| 74 | file_transfer_t *file = g_new0( file_transfer_t, 1 ); |
---|
[1c3008a] | 75 | dcc_file_transfer_t *df = file->priv = g_new0( dcc_file_transfer_t, 1 ); |
---|
| 76 | |
---|
[2ff2076] | 77 | file->file_size = file_size; |
---|
| 78 | file->file_name = g_strdup( file_name ); |
---|
| 79 | file->local_id = local_transfer_id++; |
---|
[9d4352c] | 80 | file->ic = df->ic = ic; |
---|
[2ff2076] | 81 | df->ft = file; |
---|
| 82 | |
---|
| 83 | return df; |
---|
| 84 | } |
---|
| 85 | |
---|
[2c2df7d] | 86 | /* This is where the sending magic starts... */ |
---|
[17a6ee9] | 87 | file_transfer_t *dccs_send_start( struct im_connection *ic, irc_user_t *iu, const char *file_name, size_t file_size ) |
---|
[2c2df7d] | 88 | { |
---|
| 89 | file_transfer_t *file; |
---|
| 90 | dcc_file_transfer_t *df; |
---|
[17a6ee9] | 91 | irc_t *irc = (irc_t *) ic->bee->ui_data; |
---|
[a02f34f] | 92 | struct sockaddr_storage saddr; |
---|
| 93 | char *errmsg; |
---|
[60e4df3] | 94 | char host[HOST_NAME_MAX]; |
---|
[a02f34f] | 95 | char port[6]; |
---|
[2c2df7d] | 96 | |
---|
[a02f34f] | 97 | if( file_size > global.conf->ft_max_size ) |
---|
[2c2df7d] | 98 | return NULL; |
---|
| 99 | |
---|
[2ff2076] | 100 | df = dcc_alloc_transfer( file_name, file_size, ic ); |
---|
| 101 | file = df->ft; |
---|
[dce3903] | 102 | file->write = dccs_send_write; |
---|
[2ff2076] | 103 | |
---|
[2c2df7d] | 104 | /* listen and request */ |
---|
[a02f34f] | 105 | |
---|
[f1f7b5e] | 106 | if( ( df->fd = ft_listen( &saddr, host, port, irc->fd, TRUE, &errmsg ) ) == -1 ) |
---|
[1c3008a] | 107 | { |
---|
[a02f34f] | 108 | dcc_abort( df, "Failed to listen locally, check your ft_listen setting in bitlbee.conf: %s", errmsg ); |
---|
[2c2df7d] | 109 | return NULL; |
---|
[a02f34f] | 110 | } |
---|
[2c2df7d] | 111 | |
---|
[a02f34f] | 112 | file->status = FT_STATUS_LISTENING; |
---|
| 113 | |
---|
[17a6ee9] | 114 | if( !dccs_send_request( df, iu, &saddr ) ) |
---|
[a02f34f] | 115 | return NULL; |
---|
[2c2df7d] | 116 | |
---|
| 117 | /* watch */ |
---|
[0cb71a6] | 118 | df->watch_in = b_input_add( df->fd, B_EV_IO_READ, dccs_send_proto, df ); |
---|
[2c2df7d] | 119 | |
---|
[17a6ee9] | 120 | irc->file_transfers = g_slist_prepend( irc->file_transfers, file ); |
---|
[2c2df7d] | 121 | |
---|
[d56ee38] | 122 | df->progress_timeout = b_timeout_add( DCC_MAX_STALL * 1000, dcc_progress, df ); |
---|
| 123 | |
---|
[1c3008a] | 124 | imcb_log( ic, "File transfer request from %s for %s (%zd kb).\n" |
---|
| 125 | "Accept the file transfer if you'd like the file. If you don't, " |
---|
[2bfe976] | 126 | "issue the 'transfer reject' command.", |
---|
[17a6ee9] | 127 | iu->nick, file_name, file_size / 1024 ); |
---|
[4ac647d] | 128 | |
---|
[2c2df7d] | 129 | return file; |
---|
| 130 | } |
---|
| 131 | |
---|
| 132 | /* Used pretty much everywhere in the code to abort a transfer */ |
---|
| 133 | gboolean dcc_abort( dcc_file_transfer_t *df, char *reason, ... ) |
---|
| 134 | { |
---|
| 135 | file_transfer_t *file = df->ft; |
---|
| 136 | va_list params; |
---|
| 137 | va_start( params, reason ); |
---|
| 138 | char *msg = g_strdup_vprintf( reason, params ); |
---|
| 139 | va_end( params ); |
---|
| 140 | |
---|
| 141 | file->status |= FT_STATUS_CANCELED; |
---|
| 142 | |
---|
| 143 | if( file->canceled ) |
---|
| 144 | file->canceled( file, msg ); |
---|
[d56ee38] | 145 | |
---|
| 146 | imcb_log( df->ic, "File %s: DCC transfer aborted: %s", file->file_name, msg ); |
---|
[2c2df7d] | 147 | |
---|
| 148 | g_free( msg ); |
---|
| 149 | |
---|
| 150 | dcc_close( df->ft ); |
---|
| 151 | |
---|
| 152 | return FALSE; |
---|
| 153 | } |
---|
| 154 | |
---|
[d56ee38] | 155 | gboolean dcc_progress( gpointer data, gint fd, b_input_condition cond ) |
---|
| 156 | { |
---|
| 157 | struct dcc_file_transfer *df = data; |
---|
| 158 | |
---|
[b043ad5] | 159 | if( df->bytes_sent == df->progress_bytes_last ) |
---|
[d56ee38] | 160 | { |
---|
| 161 | /* no progress. cancel */ |
---|
| 162 | if( df->bytes_sent == 0 ) |
---|
[1c3008a] | 163 | return dcc_abort( df, "Couldn't establish transfer within %d seconds", DCC_MAX_STALL ); |
---|
[d56ee38] | 164 | else |
---|
[b043ad5] | 165 | return dcc_abort( df, "Transfer stalled for %d seconds at %d kb", DCC_MAX_STALL, df->bytes_sent / 1024 ); |
---|
[d56ee38] | 166 | |
---|
| 167 | } |
---|
| 168 | |
---|
[b043ad5] | 169 | df->progress_bytes_last = df->bytes_sent; |
---|
[d56ee38] | 170 | |
---|
| 171 | return TRUE; |
---|
| 172 | } |
---|
| 173 | |
---|
[2c2df7d] | 174 | /* used extensively for socket operations */ |
---|
| 175 | #define ASSERTSOCKOP(op, msg) \ |
---|
| 176 | if( (op) == -1 ) \ |
---|
| 177 | return dcc_abort( df , msg ": %s", strerror( errno ) ); |
---|
| 178 | |
---|
| 179 | /* Creates the "DCC SEND" line and sends it to the server */ |
---|
[17a6ee9] | 180 | int dccs_send_request( struct dcc_file_transfer *df, irc_user_t *iu, struct sockaddr_storage *saddr ) |
---|
[2c2df7d] | 181 | { |
---|
| 182 | char ipaddr[INET6_ADDRSTRLEN]; |
---|
| 183 | const void *netaddr; |
---|
| 184 | int port; |
---|
| 185 | char *cmd; |
---|
| 186 | |
---|
| 187 | if( saddr->ss_family == AF_INET ) |
---|
| 188 | { |
---|
| 189 | struct sockaddr_in *saddr_ipv4 = ( struct sockaddr_in *) saddr; |
---|
| 190 | |
---|
| 191 | sprintf( ipaddr, "%d", |
---|
[dce3903] | 192 | ntohl( saddr_ipv4->sin_addr.s_addr ) ); |
---|
[2c2df7d] | 193 | port = saddr_ipv4->sin_port; |
---|
[1c3008a] | 194 | } |
---|
| 195 | else |
---|
[2c2df7d] | 196 | { |
---|
| 197 | struct sockaddr_in6 *saddr_ipv6 = ( struct sockaddr_in6 *) saddr; |
---|
| 198 | |
---|
| 199 | netaddr = &saddr_ipv6->sin6_addr.s6_addr; |
---|
| 200 | port = saddr_ipv6->sin6_port; |
---|
| 201 | |
---|
| 202 | /* |
---|
| 203 | * Didn't find docs about this, but it seems that's the way irssi does it |
---|
| 204 | */ |
---|
| 205 | if( !inet_ntop( saddr->ss_family, netaddr, ipaddr, sizeof( ipaddr ) ) ) |
---|
| 206 | return dcc_abort( df, "inet_ntop failed: %s", strerror( errno ) ); |
---|
| 207 | } |
---|
| 208 | |
---|
| 209 | port = ntohs( port ); |
---|
| 210 | |
---|
| 211 | cmd = g_strdup_printf( "\001DCC SEND %s %s %u %zu\001", |
---|
| 212 | df->ft->file_name, ipaddr, port, df->ft->file_size ); |
---|
| 213 | |
---|
[17a6ee9] | 214 | irc_send_msg_raw( iu, "PRIVMSG", iu->irc->user->nick, cmd ); |
---|
[2c2df7d] | 215 | |
---|
| 216 | g_free( cmd ); |
---|
| 217 | |
---|
| 218 | return TRUE; |
---|
| 219 | } |
---|
| 220 | |
---|
[2ff2076] | 221 | /* |
---|
| 222 | * After setup, the transfer itself is handled entirely by this function. |
---|
| 223 | * There are basically four things to handle: connect, receive, send, and error. |
---|
| 224 | */ |
---|
| 225 | gboolean dccs_send_proto( gpointer data, gint fd, b_input_condition cond ) |
---|
| 226 | { |
---|
| 227 | dcc_file_transfer_t *df = data; |
---|
| 228 | file_transfer_t *file = df->ft; |
---|
| 229 | |
---|
[0cb71a6] | 230 | if( ( cond & B_EV_IO_READ ) && |
---|
[2c2df7d] | 231 | ( file->status & FT_STATUS_LISTENING ) ) |
---|
| 232 | { |
---|
| 233 | struct sockaddr *clt_addr; |
---|
| 234 | socklen_t ssize = sizeof( clt_addr ); |
---|
| 235 | |
---|
| 236 | /* Connect */ |
---|
| 237 | |
---|
| 238 | ASSERTSOCKOP( df->fd = accept( fd, (struct sockaddr *) &clt_addr, &ssize ), "Accepting connection" ); |
---|
| 239 | |
---|
| 240 | closesocket( fd ); |
---|
| 241 | fd = df->fd; |
---|
[2ff2076] | 242 | file->status = FT_STATUS_TRANSFERRING; |
---|
[2c2df7d] | 243 | sock_make_nonblocking( fd ); |
---|
| 244 | |
---|
| 245 | /* IM protocol callback */ |
---|
| 246 | if( file->accept ) |
---|
| 247 | file->accept( file ); |
---|
[dce3903] | 248 | |
---|
[2c2df7d] | 249 | /* reschedule for reading on new fd */ |
---|
[0cb71a6] | 250 | df->watch_in = b_input_add( fd, B_EV_IO_READ, dccs_send_proto, df ); |
---|
[2c2df7d] | 251 | |
---|
| 252 | return FALSE; |
---|
| 253 | } |
---|
| 254 | |
---|
[0cb71a6] | 255 | if( cond & B_EV_IO_READ ) |
---|
[2c2df7d] | 256 | { |
---|
| 257 | int ret; |
---|
| 258 | |
---|
[4ed9c8c] | 259 | ASSERTSOCKOP( ret = recv( fd, ( (char*) &df->acked ) + df->acked_len, |
---|
| 260 | sizeof( df->acked ) - df->acked_len, 0 ), "Receiving" ); |
---|
[2c2df7d] | 261 | |
---|
| 262 | if( ret == 0 ) |
---|
| 263 | return dcc_abort( df, "Remote end closed connection" ); |
---|
[4ed9c8c] | 264 | |
---|
| 265 | /* How likely is it that a 32-bit integer gets split accross |
---|
| 266 | packet boundaries? Chances are rarely 0 so let's be sure. */ |
---|
| 267 | if( ( df->acked_len = ( df->acked_len + ret ) % 4 ) > 0 ) |
---|
[2c2df7d] | 268 | return TRUE; |
---|
| 269 | |
---|
[4ed9c8c] | 270 | df->acked = ntohl( df->acked ); |
---|
[2c2df7d] | 271 | |
---|
| 272 | /* If any of this is actually happening, the receiver should buy a new IRC client */ |
---|
| 273 | |
---|
[4ed9c8c] | 274 | if ( df->acked > df->bytes_sent ) |
---|
| 275 | return dcc_abort( df, "Receiver magically received more bytes than sent ( %d > %d ) (BUG at receiver?)", df->acked, df->bytes_sent ); |
---|
[2c2df7d] | 276 | |
---|
[4ed9c8c] | 277 | if ( df->acked < file->bytes_transferred ) |
---|
| 278 | return dcc_abort( df, "Receiver lost bytes? ( has %d, had %d ) (BUG at receiver?)", df->acked, file->bytes_transferred ); |
---|
[2c2df7d] | 279 | |
---|
[4ed9c8c] | 280 | file->bytes_transferred = df->acked; |
---|
[2c2df7d] | 281 | |
---|
| 282 | if( file->bytes_transferred >= file->file_size ) { |
---|
[4ac647d] | 283 | if( df->proto_finished ) |
---|
| 284 | dcc_finish( file ); |
---|
[2c2df7d] | 285 | return FALSE; |
---|
| 286 | } |
---|
| 287 | |
---|
| 288 | return TRUE; |
---|
| 289 | } |
---|
| 290 | |
---|
| 291 | return TRUE; |
---|
| 292 | } |
---|
| 293 | |
---|
[2ff2076] | 294 | gboolean dccs_recv_start( file_transfer_t *ft ) |
---|
| 295 | { |
---|
| 296 | dcc_file_transfer_t *df = ft->priv; |
---|
| 297 | struct sockaddr_storage *saddr = &df->saddr; |
---|
| 298 | int fd; |
---|
[0cab388] | 299 | char ipaddr[INET6_ADDRSTRLEN]; |
---|
[2ff2076] | 300 | socklen_t sa_len = saddr->ss_family == AF_INET ? |
---|
| 301 | sizeof( struct sockaddr_in ) : sizeof( struct sockaddr_in6 ); |
---|
| 302 | |
---|
| 303 | if( !ft->write ) |
---|
[0cab388] | 304 | return dcc_abort( df, "BUG: protocol didn't register write()" ); |
---|
[2ff2076] | 305 | |
---|
[1c3008a] | 306 | ASSERTSOCKOP( fd = df->fd = socket( saddr->ss_family, SOCK_STREAM, 0 ), "Opening Socket" ); |
---|
[2ff2076] | 307 | |
---|
| 308 | sock_make_nonblocking( fd ); |
---|
| 309 | |
---|
| 310 | if( ( connect( fd, (struct sockaddr *)saddr, sa_len ) == -1 ) && |
---|
| 311 | ( errno != EINPROGRESS ) ) |
---|
[0cab388] | 312 | return dcc_abort( df, "Connecting to %s:%d : %s", |
---|
| 313 | inet_ntop( saddr->ss_family, |
---|
| 314 | saddr->ss_family == AF_INET ? |
---|
| 315 | ( void* ) &( ( struct sockaddr_in *) saddr )->sin_addr.s_addr : |
---|
| 316 | ( void* ) &( ( struct sockaddr_in6 *) saddr )->sin6_addr.s6_addr, |
---|
| 317 | ipaddr, |
---|
| 318 | sizeof( ipaddr ) ), |
---|
| 319 | ntohs( saddr->ss_family == AF_INET ? |
---|
| 320 | ( ( struct sockaddr_in *) saddr )->sin_port : |
---|
| 321 | ( ( struct sockaddr_in6 *) saddr )->sin6_port ), |
---|
| 322 | strerror( errno ) ); |
---|
[2ff2076] | 323 | |
---|
| 324 | ft->status = FT_STATUS_CONNECTING; |
---|
| 325 | |
---|
| 326 | /* watch */ |
---|
[0cb71a6] | 327 | df->watch_out = b_input_add( df->fd, B_EV_IO_WRITE, dccs_recv_proto, df ); |
---|
[dce3903] | 328 | ft->write_request = dccs_recv_write_request; |
---|
[2ff2076] | 329 | |
---|
[d56ee38] | 330 | df->progress_timeout = b_timeout_add( DCC_MAX_STALL * 1000, dcc_progress, df ); |
---|
| 331 | |
---|
[2ff2076] | 332 | return TRUE; |
---|
| 333 | } |
---|
| 334 | |
---|
[1c3008a] | 335 | gboolean dccs_recv_proto( gpointer data, gint fd, b_input_condition cond ) |
---|
[2ff2076] | 336 | { |
---|
| 337 | dcc_file_transfer_t *df = data; |
---|
| 338 | file_transfer_t *ft = df->ft; |
---|
| 339 | |
---|
[0cb71a6] | 340 | if( ( cond & B_EV_IO_WRITE ) && |
---|
[2ff2076] | 341 | ( ft->status & FT_STATUS_CONNECTING ) ) |
---|
| 342 | { |
---|
| 343 | ft->status = FT_STATUS_TRANSFERRING; |
---|
| 344 | |
---|
[0cb71a6] | 345 | //df->watch_in = b_input_add( df->fd, B_EV_IO_READ, dccs_recv_proto, df ); |
---|
[2ff2076] | 346 | |
---|
| 347 | df->watch_out = 0; |
---|
| 348 | return FALSE; |
---|
| 349 | } |
---|
| 350 | |
---|
[0cb71a6] | 351 | if( cond & B_EV_IO_READ ) |
---|
[2ff2076] | 352 | { |
---|
| 353 | int ret, done; |
---|
| 354 | |
---|
[dce3903] | 355 | ASSERTSOCKOP( ret = recv( fd, ft->buffer, sizeof( ft->buffer ), 0 ), "Receiving" ); |
---|
[2ff2076] | 356 | |
---|
| 357 | if( ret == 0 ) |
---|
| 358 | return dcc_abort( df, "Remote end closed connection" ); |
---|
| 359 | |
---|
[4ac647d] | 360 | if( !ft->write( df->ft, ft->buffer, ret ) ) |
---|
| 361 | return FALSE; |
---|
| 362 | |
---|
[2ff2076] | 363 | df->bytes_sent += ret; |
---|
| 364 | |
---|
| 365 | done = df->bytes_sent >= ft->file_size; |
---|
| 366 | |
---|
| 367 | if( ( ( df->bytes_sent - ft->bytes_transferred ) > DCC_PACKET_SIZE ) || |
---|
| 368 | done ) |
---|
| 369 | { |
---|
[4ed9c8c] | 370 | guint32 ack = htonl( ft->bytes_transferred = df->bytes_sent ); |
---|
| 371 | int ackret; |
---|
[2ff2076] | 372 | |
---|
| 373 | ASSERTSOCKOP( ackret = send( fd, &ack, 4, 0 ), "Sending DCC ACK" ); |
---|
| 374 | |
---|
| 375 | if ( ackret != 4 ) |
---|
[dce3903] | 376 | return dcc_abort( df, "Error sending DCC ACK, sent %d instead of 4 bytes", ackret ); |
---|
[2ff2076] | 377 | } |
---|
| 378 | |
---|
[4ac647d] | 379 | if( df->bytes_sent == ret ) |
---|
| 380 | ft->started = time( NULL ); |
---|
[2ff2076] | 381 | |
---|
| 382 | if( done ) |
---|
| 383 | { |
---|
[4ac647d] | 384 | if( df->watch_out ) |
---|
| 385 | b_event_remove( df->watch_out ); |
---|
| 386 | |
---|
[b6bd99c] | 387 | df->watch_in = 0; |
---|
| 388 | |
---|
[4ac647d] | 389 | if( df->proto_finished ) |
---|
| 390 | dcc_finish( ft ); |
---|
[2ff2076] | 391 | |
---|
| 392 | return FALSE; |
---|
| 393 | } |
---|
| 394 | |
---|
[dce3903] | 395 | df->watch_in = 0; |
---|
| 396 | return FALSE; |
---|
[2ff2076] | 397 | } |
---|
| 398 | |
---|
| 399 | return TRUE; |
---|
| 400 | } |
---|
| 401 | |
---|
[dce3903] | 402 | gboolean dccs_recv_write_request( file_transfer_t *ft ) |
---|
[2ff2076] | 403 | { |
---|
| 404 | dcc_file_transfer_t *df = ft->priv; |
---|
| 405 | |
---|
[dce3903] | 406 | if( df->watch_in ) |
---|
| 407 | return dcc_abort( df, "BUG: write_request() called while watching" ); |
---|
| 408 | |
---|
[0cb71a6] | 409 | df->watch_in = b_input_add( df->fd, B_EV_IO_READ, dccs_recv_proto, df ); |
---|
[dce3903] | 410 | |
---|
| 411 | return TRUE; |
---|
| 412 | } |
---|
| 413 | |
---|
| 414 | gboolean dccs_send_can_write( gpointer data, gint fd, b_input_condition cond ) |
---|
| 415 | { |
---|
| 416 | struct dcc_file_transfer *df = data; |
---|
| 417 | df->watch_out = 0; |
---|
| 418 | |
---|
| 419 | df->ft->write_request( df->ft ); |
---|
| 420 | return FALSE; |
---|
[2ff2076] | 421 | } |
---|
| 422 | |
---|
[2c2df7d] | 423 | /* |
---|
[dce3903] | 424 | * Incoming data. |
---|
[2c2df7d] | 425 | * |
---|
[dce3903] | 426 | */ |
---|
| 427 | gboolean dccs_send_write( file_transfer_t *file, char *data, unsigned int data_len ) |
---|
[2c2df7d] | 428 | { |
---|
| 429 | dcc_file_transfer_t *df = file->priv; |
---|
[dce3903] | 430 | int ret; |
---|
| 431 | |
---|
| 432 | receivedchunks++; receiveddata += data_len; |
---|
[2c2df7d] | 433 | |
---|
[dce3903] | 434 | if( df->watch_out ) |
---|
| 435 | return dcc_abort( df, "BUG: write() called while watching" ); |
---|
[2c2df7d] | 436 | |
---|
[dce3903] | 437 | ASSERTSOCKOP( ret = send( df->fd, data, data_len, 0 ), "Sending data" ); |
---|
[2c2df7d] | 438 | |
---|
[dce3903] | 439 | if( ret == 0 ) |
---|
| 440 | return dcc_abort( df, "Remote end closed connection" ); |
---|
[2c2df7d] | 441 | |
---|
[dce3903] | 442 | /* TODO: this should really not be fatal */ |
---|
| 443 | if( ret < data_len ) |
---|
| 444 | return dcc_abort( df, "send() sent %d instead of %d", ret, data_len ); |
---|
[2c2df7d] | 445 | |
---|
[4ac647d] | 446 | if( df->bytes_sent == 0 ) |
---|
| 447 | file->started = time( NULL ); |
---|
| 448 | |
---|
[dce3903] | 449 | df->bytes_sent += ret; |
---|
| 450 | |
---|
| 451 | if( df->bytes_sent < df->ft->file_size ) |
---|
[0cb71a6] | 452 | df->watch_out = b_input_add( df->fd, B_EV_IO_WRITE, dccs_send_can_write, df ); |
---|
[dce3903] | 453 | |
---|
| 454 | return TRUE; |
---|
[2c2df7d] | 455 | } |
---|
| 456 | |
---|
| 457 | /* |
---|
| 458 | * Cleans up after a transfer. |
---|
| 459 | */ |
---|
[17a6ee9] | 460 | void dcc_close( file_transfer_t *file ) |
---|
[2c2df7d] | 461 | { |
---|
| 462 | dcc_file_transfer_t *df = file->priv; |
---|
[17a6ee9] | 463 | irc_t *irc = (irc_t *) df->ic->bee->ui_data; |
---|
[2c2df7d] | 464 | |
---|
| 465 | if( file->free ) |
---|
| 466 | file->free( file ); |
---|
| 467 | |
---|
| 468 | closesocket( df->fd ); |
---|
| 469 | |
---|
| 470 | if( df->watch_in ) |
---|
| 471 | b_event_remove( df->watch_in ); |
---|
| 472 | |
---|
| 473 | if( df->watch_out ) |
---|
| 474 | b_event_remove( df->watch_out ); |
---|
| 475 | |
---|
[d56ee38] | 476 | if( df->progress_timeout ) |
---|
| 477 | b_event_remove( df->progress_timeout ); |
---|
| 478 | |
---|
[17a6ee9] | 479 | irc->file_transfers = g_slist_remove( irc->file_transfers, file ); |
---|
[2c2df7d] | 480 | |
---|
| 481 | g_free( df ); |
---|
| 482 | g_free( file->file_name ); |
---|
| 483 | g_free( file ); |
---|
| 484 | } |
---|
| 485 | |
---|
| 486 | void dcc_finish( file_transfer_t *file ) |
---|
| 487 | { |
---|
[4ac647d] | 488 | dcc_file_transfer_t *df = file->priv; |
---|
| 489 | time_t diff = time( NULL ) - file->started ? : 1; |
---|
| 490 | |
---|
[2c2df7d] | 491 | file->status |= FT_STATUS_FINISHED; |
---|
| 492 | |
---|
| 493 | if( file->finished ) |
---|
| 494 | file->finished( file ); |
---|
| 495 | |
---|
[4ac647d] | 496 | imcb_log( df->ic, "File %s transferred successfully at %d kb/s!" , file->file_name, (int) ( file->bytes_transferred / 1024 / diff ) ); |
---|
[2c2df7d] | 497 | dcc_close( file ); |
---|
| 498 | } |
---|
[2ff2076] | 499 | |
---|
| 500 | /* |
---|
| 501 | * DCC SEND <filename> <IP> <port> <filesize> |
---|
| 502 | * |
---|
| 503 | * filename can be in "" or not. If it is, " can probably be escaped... |
---|
| 504 | * IP can be an unsigned int (IPV4) or something else (IPV6) |
---|
| 505 | * |
---|
| 506 | */ |
---|
[89c11e7] | 507 | file_transfer_t *dcc_request( struct im_connection *ic, char* const* ctcp ) |
---|
[2ff2076] | 508 | { |
---|
[17a6ee9] | 509 | irc_t *irc = (irc_t *) ic->bee->ui_data; |
---|
[2ff2076] | 510 | file_transfer_t *ft; |
---|
| 511 | dcc_file_transfer_t *df; |
---|
[89c11e7] | 512 | int gret; |
---|
| 513 | size_t filesize; |
---|
| 514 | |
---|
| 515 | if( ctcp[5] != NULL && |
---|
| 516 | sscanf( ctcp[4], "%zd", &filesize ) == 1 && /* Just int. validation. */ |
---|
| 517 | sscanf( ctcp[5], "%zd", &filesize ) == 1 ) |
---|
[2ff2076] | 518 | { |
---|
| 519 | char *filename, *host, *port; |
---|
| 520 | struct addrinfo hints, *rp; |
---|
[89c11e7] | 521 | |
---|
| 522 | filename = ctcp[2]; |
---|
| 523 | |
---|
| 524 | host = ctcp[3]; |
---|
[6b13103] | 525 | while( *host && g_ascii_isdigit( *host ) ) host++; /* Just digits? */ |
---|
[89c11e7] | 526 | if( *host == '\0' ) |
---|
[2ff2076] | 527 | { |
---|
[89c11e7] | 528 | struct in_addr ipaddr = { .s_addr = htonl( atoll( ctcp[3] ) ) }; |
---|
[2ff2076] | 529 | host = inet_ntoa( ipaddr ); |
---|
| 530 | } else |
---|
| 531 | { |
---|
| 532 | /* Contains non-numbers, hopefully an IPV6 address */ |
---|
[89c11e7] | 533 | host = ctcp[3]; |
---|
[2ff2076] | 534 | } |
---|
| 535 | |
---|
[89c11e7] | 536 | port = ctcp[4]; |
---|
| 537 | filesize = atoll( ctcp[5] ); |
---|
[2ff2076] | 538 | |
---|
| 539 | memset( &hints, 0, sizeof ( struct addrinfo ) ); |
---|
[aac4017] | 540 | hints.ai_socktype = SOCK_STREAM; |
---|
| 541 | hints.ai_flags = AI_NUMERICSERV; |
---|
| 542 | |
---|
[6cac643] | 543 | if ( ( gret = getaddrinfo( host, port, &hints, &rp ) ) ) |
---|
[2ff2076] | 544 | { |
---|
[6cac643] | 545 | imcb_log( ic, "DCC: getaddrinfo() failed with %s " |
---|
| 546 | "when parsing incoming 'DCC SEND': " |
---|
| 547 | "host %s, port %s", |
---|
| 548 | gai_strerror( gret ), host, port ); |
---|
[2ff2076] | 549 | return NULL; |
---|
| 550 | } |
---|
| 551 | |
---|
| 552 | df = dcc_alloc_transfer( filename, filesize, ic ); |
---|
| 553 | ft = df->ft; |
---|
| 554 | ft->sending = TRUE; |
---|
| 555 | memcpy( &df->saddr, rp->ai_addr, rp->ai_addrlen ); |
---|
| 556 | |
---|
| 557 | freeaddrinfo( rp ); |
---|
| 558 | |
---|
[17a6ee9] | 559 | irc->file_transfers = g_slist_prepend( irc->file_transfers, ft ); |
---|
[2ff2076] | 560 | |
---|
| 561 | return ft; |
---|
| 562 | } |
---|
[89c11e7] | 563 | else |
---|
| 564 | imcb_log( ic, "DCC: couldnt parse `DCC SEND' line" ); |
---|
[6cac643] | 565 | |
---|
[2ff2076] | 566 | return NULL; |
---|
| 567 | } |
---|