1999-12-29 09:20:26 -05:00
|
|
|
/*****************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* In order to be useful for every potential user, curl and libcurl are
|
|
|
|
* dual-licensed under the MPL and the MIT/X-derivate licenses.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the MPL or the MIT/X-derivate
|
|
|
|
* licenses. You may pick one of these licenses.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
|
|
|
*****************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* -- WIN32 approved -- */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
|
|
|
|
#include <winsock.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
2000-08-23 03:23:42 -04:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netinet/in.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2000-08-23 03:23:42 -04:00
|
|
|
#ifdef HAVE_NETDB_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netdb.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "progress.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "escape.h"
|
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2000-11-27 07:04:51 -05:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#ifdef MALLOCDEBUG
|
|
|
|
#include "memdebug.h"
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-03-05 08:39:01 -05:00
|
|
|
/* Emulate a connect-then-transfer protocol. We connect to the file here */
|
|
|
|
CURLcode Curl_file_connect(struct connectdata *conn)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:39:01 -05:00
|
|
|
char *actual_path = curl_unescape(conn->path, 0);
|
|
|
|
struct FILE *file;
|
1999-12-29 09:20:26 -05:00
|
|
|
int fd;
|
2001-03-14 03:28:19 -05:00
|
|
|
#if defined(WIN32) || defined(__EMX__)
|
|
|
|
int i;
|
|
|
|
#endif
|
2001-03-05 08:39:01 -05:00
|
|
|
|
|
|
|
file = (struct FILE *)malloc(sizeof(struct FILE));
|
|
|
|
if(!file)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
memset(file, 0, sizeof(struct FILE));
|
|
|
|
conn->proto.file = file;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-03-19 14:54:13 -05:00
|
|
|
#if defined(WIN32) || defined(__EMX__)
|
|
|
|
/* change path separators from '/' to '\\' for Windows and OS/2 */
|
1999-12-29 09:20:26 -05:00
|
|
|
for (i=0; actual_path[i] != '\0'; ++i)
|
|
|
|
if (actual_path[i] == '/')
|
|
|
|
actual_path[i] = '\\';
|
|
|
|
|
|
|
|
fd = open(actual_path, O_RDONLY | O_BINARY); /* no CR/LF translation! */
|
|
|
|
#else
|
|
|
|
fd = open(actual_path, O_RDONLY);
|
|
|
|
#endif
|
|
|
|
free(actual_path);
|
|
|
|
|
|
|
|
if(fd == -1) {
|
2001-03-05 08:39:01 -05:00
|
|
|
failf(conn->data, "Couldn't open file %s", conn->path);
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_FILE_COULDNT_READ_FILE;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-03-05 08:39:01 -05:00
|
|
|
file->fd = fd;
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the do-phase, separated from the connect-phase above */
|
|
|
|
|
|
|
|
CURLcode Curl_file(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
/* This implementation ignores the host name in conformance with
|
|
|
|
RFC 1738. Only local files (reachable via the standard file system)
|
|
|
|
are supported. This means that files on remotely mounted directories
|
|
|
|
(via NFS, Samba, NT sharing) can be accessed through a file:// URL
|
|
|
|
*/
|
|
|
|
CURLcode res = CURLE_OK;
|
|
|
|
struct stat statbuf;
|
|
|
|
size_t expected_size=-1;
|
|
|
|
size_t nread;
|
|
|
|
struct UrlData *data = conn->data;
|
|
|
|
char *buf = data->buffer;
|
|
|
|
int bytecount = 0;
|
|
|
|
struct timeval start = Curl_tvnow();
|
|
|
|
struct timeval now = start;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* get the fd from the connection phase */
|
|
|
|
fd = conn->proto.file->fd;
|
|
|
|
|
2001-08-06 08:17:43 -04:00
|
|
|
/*VMS?? -- This only works reliable for STREAMLF files */
|
1999-12-29 09:20:26 -05:00
|
|
|
if( -1 != fstat(fd, &statbuf)) {
|
|
|
|
/* we could stat it, then read out the size */
|
|
|
|
expected_size = statbuf.st_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The following is a shortcut implementation of file reading
|
|
|
|
this is both more efficient than the former call to download() and
|
|
|
|
it avoids problems with select() and recv() on file descriptors
|
|
|
|
in Winsock */
|
2001-08-06 08:17:43 -04:00
|
|
|
#ifdef VMS
|
|
|
|
if((signed int)expected_size != -1)
|
|
|
|
#else
|
2000-02-14 17:57:42 -05:00
|
|
|
if(expected_size != -1)
|
2001-08-06 08:17:43 -04:00
|
|
|
#endif
|
2001-01-05 05:11:41 -05:00
|
|
|
Curl_pgrsSetDownloadSize(data, expected_size);
|
2000-02-14 17:57:42 -05:00
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
while (res == CURLE_OK) {
|
1999-12-29 09:20:26 -05:00
|
|
|
nread = read(fd, buf, BUFSIZE-1);
|
|
|
|
|
2001-08-06 08:17:43 -04:00
|
|
|
if ( nread > 0)
|
1999-12-29 09:20:26 -05:00
|
|
|
buf[nread] = 0;
|
|
|
|
|
2001-08-06 08:17:43 -04:00
|
|
|
#ifdef VMS
|
|
|
|
if ((signed int)nread <= 0)
|
|
|
|
#else
|
1999-12-29 09:20:26 -05:00
|
|
|
if (nread <= 0)
|
2001-08-06 08:17:43 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
bytecount += nread;
|
|
|
|
/* NOTE: The following call to fwrite does CR/LF translation on
|
|
|
|
Windows systems if the target is stdout. Use -O or -o parameters
|
|
|
|
to prevent CR/LF translation (this then goes to a binary mode
|
|
|
|
file descriptor). */
|
2000-11-22 07:51:18 -05:00
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
res = Curl_client_write(data, CLIENTWRITE_BODY, buf, nread);
|
2000-11-22 07:51:18 -05:00
|
|
|
if(res)
|
|
|
|
return res;
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
now = Curl_tvnow();
|
2001-04-18 03:25:11 -04:00
|
|
|
if(Curl_pgrsUpdate(conn))
|
2000-05-22 10:12:12 -04:00
|
|
|
res = CURLE_ABORTED_BY_CALLBACK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-01-05 05:11:41 -05:00
|
|
|
now = Curl_tvnow();
|
2001-04-18 03:25:11 -04:00
|
|
|
if(Curl_pgrsUpdate(conn))
|
2000-05-22 10:12:12 -04:00
|
|
|
res = CURLE_ABORTED_BY_CALLBACK;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
return res;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|