[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" |
---|
[d93c8beb] | 30 | #include "bpurple.h" |
---|
[2309152] | 31 | |
---|
| 32 | #include <stdarg.h> |
---|
| 33 | |
---|
| 34 | #include <glib.h> |
---|
| 35 | #include <purple.h> |
---|
| 36 | |
---|
[5ebff60] | 37 | struct prpl_xfer_data { |
---|
[2309152] | 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; |
---|
[ea90275] | 44 | int timeout; |
---|
[2309152] | 45 | }; |
---|
| 46 | |
---|
| 47 | static file_transfer_t *next_ft; |
---|
| 48 | |
---|
[5ebff60] | 49 | struct im_connection *purple_ic_by_pa(PurpleAccount *pa); |
---|
| 50 | static gboolean prplcb_xfer_new_send_cb(gpointer data, gint fd, b_input_condition cond); |
---|
| 51 | static gboolean prpl_xfer_write_request(struct file_transfer *ft); |
---|
[2309152] | 52 | |
---|
| 53 | |
---|
[c96c72f] | 54 | /* Receiving files (IM->UI): */ |
---|
[5ebff60] | 55 | static void prpl_xfer_accept(struct file_transfer *ft) |
---|
[2309152] | 56 | { |
---|
| 57 | struct prpl_xfer_data *px = ft->data; |
---|
[5ebff60] | 58 | |
---|
| 59 | purple_xfer_request_accepted(px->xfer, NULL); |
---|
| 60 | prpl_xfer_write_request(ft); |
---|
[2309152] | 61 | } |
---|
| 62 | |
---|
[5ebff60] | 63 | static void prpl_xfer_canceled(struct file_transfer *ft, char *reason) |
---|
[2309152] | 64 | { |
---|
| 65 | struct prpl_xfer_data *px = ft->data; |
---|
[5ebff60] | 66 | |
---|
[ea90275] | 67 | if (px->xfer) { |
---|
| 68 | if (!purple_xfer_is_completed(px->xfer) && !purple_xfer_is_canceled(px->xfer)) { |
---|
| 69 | purple_xfer_cancel_local(px->xfer); |
---|
| 70 | } |
---|
| 71 | px->xfer->ui_data = NULL; |
---|
| 72 | purple_xfer_unref(px->xfer); |
---|
| 73 | px->xfer = NULL; |
---|
| 74 | } |
---|
| 75 | } |
---|
| 76 | |
---|
| 77 | static void prpl_xfer_free(struct file_transfer *ft) |
---|
| 78 | { |
---|
| 79 | struct prpl_xfer_data *px = ft->data; |
---|
| 80 | struct purple_data *pd = px->ic->proto_data; |
---|
| 81 | |
---|
| 82 | pd->filetransfers = g_slist_remove(pd->filetransfers, px); |
---|
| 83 | |
---|
| 84 | if (px->xfer) { |
---|
| 85 | px->xfer->ui_data = NULL; |
---|
| 86 | purple_xfer_unref(px->xfer); |
---|
| 87 | } |
---|
| 88 | |
---|
| 89 | if (px->timeout) { |
---|
| 90 | b_event_remove(px->timeout); |
---|
| 91 | } |
---|
| 92 | |
---|
| 93 | g_free(px->fn); |
---|
| 94 | g_free(px->handle); |
---|
| 95 | if (px->fd >= 0) { |
---|
| 96 | close(px->fd); |
---|
| 97 | } |
---|
| 98 | g_free(px); |
---|
[2309152] | 99 | } |
---|
| 100 | |
---|
[5ebff60] | 101 | static void prplcb_xfer_new(PurpleXfer *xfer) |
---|
[2309152] | 102 | { |
---|
[ea90275] | 103 | purple_xfer_ref(xfer); |
---|
| 104 | |
---|
[5ebff60] | 105 | if (purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE) { |
---|
| 106 | struct prpl_xfer_data *px = g_new0(struct prpl_xfer_data, 1); |
---|
[ea90275] | 107 | struct purple_data *pd; |
---|
[5ebff60] | 108 | |
---|
[8822d23] | 109 | xfer->ui_data = px; |
---|
| 110 | px->xfer = xfer; |
---|
[5ebff60] | 111 | px->fn = mktemp(g_strdup("/tmp/bitlbee-purple-ft.XXXXXX")); |
---|
[8822d23] | 112 | px->fd = -1; |
---|
[5ebff60] | 113 | px->ic = purple_ic_by_pa(xfer->account); |
---|
| 114 | |
---|
[ea90275] | 115 | pd = px->ic->proto_data; |
---|
| 116 | pd->filetransfers = g_slist_prepend(pd->filetransfers, px); |
---|
| 117 | |
---|
[5ebff60] | 118 | purple_xfer_set_local_filename(xfer, px->fn); |
---|
| 119 | |
---|
[2309152] | 120 | /* Sadly the xfer struct is still empty ATM so come back after |
---|
| 121 | the caller is done. */ |
---|
[5ebff60] | 122 | b_timeout_add(0, prplcb_xfer_new_send_cb, xfer); |
---|
| 123 | } else { |
---|
[e7dc02a] | 124 | struct file_transfer *ft = next_ft; |
---|
| 125 | struct prpl_xfer_data *px = ft->data; |
---|
[5ebff60] | 126 | |
---|
[e7dc02a] | 127 | xfer->ui_data = px; |
---|
[2309152] | 128 | px->xfer = xfer; |
---|
[5ebff60] | 129 | |
---|
[2309152] | 130 | next_ft = NULL; |
---|
| 131 | } |
---|
| 132 | } |
---|
| 133 | |
---|
[5ebff60] | 134 | static gboolean prplcb_xfer_new_send_cb(gpointer data, gint fd, b_input_condition cond) |
---|
[2309152] | 135 | { |
---|
[553767c] | 136 | PurpleXfer *xfer = data; |
---|
[5ebff60] | 137 | struct im_connection *ic = purple_ic_by_pa(xfer->account); |
---|
[8822d23] | 138 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
[553767c] | 139 | PurpleBuddy *buddy; |
---|
| 140 | const char *who; |
---|
[5ebff60] | 141 | |
---|
| 142 | buddy = purple_find_buddy(xfer->account, xfer->who); |
---|
| 143 | who = buddy ? purple_buddy_get_name(buddy) : xfer->who; |
---|
| 144 | |
---|
[553767c] | 145 | /* TODO(wilmer): After spreading some more const goodness in BitlBee, |
---|
| 146 | remove the evil cast below. */ |
---|
[5ebff60] | 147 | px->ft = imcb_file_send_start(ic, (char *) who, xfer->filename, xfer->size); |
---|
[553767c] | 148 | px->ft->data = px; |
---|
[5ebff60] | 149 | |
---|
[553767c] | 150 | px->ft->accept = prpl_xfer_accept; |
---|
| 151 | px->ft->canceled = prpl_xfer_canceled; |
---|
[ea90275] | 152 | px->ft->free = prpl_xfer_free; |
---|
[553767c] | 153 | px->ft->write_request = prpl_xfer_write_request; |
---|
[5ebff60] | 154 | |
---|
[553767c] | 155 | return FALSE; |
---|
[2309152] | 156 | } |
---|
| 157 | |
---|
[5ebff60] | 158 | gboolean try_write_to_ui(gpointer data, gint fd, b_input_condition cond) |
---|
[c96c72f] | 159 | { |
---|
| 160 | struct file_transfer *ft = data; |
---|
| 161 | struct prpl_xfer_data *px = ft->data; |
---|
| 162 | struct stat fs; |
---|
| 163 | off_t tx_bytes; |
---|
[5ebff60] | 164 | |
---|
[c96c72f] | 165 | /* If we don't have the file opened yet, there's no data so wait. */ |
---|
[5ebff60] | 166 | if (px->fd < 0 || !px->ui_wants_data) { |
---|
[c96c72f] | 167 | return FALSE; |
---|
[5ebff60] | 168 | } |
---|
| 169 | |
---|
| 170 | tx_bytes = lseek(px->fd, 0, SEEK_CUR); |
---|
| 171 | fstat(px->fd, &fs); |
---|
| 172 | |
---|
| 173 | if (fs.st_size > tx_bytes) { |
---|
[c96c72f] | 174 | char buf[1024]; |
---|
[5ebff60] | 175 | size_t n = MIN(fs.st_size - tx_bytes, sizeof(buf)); |
---|
| 176 | |
---|
| 177 | if (read(px->fd, buf, n) == n && ft->write(ft, buf, n)) { |
---|
[c96c72f] | 178 | px->ui_wants_data = FALSE; |
---|
[5ebff60] | 179 | } else { |
---|
| 180 | purple_xfer_cancel_local(px->xfer); |
---|
| 181 | imcb_file_canceled(px->ic, ft, "Read error"); |
---|
[c96c72f] | 182 | } |
---|
| 183 | } |
---|
[5ebff60] | 184 | |
---|
| 185 | if (lseek(px->fd, 0, SEEK_CUR) == px->xfer->size) { |
---|
[75c3ff7] | 186 | /*purple_xfer_end( px->xfer );*/ |
---|
[5ebff60] | 187 | imcb_file_finished(px->ic, ft); |
---|
[c96c72f] | 188 | } |
---|
[5ebff60] | 189 | |
---|
[c96c72f] | 190 | return FALSE; |
---|
| 191 | } |
---|
| 192 | |
---|
| 193 | /* UI calls this when its buffer is empty and wants more data to send to the user. */ |
---|
[5ebff60] | 194 | static gboolean prpl_xfer_write_request(struct file_transfer *ft) |
---|
[c96c72f] | 195 | { |
---|
| 196 | struct prpl_xfer_data *px = ft->data; |
---|
[5ebff60] | 197 | |
---|
[c96c72f] | 198 | px->ui_wants_data = TRUE; |
---|
[5ebff60] | 199 | try_write_to_ui(ft, 0, 0); |
---|
| 200 | |
---|
[c96c72f] | 201 | return FALSE; |
---|
| 202 | } |
---|
| 203 | |
---|
| 204 | |
---|
[5ebff60] | 205 | static void prplcb_xfer_destroy(PurpleXfer *xfer) |
---|
[8822d23] | 206 | { |
---|
| 207 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
[5ebff60] | 208 | |
---|
[ea90275] | 209 | if (px) { |
---|
| 210 | px->xfer = NULL; |
---|
[5ebff60] | 211 | } |
---|
[8822d23] | 212 | } |
---|
| 213 | |
---|
[5ebff60] | 214 | static void prplcb_xfer_progress(PurpleXfer *xfer, double percent) |
---|
[2309152] | 215 | { |
---|
[8822d23] | 216 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
[5ebff60] | 217 | |
---|
| 218 | if (px == NULL) { |
---|
[e7dc02a] | 219 | return; |
---|
[5ebff60] | 220 | } |
---|
| 221 | |
---|
| 222 | if (purple_xfer_get_type(xfer) == PURPLE_XFER_SEND) { |
---|
| 223 | if (*px->fn) { |
---|
[75c3ff7] | 224 | char *slash; |
---|
[5ebff60] | 225 | |
---|
| 226 | unlink(px->fn); |
---|
| 227 | if ((slash = strrchr(px->fn, '/'))) { |
---|
[75c3ff7] | 228 | *slash = '\0'; |
---|
[5ebff60] | 229 | rmdir(px->fn); |
---|
[75c3ff7] | 230 | } |
---|
[e7dc02a] | 231 | *px->fn = '\0'; |
---|
| 232 | } |
---|
[5ebff60] | 233 | |
---|
[e7dc02a] | 234 | return; |
---|
| 235 | } |
---|
[5ebff60] | 236 | |
---|
| 237 | if (px->fd == -1 && percent > 0) { |
---|
[8822d23] | 238 | /* Weeeeeeeee, we're getting data! That means the file exists |
---|
| 239 | by now so open it and start sending to the UI. */ |
---|
[5ebff60] | 240 | px->fd = open(px->fn, O_RDONLY); |
---|
| 241 | |
---|
[8822d23] | 242 | /* Unlink it now, because we don't need it after this. */ |
---|
[5ebff60] | 243 | unlink(px->fn); |
---|
[8822d23] | 244 | } |
---|
[5ebff60] | 245 | |
---|
| 246 | if (percent < 1) { |
---|
| 247 | try_write_to_ui(px->ft, 0, 0); |
---|
| 248 | } else { |
---|
[c96c72f] | 249 | /* Another nice problem: If we have the whole file, it only |
---|
| 250 | gets closed when we return. Problem: There may still be |
---|
| 251 | stuff buffered and not written, we'll only see it after |
---|
| 252 | the caller close()s the file. So poll the file after that. */ |
---|
[5ebff60] | 253 | b_timeout_add(0, try_write_to_ui, px->ft); |
---|
| 254 | } |
---|
[8822d23] | 255 | } |
---|
| 256 | |
---|
[5ebff60] | 257 | static void prplcb_xfer_cancel_remote(PurpleXfer *xfer) |
---|
[8822d23] | 258 | { |
---|
| 259 | struct prpl_xfer_data *px = xfer->ui_data; |
---|
[5ebff60] | 260 | |
---|
[ea90275] | 261 | if (px && px->ft) { |
---|
[5ebff60] | 262 | imcb_file_canceled(px->ic, px->ft, "Canceled by remote end"); |
---|
[ea90275] | 263 | } else if (px) { |
---|
[75c3ff7] | 264 | /* px->ft == NULL for sends, because of the two stages. :-/ */ |
---|
[5ebff60] | 265 | imcb_error(px->ic, "File transfer cancelled by remote end"); |
---|
| 266 | } |
---|
[e7dc02a] | 267 | } |
---|
| 268 | |
---|
[c96c72f] | 269 | |
---|
| 270 | /* Sending files (UI->IM): */ |
---|
[5ebff60] | 271 | static gboolean prpl_xfer_write(struct file_transfer *ft, char *buffer, unsigned int len); |
---|
| 272 | static gboolean purple_transfer_request_cb(gpointer data, gint fd, b_input_condition cond); |
---|
[e7dc02a] | 273 | |
---|
[5ebff60] | 274 | void purple_transfer_request(struct im_connection *ic, file_transfer_t *ft, char *handle) |
---|
[2309152] | 275 | { |
---|
[5ebff60] | 276 | struct prpl_xfer_data *px = g_new0(struct prpl_xfer_data, 1); |
---|
[ea90275] | 277 | struct purple_data *pd; |
---|
[75c3ff7] | 278 | char *dir, *basename; |
---|
[5ebff60] | 279 | |
---|
[e7dc02a] | 280 | ft->data = px; |
---|
| 281 | px->ft = ft; |
---|
[ea90275] | 282 | px->ft->free = prpl_xfer_free; |
---|
[5ebff60] | 283 | |
---|
| 284 | dir = g_strdup("/tmp/bitlbee-purple-ft.XXXXXX"); |
---|
| 285 | if (!mkdtemp(dir)) { |
---|
| 286 | imcb_error(ic, "Could not create temporary file for file transfer"); |
---|
| 287 | g_free(px); |
---|
| 288 | g_free(dir); |
---|
[75c3ff7] | 289 | return; |
---|
| 290 | } |
---|
[5ebff60] | 291 | |
---|
| 292 | if ((basename = strrchr(ft->file_name, '/'))) { |
---|
[75c3ff7] | 293 | basename++; |
---|
[5ebff60] | 294 | } else { |
---|
[75c3ff7] | 295 | basename = ft->file_name; |
---|
[5ebff60] | 296 | } |
---|
| 297 | px->fn = g_strdup_printf("%s/%s", dir, basename); |
---|
| 298 | px->fd = open(px->fn, O_WRONLY | O_CREAT, 0600); |
---|
| 299 | g_free(dir); |
---|
| 300 | |
---|
| 301 | if (px->fd < 0) { |
---|
| 302 | imcb_error(ic, "Could not create temporary file for file transfer"); |
---|
| 303 | g_free(px); |
---|
| 304 | g_free(px->fn); |
---|
[75c3ff7] | 305 | return; |
---|
| 306 | } |
---|
[5ebff60] | 307 | |
---|
[e7dc02a] | 308 | px->ic = ic; |
---|
[5ebff60] | 309 | px->handle = g_strdup(handle); |
---|
| 310 | |
---|
[ea90275] | 311 | pd = px->ic->proto_data; |
---|
| 312 | pd->filetransfers = g_slist_prepend(pd->filetransfers, px); |
---|
| 313 | |
---|
[5ebff60] | 314 | imcb_log(ic, |
---|
| 315 | "Due to libpurple limitations, the file has to be cached locally before proceeding with the actual file transfer. Please wait..."); |
---|
| 316 | |
---|
[ea90275] | 317 | px->timeout = b_timeout_add(0, purple_transfer_request_cb, ft); |
---|
[c96c72f] | 318 | } |
---|
[2309152] | 319 | |
---|
[5ebff60] | 320 | static void purple_transfer_forward(struct file_transfer *ft) |
---|
[2309152] | 321 | { |
---|
[e7dc02a] | 322 | struct prpl_xfer_data *px = ft->data; |
---|
[d93c8beb] | 323 | struct purple_data *pd = px->ic->proto_data; |
---|
[5ebff60] | 324 | |
---|
[2309152] | 325 | /* xfer_new() will pick up this variable. It's a hack but we're not |
---|
| 326 | multi-threaded anyway. */ |
---|
| 327 | next_ft = ft; |
---|
[d93c8beb] | 328 | serv_send_file(purple_account_get_connection(pd->account), |
---|
| 329 | px->handle, px->fn); |
---|
[e7dc02a] | 330 | } |
---|
| 331 | |
---|
[5ebff60] | 332 | static gboolean purple_transfer_request_cb(gpointer data, gint fd, b_input_condition cond) |
---|
[e7dc02a] | 333 | { |
---|
| 334 | file_transfer_t *ft = data; |
---|
[4aa0f6b] | 335 | struct prpl_xfer_data *px = ft->data; |
---|
[5ebff60] | 336 | |
---|
[ea90275] | 337 | px->timeout = 0; |
---|
| 338 | |
---|
[5ebff60] | 339 | if (ft->write == NULL) { |
---|
[e7dc02a] | 340 | ft->write = prpl_xfer_write; |
---|
[5ebff60] | 341 | imcb_file_recv_start(px->ic, ft); |
---|
[e7dc02a] | 342 | } |
---|
[5ebff60] | 343 | |
---|
| 344 | ft->write_request(ft); |
---|
| 345 | |
---|
[e7dc02a] | 346 | return FALSE; |
---|
[2309152] | 347 | } |
---|
[c96c72f] | 348 | |
---|
[5ebff60] | 349 | static gboolean prpl_xfer_write(struct file_transfer *ft, char *buffer, unsigned int len) |
---|
[e7dc02a] | 350 | { |
---|
| 351 | struct prpl_xfer_data *px = ft->data; |
---|
[5ebff60] | 352 | |
---|
| 353 | if (write(px->fd, buffer, len) != len) { |
---|
| 354 | imcb_file_canceled(px->ic, ft, "Error while writing temporary file"); |
---|
[e7dc02a] | 355 | return FALSE; |
---|
| 356 | } |
---|
[5ebff60] | 357 | |
---|
| 358 | if (lseek(px->fd, 0, SEEK_CUR) >= ft->file_size) { |
---|
| 359 | close(px->fd); |
---|
[e7dc02a] | 360 | px->fd = -1; |
---|
[5ebff60] | 361 | |
---|
| 362 | purple_transfer_forward(ft); |
---|
| 363 | imcb_file_finished(px->ic, ft); |
---|
[e7dc02a] | 364 | px->ft = NULL; |
---|
[5ebff60] | 365 | } else { |
---|
[ea90275] | 366 | px->timeout = b_timeout_add(0, purple_transfer_request_cb, ft); |
---|
[e7dc02a] | 367 | } |
---|
[5ebff60] | 368 | |
---|
[e7dc02a] | 369 | return TRUE; |
---|
| 370 | } |
---|
[c96c72f] | 371 | |
---|
[ea90275] | 372 | void purple_transfer_cancel_all(struct im_connection *ic) |
---|
| 373 | { |
---|
| 374 | struct purple_data *pd = ic->proto_data; |
---|
| 375 | |
---|
| 376 | while (pd->filetransfers) { |
---|
| 377 | struct prpl_xfer_data *px = pd->filetransfers->data; |
---|
| 378 | |
---|
| 379 | if (px->ft) { |
---|
| 380 | imcb_file_canceled(ic, px->ft, "Logging out"); |
---|
| 381 | } |
---|
| 382 | |
---|
| 383 | pd->filetransfers = g_slist_remove(pd->filetransfers, px); |
---|
| 384 | } |
---|
| 385 | } |
---|
| 386 | |
---|
[c96c72f] | 387 | |
---|
| 388 | |
---|
| 389 | PurpleXferUiOps bee_xfer_uiops = |
---|
| 390 | { |
---|
[98d46d5] | 391 | prplcb_xfer_new, /* new_xfer */ |
---|
| 392 | prplcb_xfer_destroy, /* destroy */ |
---|
| 393 | NULL, /* add_xfer */ |
---|
| 394 | prplcb_xfer_progress, /* update_progress */ |
---|
| 395 | NULL, /* cancel_local */ |
---|
| 396 | prplcb_xfer_cancel_remote, /* cancel_remote */ |
---|
| 397 | NULL, /* ui_write */ |
---|
| 398 | NULL, /* ui_read */ |
---|
| 399 | NULL, /* data_not_sent */ |
---|
[c96c72f] | 400 | }; |
---|