2009-10-27 06:16:00 +05:30
|
|
|
/*-
|
2011-01-15 16:29:44 +05:30
|
|
|
* Copyright (c) 2009-2011 Juan Romero Pardines
|
2009-10-27 06:16:00 +05:30
|
|
|
* Copyright (c) 2000-2004 Dag-Erling Coïdan Smørgrav
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer
|
|
|
|
* in this position and unchanged.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* From FreeBSD fetch(8):
|
|
|
|
* $FreeBSD: src/usr.bin/fetch/fetch.c,v 1.84.2.1 2009/08/03 08:13:06 kensmith Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2010-11-19 18:10:13 +05:30
|
|
|
|
|
|
|
#include "xbps_api_impl.h"
|
2009-10-27 06:16:00 +05:30
|
|
|
#include "fetch.h"
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
|
|
|
* @file lib/download.c
|
|
|
|
* @brief Download routines
|
2011-01-22 18:54:51 +05:30
|
|
|
* @defgroup download Download functions
|
2010-01-21 07:40:19 +05:30
|
|
|
*
|
2011-01-22 18:54:51 +05:30
|
|
|
* XBPS download related functions, frontend for NetBSD's libfetch.
|
2010-01-21 07:40:19 +05:30
|
|
|
*/
|
2009-10-31 19:39:25 +05:30
|
|
|
static const char *
|
|
|
|
print_time(time_t *t)
|
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
static char buf[255];
|
|
|
|
|
|
|
|
localtime_r(t, &tm);
|
|
|
|
strftime(buf, sizeof(buf), "%d %b %Y %H:%M", &tm);
|
|
|
|
return buf;
|
|
|
|
}
|
2010-01-24 20:18:29 +05:30
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
void HIDDEN
|
2010-01-24 20:18:29 +05:30
|
|
|
xbps_fetch_set_cache_connection(int global, int per_host)
|
|
|
|
{
|
|
|
|
if (global == 0)
|
2010-01-24 21:01:56 +05:30
|
|
|
global = XBPS_FETCH_CACHECONN;
|
2010-01-24 20:18:29 +05:30
|
|
|
if (per_host == 0)
|
2010-01-24 21:01:56 +05:30
|
|
|
per_host = XBPS_FETCH_CACHECONN_HOST;
|
2010-01-24 20:18:29 +05:30
|
|
|
|
|
|
|
fetchConnectionCacheInit(global, per_host);
|
|
|
|
}
|
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
void HIDDEN
|
2010-11-03 16:53:57 +05:30
|
|
|
xbps_fetch_unset_cache_connection(void)
|
|
|
|
{
|
|
|
|
fetchConnectionCacheClose();
|
|
|
|
}
|
|
|
|
|
2011-01-22 17:10:19 +05:30
|
|
|
const char *
|
|
|
|
xbps_fetch_error_string(void)
|
|
|
|
{
|
|
|
|
return fetchLastErrString;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2011-01-22 17:10:19 +05:30
|
|
|
xbps_fetch_file(const char *uri,
|
|
|
|
const char *outputdir,
|
|
|
|
bool refetch,
|
2011-02-21 18:08:44 +05:30
|
|
|
const char *flags)
|
2009-10-27 06:16:00 +05:30
|
|
|
{
|
2011-02-21 18:33:08 +05:30
|
|
|
const struct xbps_handle *xhp;
|
2009-10-27 06:16:00 +05:30
|
|
|
struct stat st;
|
|
|
|
struct url *url = NULL;
|
|
|
|
struct url_stat url_st;
|
|
|
|
struct fetchIO *fio = NULL;
|
|
|
|
struct timeval tv[2];
|
2011-01-22 17:10:19 +05:30
|
|
|
off_t bytes_dload = -1;
|
2010-04-29 03:00:56 +05:30
|
|
|
ssize_t bytes_read = -1, bytes_written;
|
|
|
|
char buf[4096], *filename, *destfile = NULL;
|
2009-10-27 06:16:00 +05:30
|
|
|
int fd = -1, rv = 0;
|
|
|
|
bool restart = false;
|
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(uri != NULL);
|
|
|
|
assert(outputdir != NULL);
|
|
|
|
|
2009-10-30 21:50:44 +05:30
|
|
|
fetchLastErrCode = 0;
|
2009-10-27 06:16:00 +05:30
|
|
|
|
2011-02-21 18:08:44 +05:30
|
|
|
xhp = xbps_handle_get();
|
2011-06-22 13:23:44 +05:30
|
|
|
|
|
|
|
if (xhp->fetch_timeout != 0)
|
|
|
|
fetchTimeout = xhp->fetch_timeout;
|
|
|
|
else
|
|
|
|
fetchTimeout = 30; /* 30s if not set in configuration file. */
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
/*
|
|
|
|
* Get the filename specified in URI argument.
|
|
|
|
*/
|
2011-01-22 17:10:19 +05:30
|
|
|
if ((filename = strrchr(uri, '/')) == NULL)
|
2009-11-24 10:33:26 +05:30
|
|
|
return -1;
|
2011-01-22 17:10:19 +05:30
|
|
|
|
|
|
|
/* Skip first '/' */
|
2009-10-27 06:16:00 +05:30
|
|
|
filename++;
|
|
|
|
/*
|
|
|
|
* Compute destination file path.
|
|
|
|
*/
|
|
|
|
destfile = xbps_xasprintf("%s/%s", outputdir, filename);
|
|
|
|
if (destfile == NULL) {
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
}
|
2009-10-30 21:50:44 +05:30
|
|
|
/*
|
|
|
|
* Check if we have to resume a transfer.
|
|
|
|
*/
|
2011-01-25 22:19:24 +05:30
|
|
|
memset(&st, 0, sizeof(st));
|
2009-11-18 11:58:14 +05:30
|
|
|
if (stat(destfile, &st) == 0) {
|
|
|
|
if (st.st_size > 0)
|
|
|
|
restart = true;
|
|
|
|
} else {
|
2009-10-27 06:16:00 +05:30
|
|
|
if (errno != ENOENT) {
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Prepare stuff for libfetch.
|
|
|
|
*/
|
|
|
|
if ((url = fetchParseURL(uri)) == NULL) {
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
|
|
|
|
}
|
|
|
|
/*
|
2009-11-18 11:58:14 +05:30
|
|
|
* Check if we want to refetch from scratch a file.
|
2009-10-27 06:16:00 +05:30
|
|
|
*/
|
2009-11-18 11:58:14 +05:30
|
|
|
if (refetch) {
|
|
|
|
/*
|
|
|
|
* Issue a HEAD request to know size and mtime.
|
|
|
|
*/
|
2009-11-24 10:33:26 +05:30
|
|
|
if ((rv = fetchStat(url, &url_st, NULL)) == -1)
|
2009-11-18 11:58:14 +05:30
|
|
|
goto out;
|
2009-11-24 10:33:26 +05:30
|
|
|
|
2009-11-18 11:58:14 +05:30
|
|
|
/*
|
|
|
|
* If mtime and size match do nothing.
|
|
|
|
*/
|
|
|
|
if (restart && url_st.size && url_st.mtime &&
|
|
|
|
url_st.size == st.st_size &&
|
|
|
|
url_st.mtime == st.st_mtime)
|
|
|
|
goto out;
|
|
|
|
|
2009-11-24 09:24:40 +05:30
|
|
|
/*
|
|
|
|
* If size match do nothing.
|
|
|
|
*/
|
|
|
|
if (restart && url_st.size && url_st.size == st.st_size)
|
|
|
|
goto out;
|
|
|
|
|
2009-11-18 11:58:14 +05:30
|
|
|
/*
|
|
|
|
* Remove current file (if exists).
|
|
|
|
*/
|
|
|
|
if (restart && remove(destfile) == -1) {
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-11-18 11:58:14 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
restart = false;
|
|
|
|
url->offset = 0;
|
|
|
|
/*
|
|
|
|
* Issue the GET request to refetch.
|
|
|
|
*/
|
|
|
|
fio = fetchGet(url, flags);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Issue a GET and skip the HEAD request, some servers
|
|
|
|
* (googlecode.com) return a 404 in HEAD requests!
|
|
|
|
*/
|
|
|
|
url->offset = st.st_size;
|
|
|
|
fio = fetchXGet(url, &url_st, flags);
|
|
|
|
}
|
2009-10-31 19:39:25 +05:30
|
|
|
|
2011-01-22 17:10:19 +05:30
|
|
|
/* debug stuff */
|
|
|
|
xbps_dbg_printf("st.st_size: %zd\n", (ssize_t)st.st_size);
|
|
|
|
xbps_dbg_printf("st.st_atime: %s\n", print_time(&st.st_atime));
|
|
|
|
xbps_dbg_printf("st.st_mtime: %s\n", print_time(&st.st_mtime));
|
|
|
|
xbps_dbg_printf("url->scheme: %s\n", url->scheme);
|
|
|
|
xbps_dbg_printf("url->host: %s\n", url->host);
|
|
|
|
xbps_dbg_printf("url->port: %d\n", url->port);
|
|
|
|
xbps_dbg_printf("url->doc: %s\n", url->doc);
|
|
|
|
xbps_dbg_printf("url->offset: %zd\n", (ssize_t)url->offset);
|
|
|
|
xbps_dbg_printf("url->length: %zu\n", url->length);
|
|
|
|
xbps_dbg_printf("url->last_modified: %s\n",
|
|
|
|
print_time(&url->last_modified));
|
|
|
|
xbps_dbg_printf("url_stat.size: %zd\n", (ssize_t)url_st.size);
|
|
|
|
xbps_dbg_printf("url_stat.atime: %s\n", print_time(&url_st.atime));
|
|
|
|
xbps_dbg_printf("url_stat.mtime: %s\n", print_time(&url_st.mtime));
|
2009-10-31 19:39:25 +05:30
|
|
|
|
2009-11-18 11:58:14 +05:30
|
|
|
if (fio == NULL && fetchLastErrCode != FETCH_OK) {
|
2009-11-22 11:34:46 +05:30
|
|
|
if (!refetch && restart && fetchLastErrCode == FETCH_UNAVAIL) {
|
2009-11-18 11:58:14 +05:30
|
|
|
/*
|
|
|
|
* In HTTP when 416 is returned and length==0
|
|
|
|
* means that local and remote file size match.
|
|
|
|
* Because we are requesting offset==st_size! grr,
|
|
|
|
* stupid http servers...
|
|
|
|
*/
|
|
|
|
if (url->length == 0)
|
|
|
|
goto out;
|
2009-11-07 10:51:01 +05:30
|
|
|
}
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
}
|
2009-10-31 19:39:25 +05:30
|
|
|
if (url_st.size == -1) {
|
2011-01-22 17:10:19 +05:30
|
|
|
xbps_error_printf("Remote file size is unknown!\n");
|
2009-11-24 10:33:26 +05:30
|
|
|
errno = EINVAL;
|
|
|
|
rv = -1;
|
2009-10-31 19:39:25 +05:30
|
|
|
goto out;
|
|
|
|
} else if (st.st_size > url_st.size) {
|
2011-06-23 03:36:50 +05:30
|
|
|
/*
|
|
|
|
* Remove local file if bigger than remote, and refetch the
|
|
|
|
* whole shit again.
|
|
|
|
*/
|
|
|
|
xbps_warn_printf("Local file %s is greater than remote, "
|
|
|
|
"removing local file and refetching...\n", filename);
|
|
|
|
(void)remove(destfile);
|
2009-11-18 11:58:14 +05:30
|
|
|
} else if (restart && url_st.mtime && url_st.size &&
|
|
|
|
url_st.size == st.st_size && url_st.mtime == st.st_mtime) {
|
2009-10-31 19:39:25 +05:30
|
|
|
/* Local and remote size/mtime match, do nothing. */
|
|
|
|
goto out;
|
2009-10-30 21:50:44 +05:30
|
|
|
}
|
2009-10-27 06:16:00 +05:30
|
|
|
/*
|
|
|
|
* If restarting, open the file for appending otherwise create it.
|
|
|
|
*/
|
|
|
|
if (restart)
|
|
|
|
fd = open(destfile, O_WRONLY|O_APPEND);
|
|
|
|
else
|
2009-11-18 11:58:14 +05:30
|
|
|
fd = open(destfile, O_WRONLY|O_CREAT|O_TRUNC, 0644);
|
2009-10-27 06:16:00 +05:30
|
|
|
|
|
|
|
if (fd == -1) {
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-01-22 17:10:19 +05:30
|
|
|
/*
|
|
|
|
* Initialize data for the fetch progress function callback
|
|
|
|
* and let the user know that the transfer is going to start
|
|
|
|
* immediately.
|
|
|
|
*/
|
2011-02-21 18:08:44 +05:30
|
|
|
if (xhp != NULL && xhp->xbps_fetch_cb != NULL && xhp->xfpd != NULL) {
|
|
|
|
xhp->xfpd->file_name = filename;
|
|
|
|
xhp->xfpd->file_size = url_st.size;
|
|
|
|
xhp->xfpd->file_offset = url->offset;
|
|
|
|
xhp->xfpd->file_dloaded = -1;
|
|
|
|
xhp->xfpd->cb_start = true;
|
|
|
|
xhp->xfpd->cb_update = false;
|
|
|
|
xhp->xfpd->cb_end = false;
|
|
|
|
xhp->xbps_fetch_cb(xhp->xfpd);
|
2011-01-22 17:10:19 +05:30
|
|
|
}
|
2009-10-27 06:16:00 +05:30
|
|
|
/*
|
|
|
|
* Start fetching requested file.
|
|
|
|
*/
|
|
|
|
while ((bytes_read = fetchIO_read(fio, buf, sizeof(buf))) > 0) {
|
|
|
|
bytes_written = write(fd, buf, (size_t)bytes_read);
|
|
|
|
if (bytes_written != bytes_read) {
|
2011-01-22 17:10:19 +05:30
|
|
|
xbps_error_printf("Couldn't write to %s!\n", destfile);
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
}
|
2011-01-22 17:10:19 +05:30
|
|
|
bytes_dload += bytes_read;
|
|
|
|
/*
|
|
|
|
* Let the fetch progress callback know that
|
|
|
|
* we are sucking more bytes from it.
|
|
|
|
*/
|
2011-02-21 18:08:44 +05:30
|
|
|
if (xhp != NULL && xhp->xbps_fetch_cb != NULL &&
|
|
|
|
xhp->xfpd != NULL) {
|
|
|
|
xhp->xfpd->file_dloaded = bytes_dload;
|
|
|
|
xhp->xfpd->cb_start = false;
|
|
|
|
xhp->xfpd->cb_update = true;
|
|
|
|
xhp->xbps_fetch_cb(xhp->xfpd);
|
2011-01-22 17:10:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Let the fetch progress callback know that the file
|
|
|
|
* has been fetched.
|
|
|
|
*/
|
2011-02-21 18:08:44 +05:30
|
|
|
if (xhp != NULL && xhp->xbps_fetch_cb != NULL && xhp->xfpd != NULL) {
|
|
|
|
xhp->xfpd->cb_update = false;
|
|
|
|
xhp->xfpd->cb_end = true;
|
|
|
|
xhp->xbps_fetch_cb(xhp->xfpd);
|
2009-10-27 06:16:00 +05:30
|
|
|
}
|
2009-10-31 16:10:55 +05:30
|
|
|
if (bytes_read == -1) {
|
2011-01-22 17:10:19 +05:30
|
|
|
xbps_error_printf("IO error while fetching %s: %s\n", filename,
|
2009-10-31 16:10:55 +05:30
|
|
|
fetchLastErrString);
|
2009-11-24 10:33:26 +05:30
|
|
|
errno = EIO;
|
|
|
|
rv = -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
goto out;
|
|
|
|
}
|
2011-01-22 17:10:19 +05:30
|
|
|
if (fd == -1) {
|
|
|
|
rv = -1;
|
2009-11-18 11:58:14 +05:30
|
|
|
goto out;
|
2011-01-22 17:10:19 +05:30
|
|
|
}
|
2009-10-27 06:16:00 +05:30
|
|
|
/*
|
2009-11-18 11:58:14 +05:30
|
|
|
* Update mtime in local file to match remote file if transfer
|
|
|
|
* was successful.
|
2009-10-27 06:16:00 +05:30
|
|
|
*/
|
|
|
|
tv[0].tv_sec = url_st.atime ? url_st.atime : url_st.mtime;
|
|
|
|
tv[1].tv_sec = url_st.mtime;
|
|
|
|
tv[0].tv_usec = tv[1].tv_usec = 0;
|
2011-01-22 17:10:19 +05:30
|
|
|
if (utimes(destfile, tv) == -1) {
|
2009-11-24 10:33:26 +05:30
|
|
|
rv = -1;
|
2011-01-22 17:10:19 +05:30
|
|
|
goto out;
|
2009-11-24 10:33:26 +05:30
|
|
|
}
|
2009-10-27 06:16:00 +05:30
|
|
|
|
2011-01-22 17:10:19 +05:30
|
|
|
/* File downloaded successfully */
|
|
|
|
rv = 1;
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
out:
|
|
|
|
if (fd != -1)
|
|
|
|
(void)close(fd);
|
2009-11-07 10:51:01 +05:30
|
|
|
if (fio != NULL)
|
2009-10-27 06:16:00 +05:30
|
|
|
fetchIO_close(fio);
|
2009-11-07 10:51:01 +05:30
|
|
|
if (url != NULL)
|
2009-10-27 06:16:00 +05:30
|
|
|
fetchFreeURL(url);
|
2009-11-07 10:51:01 +05:30
|
|
|
if (destfile != NULL)
|
2009-10-27 06:16:00 +05:30
|
|
|
free(destfile);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|