2009-11-25 07:39:36 +05:30
|
|
|
/*-
|
2011-01-18 22:51:55 +05:30
|
|
|
* Copyright (c) 2009-2011 Juan Romero Pardines.
|
2009-11-25 07:39:36 +05:30
|
|
|
* Copyright (c) 2008, 2009 Joerg Sonnenberger <joerg (at) NetBSD.org>
|
|
|
|
* 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.
|
|
|
|
*-
|
|
|
|
* From: $NetBSD: pkg_io.c,v 1.9 2009/08/16 21:10:15 joerg Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <xbps_api.h>
|
2010-11-13 07:48:58 +05:30
|
|
|
#include "xbps_api_impl.h"
|
2009-11-25 07:39:36 +05:30
|
|
|
#include "fetch.h"
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
|
|
|
* @file lib/repository_plist.c
|
|
|
|
* @brief Repository plist file handling routines
|
|
|
|
* @defgroup repo_plist Repository plist file handling functions
|
|
|
|
*/
|
|
|
|
|
2009-11-25 07:39:36 +05:30
|
|
|
struct fetch_archive {
|
|
|
|
struct url *url;
|
|
|
|
struct fetchIO *fetch;
|
|
|
|
char buffer[32768];
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
fetch_archive_open(struct archive *a, void *client_data)
|
|
|
|
{
|
|
|
|
struct fetch_archive *f = client_data;
|
|
|
|
|
|
|
|
(void)a;
|
|
|
|
|
|
|
|
f->fetch = fetchGet(f->url, NULL);
|
|
|
|
if (f->fetch == NULL)
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-10 13:43:28 +05:30
|
|
|
static ssize_t
|
2009-11-25 07:39:36 +05:30
|
|
|
fetch_archive_read(struct archive *a, void *client_data, const void **buf)
|
|
|
|
{
|
|
|
|
struct fetch_archive *f = client_data;
|
|
|
|
|
|
|
|
(void)a;
|
|
|
|
*buf = f->buffer;
|
|
|
|
|
|
|
|
return fetchIO_read(f->fetch, f->buffer, sizeof(f->buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
fetch_archive_close(struct archive *a, void *client_data)
|
|
|
|
{
|
|
|
|
struct fetch_archive *f = client_data;
|
|
|
|
|
|
|
|
(void)a;
|
|
|
|
|
|
|
|
if (f->fetch != NULL)
|
|
|
|
fetchIO_close(f->fetch);
|
|
|
|
free(f);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct archive *
|
|
|
|
open_archive_by_url(struct url *url)
|
|
|
|
{
|
|
|
|
struct fetch_archive *f;
|
|
|
|
struct archive *a;
|
|
|
|
|
|
|
|
f = malloc(sizeof(struct fetch_archive));
|
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
f->url = url;
|
|
|
|
if ((a = archive_read_new()) == NULL) {
|
|
|
|
free(f);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
archive_read_support_compression_all(a);
|
|
|
|
archive_read_support_format_tar(a);
|
|
|
|
|
|
|
|
if (archive_read_open(a, f, fetch_archive_open, fetch_archive_read,
|
|
|
|
fetch_archive_close)) {
|
|
|
|
archive_read_finish(a);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct archive *
|
|
|
|
open_archive(const char *url)
|
|
|
|
{
|
|
|
|
struct url *u;
|
|
|
|
struct archive *a;
|
|
|
|
|
|
|
|
if (!xbps_check_is_repo_string_remote(url)) {
|
|
|
|
if ((a = archive_read_new()) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
archive_read_support_compression_all(a);
|
|
|
|
archive_read_support_format_tar(a);
|
|
|
|
|
|
|
|
if (archive_read_open_filename(a, url,
|
|
|
|
ARCHIVE_READ_BLOCKSIZE)) {
|
|
|
|
archive_read_close(a);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((u = fetchParseURL(url)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
a = open_archive_by_url(u);
|
|
|
|
fetchFreeURL(u);
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
prop_dictionary_t
|
2009-11-30 17:05:38 +05:30
|
|
|
xbps_repository_get_pkg_plist_dict_from_url(const char *url, const char *plistf)
|
2009-11-25 08:22:58 +05:30
|
|
|
{
|
|
|
|
prop_dictionary_t plistd = NULL;
|
|
|
|
struct archive *a;
|
|
|
|
struct archive_entry *entry;
|
2009-11-28 10:41:34 +05:30
|
|
|
const char *curpath, *comptype;
|
2009-11-25 08:22:58 +05:30
|
|
|
int i = 0;
|
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(url != NULL);
|
|
|
|
assert(plistf != NULL);
|
|
|
|
|
2009-11-25 08:22:58 +05:30
|
|
|
if ((a = open_archive(url)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-28 10:41:34 +05:30
|
|
|
/*
|
|
|
|
* Save compression type string for future use.
|
|
|
|
*/
|
|
|
|
comptype = archive_compression_name(a);
|
|
|
|
|
2009-11-25 08:22:58 +05:30
|
|
|
while ((archive_read_next_header(a, &entry)) == ARCHIVE_OK) {
|
|
|
|
curpath = archive_entry_pathname(entry);
|
|
|
|
if (strstr(curpath, plistf) == 0) {
|
|
|
|
archive_read_data_skip(a);
|
2010-01-23 04:24:33 +05:30
|
|
|
if (i >= 3) {
|
|
|
|
/*
|
|
|
|
* Archive does not contain required
|
|
|
|
* plist file, discard it completely.
|
|
|
|
*/
|
|
|
|
errno = ENOENT;
|
|
|
|
break;
|
|
|
|
}
|
2009-11-25 08:22:58 +05:30
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
plistd = xbps_read_dict_from_archive_entry(a, entry);
|
|
|
|
if (plistd == NULL) {
|
|
|
|
errno = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
2009-11-28 10:41:34 +05:30
|
|
|
prop_dictionary_set_cstring_nocopy(plistd,
|
|
|
|
"archive-compression-type", comptype);
|
|
|
|
|
2009-11-25 08:22:58 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
archive_read_finish(a);
|
|
|
|
|
|
|
|
return plistd;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
prop_dictionary_t
|
2009-11-30 17:05:38 +05:30
|
|
|
xbps_repository_get_pkg_plist_dict(const char *pkgname, const char *plistf)
|
2009-11-25 07:39:36 +05:30
|
|
|
{
|
2011-01-18 19:49:27 +05:30
|
|
|
prop_dictionary_t pkgd = NULL, plistd = NULL;
|
2011-01-20 21:11:49 +05:30
|
|
|
const char *repoloc;
|
2011-01-18 19:49:27 +05:30
|
|
|
char *url;
|
2009-11-25 08:22:58 +05:30
|
|
|
int rv = 0;
|
2009-11-25 07:39:36 +05:30
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(pkgname != NULL);
|
|
|
|
assert(plistf != NULL);
|
|
|
|
|
2009-11-26 07:52:50 +05:30
|
|
|
if ((rv = xbps_repository_pool_init()) != 0) {
|
2009-11-25 07:39:36 +05:30
|
|
|
errno = rv;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Iterate over the the repository pool and search for a plist file
|
|
|
|
* in the binary package named 'pkgname'. The plist file will be
|
|
|
|
* internalized to a proplib dictionary.
|
|
|
|
*
|
|
|
|
* The first repository that has it wins and the loop is stopped.
|
|
|
|
* This will work locally and remotely, thanks to libarchive and
|
|
|
|
* libfetch!
|
|
|
|
*/
|
2011-01-18 19:49:27 +05:30
|
|
|
pkgd = xbps_repository_pool_find_pkg(pkgname, false, false);
|
|
|
|
if (pkgd == NULL)
|
|
|
|
goto out;
|
|
|
|
|
2011-01-20 21:11:49 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(pkgd, "repository", &repoloc);
|
|
|
|
url = xbps_get_binpkg_repo_uri(pkgd, repoloc);
|
2011-01-18 19:49:27 +05:30
|
|
|
if (url == NULL) {
|
|
|
|
errno = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
plistd = xbps_repository_get_pkg_plist_dict_from_url(url, plistf);
|
|
|
|
free(url);
|
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
out:
|
2009-11-26 07:52:50 +05:30
|
|
|
xbps_repository_pool_release();
|
2009-11-25 08:22:58 +05:30
|
|
|
if (plistd == NULL)
|
2009-11-25 07:39:36 +05:30
|
|
|
errno = ENOENT;
|
2011-01-18 19:49:27 +05:30
|
|
|
if (pkgd)
|
|
|
|
prop_object_release(pkgd);
|
2009-11-25 07:39:36 +05:30
|
|
|
|
|
|
|
return plistd;
|
|
|
|
}
|