2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2011-01-25 17:09:05 +05:30
|
|
|
* Copyright (c) 2008-2011 Juan Romero Pardines.
|
2009-08-17 22:37:20 +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.
|
|
|
|
*/
|
|
|
|
|
2011-01-25 17:30:23 +05:30
|
|
|
#ifdef HAVE_VASPRINTF
|
|
|
|
# define _GNU_SOURCE /* for vasprintf(3) */
|
|
|
|
# include <stdio.h>
|
|
|
|
# undef _GNU_SOURCE
|
|
|
|
#else
|
|
|
|
# include <stdio.h>
|
|
|
|
#endif
|
2009-08-17 22:37:20 +05:30
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/utsname.h>
|
2010-05-20 06:13:56 +05:30
|
|
|
#include <sys/mman.h>
|
2009-11-07 09:26:20 +05:30
|
|
|
#include <limits.h>
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-05-20 02:08:27 +05:30
|
|
|
#include "config.h"
|
2010-11-13 07:48:58 +05:30
|
|
|
#include <openssl/sha.h>
|
|
|
|
#include <xbps_api.h>
|
|
|
|
#include "xbps_api_impl.h"
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
|
|
|
* @file lib/util.c
|
|
|
|
* @brief Utility routines
|
|
|
|
* @defgroup util Utility functions
|
|
|
|
*/
|
2009-08-17 22:37:20 +05:30
|
|
|
static const char *rootdir;
|
2009-11-28 07:08:41 +05:30
|
|
|
static const char *cachedir;
|
2009-08-17 22:37:20 +05:30
|
|
|
static int flags;
|
|
|
|
|
2010-05-20 06:13:56 +05:30
|
|
|
static void
|
|
|
|
digest2string(const uint8_t *digest, char *string, size_t len)
|
|
|
|
{
|
|
|
|
while (len--) {
|
|
|
|
if (*digest / 16 < 10)
|
|
|
|
*string++ = '0' + *digest / 16;
|
|
|
|
else
|
|
|
|
*string++ = 'a' + *digest / 16 - 10;
|
|
|
|
if (*digest % 16 < 10)
|
|
|
|
*string++ = '0' + *digest % 16;
|
|
|
|
else
|
|
|
|
*string++ = 'a' + *digest % 16 - 10;
|
|
|
|
++digest;
|
|
|
|
}
|
|
|
|
*string = '\0';
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
char *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_file_hash(const char *file)
|
|
|
|
{
|
2010-05-20 06:13:56 +05:30
|
|
|
struct stat st;
|
|
|
|
size_t pgsize = (size_t)sysconf(_SC_PAGESIZE);
|
|
|
|
size_t pgmask = pgsize - 1, mapsize;
|
|
|
|
char hash[SHA256_DIGEST_LENGTH * 2 + 1];
|
|
|
|
unsigned char *buf = NULL, digest[SHA256_DIGEST_LENGTH];
|
2009-08-17 22:37:20 +05:30
|
|
|
int fd;
|
2010-05-20 06:13:56 +05:30
|
|
|
bool need_guard = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(file != NULL);
|
|
|
|
|
2010-05-20 06:13:56 +05:30
|
|
|
if ((fd = open(file, O_RDONLY)) == -1) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
memset(&st, 0, sizeof(st));
|
|
|
|
if (fstat(fd, &st) == -1) {
|
|
|
|
(void)close(fd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (st.st_size > SSIZE_MAX - 1) {
|
|
|
|
(void)close(fd);
|
2009-08-17 22:37:20 +05:30
|
|
|
return NULL;
|
2010-05-20 06:13:56 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-05-20 06:13:56 +05:30
|
|
|
mapsize = ((size_t)st.st_size + pgmask) & ~pgmask;
|
|
|
|
if (mapsize < (size_t)st.st_size) {
|
|
|
|
(void)close(fd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If the file length is an integral number of pages, then we
|
|
|
|
* need to map a guard page at the end in order to provide the
|
|
|
|
* necessary NUL-termination of the buffer.
|
|
|
|
*/
|
|
|
|
if ((st.st_size & pgmask) == 0)
|
|
|
|
need_guard = true;
|
|
|
|
|
|
|
|
buf = mmap(NULL, need_guard ? mapsize + pgsize : mapsize,
|
|
|
|
PROT_READ, MAP_FILE|MAP_PRIVATE, fd, 0);
|
2009-08-17 22:37:20 +05:30
|
|
|
(void)close(fd);
|
2010-05-20 06:13:56 +05:30
|
|
|
if (buf == MAP_FAILED)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (SHA256(buf, st.st_size, digest) == NULL) {
|
|
|
|
munmap(buf, mapsize);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
munmap(buf, mapsize);
|
|
|
|
digest2string(digest, hash, SHA256_DIGEST_LENGTH);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-05-20 06:13:56 +05:30
|
|
|
return strdup(hash);
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
|
|
|
xbps_check_file_hash(const char *file, const char *sha256)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
char *res;
|
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(file != NULL);
|
|
|
|
assert(sha256 != NULL);
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
res = xbps_get_file_hash(file);
|
2009-08-17 22:37:20 +05:30
|
|
|
if (res == NULL)
|
|
|
|
return errno;
|
|
|
|
|
|
|
|
if (strcmp(sha256, res)) {
|
|
|
|
free(res);
|
|
|
|
return ERANGE;
|
|
|
|
}
|
|
|
|
free(res);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
bool
|
2009-11-23 09:53:16 +05:30
|
|
|
xbps_check_is_repo_string_remote(const char *uri)
|
|
|
|
{
|
|
|
|
assert(uri != NULL);
|
|
|
|
|
|
|
|
if ((strncmp(uri, "https://", 8) == 0) ||
|
|
|
|
(strncmp(uri, "http://", 7) == 0) ||
|
|
|
|
(strncmp(uri, "ftp://", 6) == 0))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
static const char *
|
|
|
|
xbps_get_pkgver_from_dict(prop_dictionary_t d)
|
|
|
|
{
|
2010-11-06 11:14:00 +05:30
|
|
|
const char *pkgver = NULL;
|
2010-01-21 07:40:19 +05:30
|
|
|
|
|
|
|
assert(d != NULL);
|
|
|
|
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(d, "pkgver", &pkgver);
|
2010-01-21 07:40:19 +05:30
|
|
|
return pkgver;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_check_is_installed_pkg(const char *pkg)
|
|
|
|
{
|
|
|
|
prop_dictionary_t dict;
|
2009-11-26 07:52:50 +05:30
|
|
|
const char *instpkgver = NULL;
|
2009-11-22 09:45:47 +05:30
|
|
|
char *pkgname;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
|
|
|
pkg_state_t state = 0;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
pkgname = xbps_get_pkgpattern_name(pkg);
|
2009-11-07 09:26:20 +05:30
|
|
|
if (pkgname == NULL)
|
|
|
|
return -1;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
dict = xbps_find_pkg_dict_installed(pkgname, false);
|
2009-08-17 22:37:20 +05:30
|
|
|
if (dict == NULL) {
|
|
|
|
free(pkgname);
|
2009-11-26 07:52:50 +05:30
|
|
|
if (errno == ENOENT) {
|
|
|
|
errno = 0;
|
|
|
|
return 0; /* not installed */
|
|
|
|
}
|
|
|
|
return -1;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check that package state is fully installed, not
|
|
|
|
* unpacked or something else.
|
|
|
|
*/
|
2009-11-26 07:52:50 +05:30
|
|
|
if (xbps_get_pkg_state_dictionary(dict, &state) != 0) {
|
2009-10-23 14:41:57 +05:30
|
|
|
prop_object_release(dict);
|
2009-08-17 22:37:20 +05:30
|
|
|
free(pkgname);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-10-23 14:41:57 +05:30
|
|
|
if (state != XBPS_PKG_STATE_INSTALLED) {
|
|
|
|
prop_object_release(dict);
|
2009-11-07 21:11:59 +05:30
|
|
|
free(pkgname);
|
|
|
|
return 0; /* not fully installed */
|
2009-10-23 14:41:57 +05:30
|
|
|
}
|
2009-11-07 21:11:59 +05:30
|
|
|
free(pkgname);
|
2009-11-22 09:45:47 +05:30
|
|
|
|
2009-11-23 02:21:19 +05:30
|
|
|
/* Check if installed pkg is matched against pkgdep pattern */
|
2009-11-22 09:45:47 +05:30
|
|
|
instpkgver = xbps_get_pkgver_from_dict(dict);
|
|
|
|
if (instpkgver == NULL) {
|
2009-11-07 09:26:20 +05:30
|
|
|
prop_object_release(dict);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-11-23 02:21:19 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
rv = xbps_pkgpattern_match(instpkgver, __UNCONST(pkg));
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_object_release(dict);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
bool
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_check_is_installed_pkgname(const char *pkgname)
|
|
|
|
{
|
|
|
|
prop_dictionary_t pkgd;
|
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
pkgd = xbps_find_pkg_dict_installed(pkgname, false);
|
2009-08-17 22:37:20 +05:30
|
|
|
if (pkgd) {
|
|
|
|
prop_object_release(pkgd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-11 17:08:35 +05:30
|
|
|
const char *
|
|
|
|
xbps_get_pkg_epoch(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
tmp = strrchr(pkg, ':');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return tmp + 1; /* skip first ':' */
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
const char *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_version(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Get the required version */
|
|
|
|
tmp = strrchr(pkg, '-');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return tmp + 1; /* skip first '-' */
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
const char *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_revision(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Get the required revision */
|
|
|
|
tmp = strrchr(pkg, '_');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return tmp + 1; /* skip first '_' */
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
char *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_name(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
char *pkgname;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Get package name */
|
|
|
|
tmp = strrchr(pkg, '-');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len = strlen(pkg) - strlen(tmp) + 1;
|
|
|
|
pkgname = malloc(len);
|
2010-05-20 02:08:27 +05:30
|
|
|
if (pkgname == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
strlcpy(pkgname, pkg, len);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return pkgname;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
char *
|
|
|
|
xbps_get_pkgpattern_name(const char *pkg)
|
2009-11-07 09:26:20 +05:30
|
|
|
{
|
|
|
|
char *res, *pkgname;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
res = strpbrk(pkg, "><=");
|
|
|
|
if (res == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len = strlen(pkg) - strlen(res) + 1;
|
|
|
|
pkgname = malloc(len);
|
|
|
|
if (pkgname == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-05-20 02:08:27 +05:30
|
|
|
strlcpy(pkgname, pkg, len);
|
2009-11-07 09:26:20 +05:30
|
|
|
|
|
|
|
return pkgname;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
const char *
|
|
|
|
xbps_get_pkgpattern_version(const char *pkg)
|
2009-11-07 09:26:20 +05:30
|
|
|
{
|
|
|
|
char *res;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
res = strpbrk(pkg, "><=");
|
|
|
|
if (res == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
static char *
|
2009-11-28 07:08:41 +05:30
|
|
|
get_pkg_index_remote_plist(const char *uri)
|
2009-10-27 06:16:00 +05:30
|
|
|
{
|
|
|
|
char *uri_fixed, *repodir;
|
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(uri != NULL);
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
uri_fixed = xbps_get_remote_repo_string(uri);
|
|
|
|
if (uri_fixed == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
repodir = xbps_xasprintf("%s/%s/%s/%s",
|
|
|
|
xbps_get_rootdir(), XBPS_META_PATH, uri_fixed, XBPS_PKGINDEX);
|
2009-10-27 06:16:00 +05:30
|
|
|
if (repodir == NULL) {
|
|
|
|
free(uri_fixed);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-10-29 11:51:56 +05:30
|
|
|
free(uri_fixed);
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
return repodir;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
char *
|
2009-10-27 06:16:00 +05:30
|
|
|
xbps_get_pkg_index_plist(const char *uri)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
struct utsname un;
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
assert(uri != NULL);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
if (uname(&un) == -1)
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-23 12:32:14 +05:30
|
|
|
if (xbps_check_is_repo_string_remote(uri))
|
2009-11-28 07:08:41 +05:30
|
|
|
return get_pkg_index_remote_plist(uri);
|
2009-10-27 06:16:00 +05:30
|
|
|
|
|
|
|
return xbps_xasprintf("%s/%s/%s", uri, un.machine, XBPS_PKGINDEX);
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
char *
|
2011-01-20 21:11:49 +05:30
|
|
|
xbps_get_binpkg_repo_uri(prop_dictionary_t pkg_repod, const char *repoloc)
|
2009-11-28 07:08:41 +05:30
|
|
|
{
|
2011-01-20 21:11:49 +05:30
|
|
|
const char *filen, *arch, *cdir;
|
2011-01-18 22:51:55 +05:30
|
|
|
char *lbinpkg = NULL;
|
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(pkg_repod != NULL);
|
|
|
|
assert(repoloc != NULL);
|
|
|
|
|
2011-01-20 21:11:49 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(pkg_repod,
|
|
|
|
"filename", &filen))
|
|
|
|
return NULL;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(pkg_repod,
|
|
|
|
"architecture", &arch))
|
|
|
|
return NULL;
|
2009-11-28 07:08:41 +05:30
|
|
|
|
|
|
|
cdir = xbps_get_cachedir();
|
|
|
|
if (cdir == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2011-01-18 22:51:55 +05:30
|
|
|
/*
|
|
|
|
* First check if binpkg is available in cachedir.
|
|
|
|
*/
|
|
|
|
lbinpkg = xbps_xasprintf("%s/%s", cdir, filen);
|
|
|
|
if (lbinpkg == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (access(lbinpkg, R_OK) == 0)
|
|
|
|
return lbinpkg;
|
|
|
|
|
|
|
|
free(lbinpkg);
|
|
|
|
/*
|
|
|
|
* Local and remote repositories use the same path.
|
|
|
|
*/
|
|
|
|
return xbps_xasprintf("%s/%s/%s", repoloc, arch, filen);
|
2009-11-28 07:08:41 +05:30
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
bool
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_pkg_has_rundeps(prop_dictionary_t pkg)
|
|
|
|
{
|
|
|
|
prop_array_t array;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
2011-01-25 08:44:33 +05:30
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
array = prop_dictionary_get(pkg, "run_depends");
|
|
|
|
if (array && prop_array_count(array) > 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
void
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_set_rootdir(const char *dir)
|
|
|
|
{
|
|
|
|
assert(dir != NULL);
|
|
|
|
rootdir = dir;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
const char *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_rootdir(void)
|
|
|
|
{
|
|
|
|
if (rootdir == NULL)
|
2010-11-06 11:14:00 +05:30
|
|
|
rootdir = "/";
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return rootdir;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
void
|
2009-11-28 07:08:41 +05:30
|
|
|
xbps_set_cachedir(const char *dir)
|
|
|
|
{
|
|
|
|
static char res[PATH_MAX];
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
assert(dir != NULL);
|
|
|
|
|
2010-05-20 18:40:36 +05:30
|
|
|
r = snprintf(res, sizeof(res) - 1, "%s/%s", xbps_get_rootdir(), dir);
|
2011-01-21 05:02:46 +05:30
|
|
|
if (r < 0 || r >= (int)sizeof(res) - 1) {
|
2009-11-28 07:08:41 +05:30
|
|
|
/* If error or truncated set to default */
|
|
|
|
cachedir = XBPS_CACHE_PATH;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cachedir = res;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
const char *
|
2009-11-28 07:08:41 +05:30
|
|
|
xbps_get_cachedir(void)
|
|
|
|
{
|
|
|
|
static char res[PATH_MAX];
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
if (cachedir == NULL) {
|
2010-05-20 18:40:36 +05:30
|
|
|
r = snprintf(res, sizeof(res) - 1, "%s/%s",
|
2009-11-28 07:08:41 +05:30
|
|
|
xbps_get_rootdir(), XBPS_CACHE_PATH);
|
2011-01-21 05:02:46 +05:30
|
|
|
if (r < 0 || r >= (int)sizeof(res) - 1)
|
2009-11-28 07:08:41 +05:30
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cachedir = res;
|
|
|
|
}
|
|
|
|
return cachedir;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
void
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_set_flags(int lflags)
|
|
|
|
{
|
|
|
|
flags = lflags;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_flags(void)
|
|
|
|
{
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2011-01-25 17:09:05 +05:30
|
|
|
#ifdef HAVE_VASPRINTF
|
2010-01-21 07:40:19 +05:30
|
|
|
char *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_xasprintf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2011-01-25 17:09:05 +05:30
|
|
|
if (vasprintf(&buf, fmt, ap) == -1) {
|
|
|
|
va_end(ap);
|
2009-08-17 22:37:20 +05:30
|
|
|
return NULL;
|
2011-01-25 17:09:05 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
2011-01-25 17:09:05 +05:30
|
|
|
#else
|
|
|
|
char *
|
|
|
|
xbps_xasprintf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap, aq;
|
|
|
|
size_t len;
|
|
|
|
int res;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
va_start(aq, fmt);
|
|
|
|
va_copy(ap, aq);
|
|
|
|
len = vsnprintf(NULL, 0, fmt, aq) + 1;
|
|
|
|
if ((buf = malloc(len)) == NULL) {
|
|
|
|
va_end(ap);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
res = vsnprintf(buf, len, fmt, ap);
|
|
|
|
if (res < 0 || res >= (int)len) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
#endif /* !HAVE_VASPRINTF */
|