2006-10-15 18:21:58 -04:00
|
|
|
/*
|
|
|
|
* server.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2007-03-05 17:13:33 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
2007-03-20 23:08:19 -04:00
|
|
|
#include <errno.h>
|
2007-01-18 11:52:57 -05:00
|
|
|
#include <download.h>
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2007-03-05 17:13:33 -05:00
|
|
|
/* libalpm */
|
2006-10-15 18:21:58 -04:00
|
|
|
#include "server.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
#include "alpm_list.h"
|
2006-10-15 18:21:58 -04:00
|
|
|
#include "error.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "alpm.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "handle.h"
|
2006-10-31 01:39:59 -05:00
|
|
|
#include "log.h"
|
2007-02-10 04:36:36 -05:00
|
|
|
#include "package.h"
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2007-06-03 23:57:38 -04:00
|
|
|
/** Fetch a remote pkg.
|
|
|
|
* @param url
|
|
|
|
* @return the downloaded filename on success, NULL on error
|
|
|
|
* @addtogroup alpm_misc
|
|
|
|
*/
|
|
|
|
char SYMEXPORT *alpm_fetch_pkgurl(char *url)
|
|
|
|
{
|
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
|
|
|
ASSERT(strstr(url, "://"), return(NULL));
|
|
|
|
|
|
|
|
return(_alpm_fetch_pkgurl(url));
|
|
|
|
}
|
|
|
|
|
2006-11-08 03:14:29 -05:00
|
|
|
pmserver_t *_alpm_server_new(const char *url)
|
2006-10-15 18:21:58 -04:00
|
|
|
{
|
2006-10-31 01:39:59 -05:00
|
|
|
struct url *u;
|
2006-10-15 18:21:58 -04:00
|
|
|
pmserver_t *server;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-05-14 03:16:55 -04:00
|
|
|
server = malloc(sizeof(pmserver_t));
|
2006-10-15 18:21:58 -04:00
|
|
|
if(server == NULL) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes"), sizeof(pmserver_t));
|
|
|
|
RET_ERR(PM_ERR_MEMORY, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(server, 0, sizeof(pmserver_t));
|
2006-11-14 02:58:42 -05:00
|
|
|
u = downloadParseURL(url);
|
2006-10-31 01:39:59 -05:00
|
|
|
if(!u) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("url '%s' is invalid, ignoring"), url);
|
2007-02-09 05:10:49 -05:00
|
|
|
RET_ERR(PM_ERR_SERVER_BAD_URL, NULL);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
if(strlen(u->scheme) == 0) {
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("url scheme not specified, assuming http"));
|
|
|
|
strcpy(u->scheme, "http");
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
|
|
|
|
if(strcmp(u->scheme,"ftp") == 0 && strlen(u->user) == 0) {
|
|
|
|
strcpy(u->user, "anonymous");
|
|
|
|
strcpy(u->pwd, "libalpm@guest");
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
2007-05-18 02:17:52 -04:00
|
|
|
/* remove trailing slashes, just to clean up the rest of the code */
|
|
|
|
for(int i = strlen(u->doc) - 1; u->doc[i] == '/'; --i)
|
|
|
|
u->doc[i] = '\0';
|
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
server->s_url = u;
|
|
|
|
|
|
|
|
return server;
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
2007-04-26 20:23:03 -04:00
|
|
|
void _alpm_server_free(pmserver_t *server)
|
2006-10-15 18:21:58 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
if(server == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free memory */
|
2006-11-14 02:58:42 -05:00
|
|
|
downloadFreeURL(server->s_url);
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(server);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
2007-02-09 05:10:49 -05:00
|
|
|
/* remove filename info from "s_url->doc" and return it */
|
|
|
|
static char *strip_filename(pmserver_t *server)
|
|
|
|
{
|
|
|
|
char *p = NULL, *fname = NULL;
|
|
|
|
if(!server) {
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
p = strrchr(server->s_url->doc, '/');
|
|
|
|
if(p && *(++p)) {
|
|
|
|
fname = strdup(p);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("stripping '%s' from '%s'"), fname, server->s_url->doc);
|
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* s_url->doc now contains ONLY path information. return value
|
|
|
|
* if the file information from the original URL */
|
|
|
|
return(fname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a 'struct url' for this server, for downloading 'filename'. */
|
|
|
|
static struct url *url_for_file(pmserver_t *server, const char *filename)
|
|
|
|
{
|
|
|
|
struct url *ret = NULL;
|
|
|
|
char *doc = NULL;
|
|
|
|
int doclen = 0;
|
|
|
|
|
|
|
|
doclen = strlen(server->s_url->doc) + strlen(filename) + 2;
|
|
|
|
doc = calloc(doclen, sizeof(char));
|
|
|
|
if(!doc) {
|
|
|
|
RET_ERR(PM_ERR_MEMORY, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(doc, doclen, "%s/%s", server->s_url->doc, filename);
|
|
|
|
ret = downloadMakeURL(server->s_url->scheme,
|
|
|
|
server->s_url->host,
|
|
|
|
server->s_url->port,
|
|
|
|
doc,
|
|
|
|
server->s_url->user,
|
|
|
|
server->s_url->pwd);
|
|
|
|
free(doc);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
/*
|
|
|
|
* Download a list of files from a list of servers
|
|
|
|
* - if one server fails, we try the next one in the list
|
|
|
|
*
|
|
|
|
* RETURN: 0 for successful download, 1 on error
|
|
|
|
*/
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_downloadfiles(alpm_list_t *servers, const char *localpath, alpm_list_t *files)
|
2006-10-15 18:21:58 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
2006-10-31 01:39:59 -05:00
|
|
|
return(_alpm_downloadfiles_forreal(servers, localpath, files, NULL, NULL));
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the real downloadfiles, used directly by sync_synctree() to check
|
|
|
|
* modtimes on remote files.
|
|
|
|
* - if *mtime1 is non-NULL, then only download files
|
|
|
|
* if they are different than *mtime1. String should be in the form
|
|
|
|
* "YYYYMMDDHHMMSS" to match the form of ftplib's FtpModDate() function.
|
|
|
|
* - if *mtime2 is non-NULL, then it will be filled with the mtime
|
|
|
|
* of the remote file (from MDTM FTP cmd or Last-Modified HTTP header).
|
|
|
|
*
|
|
|
|
* RETURN: 0 for successful download
|
2006-10-31 01:39:59 -05:00
|
|
|
* 1 if the mtimes are identical
|
|
|
|
* -1 on error
|
2006-10-15 18:21:58 -04:00
|
|
|
*/
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_downloadfiles_forreal(alpm_list_t *servers, const char *localpath,
|
|
|
|
alpm_list_t *files, const char *mtime1, char *mtime2)
|
2006-10-15 18:21:58 -04:00
|
|
|
{
|
2006-10-31 01:39:59 -05:00
|
|
|
int dltotal_bytes = 0;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *lp;
|
2006-10-15 18:21:58 -04:00
|
|
|
int done = 0;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *complete = NULL;
|
|
|
|
alpm_list_t *i;
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
if(files == NULL) {
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = servers; i && !done; i = i->next) {
|
2007-02-09 05:10:49 -05:00
|
|
|
pmserver_t *server = i->data;
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
/* get each file in the list */
|
|
|
|
for(lp = files; lp; lp = lp->next) {
|
2007-02-09 05:10:49 -05:00
|
|
|
struct url *fileurl = NULL;
|
2006-10-31 01:39:59 -05:00
|
|
|
char realfile[PATH_MAX];
|
|
|
|
char output[PATH_MAX];
|
|
|
|
char *fn = (char *)lp->data;
|
2007-02-10 04:36:36 -05:00
|
|
|
char pkgname[PKG_NAME_LEN];
|
|
|
|
char *p;
|
2006-10-31 01:39:59 -05:00
|
|
|
|
2007-02-09 05:10:49 -05:00
|
|
|
fileurl = url_for_file(server, fn);
|
|
|
|
if(!fileurl) {
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2007-02-10 04:36:36 -05:00
|
|
|
/* Try to get JUST the name of the package from the filename */
|
2007-02-12 01:31:39 -05:00
|
|
|
memset(pkgname, 0, PKG_NAME_LEN);
|
2007-05-31 02:51:28 -04:00
|
|
|
if((p = strstr(fn, PKGEXT))) {
|
2007-02-12 01:31:39 -05:00
|
|
|
_alpm_pkg_splitname(fn, pkgname, NULL, 1);
|
|
|
|
}
|
2007-02-10 04:36:36 -05:00
|
|
|
if(!strlen(pkgname)) {
|
|
|
|
/* just use the raw filename if we can't find crap */
|
2007-04-29 12:03:09 -04:00
|
|
|
strncpy(pkgname, fn, PKG_NAME_LEN);
|
2007-02-10 04:36:36 -05:00
|
|
|
}
|
2007-02-12 01:31:39 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("using '%s' for download progress"), pkgname);
|
2007-02-10 04:36:36 -05:00
|
|
|
|
2007-03-05 20:21:41 -05:00
|
|
|
snprintf(realfile, PATH_MAX, "%s%s", localpath, fn);
|
|
|
|
snprintf(output, PATH_MAX, "%s%s.part", localpath, fn);
|
2006-10-31 01:39:59 -05:00
|
|
|
|
2007-01-29 22:46:33 -05:00
|
|
|
if(alpm_list_find_str(complete, fn)) {
|
2006-10-31 01:39:59 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-03-21 17:08:08 -04:00
|
|
|
if(!handle->xfercommand || !strcmp(fileurl->scheme, "file")) {
|
2006-10-31 01:39:59 -05:00
|
|
|
FILE *dlf, *localf = NULL;
|
|
|
|
struct url_stat ust;
|
|
|
|
struct stat st;
|
|
|
|
int chk_resume = 0;
|
|
|
|
|
|
|
|
if(stat(output, &st) == 0 && st.st_size > 0) {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("existing file found, using it"));
|
2007-02-09 05:10:49 -05:00
|
|
|
fileurl->offset = (off_t)st.st_size;
|
2006-10-31 01:39:59 -05:00
|
|
|
dltotal_bytes = st.st_size;
|
|
|
|
localf = fopen(output, "a");
|
|
|
|
chk_resume = 1;
|
|
|
|
} else {
|
2007-02-09 05:10:49 -05:00
|
|
|
fileurl->offset = (off_t)0;
|
2006-10-31 01:39:59 -05:00
|
|
|
dltotal_bytes = 0;
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
/* libdownload does not reset the error code, reset it in the case of previous errors */
|
|
|
|
downloadLastErrCode = 0;
|
2006-10-31 01:39:59 -05:00
|
|
|
|
|
|
|
/* 10s timeout - TODO make a config option */
|
2006-11-14 02:58:42 -05:00
|
|
|
downloadTimeout = 10000;
|
2006-10-31 01:39:59 -05:00
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
/* Make libdownload super verbose... worthwhile for testing */
|
2006-11-20 04:10:23 -05:00
|
|
|
if(alpm_option_get_logmask() & PM_LOG_DOWNLOAD) {
|
2006-11-14 02:58:42 -05:00
|
|
|
downloadDebug = 1;
|
2006-11-01 01:30:47 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
if(alpm_option_get_logmask() & PM_LOG_DEBUG) {
|
2007-02-09 05:10:49 -05:00
|
|
|
dlf = downloadXGet(fileurl, &ust, (handle->nopassiveftp ? "v" : "vp"));
|
2006-10-31 01:39:59 -05:00
|
|
|
} else {
|
2007-02-09 05:10:49 -05:00
|
|
|
dlf = downloadXGet(fileurl, &ust, (handle->nopassiveftp ? "" : "p"));
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-11-15 02:50:37 -05:00
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
if(downloadLastErrCode != 0 || dlf == NULL) {
|
2007-02-09 05:10:49 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("failed retrieving file '%s' from %s : %s"),
|
|
|
|
fn, fileurl->host, downloadLastErrString);
|
2006-10-31 01:39:59 -05:00
|
|
|
if(localf != NULL) {
|
|
|
|
fclose(localf);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-10-31 02:00:21 -05:00
|
|
|
/* try the next server */
|
|
|
|
continue;
|
2006-10-15 18:21:58 -04:00
|
|
|
} else {
|
2007-02-09 05:10:49 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("connected to %s successfully"), fileurl->host);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
|
|
|
|
if(ust.mtime && mtime1) {
|
|
|
|
char strtime[15];
|
|
|
|
_alpm_time2string(ust.mtime, strtime);
|
|
|
|
if(strcmp(mtime1, strtime) == 0) {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("mtimes are identical, skipping %s"), fn);
|
2007-01-19 04:28:44 -05:00
|
|
|
complete = alpm_list_add(complete, fn);
|
2006-10-31 01:39:59 -05:00
|
|
|
if(localf != NULL) {
|
|
|
|
fclose(localf);
|
|
|
|
}
|
|
|
|
if(dlf != NULL) {
|
|
|
|
fclose(dlf);
|
|
|
|
}
|
|
|
|
return(1);
|
|
|
|
}
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
|
|
|
|
if(ust.mtime && mtime2) {
|
|
|
|
_alpm_time2string(ust.mtime, mtime2);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
2007-02-09 05:10:49 -05:00
|
|
|
if(chk_resume && fileurl->offset == 0) {
|
2006-10-31 01:39:59 -05:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("cannot resume download, starting over"));
|
|
|
|
if(localf != NULL) {
|
|
|
|
fclose(localf);
|
|
|
|
localf = NULL;
|
|
|
|
}
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
if(localf == NULL) {
|
|
|
|
_alpm_rmrf(output);
|
2007-02-09 05:10:49 -05:00
|
|
|
fileurl->offset = (off_t)0;
|
2006-10-31 01:39:59 -05:00
|
|
|
dltotal_bytes = 0;
|
|
|
|
localf = fopen(output, "w");
|
2006-11-21 23:25:31 -05:00
|
|
|
if(localf == NULL) { /* still null? */
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("cannot write to file '%s'"), output);
|
2007-03-20 23:08:19 -04:00
|
|
|
if(dlf != NULL) {
|
|
|
|
fclose(dlf);
|
|
|
|
}
|
2006-11-21 23:25:31 -05:00
|
|
|
return -1;
|
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
}
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
/* Progress 0 - initialize */
|
2007-02-10 04:36:36 -05:00
|
|
|
if(handle->dlcb) handle->dlcb(pkgname, 0, ust.size);
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
int nread = 0;
|
|
|
|
char buffer[PM_DLBUF_LEN];
|
|
|
|
while((nread = fread(buffer, 1, PM_DLBUF_LEN, dlf)) > 0) {
|
2007-03-20 23:08:19 -04:00
|
|
|
if(ferror(dlf)) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("error downloading '%s': %s"),
|
|
|
|
fn, downloadLastErrString);
|
|
|
|
fclose(localf);
|
|
|
|
fclose(dlf);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
int nwritten = 0;
|
2007-03-20 23:08:19 -04:00
|
|
|
while(nwritten < nread) {
|
|
|
|
nwritten += fwrite(buffer, 1, (nread - nwritten), localf);
|
|
|
|
if(ferror(localf)) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("error writing to file '%s': %s"),
|
|
|
|
realfile, strerror(errno));
|
|
|
|
fclose(localf);
|
|
|
|
fclose(dlf);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nwritten != nread) {
|
|
|
|
|
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
dltotal_bytes += nread;
|
|
|
|
|
2007-02-10 04:36:36 -05:00
|
|
|
if(handle->dlcb) handle->dlcb(pkgname, dltotal_bytes, ust.size);
|
2006-10-31 01:39:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(localf);
|
|
|
|
fclose(dlf);
|
|
|
|
rename(output, realfile);
|
2007-01-19 04:28:44 -05:00
|
|
|
complete = alpm_list_add(complete, fn);
|
2006-10-31 01:39:59 -05:00
|
|
|
} else {
|
2006-10-15 18:21:58 -04:00
|
|
|
int ret;
|
|
|
|
int usepart = 0;
|
|
|
|
char *ptr1, *ptr2;
|
|
|
|
char origCmd[PATH_MAX];
|
|
|
|
char parsedCmd[PATH_MAX] = "";
|
|
|
|
char url[PATH_MAX];
|
|
|
|
char cwd[PATH_MAX];
|
2007-03-05 23:22:03 -05:00
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
/* build the full download url */
|
2007-03-05 23:22:03 -05:00
|
|
|
snprintf(url, PATH_MAX, "%s://%s%s", fileurl->scheme, fileurl->host, fileurl->doc);
|
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
/* replace all occurrences of %o with fn.part */
|
|
|
|
strncpy(origCmd, handle->xfercommand, sizeof(origCmd));
|
|
|
|
ptr1 = origCmd;
|
|
|
|
while((ptr2 = strstr(ptr1, "%o"))) {
|
|
|
|
usepart = 1;
|
|
|
|
ptr2[0] = '\0';
|
|
|
|
strcat(parsedCmd, ptr1);
|
2007-03-05 23:22:03 -05:00
|
|
|
strcat(parsedCmd, output);
|
2006-10-15 18:21:58 -04:00
|
|
|
ptr1 = ptr2 + 2;
|
|
|
|
}
|
|
|
|
strcat(parsedCmd, ptr1);
|
|
|
|
/* replace all occurrences of %u with the download URL */
|
|
|
|
strncpy(origCmd, parsedCmd, sizeof(origCmd));
|
|
|
|
parsedCmd[0] = '\0';
|
|
|
|
ptr1 = origCmd;
|
|
|
|
while((ptr2 = strstr(ptr1, "%u"))) {
|
|
|
|
ptr2[0] = '\0';
|
|
|
|
strcat(parsedCmd, ptr1);
|
|
|
|
strcat(parsedCmd, url);
|
|
|
|
ptr1 = ptr2 + 2;
|
|
|
|
}
|
|
|
|
strcat(parsedCmd, ptr1);
|
|
|
|
/* cwd to the download directory */
|
|
|
|
getcwd(cwd, PATH_MAX);
|
|
|
|
if(chdir(localpath)) {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("could not chdir to %s"), localpath);
|
2006-10-15 18:21:58 -04:00
|
|
|
return(PM_ERR_CONNECT_FAILED);
|
|
|
|
}
|
|
|
|
/* execute the parsed command via /bin/sh -c */
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("running command: %s"), parsedCmd);
|
2006-10-15 18:21:58 -04:00
|
|
|
ret = system(parsedCmd);
|
|
|
|
if(ret == -1) {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("running XferCommand: fork failed!"));
|
2006-10-15 18:21:58 -04:00
|
|
|
return(PM_ERR_FORK_FAILED);
|
|
|
|
} else if(ret != 0) {
|
|
|
|
/* download failed */
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("XferCommand command returned non-zero status code (%d)"), ret);
|
2006-10-15 18:21:58 -04:00
|
|
|
} else {
|
|
|
|
/* download was successful */
|
2007-01-19 04:28:44 -05:00
|
|
|
complete = alpm_list_add(complete, fn);
|
2006-10-15 18:21:58 -04:00
|
|
|
if(usepart) {
|
2007-03-05 23:22:03 -05:00
|
|
|
rename(output, realfile);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
chdir(cwd);
|
|
|
|
}
|
2007-02-09 05:10:49 -05:00
|
|
|
downloadFreeURL(fileurl);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
if(alpm_list_count(complete) == alpm_list_count(files)) {
|
2006-10-15 18:21:58 -04:00
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-31 02:00:21 -05:00
|
|
|
return(done ? 0 : -1);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
char *_alpm_fetch_pkgurl(char *target)
|
|
|
|
{
|
2007-02-09 05:10:49 -05:00
|
|
|
pmserver_t *server;
|
|
|
|
char *filename;
|
2006-10-31 01:39:59 -05:00
|
|
|
struct stat st;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-02-09 05:10:49 -05:00
|
|
|
server = _alpm_server_new(target);
|
|
|
|
if(!server) {
|
2006-10-31 01:39:59 -05:00
|
|
|
return(NULL);
|
|
|
|
}
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2007-02-09 05:10:49 -05:00
|
|
|
/* strip path information from the filename */
|
|
|
|
filename = strip_filename(server);
|
|
|
|
if(!filename) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("URL does not contain a file for download"));
|
|
|
|
return(NULL);
|
2006-10-31 01:39:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* do not download the file if it exists in the current dir */
|
2007-02-09 05:10:49 -05:00
|
|
|
if(stat(filename, &st) == 0) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("%s has already been downloaded"), filename);
|
2006-10-15 18:21:58 -04:00
|
|
|
} else {
|
2007-02-09 05:10:49 -05:00
|
|
|
alpm_list_t *servers = alpm_list_add(NULL, server);
|
|
|
|
alpm_list_t *files = alpm_list_add(NULL, filename);
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2007-03-12 19:26:47 -04:00
|
|
|
if(_alpm_downloadfiles(servers, "./", files)) {
|
2007-02-09 05:10:49 -05:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("failed to download %s"), target);
|
2006-10-15 18:21:58 -04:00
|
|
|
return(NULL);
|
|
|
|
}
|
2007-02-09 05:10:49 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("successfully downloaded %s"), filename);
|
|
|
|
alpm_list_free(files);
|
|
|
|
alpm_list_free(servers);
|
2006-11-14 02:58:42 -05:00
|
|
|
}
|
|
|
|
|
2007-02-09 05:10:49 -05:00
|
|
|
_alpm_server_free(server);
|
2006-11-01 01:30:47 -05:00
|
|
|
|
2006-10-15 18:21:58 -04:00
|
|
|
/* return the target with the raw filename, no URL */
|
2007-02-09 05:10:49 -05:00
|
|
|
return(filename);
|
2006-10-15 18:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|