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 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
|
/*
Copyright (C) 2013-2015 John W. Eaton
Copyright (C) 2006-2015 Alexander Barth
Copyright (C) 2009 David Bateman
This file is part of Octave.
Octave 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 3 of the License, or (at your
option) any later version.
Octave 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 Octave; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>.
*/
// Author: Alexander Barth <abarth@marine.usf.edu>
// Author: jwe
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <fstream>
#include <iomanip>
#include <iostream>
#include "dir-ops.h"
#include "file-ops.h"
#include "file-stat.h"
#include "unwind-prot.h"
#include "url-transfer.h"
#ifdef HAVE_CURL
#include <curl/curl.h>
#include <curl/curlver.h>
#include <curl/easy.h>
#endif
void
base_url_transfer::delete_file (const std::string& file)
{
octave_unlink (file);
}
void
base_url_transfer::mget_directory (const std::string& directory,
const std::string& target)
{
std::string sep = file_ops::dir_sep_str ();
file_stat fs (directory);
if (!fs || !fs.is_dir ())
{
std::string msg;
int status = octave_mkdir (directory, 0777, msg);
if (status < 0)
{
ok = false;
errmsg = "__ftp_mget__: can not create directory '"
+ target + sep + directory + "': " + msg;
return;
}
}
cwd (directory);
if (good ())
{
unwind_protect_safe frame;
frame.add_fcn (reset_path, this);
string_vector sv = list ();
for (octave_idx_type i = 0; i < sv.length (); i++)
{
time_t ftime;
bool fisdir;
double fsize;
get_fileinfo (sv(i), fsize, ftime, fisdir);
if (fisdir)
mget_directory (sv(i), target + directory + sep);
else
{
std::string realfile = target + directory + sep + sv(i);
std::ofstream ofile (realfile.c_str (),
std::ios::out | std::ios::binary);
if (! ofile.is_open ())
{
ok = false;
errmsg = "__ftp_mget__: unable to open file";
break;
}
unwind_protect_safe frame2;
frame2.add_fcn (delete_file, realfile);
get (sv(i), ofile);
ofile.close ();
if (good ())
frame2.discard ();
}
if (! good ())
break;
}
}
}
string_vector
base_url_transfer::mput_directory (const std::string& base,
const std::string& directory)
{
string_vector file_list;
std::string realdir
= (base.length () == 0
? directory : base + file_ops::dir_sep_str () + directory);
mkdir (directory);
if (! good ())
return file_list;
cwd (directory);
if (good ())
{
unwind_protect_safe frame;
frame.add_fcn (reset_path, this);
dir_entry dirlist (realdir);
if (dirlist)
{
string_vector files = dirlist.read ();
for (octave_idx_type i = 0; i < files.length (); i++)
{
std::string file = files (i);
if (file == "." || file == "..")
continue;
std::string realfile = realdir + file_ops::dir_sep_str () + file;
file_stat fs (realfile);
if (! fs.exists ())
{
ok = false;
errmsg = "__ftp__mput: file '" + realfile
+ "' does not exist";
break;
}
if (fs.is_dir ())
{
file_list.append (mput_directory (realdir, file));
if (! good ())
break;
}
else
{
// FIXME: Does ascii mode need to be flagged here?
std::ifstream ifile (realfile.c_str (), std::ios::in |
std::ios::binary);
if (! ifile.is_open ())
{
ok = false;
errmsg = "__ftp_mput__: unable to open file '"
+ realfile + "'";
break;
}
put (file, ifile);
ifile.close ();
if (! good ())
break;
file_list.append (realfile);
}
}
}
else
{
ok = false;
errmsg = "__ftp_mput__: can not read the directory '"
+ realdir + "'";
}
}
return file_list;
}
#if defined (HAVE_CURL)
static int
write_data (void *buffer, size_t size, size_t nmemb, void *streamp)
{
std::ostream& stream = *(static_cast<std::ostream*> (streamp));
stream.write (static_cast<const char*> (buffer), size*nmemb);
return (stream.fail () ? 0 : size * nmemb);
}
static int
read_data (void *buffer, size_t size, size_t nmemb, void *streamp)
{
std::istream& stream = *(static_cast<std::istream*> (streamp));
stream.read (static_cast<char*> (buffer), size*nmemb);
if (stream.eof ())
return stream.gcount ();
else
return (stream.fail () ? 0 : size * nmemb);
}
static size_t
throw_away (void *, size_t size, size_t nmemb, void *)
{
return static_cast<size_t>(size * nmemb);
}
// I'd love to rewrite this as a private method of the url_transfer
// class, but you can't pass the va_list from the wrapper SETOPT to
// the curl_easy_setopt function.
#define SETOPT(option, parameter) \
do \
{ \
CURLcode res = curl_easy_setopt (curl, option, parameter); \
if (res != CURLE_OK) \
{ \
ok = false; \
errmsg = curl_easy_strerror (res); \
return; \
} \
} \
while (0)
// Same as above but with a return value.
#define SETOPTR(option, parameter) \
do \
{ \
CURLcode res = curl_easy_setopt (curl, option, parameter); \
if (res != CURLE_OK) \
{ \
ok = false; \
errmsg = curl_easy_strerror (res); \
return retval; \
} \
} \
while (0)
class curl_transfer : public base_url_transfer
{
public:
curl_transfer (void)
: base_url_transfer (), curl (curl_easy_init ()), errnum (), url (),
userpwd ()
{
if (curl)
valid = true;
else
errmsg = "can not create curl object";
}
curl_transfer (const std::string& host, const std::string& user_arg,
const std::string& passwd, std::ostream& os)
: base_url_transfer (host, user_arg, passwd, os),
curl (curl_easy_init ()), errnum (), url (), userpwd ()
{
if (curl)
valid = true;
else
{
errmsg = "can not create curl object";
return;
}
init (user_arg, passwd, std::cin, os);
url = "ftp://" + host;
SETOPT (CURLOPT_URL, url.c_str ());
// Set up the link, with no transfer.
perform ();
}
curl_transfer (const std::string& url_str, std::ostream& os)
: base_url_transfer (url_str, os), curl (curl_easy_init ()), errnum (),
url (), userpwd ()
{
if (curl)
valid = true;
else
{
errmsg = "can not create curl object";
return;
}
init ("", "", std::cin, os);
SETOPT (CURLOPT_NOBODY, 0);
// Restore the default HTTP request method to GET after setting
// NOBODY to true (in the init method) and back to false (above).
// This is needed for backward compatibility with versions of
// libcurl < 7.18.2.
SETOPT (CURLOPT_HTTPGET, 1);
}
~curl_transfer (void)
{
if (curl)
curl_easy_cleanup (curl);
}
void perform (void)
{
BEGIN_INTERRUPT_IMMEDIATELY_IN_FOREIGN_CODE;
errnum = curl_easy_perform (curl);
if (errnum != CURLE_OK)
{
ok = false;
errmsg = curl_easy_strerror (errnum);
}
END_INTERRUPT_IMMEDIATELY_IN_FOREIGN_CODE;
}
std::string lasterror (void) const
{
return std::string (curl_easy_strerror (errnum));
}
std::ostream& set_ostream (std::ostream& os)
{
std::ostream& retval = *curr_ostream;
curr_ostream = &os;
SETOPTR (CURLOPT_WRITEDATA, static_cast<void*> (curr_ostream));
return retval;
}
std::istream& set_istream (std::istream& is)
{
std::istream& retval = *curr_istream;
curr_istream = &is;
SETOPTR (CURLOPT_READDATA, static_cast<void*> (curr_istream));
return retval;
}
void ascii (void)
{
ascii_mode = true;
SETOPT (CURLOPT_TRANSFERTEXT, 1);
}
void binary (void)
{
ascii_mode = false;
SETOPT (CURLOPT_TRANSFERTEXT, 0);
}
void cwd (const std::string& path)
{
ftp_file_or_dir_action (path, "cwd");
}
void del (const std::string& file)
{
ftp_file_or_dir_action (file, "dele");
}
void rmdir (const std::string& path)
{
ftp_file_or_dir_action (path, "rmd");
}
void mkdir (const std::string& path)
{
ftp_file_or_dir_action (path, "mkd");
}
void rename (const std::string& oldname, const std::string& newname)
{
struct curl_slist *slist = 0;
unwind_protect frame;
frame.add_fcn (curl_slist_free_all, slist);
std::string cmd = "rnfr " + oldname;
slist = curl_slist_append (slist, cmd.c_str ());
cmd = "rnto " + newname;
slist = curl_slist_append (slist, cmd.c_str ());
SETOPT (CURLOPT_POSTQUOTE, slist);
perform ();
if (! good ())
return;
SETOPT (CURLOPT_POSTQUOTE, 0);
}
void put (const std::string& file, std::istream& is)
{
url = "ftp://" + host_or_url + "/" + file;
SETOPT (CURLOPT_URL, url.c_str ());
SETOPT (CURLOPT_UPLOAD, 1);
SETOPT (CURLOPT_NOBODY, 0);
std::istream& old_is = set_istream (is);
perform ();
if (! good ())
return;
set_istream (old_is);
SETOPT (CURLOPT_NOBODY, 1);
SETOPT (CURLOPT_UPLOAD, 0);
url = "ftp://" + host_or_url;
SETOPT (CURLOPT_URL, url.c_str ());
}
void get (const std::string& file, std::ostream& os)
{
url = "ftp://" + host_or_url + "/" + file;
SETOPT (CURLOPT_URL, url.c_str ());
SETOPT (CURLOPT_NOBODY, 0);
std::ostream& old_os = set_ostream (os);
perform ();
if (! good ())
return;
set_ostream (old_os);
SETOPT (CURLOPT_NOBODY, 1);
url = "ftp://" + host_or_url;
SETOPT (CURLOPT_URL, url.c_str ());
}
void dir (void)
{
url = "ftp://" + host_or_url + "/";
SETOPT (CURLOPT_URL, url.c_str ());
SETOPT (CURLOPT_NOBODY, 0);
perform ();
if (! good ())
return;
SETOPT (CURLOPT_NOBODY, 1);
url = "ftp://" + host_or_url;
SETOPT (CURLOPT_URL, url.c_str ());
}
string_vector list (void)
{
string_vector retval;
std::ostringstream buf;
url = "ftp://" + host_or_url + "/";
SETOPTR (CURLOPT_WRITEDATA, static_cast<void*> (&buf));
SETOPTR (CURLOPT_URL, url.c_str ());
SETOPTR (CURLOPT_DIRLISTONLY, 1);
SETOPTR (CURLOPT_NOBODY, 0);
perform ();
if (! good ())
return retval;
SETOPTR (CURLOPT_NOBODY, 1);
url = "ftp://" + host_or_url;
SETOPTR (CURLOPT_WRITEDATA, static_cast<void*> (curr_ostream));
SETOPTR (CURLOPT_DIRLISTONLY, 0);
SETOPTR (CURLOPT_URL, url.c_str ());
// Count number of directory entries
std::string str = buf.str ();
octave_idx_type n = 0;
size_t pos = 0;
while (true)
{
pos = str.find_first_of ('\n', pos);
if (pos == std::string::npos)
break;
pos++;
n++;
}
retval.resize (n);
pos = 0;
for (octave_idx_type i = 0; i < n; i++)
{
size_t newpos = str.find_first_of ('\n', pos);
if (newpos == std::string::npos)
break;
retval(i) = str.substr(pos, newpos - pos);
pos = newpos + 1;
}
return retval;
}
void get_fileinfo (const std::string& filename, double& filesize,
time_t& filetime, bool& fileisdir)
{
std::string path = pwd ();
url = "ftp://" + host_or_url + "/" + path + "/" + filename;
SETOPT (CURLOPT_URL, url.c_str ());
SETOPT (CURLOPT_FILETIME, 1);
SETOPT (CURLOPT_HEADERFUNCTION, throw_away);
SETOPT (CURLOPT_WRITEFUNCTION, throw_away);
// FIXME
// The MDTM command fails for a directory on the servers I tested
// so this is a means of testing for directories. It also means
// I can't get the date of directories!
perform ();
if (! good ())
{
fileisdir = true;
filetime = -1;
filesize = 0;
return;
}
fileisdir = false;
time_t ft;
curl_easy_getinfo (curl, CURLINFO_FILETIME, &ft);
filetime = ft;
double fs;
curl_easy_getinfo (curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &fs);
filesize = fs;
SETOPT (CURLOPT_WRITEFUNCTION, write_data);
SETOPT (CURLOPT_HEADERFUNCTION, 0);
SETOPT (CURLOPT_FILETIME, 0);
url = "ftp://" + host_or_url;
SETOPT (CURLOPT_URL, url.c_str ());
// The MDTM command seems to reset the path to the root with the
// servers I tested with, so cd again into the correct path. Make
// the path absolute so that this will work even with servers that
// don't end up in the root after an MDTM command.
cwd ("/" + path);
}
std::string pwd (void)
{
std::string retval;
struct curl_slist *slist = 0;
unwind_protect frame;
frame.add_fcn (curl_slist_free_all, slist);
slist = curl_slist_append (slist, "pwd");
SETOPTR (CURLOPT_POSTQUOTE, slist);
SETOPTR (CURLOPT_HEADERFUNCTION, write_data);
std::ostringstream buf;
SETOPTR (CURLOPT_WRITEHEADER, static_cast<void *>(&buf));
perform ();
if (! good ())
return retval;
retval = buf.str ();
// Can I assume that the path is alway in "" on the last line
size_t pos2 = retval.rfind ('"');
size_t pos1 = retval.rfind ('"', pos2 - 1);
retval = retval.substr (pos1 + 1, pos2 - pos1 - 1);
SETOPTR (CURLOPT_HEADERFUNCTION, 0);
SETOPTR (CURLOPT_WRITEHEADER, 0);
SETOPTR (CURLOPT_POSTQUOTE, 0);
return retval;
}
void http_get (const Array<std::string>& param)
{
url = host_or_url;
std::string query_string = form_query_string (param);
if (! query_string.empty ())
url += "?" + query_string;
SETOPT (CURLOPT_URL, url.c_str ());
perform ();
}
void http_post (const Array<std::string>& param)
{
SETOPT (CURLOPT_URL, host_or_url.c_str ());
std::string query_string = form_query_string (param);
SETOPT (CURLOPT_POSTFIELDS, query_string.c_str ());
perform ();
}
void http_action (const Array<std::string>& param, const std::string& action)
{
if (action.empty () || action == "get")
http_get (param);
else if (action == "post")
http_post (param);
else
{
ok = false;
errmsg = "curl_transfer: unknown http action";
}
}
private:
// Pointer to cURL object.
CURL *curl;
// cURL error code.
CURLcode errnum;
// The cURL library changed the curl_easy_setopt call to make an
// internal copy of string parameters in version 7.17.0. Prior
// versions only held a pointer to a string provided by the caller
// that must persist for the lifetime of the CURL handle.
//
// The associated API did not change, only the behavior of the library
// implementing the function call.
//
// To be compatible with any version of cURL, the caller must keep a
// copy of all string parameters associated with a CURL handle until
// the handle is released. The curl_handle::curl_handle_rep class
// contains the pointer to the CURL handle and so is the best
// candidate for storing the strings as well. (bug #36717)
std::string url;
std::string userpwd;
// No copying!
curl_transfer (const curl_transfer&);
curl_transfer& operator = (const curl_transfer&);
void init (const std::string& user, const std::string& passwd,
std::istream& is, std::ostream& os)
{
// No data transfer by default
SETOPT (CURLOPT_NOBODY, 1);
// Set the username and password
userpwd = user;
if (! passwd.empty ())
userpwd += ":" + passwd;
if (! userpwd.empty ())
SETOPT (CURLOPT_USERPWD, userpwd.c_str ());
// Define our callback to get called when there's data to be written.
SETOPT (CURLOPT_WRITEFUNCTION, write_data);
// Set a pointer to our struct to pass to the callback.
SETOPT (CURLOPT_WRITEDATA, static_cast<void*> (&os));
// Define our callback to get called when there's data to be read
SETOPT (CURLOPT_READFUNCTION, read_data);
// Set a pointer to our struct to pass to the callback.
SETOPT (CURLOPT_READDATA, static_cast<void*> (&is));
// Follow redirects.
SETOPT (CURLOPT_FOLLOWLOCATION, true);
// Don't use EPSV since connecting to sites that don't support it
// will hang for some time (3 minutes?) before moving on to try PASV
// instead.
SETOPT (CURLOPT_FTP_USE_EPSV, false);
SETOPT (CURLOPT_NOPROGRESS, true);
SETOPT (CURLOPT_FAILONERROR, true);
SETOPT (CURLOPT_POSTQUOTE, 0);
SETOPT (CURLOPT_QUOTE, 0);
}
std::string form_query_string (const Array<std::string>& param)
{
std::ostringstream query;
for (int i = 0; i < param.numel (); i += 2)
{
std::string name = param(i);
std::string text = param(i+1);
// Encode strings.
char *enc_name = curl_easy_escape (curl, name.c_str (),
name.length ());
char *enc_text = curl_easy_escape (curl, text.c_str (),
text.length ());
query << enc_name << "=" << enc_text;
curl_free (enc_name);
curl_free (enc_text);
if (i < param.numel ()-1)
query << "&";
}
query.flush ();
return query.str ();
}
void ftp_file_or_dir_action (const std::string& file_or_dir,
const std::string& action)
{
struct curl_slist *slist = 0;
unwind_protect frame;
frame.add_fcn (curl_slist_free_all, slist);
std::string cmd = action + " " + file_or_dir;
slist = curl_slist_append (slist, cmd.c_str ());
SETOPT (CURLOPT_POSTQUOTE, slist);
perform ();
if (! good ())
return;
SETOPT (CURLOPT_POSTQUOTE, 0);
}
};
#undef SETOPT
#endif
#if defined (HAVE_CURL)
# define REP_CLASS curl_transfer
#else
# define REP_CLASS base_url_transfer
#endif
url_transfer::url_transfer (void) : rep (new REP_CLASS ())
{ }
url_transfer::url_transfer (const std::string& host, const std::string& user,
const std::string& passwd, std::ostream& os)
: rep (new REP_CLASS (host, user, passwd, os))
{ }
url_transfer::url_transfer (const std::string& url, std::ostream& os)
: rep (new REP_CLASS (url, os))
{ }
#undef REP_CLASS
|