2009-10-27 09:10:00 +05:30
|
|
|
/*-
|
2012-01-19 16:56:40 +05:30
|
|
|
* Copyright (c) 2009-2012 Juan Romero Pardines.
|
2009-10-27 09:10:00 +05:30
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-12-18 17:50:54 +05:30
|
|
|
#include <sys/stat.h>
|
2009-10-27 09:10:00 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-11-13 07:48:58 +05:30
|
|
|
#include "xbps_api_impl.h"
|
2009-10-27 09:10:00 +05:30
|
|
|
#include "fetch.h"
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
|
|
|
* @file lib/repository_sync_index.c
|
|
|
|
* @brief Repository package index synchronization routines
|
|
|
|
* @defgroup reposync Repository package index synchronization functions
|
2010-01-23 10:43:34 +05:30
|
|
|
*
|
|
|
|
* Functions to manipulate repository package index plist file
|
|
|
|
* synchronizations.
|
2010-01-21 07:40:19 +05:30
|
|
|
*/
|
|
|
|
|
2010-01-23 10:43:34 +05:30
|
|
|
char HIDDEN *
|
2009-10-27 09:10:00 +05:30
|
|
|
xbps_get_remote_repo_string(const char *uri)
|
|
|
|
{
|
|
|
|
struct url *url;
|
|
|
|
size_t i;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if ((url = fetchParseURL(uri)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
2009-11-23 09:53:16 +05:30
|
|
|
* Replace '.' ':' and '/' characters with underscores, so that
|
2009-10-27 09:10:00 +05:30
|
|
|
* provided URL:
|
|
|
|
*
|
2011-11-08 00:58:35 +05:30
|
|
|
* http://nocturno.local:8080/repo/x86_64
|
2009-10-27 09:10:00 +05:30
|
|
|
*
|
|
|
|
* becomes:
|
|
|
|
*
|
2011-11-08 00:58:35 +05:30
|
|
|
* http___nocturno_local_8080_repo_x86_64
|
2009-10-27 09:10:00 +05:30
|
|
|
*
|
|
|
|
*/
|
2011-10-06 22:35:16 +05:30
|
|
|
if (url->port != 0)
|
|
|
|
p = xbps_xasprintf("%s://%s:%u%s", url->scheme,
|
|
|
|
url->host, url->port, url->doc);
|
|
|
|
else
|
|
|
|
p = xbps_xasprintf("%s://%s%s", url->scheme,
|
|
|
|
url->host, url->doc);
|
|
|
|
|
2009-10-27 09:10:00 +05:30
|
|
|
fetchFreeURL(url);
|
|
|
|
for (i = 0; i < strlen(p); i++) {
|
2009-11-23 09:53:16 +05:30
|
|
|
if (p[i] == '.' || p[i] == '/' || p[i] == ':')
|
2009-10-27 09:10:00 +05:30
|
|
|
p[i] = '_';
|
|
|
|
}
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2009-11-24 10:33:26 +05:30
|
|
|
/*
|
|
|
|
* Returns -1 on error, 0 if transfer was not necessary (local/remote
|
|
|
|
* size and/or mtime match) and 1 if downloaded successfully.
|
|
|
|
*/
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_repository_sync_pkg_index(struct xbps_handle *xhp,
|
|
|
|
const char *uri,
|
|
|
|
const char *plistf)
|
2009-10-27 09:10:00 +05:30
|
|
|
{
|
2012-01-25 10:32:38 +05:30
|
|
|
prop_array_t array;
|
2009-11-23 09:53:16 +05:30
|
|
|
struct url *url = NULL;
|
|
|
|
struct stat st;
|
2011-11-24 15:53:08 +05:30
|
|
|
const char *fetch_outputdir, *fetchstr = NULL;
|
2009-11-28 07:08:41 +05:30
|
|
|
char *rpidx, *lrepodir, *uri_fixedp;
|
2012-03-13 14:52:35 +05:30
|
|
|
char *tmp_metafile, *lrepofile;
|
2011-11-08 00:58:35 +05:30
|
|
|
int rv = 0;
|
2009-11-23 09:53:16 +05:30
|
|
|
bool only_sync = false;
|
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(uri != NULL);
|
2010-04-29 03:00:56 +05:30
|
|
|
tmp_metafile = rpidx = lrepodir = lrepofile = NULL;
|
2009-10-27 09:10:00 +05:30
|
|
|
|
2011-07-28 12:55:30 +05:30
|
|
|
/* ignore non remote repositories */
|
|
|
|
if (!xbps_check_is_repository_uri_remote(uri))
|
|
|
|
return 0;
|
|
|
|
|
2009-10-27 09:10:00 +05:30
|
|
|
if ((url = fetchParseURL(uri)) == NULL)
|
2009-11-24 10:33:26 +05:30
|
|
|
return -1;
|
2009-10-27 09:10:00 +05:30
|
|
|
|
|
|
|
uri_fixedp = xbps_get_remote_repo_string(uri);
|
|
|
|
if (uri_fixedp == NULL) {
|
|
|
|
fetchFreeURL(url);
|
2009-11-24 10:33:26 +05:30
|
|
|
return -1;
|
2009-10-27 09:10:00 +05:30
|
|
|
}
|
|
|
|
/*
|
2009-11-28 07:08:41 +05:30
|
|
|
* Create metadir if necessary.
|
2009-11-23 09:53:16 +05:30
|
|
|
*/
|
2012-03-13 14:52:35 +05:30
|
|
|
if ((rv = xbps_mkpath(xhp->metadir, 0755)) == -1) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL,
|
2011-11-24 15:53:08 +05:30
|
|
|
errno, NULL, NULL,
|
|
|
|
"[reposync] failed to create metadir `%s': %s",
|
2012-03-13 14:52:35 +05:30
|
|
|
xhp->metadir, strerror(errno));
|
2009-11-23 09:53:16 +05:30
|
|
|
goto out;
|
2011-06-22 14:22:46 +05:30
|
|
|
}
|
2009-11-23 09:53:16 +05:30
|
|
|
/*
|
2012-01-19 16:56:40 +05:30
|
|
|
* Remote repository plist index full URL.
|
2009-11-23 09:53:16 +05:30
|
|
|
*/
|
2012-01-15 18:54:44 +05:30
|
|
|
rpidx = xbps_xasprintf("%s/%s", uri, plistf);
|
2009-11-23 09:53:16 +05:30
|
|
|
/*
|
2012-03-13 14:52:35 +05:30
|
|
|
* Save temporary file in metadir, and rename if it
|
2009-11-23 09:53:16 +05:30
|
|
|
* was downloaded successfully.
|
2009-10-27 09:10:00 +05:30
|
|
|
*/
|
2012-03-13 14:52:35 +05:30
|
|
|
tmp_metafile = xbps_xasprintf("%s/%s", xhp->metadir, plistf);
|
2009-11-23 09:53:16 +05:30
|
|
|
/*
|
2012-01-19 16:56:40 +05:30
|
|
|
* Full path to repository directory to store the plist
|
|
|
|
* index file.
|
2009-11-23 09:53:16 +05:30
|
|
|
*/
|
2012-03-13 14:52:35 +05:30
|
|
|
lrepodir = xbps_xasprintf("%s/%s", xhp->metadir, uri_fixedp);
|
2009-11-23 09:53:16 +05:30
|
|
|
/*
|
2012-01-19 16:56:40 +05:30
|
|
|
* If directory exists probably the plist index file
|
2009-11-23 09:53:16 +05:30
|
|
|
* was downloaded previously...
|
|
|
|
*/
|
|
|
|
rv = stat(lrepodir, &st);
|
|
|
|
if (rv == 0 && S_ISDIR(st.st_mode)) {
|
|
|
|
only_sync = true;
|
|
|
|
fetch_outputdir = lrepodir;
|
|
|
|
} else
|
2012-03-13 14:52:35 +05:30
|
|
|
fetch_outputdir = xhp->metadir;
|
2009-11-23 09:53:16 +05:30
|
|
|
|
2011-11-11 03:44:50 +05:30
|
|
|
/* reposync start cb */
|
2012-11-07 14:48:58 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC, 0, uri, plistf, NULL);
|
2009-11-23 09:53:16 +05:30
|
|
|
/*
|
2012-01-19 16:56:40 +05:30
|
|
|
* Download plist index file from repository.
|
2009-11-23 09:53:16 +05:30
|
|
|
*/
|
2012-06-14 11:52:11 +05:30
|
|
|
if (xbps_fetch_file(xhp, rpidx, fetch_outputdir, true, NULL) == -1) {
|
2011-11-11 03:44:50 +05:30
|
|
|
/* reposync error cb */
|
2011-11-24 15:53:08 +05:30
|
|
|
fetchstr = xbps_fetch_error_string();
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL,
|
2011-11-24 15:53:08 +05:30
|
|
|
fetchLastErrCode != 0 ? fetchLastErrCode : errno,
|
|
|
|
NULL, NULL,
|
|
|
|
"[reposync] failed to fetch file `%s': %s",
|
|
|
|
rpidx, fetchstr ? fetchstr : strerror(errno));
|
2011-07-28 12:55:30 +05:30
|
|
|
rv = -1;
|
2009-11-23 09:53:16 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (only_sync)
|
|
|
|
goto out;
|
2011-10-28 12:59:37 +05:30
|
|
|
/*
|
|
|
|
* Make sure that downloaded plist file can be internalized, i.e
|
|
|
|
* some HTTP servers don't return proper errors and sometimes
|
2012-06-14 11:52:11 +05:30
|
|
|
you get an HTML ASCII file :-)
|
2011-10-28 12:59:37 +05:30
|
|
|
*/
|
2012-01-25 10:32:38 +05:30
|
|
|
array = prop_array_internalize_from_zfile(tmp_metafile);
|
|
|
|
if (array == NULL) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL, 0, NULL, NULL,
|
2011-11-24 15:53:08 +05:30
|
|
|
"[reposync] downloaded file `%s' is not valid.", rpidx);
|
2011-10-28 12:59:37 +05:30
|
|
|
(void)unlink(tmp_metafile);
|
|
|
|
rv = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-01-25 10:32:38 +05:30
|
|
|
prop_object_release(array);
|
2009-11-23 09:53:16 +05:30
|
|
|
|
2012-01-15 18:54:44 +05:30
|
|
|
lrepofile = xbps_xasprintf("%s/%s", lrepodir, plistf);
|
2009-10-27 09:10:00 +05:30
|
|
|
/*
|
2012-01-19 16:56:40 +05:30
|
|
|
* Create local repodir to store plist index file.
|
2009-10-27 09:10:00 +05:30
|
|
|
*/
|
2011-07-29 14:47:34 +05:30
|
|
|
if ((rv = xbps_mkpath(lrepodir, 0755)) == -1) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL, errno, NULL, NULL,
|
2011-11-24 15:53:08 +05:30
|
|
|
"[reposync] failed to create repodir for `%s': %s",
|
|
|
|
lrepodir, strerror(rv));
|
2009-11-23 09:53:16 +05:30
|
|
|
goto out;
|
2011-07-29 14:47:34 +05:30
|
|
|
}
|
2009-11-28 07:08:41 +05:30
|
|
|
|
2009-10-27 09:10:00 +05:30
|
|
|
/*
|
2009-11-23 09:53:16 +05:30
|
|
|
* Rename to destination file now it has been fetched successfully.
|
2009-10-27 09:10:00 +05:30
|
|
|
*/
|
2011-11-24 15:53:08 +05:30
|
|
|
if ((rv = rename(tmp_metafile, lrepofile)) == -1) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL, errno, NULL, NULL,
|
2011-11-24 15:53:08 +05:30
|
|
|
"[reposync] failed to rename index file `%s' to `%s': %s",
|
|
|
|
tmp_metafile, lrepofile, strerror(errno));
|
|
|
|
} else {
|
2011-07-29 14:47:34 +05:30
|
|
|
rv = 1; /* success */
|
2011-11-24 15:53:08 +05:30
|
|
|
}
|
2009-11-24 10:33:26 +05:30
|
|
|
|
2009-11-23 09:53:16 +05:30
|
|
|
out:
|
|
|
|
if (rpidx)
|
|
|
|
free(rpidx);
|
|
|
|
if (lrepodir)
|
2009-10-27 09:10:00 +05:30
|
|
|
free(lrepodir);
|
2009-11-23 09:53:16 +05:30
|
|
|
if (tmp_metafile)
|
|
|
|
free(tmp_metafile);
|
|
|
|
if (lrepofile)
|
|
|
|
free(lrepofile);
|
|
|
|
if (url)
|
|
|
|
fetchFreeURL(url);
|
|
|
|
if (uri_fixedp)
|
|
|
|
free(uri_fixedp);
|
2009-10-27 09:10:00 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|