[2309152] | 1 | /***************************************************************************\ |
---|
| 2 | * * |
---|
| 3 | * BitlBee - An IRC to IM gateway * |
---|
| 4 | * libpurple module - File transfer stuff * |
---|
| 5 | * * |
---|
| 6 | * Copyright 2009-2010 Wilmer van der Gaast <wilmer@gaast.net> * |
---|
| 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 along * |
---|
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., * |
---|
| 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * |
---|
| 21 | * * |
---|
| 22 | \***************************************************************************/ |
---|
| 23 | |
---|
[553767c] | 24 | /* Do file transfers via disk for now, since libpurple was really designed |
---|
| 25 | for straight-to/from disk fts and is only just learning how to pass the |
---|
| 26 | file contents the the UI instead (2.6.0 and higher it seems, and with |
---|
| 27 | varying levels of success). */ |
---|
| 28 | |
---|
[2309152] | 29 | #include "bitlbee.h" |
---|
| 30 | |
---|
| 31 | #include <stdarg.h> |
---|
| 32 | |
---|
| 33 | #include <glib.h> |
---|
| 34 | #include <purple.h> |
---|
| 35 | |
---|
| 36 | struct prpl_xfer_data |
---|
| 37 | { |
---|
| 38 | PurpleXfer *xfer; |
---|
| 39 | file_transfer_t *ft; |
---|
[e7dc02a] | 40 | struct im_connection *ic; |
---|
[8822d23] | 41 | int fd; |
---|
[75c3ff7] | 42 | char *fn, *handle; |
---|
[8822d23] | 43 | gboolean ui_wants_data; |
---|
[2309152] | 44 | }; |
---|
| 45 | |
---|
| 46 | static file_transfer_t *next_ft; |
---|
| 47 | |
---|
| 48 | struct im_connection *purple_ic_by_pa( PurpleAccount *pa ); |
---|
[c96c72f] | 49 | static gboolean prplcb_xfer_new_send_cb( gpointer data, gint fd, b_input_condition cond ); |
---|
| 50 | static gboolean prpl_xfer_write_request( struct file_transfer *ft ); |
---|
[2309152] | 51 | |
---|
| 52 | |
---|
[c96c72f] | 53 | /* Receiving files (IM->UI): */ |
---|
[2309152] | 54 | static void prpl_xfer_accept( struct file_transfer *ft ) |
---|
| 55 | { |
---|
| 56 | struct prpl_xfer_data *px = ft->data; |
---|
| 57 | purple_xfer_request_accepted( px->xfer, NULL ); |
---|
| 58 | prpl_xfer_write_request( ft ); |
---|
| 59 | } |
---|
| 60 | |
---|
| 61 | static void prpl_xfer_canceled( struct file_transfer *ft, char *reason ) |
---|
| 62 | { |
---|
| 63 | struct prpl_xfer_data *px = ft->data; |
---|
| 64 | purple_xfer_request_denied( px->xfer ); |
---|
| 65 | } |
---|
| 66 | |
---|
| 67 | static void prplcb_xfer_new( PurpleXfer *xfer ) |
---|
| 68 | { |
---|
| 69 | if( purple_xfer_get_type( xfer ) == PURPLE_XFER_RECEIVE ) |
---|
| 70 | { |
---|
[8822d23] | 71 | struct prpl_xfer_data *px = g_new0( struct prpl_xfer_data, 1 ); |
---|
| 72 | |
---|
| 73 | xfer->ui_data = px; |
---|
| 74 | px->xfer = xfer; |
---|
| 75 | px->fn = mktemp( g_strdup( "/tmp/bitlbee-purple-ft.XXXXXX" ) ); |
---|
| 76 | px->fd = -1; |
---|
| 77 | |
---|
| 78 | purple_xfer_set_local_filename( xfer, px->fn ); |
---|
[2309152] | 79 | |
---|
| 80 | /* Sadly the xfer struct is still empty ATM so come back after |
---|
| 81 | the caller is done. */ |
---|
| 82 | b_timeout_add( 0, prplcb_xfer_new_send_cb, xfer ); |
---|
| 83 | } |
---|
| 84 | else |
---|
| 85 | { |
---|
[e7dc02a] | 86 | struct file_transfer *ft = next_ft; |
---|
| 87 | struct prpl_xfer_data *px = ft->data; |
---|
[2309152] | 88 | |
---|
[e7dc02a] | 89 | xfer->ui_data = px; |
---|
[2309152] | 90 | px->xfer = xfer; |
---|
| 91 | |
---|
| 92 | next_ft = NULL; |
---|
| 93 | } |
---|
| 94 | } |
---|
| 95 | |
---|
[553767c] | 96 | static gboolean prplcb_xfer_new_send_cb( gpointer data, gint fd, b_input_condition cond ) |
---|
[2309152] | 97 | { |
---|
[553767c] | 98 | PurpleXfer *xfer = data; |
---|
| 99 | struct im_connection *ic = purple_ic_by_pa( xfer->account ); |
---|
[8822d23] | 100 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
[553767c] | 101 | PurpleBuddy *buddy; |
---|
| 102 | const char *who; |
---|
[2309152] | 103 | |
---|
[553767c] | 104 | buddy = purple_find_buddy( xfer->account, xfer->who ); |
---|
| 105 | who = buddy ? purple_buddy_get_name( buddy ) : xfer->who; |
---|
[2309152] | 106 | |
---|
[553767c] | 107 | /* TODO(wilmer): After spreading some more const goodness in BitlBee, |
---|
| 108 | remove the evil cast below. */ |
---|
| 109 | px->ft = imcb_file_send_start( ic, (char*) who, xfer->filename, xfer->size ); |
---|
| 110 | px->ft->data = px; |
---|
[2309152] | 111 | |
---|
[553767c] | 112 | px->ft->accept = prpl_xfer_accept; |
---|
| 113 | px->ft->canceled = prpl_xfer_canceled; |
---|
| 114 | px->ft->write_request = prpl_xfer_write_request; |
---|
[2309152] | 115 | |
---|
[553767c] | 116 | return FALSE; |
---|
[2309152] | 117 | } |
---|
| 118 | |
---|
[c96c72f] | 119 | gboolean try_write_to_ui( gpointer data, gint fd, b_input_condition cond ) |
---|
| 120 | { |
---|
| 121 | struct file_transfer *ft = data; |
---|
| 122 | struct prpl_xfer_data *px = ft->data; |
---|
| 123 | struct stat fs; |
---|
| 124 | off_t tx_bytes; |
---|
| 125 | |
---|
| 126 | /* If we don't have the file opened yet, there's no data so wait. */ |
---|
| 127 | if( px->fd < 0 || !px->ui_wants_data ) |
---|
| 128 | return FALSE; |
---|
| 129 | |
---|
| 130 | tx_bytes = lseek( px->fd, 0, SEEK_CUR ); |
---|
| 131 | fstat( px->fd, &fs ); |
---|
| 132 | |
---|
| 133 | if( fs.st_size > tx_bytes ) |
---|
| 134 | { |
---|
| 135 | char buf[1024]; |
---|
| 136 | size_t n = MIN( fs.st_size - tx_bytes, sizeof( buf ) ); |
---|
| 137 | |
---|
| 138 | if( read( px->fd, buf, n ) == n && ft->write( ft, buf, n ) ) |
---|
| 139 | { |
---|
| 140 | px->ui_wants_data = FALSE; |
---|
| 141 | } |
---|
| 142 | else |
---|
| 143 | { |
---|
| 144 | purple_xfer_cancel_local( px->xfer ); |
---|
| 145 | imcb_file_canceled( ft, "Read error" ); |
---|
| 146 | } |
---|
| 147 | } |
---|
| 148 | |
---|
| 149 | if( lseek( px->fd, 0, SEEK_CUR ) == px->xfer->size ) |
---|
| 150 | { |
---|
[75c3ff7] | 151 | /*purple_xfer_end( px->xfer );*/ |
---|
[c96c72f] | 152 | imcb_file_finished( ft ); |
---|
| 153 | } |
---|
| 154 | |
---|
| 155 | return FALSE; |
---|
| 156 | } |
---|
| 157 | |
---|
| 158 | /* UI calls this when its buffer is empty and wants more data to send to the user. */ |
---|
| 159 | static gboolean prpl_xfer_write_request( struct file_transfer *ft ) |
---|
| 160 | { |
---|
| 161 | struct prpl_xfer_data *px = ft->data; |
---|
| 162 | |
---|
| 163 | px->ui_wants_data = TRUE; |
---|
| 164 | try_write_to_ui( ft, 0, 0 ); |
---|
| 165 | |
---|
| 166 | return FALSE; |
---|
| 167 | } |
---|
| 168 | |
---|
| 169 | |
---|
| 170 | /* Generic (IM<>UI): */ |
---|
[8822d23] | 171 | static void prplcb_xfer_destroy( PurpleXfer *xfer ) |
---|
| 172 | { |
---|
| 173 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
| 174 | |
---|
| 175 | g_free( px->fn ); |
---|
[e7dc02a] | 176 | g_free( px->handle ); |
---|
[8822d23] | 177 | if( px->fd >= 0 ) |
---|
| 178 | close( px->fd ); |
---|
| 179 | g_free( px ); |
---|
| 180 | } |
---|
| 181 | |
---|
[553767c] | 182 | static void prplcb_xfer_progress( PurpleXfer *xfer, double percent ) |
---|
[2309152] | 183 | { |
---|
[8822d23] | 184 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
| 185 | |
---|
[e7dc02a] | 186 | if( px == NULL ) |
---|
| 187 | return; |
---|
| 188 | |
---|
| 189 | if( purple_xfer_get_type( xfer ) == PURPLE_XFER_SEND ) |
---|
| 190 | { |
---|
| 191 | if( *px->fn ) |
---|
| 192 | { |
---|
[75c3ff7] | 193 | char *slash; |
---|
| 194 | |
---|
| 195 | unlink( px->fn ); |
---|
| 196 | if( ( slash = strrchr( px->fn, '/' ) ) ) |
---|
| 197 | { |
---|
| 198 | *slash = '\0'; |
---|
| 199 | rmdir( px->fn ); |
---|
| 200 | } |
---|
[e7dc02a] | 201 | *px->fn = '\0'; |
---|
| 202 | } |
---|
| 203 | |
---|
| 204 | return; |
---|
| 205 | } |
---|
| 206 | |
---|
[8822d23] | 207 | if( px->fd == -1 && percent > 0 ) |
---|
| 208 | { |
---|
| 209 | /* Weeeeeeeee, we're getting data! That means the file exists |
---|
| 210 | by now so open it and start sending to the UI. */ |
---|
| 211 | px->fd = open( px->fn, O_RDONLY ); |
---|
| 212 | |
---|
| 213 | /* Unlink it now, because we don't need it after this. */ |
---|
[c96c72f] | 214 | unlink( px->fn ); |
---|
[8822d23] | 215 | } |
---|
| 216 | |
---|
| 217 | if( percent < 1 ) |
---|
| 218 | try_write_to_ui( px->ft, 0, 0 ); |
---|
| 219 | else |
---|
[c96c72f] | 220 | /* Another nice problem: If we have the whole file, it only |
---|
| 221 | gets closed when we return. Problem: There may still be |
---|
| 222 | stuff buffered and not written, we'll only see it after |
---|
| 223 | the caller close()s the file. So poll the file after that. */ |
---|
[8822d23] | 224 | b_timeout_add( 0, try_write_to_ui, px->ft ); |
---|
| 225 | } |
---|
| 226 | |
---|
| 227 | static void prplcb_xfer_cancel_remote( PurpleXfer *xfer ) |
---|
| 228 | { |
---|
| 229 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
| 230 | |
---|
[75c3ff7] | 231 | if( px->ft ) |
---|
| 232 | imcb_file_canceled( px->ft, "Canceled by remote end" ); |
---|
| 233 | else |
---|
| 234 | /* px->ft == NULL for sends, because of the two stages. :-/ */ |
---|
| 235 | imcb_error( px->ic, "File transfer cancelled by remote end" ); |
---|
[e7dc02a] | 236 | } |
---|
| 237 | |
---|
[553767c] | 238 | static void prplcb_xfer_dbg( PurpleXfer *xfer ) |
---|
| 239 | { |
---|
| 240 | fprintf( stderr, "prplcb_xfer_dbg 0x%p\n", xfer ); |
---|
[2309152] | 241 | } |
---|
| 242 | |
---|
[c96c72f] | 243 | |
---|
| 244 | /* Sending files (UI->IM): */ |
---|
[e7dc02a] | 245 | static gboolean prpl_xfer_write( struct file_transfer *ft, char *buffer, unsigned int len ); |
---|
| 246 | static gboolean purple_transfer_request_cb( gpointer data, gint fd, b_input_condition cond ); |
---|
| 247 | |
---|
| 248 | void purple_transfer_request( struct im_connection *ic, file_transfer_t *ft, char *handle ) |
---|
[2309152] | 249 | { |
---|
[e7dc02a] | 250 | struct prpl_xfer_data *px = g_new0( struct prpl_xfer_data, 1 ); |
---|
[75c3ff7] | 251 | char *dir, *basename; |
---|
[e7dc02a] | 252 | |
---|
| 253 | ft->data = px; |
---|
| 254 | px->ft = ft; |
---|
[75c3ff7] | 255 | |
---|
| 256 | dir = g_strdup( "/tmp/bitlbee-purple-ft.XXXXXX" ); |
---|
| 257 | if( !mkdtemp( dir ) ) |
---|
| 258 | { |
---|
| 259 | imcb_error( ic, "Could not create temporary file for file transfer" ); |
---|
| 260 | g_free( px ); |
---|
| 261 | g_free( dir ); |
---|
| 262 | return; |
---|
| 263 | } |
---|
| 264 | |
---|
| 265 | if( ( basename = strrchr( ft->file_name, '/' ) ) ) |
---|
| 266 | basename++; |
---|
| 267 | else |
---|
| 268 | basename = ft->file_name; |
---|
| 269 | px->fn = g_strdup_printf( "%s/%s", dir, basename ); |
---|
| 270 | px->fd = open( px->fn, O_WRONLY | O_CREAT, 0600 ); |
---|
| 271 | g_free( dir ); |
---|
| 272 | |
---|
| 273 | if( px->fd < 0 ) |
---|
| 274 | { |
---|
| 275 | imcb_error( ic, "Could not create temporary file for file transfer" ); |
---|
| 276 | g_free( px ); |
---|
| 277 | g_free( px->fn ); |
---|
| 278 | return; |
---|
| 279 | } |
---|
[e7dc02a] | 280 | |
---|
| 281 | px->ic = ic; |
---|
| 282 | px->handle = g_strdup( handle ); |
---|
| 283 | |
---|
| 284 | imcb_log( ic, "Due to libpurple limitations, the file has to be cached locally before proceeding with the actual file transfer. Please wait..." ); |
---|
| 285 | |
---|
| 286 | b_timeout_add( 0, purple_transfer_request_cb, ft ); |
---|
[c96c72f] | 287 | } |
---|
[2309152] | 288 | |
---|
[e7dc02a] | 289 | static void purple_transfer_forward( struct file_transfer *ft ) |
---|
[2309152] | 290 | { |
---|
[e7dc02a] | 291 | struct prpl_xfer_data *px = ft->data; |
---|
| 292 | PurpleAccount *pa = px->ic->proto_data; |
---|
[2309152] | 293 | |
---|
| 294 | /* xfer_new() will pick up this variable. It's a hack but we're not |
---|
| 295 | multi-threaded anyway. */ |
---|
| 296 | next_ft = ft; |
---|
[e7dc02a] | 297 | serv_send_file( purple_account_get_connection( pa ), px->handle, px->fn ); |
---|
| 298 | } |
---|
| 299 | |
---|
| 300 | static gboolean purple_transfer_request_cb( gpointer data, gint fd, b_input_condition cond ) |
---|
| 301 | { |
---|
| 302 | file_transfer_t *ft = data; |
---|
| 303 | |
---|
| 304 | if( ft->write == NULL ) |
---|
| 305 | { |
---|
| 306 | ft->write = prpl_xfer_write; |
---|
| 307 | imcb_file_recv_start( ft ); |
---|
| 308 | } |
---|
[2309152] | 309 | |
---|
[e7dc02a] | 310 | ft->write_request( ft ); |
---|
[2309152] | 311 | |
---|
[e7dc02a] | 312 | return FALSE; |
---|
[2309152] | 313 | } |
---|
[c96c72f] | 314 | |
---|
[e7dc02a] | 315 | static gboolean prpl_xfer_write( struct file_transfer *ft, char *buffer, unsigned int len ) |
---|
| 316 | { |
---|
| 317 | struct prpl_xfer_data *px = ft->data; |
---|
| 318 | |
---|
| 319 | if( write( px->fd, buffer, len ) != len ) |
---|
| 320 | { |
---|
| 321 | imcb_file_canceled( ft, "Error while writing temporary file" ); |
---|
| 322 | return FALSE; |
---|
| 323 | } |
---|
| 324 | |
---|
| 325 | if( lseek( px->fd, 0, SEEK_CUR ) >= ft->file_size ) |
---|
| 326 | { |
---|
| 327 | close( px->fd ); |
---|
| 328 | px->fd = -1; |
---|
| 329 | |
---|
| 330 | purple_transfer_forward( ft ); |
---|
| 331 | imcb_file_finished( ft ); |
---|
| 332 | px->ft = NULL; |
---|
| 333 | } |
---|
| 334 | else |
---|
| 335 | b_timeout_add( 0, purple_transfer_request_cb, ft ); |
---|
| 336 | |
---|
| 337 | return TRUE; |
---|
| 338 | } |
---|
[c96c72f] | 339 | |
---|
| 340 | |
---|
| 341 | |
---|
| 342 | PurpleXferUiOps bee_xfer_uiops = |
---|
| 343 | { |
---|
| 344 | prplcb_xfer_new, |
---|
| 345 | prplcb_xfer_destroy, |
---|
[75c3ff7] | 346 | NULL, /* prplcb_xfer_add, */ |
---|
[c96c72f] | 347 | prplcb_xfer_progress, |
---|
| 348 | prplcb_xfer_dbg, |
---|
| 349 | prplcb_xfer_cancel_remote, |
---|
| 350 | NULL, |
---|
| 351 | NULL, |
---|
| 352 | prplcb_xfer_dbg, |
---|
| 353 | }; |
---|