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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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-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.
|
|
|
|
*/
|
2012-11-30 11:41:51 +05:30
|
|
|
int HIDDEN
|
|
|
|
xbps_rindex_sync(struct xbps_handle *xhp, const char *uri, const char *plistf)
|
2009-10-27 09:10:00 +05:30
|
|
|
{
|
2012-12-07 13:04:45 +05:30
|
|
|
prop_dictionary_t repod;
|
2012-11-11 15:59:49 +05:30
|
|
|
const char *fetchstr = NULL;
|
|
|
|
char *rpidx, *lrepodir, *uri_fixedp, *lrepofile;
|
2011-11-08 00:58:35 +05:30
|
|
|
int rv = 0;
|
2009-11-23 09:53:16 +05:30
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(uri != NULL);
|
2012-11-11 15:59:49 +05:30
|
|
|
rpidx = uri_fixedp = lrepodir = lrepofile = NULL;
|
2009-10-27 09:10:00 +05:30
|
|
|
|
2011-07-28 12:55:30 +05:30
|
|
|
/* ignore non remote repositories */
|
2012-11-30 11:41:51 +05:30
|
|
|
if (!xbps_repository_is_remote(uri))
|
2011-07-28 12:55:30 +05:30
|
|
|
return 0;
|
|
|
|
|
2009-10-27 09:10:00 +05:30
|
|
|
uri_fixedp = xbps_get_remote_repo_string(uri);
|
2012-11-11 15:59:49 +05:30
|
|
|
if (uri_fixedp == NULL)
|
2009-11-24 10:33:26 +05:30
|
|
|
return -1;
|
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-12-07 21:41:52 +05:30
|
|
|
rpidx = xbps_xasprintf("%s/%s-%s", uri, xhp->un_machine, 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-11-11 15:59:49 +05:30
|
|
|
* Full path to the local repository index file.
|
2009-11-23 09:53:16 +05:30
|
|
|
*/
|
2012-12-07 21:41:52 +05:30
|
|
|
lrepofile = xbps_xasprintf("%s/%s-%s", lrepodir,
|
|
|
|
xhp->un_machine, plistf);
|
2012-11-11 15:59:49 +05:30
|
|
|
/*
|
|
|
|
* Create repodir in metadir.
|
|
|
|
*/
|
|
|
|
if (access(lrepodir, R_OK|X_OK|W_OK) == -1) {
|
|
|
|
if ((rv = xbps_mkpath(lrepodir, 0755)) == -1) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL,
|
|
|
|
errno, NULL, NULL,
|
|
|
|
"[reposync] failed to create repodir `%s': %s",
|
|
|
|
lrepodir, strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chdir(lrepodir) == -1) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC_FAIL,
|
|
|
|
errno, NULL, NULL,
|
|
|
|
"[reposync] failed to change dir to repodir `%s': %s",
|
|
|
|
lrepodir, strerror(errno));
|
|
|
|
rv = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-11-23 09:53:16 +05:30
|
|
|
|
2011-11-11 03:44:50 +05:30
|
|
|
/* reposync start cb */
|
2013-01-31 14:11:43 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REPOSYNC, 0, rpidx, NULL, 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-11-11 15:59:49 +05:30
|
|
|
if ((rv = xbps_fetch_file(xhp, rpidx, 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));
|
2009-11-23 09:53:16 +05:30
|
|
|
goto out;
|
2012-11-11 15:59:49 +05:30
|
|
|
} else if (rv == 0) {
|
|
|
|
goto out;
|
|
|
|
} else {
|
|
|
|
rv = 0;
|
2009-11-23 09:53:16 +05:30
|
|
|
}
|
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-11-11 15:59:49 +05:30
|
|
|
* you get an HTML ASCII file :-)
|
2011-10-28 12:59:37 +05:30
|
|
|
*/
|
2012-12-07 13:04:45 +05:30
|
|
|
repod = prop_dictionary_internalize_from_zfile(lrepofile);
|
|
|
|
if (repod == 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);
|
2012-11-11 15:59:49 +05:30
|
|
|
(void)unlink(lrepofile);
|
|
|
|
(void)remove(lrepodir);
|
2011-10-28 12:59:37 +05:30
|
|
|
rv = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-12-07 13:04:45 +05:30
|
|
|
prop_object_release(repod);
|
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 (lrepofile)
|
|
|
|
free(lrepofile);
|
|
|
|
if (uri_fixedp)
|
|
|
|
free(uri_fixedp);
|
2009-10-27 09:10:00 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|