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 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
|
/*
* ftp.c -- Implements transparent access to ftp
*
* Created by: Troy Heber (troy.heber@hp.com)
*
* Copyright 2004 Hewlett-Packard Development Company, L.P.
*
* Adapted from ftplib.cpp part of LUFS,
* a free userspace filesystem implementation.
* See http://lufs.sourceforge.net/ for updates.
* Copyright (C) 2002 Florin Malita <mali@go.ro>
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <netdb.h>
#include <fcntl.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <netinet/in.h>
#include "ftp.h"
/* Parse ftp URL according to RCF 1738
* ftp://user:password@host:port/path
* Does not validate any of the tokens!
* Only parses into tokens based on structure.
*/
int
parseUrl(char *input, char **user, char **pass, char **host, int *port, char **path)
{
char *tok, *p, *q, *end;
char buf[MAX_BUF];
struct url *parsed;
int i;
if ((parsed=malloc(sizeof(struct url))) == NULL){
perror("FATAL ERROR: Couldn't allocate enough memory");
exit(10);
}
end = strlen(input) + input;
if (strlen(input) > MAX_BUF -1 ){
free(parsed);
return 71; /* To big. */
}
if ((tok=strstr(input,"ftp://")) == NULL){
free(parsed);
return 72; /* Not a ftp url */
}
tok += 6; /* strip off ftp:// */
p = q = tok;
/************************************************************
* User Name and password
* user:password@
*/
/* Look for the @ */
for(p = tok; p != end; p++)
if (*p == '@')
break;
if (*p == '@'){
for(q = tok; q != p; q++)
if (*q == ':')
break;
if (*q == ':'){ /* have username & passwd */
i = q - tok;
if ((*user=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*user, tok, i);
(*user)[i] = '\0';
i = p - (q+1);
if ((*pass=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*pass, q+1, i);
(*pass)[i] = '\0';
p++;
q = p;
} else{ /* user but no pass */
i = p - tok;
if ((*user=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*user, tok, i);
(*user)[i] = '\0';
p++;
q = p;
}
}else{ /* NO user or pass, reset p & q */
p = q = tok;
}
/************************************************************
* Host, port & path
* host:port/path
*/
/* Look for the : is there a port? */
for(; p != end; p++)
if (*p == ':')
break;
if (*p == ':'){ /* we have a port */
i = p - q;
if ((*host=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough memory");
exit(10);
}
memcpy(*host, q, i);
(*host)[i]='\0';
p++;
q=p;
/* Look for the / is there a path? */
for(; p != end; p++)
if (*p == '/')
break;
if (*p == '/'){ /* we have a path & port */
i = p - q;
if (i > 0){
memcpy(buf, q, i);
buf[i+1]='\0';
*port = atoi(buf);
}
i = end - p;
if ((*path=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*path, p, i);
(*path)[i]='\0';
} else{ /* Port but no path */
i = end - q;
if (i > 0){
memcpy(buf, q, i);
buf[i+1]='\0';
*port = atoi(buf);
}
}
}else{ /* no port */
p = q;
/* Look for the / is there a path? */
for(; p != end; p++)
if (*p == '/')
break;
if (*p == '/'){ /* we have a path */
i = p - q;
if ((*host=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*host, q, i);
(*host)[i]='\0';
i = end - p;
if ((*path=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*path, p, i);
(*path)[i]='\0';
} else { /* no path, no port, just host */
i = end - q;
if ((*host=(char *)malloc(i + 1)) == NULL){
perror("FATAL ERROR: Couldn't allocate enough"
"memory");
exit(10);
}
memcpy(*host, q, i);
(*host)[i]='\0';
}
}
free(parsed);
return 0;
}
static ssize_t
my_read(int fd, char *ptr)
{
static int read_cnt = 0, count = 0;
static char *read_ptr;
static char read_buf[FTP_MAXLINE];
struct timespec req;
req.tv_sec = 0;
req.tv_nsec = 1000000; /* 1 millisecond */
if (read_cnt <= 0) {
while (((read_cnt = read(fd, read_buf, sizeof(read_buf))) < 0
&& (count < 5000))){
if (errno != EINTR && errno != EAGAIN){
perror("FTP: read failed");
return -1;
}
/* try to sleep for ~ 1ms */
nanosleep(&req, NULL);
count++;
}
if (read_cnt == 0)
return 0;
read_ptr = read_buf;
if (count >= 5000){
fprintf(stderr, "FTP: timeout waiting for response from server!\n");
exit(23);
}
}
read_cnt--;
*ptr = *read_ptr++;
return 1;
}
ssize_t
readline(int fd, void *vptr, size_t maxlen)
{
ssize_t n, rc;
char c, *ptr;
ptr = vptr;
for (n = 1; n < maxlen; n++) {
if ( (rc = my_read(fd, &c)) == 1) {
*ptr++ = c;
if (c == '\n')
break; /* newline is stored, like fgets() */
} else if (rc == 0) {
*ptr = 0;
return n - 1; /* EOF, n - 1 bytes were read */
} else
return -1; /* error, errno set by read() */
}
*ptr = 0; /* null terminate like fgets() */
return n;
}
int
protect_write(int fd, const char *vstr, int n)
{
size_t nleft;
ssize_t nwritten;
const char *ptr;
unsigned long start, stop, timeout=0;
static struct timezone tz;
static struct timeval tv;
ptr = vstr;
nleft = n;
gettimeofday(&tv,&tz);
start = tv.tv_sec;
/* Time out ~5 seconds */
while (nleft > 0 && timeout < 5) {
if ((nwritten = write(fd, ptr, nleft)) <= 0) {
if (errno == EINTR || errno == EAGAIN)
nwritten = 0;
else
return -1;
}
if (!nwritten){
gettimeofday(&tv,&tz);
stop = tv.tv_sec;
timeout = stop - start;
}else{
gettimeofday(&tv,&tz);
start = tv.tv_sec;
}
nleft -= nwritten;
ptr += nwritten;
}
if (timeout >= 5){
fprintf(stderr, "Maximum write block time of 5 seconds"
" exceeded, please verify connectivity to"
" the server!\n");
exit(24);
}
return n;
}
int
do_rename(char *old, char *new)
{
int res;
char *nold, *nnew;
if ((nold = (char *) malloc(strlen(old)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
exit (10);
}
if ((nnew = (char *) malloc(strlen(new)+10)) == NULL){
free(nold);
perror("cannot allocate enough memory for a buffer.");
exit (10);
}
(void)snprintf(nold,(strlen(old)+6), "RNFR %s", old);
(void)snprintf(nnew,(strlen(new)+6), "RNTO %s", new);
if ((res = execute_retry(nold, 350, 1)) < 0){
free(nold);
free(nnew);
fprintf(stderr, "RNFR failed!\n");
return res;
}else
free(nold);
if ((res = execute_retry(nnew, 250, 1)) < 0){
free(nnew);
fprintf(stderr, "RNFR failed!\n");
return res;
}else
free(nnew);
return 0;
}
int
do_unlink(char *file)
{
int res;
char *nfile;
if ((nfile = (char *) malloc(strlen(file)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
return -1;
}
(void)snprintf(nfile, (strlen(file)+6), "DELE %s", file);
if ((res = execute_retry(nfile, 250, 1)) < 0){
free(nfile);
fprintf(stderr, "DELE failed!\n");
return res;
}else
free(nfile);
return 0;
}
int
do_mkdir(char *dir)
{
int res;
char *ndir;
if ((ndir = (char *) malloc(strlen(dir)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
return -1;
}
(void)snprintf(ndir, (strlen(dir)+5), "MKD %s", dir);
if ((res = execute_retry(ndir, 257, 1)) < 0){
free(ndir);
fprintf(stderr, "MKDIR failed!\n");
return res;
}else
free(ndir);
return 0;
}
int
do_rmdir(char *dir)
{
int res;
char *ndir;
if ((ndir = (char *) malloc(strlen(dir)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
return -1;
}
(void)snprintf(ndir,(strlen(dir)+5), "RMD %s", dir);
if ((res = execute_retry(ndir, 0, 1)) < 0){
free(ndir);
fprintf(stderr, "RMDIR EXECUTE failed!\n");
return res;
}else
free(ndir);
/* WarFTP Hack */
if ((get_response() / 100) != 2){
fprintf(stderr, "RMDIR Failed1\n");
return -1;
}
return 0;
}
/* Read count bytes from first line of *file. */
int
do_readFirstLine(char * file, char *line, int count)
{
int res = 0;
char *nfile;
if ((nfile = (char *) malloc(strlen(file)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
exit(10);
}
(void)snprintf(nfile, (strlen(file)+6), "RETR %s", file);
if ((res = execute_open(nfile, "I", 0)) < 0){
#ifdef DEBUG
fprintf(stderr,"couldn't open data connection!\n");
fprintf(stderr,"from: %s\n",nfile);
#endif
free(nfile);
return -2;
}
if ((res = readline(dfd, line, count)) < 0){
free(nfile);
return res;
}
free(nfile);
return 0;
}
int
do_open(char * file)
{
char *nfile;
int res;
if ((nfile = (char *) malloc(strlen(file)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
exit(10);
}
(void)snprintf(nfile,(strlen(file)+6), "STOR %s", file);
if ((res = execute_open(nfile, "I", 0)) < 0){
free(nfile);
return res;
}else{
free(nfile);
return dfd;
}
}
int
execute_open(char *cmd, char *type, long long offset)
{
struct sockaddr_in addr, ctrl;
int res, ssock, tries = 0;
char buf[FTP_MAXLINE];
char *strtype;
fd_set lfds;
struct timeval tv;
int flags;
if ((strtype = (char *) malloc(strlen(type)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
return -1;
}
(void)snprintf(strtype, (strlen(type)+6), "TYPE %s", type);
if ((dfd < 0) || (offset != last_off) || (cmd != last_cmd)){
again:
if (tries++ > FTP_MAXTRIES){
fprintf(stderr, "too many failures!\n");
free(strtype);
return -1;
}
close_data();
memset(&addr, 0, sizeof(struct sockaddr_in));
addr.sin_addr.s_addr = INADDR_ANY;
addr.sin_port = 0;
addr.sin_family = AF_INET;
if ((ssock = socket(PF_INET, SOCK_STREAM, 0)) < 0){
fprintf(stderr, "socket call failed!\n");
free(strtype);
return ssock;
}
if ((res = bind(ssock, (struct sockaddr*)&addr,
sizeof(struct sockaddr_in))) < 0){
fprintf(stderr, "bind call failed!\n");
close(ssock);
free(strtype);
return res;
}
if ((res = listen(ssock, 2)) < 0){
fprintf(stderr, "listen call failed!\n");
close(ssock);
free(strtype);
return res;
}
res = sizeof(struct sockaddr_in);
if ((res = getsockname(cfd, (struct sockaddr*)&ctrl,
(socklen_t*)&res)) < 0){
fprintf(stderr, "getsockname call failed!\n");
close(ssock);
free(strtype);
return res;
}
res = sizeof(struct sockaddr_in);
if ((res = getsockname(ssock, (struct sockaddr*)&addr,
(socklen_t*)&res)) < 0){
fprintf(stderr, "getsockname call failed!\n");
close(ssock);
free(strtype);
return res;
}
sprintf(buf, "PORT %u,%u,%u,%u,%u,%u",
ctrl.sin_addr.s_addr & 0xff,
(ctrl.sin_addr.s_addr >> 8) & 0xff,
(ctrl.sin_addr.s_addr >> 16) & 0xff,
(ctrl.sin_addr.s_addr >> 24) & 0xff,
ntohs(addr.sin_port) >> 8,
ntohs(addr.sin_port) & 0xff);
if ((res = execute(buf, 200, 1)) < 0){
close(ssock);
if (res == -EAGAIN)
goto again;
free(strtype);
return res;
}
if ((res = execute(strtype, 200, 1)) < 0){
close(ssock);
if (res == -EAGAIN)
goto again;
free(strtype);
return res;
}
sprintf(buf, "REST %llu", offset);
if (offset && ((res = execute(buf, 350,1)) < 0)){
close(ssock);
if (res == -EAGAIN)
goto again;
free(strtype);
return res;
}
if ((res = execute(cmd, 150, 1)) < 0){
close(ssock);
if (res == -EAGAIN)
goto again;
free(strtype);
return res;
}
FD_ZERO(&lfds);
FD_SET(ssock,&lfds);
tv.tv_sec = FTP_TIMEOUT;
tv.tv_usec = 0;
res = select(ssock+1, &lfds, NULL, NULL, &tv);
if (res == -1) {
fprintf(stderr, "select call failed!\n");
close(ssock);
free(strtype);
return res;
} else {
if (res == 0) {
fprintf(stderr, "select call timed out (%d"
"second(s))!\n",FTP_TIMEOUT);
close(ssock);
free(strtype);
return -1;
} else {
/* someone connected to our listener socket */
res = sizeof(struct sockaddr_in);
if ((res = accept(ssock, (struct sockaddr*)&addr,
(socklen_t*)&res)) < 0){
fprintf(stderr, "accept call failed!\n");
close(ssock);
free(strtype);
return res;
}
}
}
close(ssock);
dfd = res;
/* Make the sure the fd is non-blocking */
if ((flags=fcntl(dfd, F_GETFL, 0)) < 0){
perror("fcntl read failed");
return 66;
}
if (fcntl(dfd, F_SETFL, flags | O_NONBLOCK) < 0){
perror("fcntl set failed");
return 66;
}
last_cmd = cmd;
last_off = offset;
}else
#ifdef DEBUG
printf("keepalive...\n");
#endif
free(strtype);
return 0;
}
void
disconnect(int err)
{
int res;
if (err && dfd>0){
close(dfd);
dfd =-1;
if (cfd>0){
close(cfd);
cfd=-1;
}
}
else if (dfd>0){
close(dfd);
dfd = -1;
/* wait for response "Transfer complete" */
if ((res = get_response()) != 226)
fprintf(stderr, "Expected FTP response 226 "
"(closing data connection). received %d\n",
res);
if ((res = execute(QUIT, 0, 0)) < 0)
fprintf(stderr, "QUIT command failed!\n");
else{
if ((res = get_response()) != 221)
fprintf(stderr, "Expected FTP response 221 "
"(closing control connection)."
"received %d\n", res);
}
if (cfd>0){
close(cfd);
cfd = -1;
}
}
}
int
FTPConnect(char *hname, char *user, char *pass)
{
int res;
struct sockaddr_in pin;
struct hostent *hp;
char buf[FTP_MAXLINE];
char system[32];
int flags;
int err = 1;
if (hostname == NULL)
hostname = hname;
if (fuser == NULL)
fuser = strdup(user);
if (fpass == NULL)
fpass = strdup(pass);
if ((hp = gethostbyname(hostname)) == 0) {
fprintf(stderr, "Can not resolve hostname %s\n", hostname);
exit(20);
}
#ifdef DEBUG
printf("hostname set: %s\n",hostname);
printf("fuser set: %s\n",fuser);
printf("fpass set: %s\n",fpass);
#endif
memset(&pin, 0, sizeof(pin));
pin.sin_family = AF_INET;
pin.sin_addr.s_addr = ((struct in_addr *)(hp->h_addr))->s_addr;
pin.sin_port = htons(PORT);
if ((cfd = socket(PF_INET, SOCK_STREAM, 0)) == -1) {
perror("Could not create socket!");
return 21;
}
#ifdef DEBUG
printf("Client has created a socket\n");
#endif
/* connect to PORT on HOST */
if (connect(cfd,(struct sockaddr *) &pin, sizeof(pin)) == -1) {
perror("Can not connect to socket");
close(cfd);
return 22;
}
#ifdef DEBUG
printf("Client has connected to PORT: %d\n",PORT);
#endif
/* Make the sure the fd is non-blocking */
if ((flags=fcntl(cfd, F_GETFL, 0)) < 0){
perror("fcntl read failed");
return 66;
}
if (fcntl(cfd, F_SETFL, flags | O_NONBLOCK) < 0){
perror("fcntl set failed");
return 66;
}
if ((res = get_response()) != 220){
disconnect(err);
fprintf(stderr, "protocol error!\n");
return 32;
}
if (execute(fuser, 0, 0) < 0){
fprintf(stderr, "USER failed!\n");
disconnect(err);
return 33;
}
res = get_response();
if ((res < 0) || ((res != 331) && (res != 230))){
fprintf(stderr, "invalid user!\n");
disconnect(err);
return 34;
}
if ((res == 331) && (execute(fpass, 230, 0) < 0)){
fprintf(stderr, "login failed!\n");
disconnect(err);
return 35;
}
if ((res = execute(SYST, 0, 0)) < 0){
fprintf(stderr, "SYST command failed!\n");
disconnect(err);
return 36;
}
if ((res = readline(cfd, buf, FTP_MAXLINE)) < 0){
fprintf(stderr, "no response to SYST!\n");
disconnect(err);
return res;
}
if ((sscanf(buf, "%u %32s", &res, system) != 2) || (res != 215)){
fprintf(stderr, "bad response to SYST!");
disconnect(err);
return 37;
}
#ifdef DEBUG
printf("Logged in!! System type is %s\n", system);
#endif
return 0;
}
int
get_response()
{
int res = 0;
unsigned multiline = 0;
char buf[FTP_MAXLINE];
if (!cfd > 0)
return -1;
if ((res = readline(cfd, buf, FTP_MAXLINE)) < 0)
return res;
#ifdef DEBUG
printf("line: %s\n", buf);
#endif
if (buf[3] == '-'){
if (!sscanf(buf, "%u-", &multiline)){
fprintf(stderr, "bad response!\n");
return -1;
}
#ifdef DEBUG
printf("multiline: %d\n", multiline);
#endif
}
if (multiline)
do {
if ((res = readline(cfd, buf, FTP_MAXLINE)) < 0)
return res;
#ifdef DEBUG
printf("line: %s\n", buf);
#endif
if (buf[3] == ' ')
sscanf(buf, "%u ", &res);
}while((unsigned)res != multiline);
else if (!sscanf(buf, "%u", &res)){
fprintf(stderr, "bad response!\n");
return -1;
}
return res;
}
int
close_data()
{
if (dfd>0){
close(dfd);
dfd = -1;
return get_response();
}
return 0;
}
int
execute(char *cmd, int resp, int reconnect)
{
int res;
char *ncmd;
if ((ncmd = (char *) malloc(strlen(cmd)+10)) == NULL){
perror("cannot allocate enough memory for a buffer.");
exit(10);
}
close_data();
if (cfd < 0){
if ((!reconnect) || (FTPConnect(hostname, fuser, fpass) != 0)){
fprintf(stderr, "could not connect!\n");
free(ncmd);
return -1;
}
}
(void)snprintf(ncmd, (strlen(cmd)+3), "%s\r\n", cmd);
#ifdef DEBUG
printf("executing: %s\n", ncmd);
#endif
if ((res = protect_write(cfd, ncmd, strlen(ncmd))) != strlen(ncmd)){
fprintf(stderr, "write error!: %d of %d\n", (int)strlen(ncmd), res);
free(ncmd);
if ((!reconnect) || ((res = FTPConnect(hostname, fuser, fpass)) != 0)){
fprintf(stderr, "could not reconnect!\n");
free(ncmd);
return res;
}
}else
free(ncmd);
if (resp){
if ((res = get_response()) != resp){
#ifdef DEBUG
fprintf(stderr, "command failed!\n");
#endif
if ((reconnect) && ((res < 0) || (res == 421))){
if ((res = FTPConnect(hostname, fuser, fpass)) != 0)
return res;
else
return -EAGAIN;
}else
return -1;
}
}
return 0;
}
int
execute_retry(char *cmd, int r, int reconnect)
{
int res, tries = 0;
do {
res = execute(cmd, r, reconnect);
}while((res == -EAGAIN) && (tries++ < FTP_MAXTRIES));
return res;
}
|