2008-12-19 10:31:53 +01:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2008 Juan Romero Pardines.
|
|
|
|
* 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 <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
2008-12-20 23:55:15 +01:00
|
|
|
#include <libgen.h>
|
2008-12-19 10:31:53 +01:00
|
|
|
|
2008-12-21 23:57:02 +01:00
|
|
|
#include <xbps_api.h>
|
2008-12-19 10:31:53 +01:00
|
|
|
|
|
|
|
typedef struct repository_info {
|
|
|
|
const char *index_version;
|
|
|
|
const char *location_local;
|
|
|
|
const char *location_remote;
|
2008-12-22 15:21:29 +01:00
|
|
|
uint64_t total_pkgs;
|
2008-12-19 10:31:53 +01:00
|
|
|
} repo_info_t;
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
static bool sanitize_localpath(char *, const char *);
|
2008-12-20 05:49:41 +01:00
|
|
|
static prop_dictionary_t getrepolist_dict(void);
|
2008-12-19 10:31:53 +01:00
|
|
|
static bool pkgindex_getinfo(prop_dictionary_t, repo_info_t *);
|
|
|
|
static void usage(void);
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2008-12-19 23:10:24 +01:00
|
|
|
printf("Usage: xbps-bin [action] [arguments]\n\n"
|
|
|
|
" Available actions:\n"
|
2008-12-26 04:36:51 +01:00
|
|
|
" install, repo-add, repo-list, repo-rm, search, show\n"
|
2008-12-19 23:10:24 +01:00
|
|
|
" Action arguments:\n"
|
2008-12-26 04:36:51 +01:00
|
|
|
" install\t[<pkgname>] [<rootdir>]\n"
|
2008-12-19 23:10:24 +01:00
|
|
|
" repo-add\t[<URI>]\n"
|
|
|
|
" repo-list\t[none]\n"
|
2008-12-20 23:55:15 +01:00
|
|
|
" repo-rm\t[<URI>]\n"
|
2008-12-21 05:32:13 +01:00
|
|
|
" search\t[<string>]\n"
|
2008-12-19 23:10:24 +01:00
|
|
|
" show\t[<pkgname>]\n"
|
|
|
|
"\n"
|
2008-12-19 10:31:53 +01:00
|
|
|
" Examples:\n"
|
2008-12-26 04:36:51 +01:00
|
|
|
" $ xbps-bin install klibc\n"
|
2008-12-26 10:13:03 +01:00
|
|
|
" $ xbps-bin install klibc /path/to/directory\n"
|
2008-12-19 23:10:24 +01:00
|
|
|
" $ xbps-bin repo-add /path/to/directory\n"
|
|
|
|
" $ xbps-bin repo-add http://www.location.org/xbps-repo\n"
|
2008-12-20 23:55:15 +01:00
|
|
|
" $ xbps-bin repo-list\n"
|
|
|
|
" $ xbps-bin repo-rm /path/to/directory\n"
|
2008-12-21 05:32:13 +01:00
|
|
|
" $ xbps-bin search klibc\n"
|
2008-12-19 23:10:24 +01:00
|
|
|
" $ xbps-bin show klibc\n");
|
2008-12-19 10:31:53 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
pkgindex_getinfo(prop_dictionary_t dict, repo_info_t *ri)
|
|
|
|
{
|
2008-12-21 01:50:19 +01:00
|
|
|
assert(dict != NULL || ri != NULL);
|
2008-12-19 10:31:53 +01:00
|
|
|
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(dict,
|
|
|
|
"pkgindex-version", &ri->index_version))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(dict,
|
|
|
|
"location-local", &ri->location_local))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* This one is optional, thus don't panic */
|
|
|
|
prop_dictionary_get_cstring_nocopy(dict, "location-remote",
|
|
|
|
&ri->location_remote);
|
|
|
|
|
|
|
|
if (!prop_dictionary_get_uint64(dict, "total-pkgs",
|
|
|
|
&ri->total_pkgs))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Reject empty repositories, how could this happen? :-) */
|
|
|
|
if (ri->total_pkgs <= 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-20 05:49:41 +01:00
|
|
|
static prop_dictionary_t
|
|
|
|
getrepolist_dict(void)
|
|
|
|
{
|
|
|
|
prop_dictionary_t dict;
|
2008-12-23 12:28:21 +01:00
|
|
|
char plist[PATH_MAX];
|
2008-12-20 05:49:41 +01:00
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
if (!xbps_append_full_path(plist, NULL, XBPS_REPOLIST))
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
dict = prop_dictionary_internalize_from_file(plist);
|
2008-12-20 05:49:41 +01:00
|
|
|
if (dict == NULL) {
|
2008-12-21 02:20:21 +01:00
|
|
|
printf("ERROR: cannot find repository plist file (%s).\n",
|
2008-12-20 05:49:41 +01:00
|
|
|
strerror(errno));
|
|
|
|
exit(EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
static bool
|
|
|
|
sanitize_localpath(char *buf, const char *path)
|
2008-12-20 23:55:15 +01:00
|
|
|
{
|
2008-12-23 12:28:21 +01:00
|
|
|
char *dirnp, *basenp, *dir, *base, *tmp;
|
2008-12-20 23:55:15 +01:00
|
|
|
|
|
|
|
dir = strdup(path);
|
|
|
|
if (dir == NULL)
|
2008-12-23 12:28:21 +01:00
|
|
|
return false;
|
2008-12-20 23:55:15 +01:00
|
|
|
|
|
|
|
base = strdup(path);
|
2008-12-23 12:28:21 +01:00
|
|
|
if (base == NULL) {
|
|
|
|
free(dir);
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-20 23:55:15 +01:00
|
|
|
|
|
|
|
dirnp = dirname(dir);
|
|
|
|
if (strcmp(dirnp, ".") == 0)
|
2008-12-23 12:28:21 +01:00
|
|
|
goto error;
|
2008-12-20 23:55:15 +01:00
|
|
|
|
|
|
|
basenp = basename(base);
|
|
|
|
if (strcmp(basenp, base) == 0)
|
2008-12-23 12:28:21 +01:00
|
|
|
goto error;
|
2008-12-20 23:55:15 +01:00
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
tmp = strncpy(buf, dirnp, PATH_MAX - 1);
|
|
|
|
if (sizeof(*tmp) >= PATH_MAX)
|
|
|
|
goto error;
|
2008-12-20 23:55:15 +01:00
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
buf[strlen(buf) + 1] = '\0';
|
|
|
|
if (strcmp(dirnp, "/"))
|
|
|
|
strncat(buf, "/", 1);
|
|
|
|
strncat(buf, basenp, PATH_MAX - strlen(buf) - 1);
|
2008-12-20 23:55:15 +01:00
|
|
|
free(dir);
|
|
|
|
free(base);
|
2008-12-22 05:00:15 +01:00
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
2008-12-20 23:55:15 +01:00
|
|
|
free(base);
|
2008-12-22 05:00:15 +01:00
|
|
|
free(dir);
|
2008-12-23 12:28:21 +01:00
|
|
|
return false;
|
2008-12-20 23:55:15 +01:00
|
|
|
}
|
|
|
|
|
2008-12-19 10:31:53 +01:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
prop_dictionary_t dict;
|
|
|
|
repo_info_t *rinfo = NULL;
|
2008-12-23 12:28:21 +01:00
|
|
|
char dpkgidx[PATH_MAX], repolist[PATH_MAX];
|
2008-12-26 04:36:51 +01:00
|
|
|
int rv = 0;
|
2008-12-19 10:31:53 +01:00
|
|
|
|
2008-12-19 23:10:24 +01:00
|
|
|
if (argc < 2)
|
2008-12-19 10:31:53 +01:00
|
|
|
usage();
|
|
|
|
|
2008-12-21 03:45:39 +01:00
|
|
|
if (strcasecmp(argv[1], "repo-add") == 0) {
|
2008-12-19 23:10:24 +01:00
|
|
|
/* Adds a new repository to the pool. */
|
|
|
|
if (argc != 3)
|
|
|
|
usage();
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
if (!sanitize_localpath(dpkgidx, argv[2]))
|
2008-12-20 23:55:15 +01:00
|
|
|
exit(EINVAL);
|
2008-12-19 10:31:53 +01:00
|
|
|
|
2008-12-20 23:55:15 +01:00
|
|
|
/* Temp buffer to verify pkgindex file. */
|
2008-12-23 12:28:21 +01:00
|
|
|
if (!xbps_append_full_path(repolist, dpkgidx, XBPS_PKGINDEX))
|
2008-12-21 05:32:13 +01:00
|
|
|
exit(EINVAL);
|
2008-12-19 10:31:53 +01:00
|
|
|
|
2008-12-21 05:32:13 +01:00
|
|
|
dict = prop_dictionary_internalize_from_file(repolist);
|
2008-12-19 10:31:53 +01:00
|
|
|
if (dict == NULL) {
|
|
|
|
printf("Directory %s does not contain any "
|
2008-12-20 23:55:15 +01:00
|
|
|
"xbps pkgindex file.\n", dpkgidx);
|
2008-12-19 10:31:53 +01:00
|
|
|
exit(EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
rinfo = malloc(sizeof(*rinfo));
|
2008-12-22 05:00:15 +01:00
|
|
|
if (rinfo == NULL) {
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-19 10:31:53 +01:00
|
|
|
exit(ENOMEM);
|
2008-12-22 05:00:15 +01:00
|
|
|
}
|
2008-12-19 10:31:53 +01:00
|
|
|
|
|
|
|
if (!pkgindex_getinfo(dict, rinfo)) {
|
2008-12-21 05:32:13 +01:00
|
|
|
printf("'%s' is incomplete.\n", repolist);
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-20 23:55:15 +01:00
|
|
|
free(rinfo);
|
2008-12-19 10:31:53 +01:00
|
|
|
exit(EINVAL);
|
|
|
|
}
|
|
|
|
|
2008-12-20 23:55:15 +01:00
|
|
|
if (!xbps_register_repository(dpkgidx)) {
|
2008-12-19 10:31:53 +01:00
|
|
|
printf("ERROR: couldn't register repository (%s)\n",
|
|
|
|
strerror(errno));
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-20 23:55:15 +01:00
|
|
|
free(rinfo);
|
2008-12-19 10:31:53 +01:00
|
|
|
exit(EINVAL);
|
|
|
|
}
|
|
|
|
|
2008-12-22 15:21:29 +01:00
|
|
|
printf("Added repository at %s (%s) with %ju packages.\n",
|
2008-12-19 10:31:53 +01:00
|
|
|
rinfo->location_local, rinfo->index_version,
|
|
|
|
rinfo->total_pkgs);
|
2008-12-23 13:05:01 +01:00
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-19 10:31:53 +01:00
|
|
|
free(rinfo);
|
2008-12-19 23:10:24 +01:00
|
|
|
|
2008-12-21 03:45:39 +01:00
|
|
|
} else if (strcasecmp(argv[1], "repo-list") == 0) {
|
2008-12-19 23:10:24 +01:00
|
|
|
/* Lists all repositories registered in pool. */
|
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
dict = getrepolist_dict();
|
2008-12-26 10:13:03 +01:00
|
|
|
(void)xbps_callback_array_iter_in_dict(dict,
|
2008-12-20 05:49:41 +01:00
|
|
|
"repository-list", xbps_list_strings_in_array, NULL);
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-19 23:10:24 +01:00
|
|
|
|
2008-12-21 03:45:39 +01:00
|
|
|
} else if (strcasecmp(argv[1], "repo-rm") == 0) {
|
2008-12-20 23:55:15 +01:00
|
|
|
/* Remove a repository from the pool. */
|
|
|
|
if (argc != 3)
|
|
|
|
usage();
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
if (!sanitize_localpath(dpkgidx, argv[2]))
|
2008-12-20 23:55:15 +01:00
|
|
|
exit(EINVAL);
|
|
|
|
|
|
|
|
if (!xbps_unregister_repository(dpkgidx)) {
|
|
|
|
if (errno == ENODEV)
|
|
|
|
printf("Repository '%s' not actually "
|
|
|
|
"registered.\n", dpkgidx);
|
|
|
|
else
|
|
|
|
printf("ERROR: couldn't unregister "
|
|
|
|
"repository (%s)\n", strerror(errno));
|
|
|
|
exit(EINVAL);
|
|
|
|
}
|
|
|
|
|
2008-12-21 05:32:13 +01:00
|
|
|
} else if (strcasecmp(argv[1], "search") == 0) {
|
|
|
|
/* Search for a package by looking at short_desc. */
|
|
|
|
if (argc != 3)
|
|
|
|
usage();
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
dict = getrepolist_dict();
|
2008-12-26 10:13:03 +01:00
|
|
|
(void)xbps_callback_array_iter_in_dict(dict,
|
2008-12-21 05:32:13 +01:00
|
|
|
"repository-list", xbps_search_string_in_pkgs, argv[2]);
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-21 05:32:13 +01:00
|
|
|
|
2008-12-21 03:45:39 +01:00
|
|
|
} else if (strcasecmp(argv[1], "show") == 0) {
|
2008-12-19 23:10:24 +01:00
|
|
|
/* Shows info about a binary package. */
|
|
|
|
if (argc != 3)
|
|
|
|
usage();
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
dict = getrepolist_dict();
|
2008-12-26 10:13:03 +01:00
|
|
|
if (xbps_callback_array_iter_in_dict(dict, "repository-list",
|
|
|
|
xbps_show_pkg_info_from_repolist, argv[2]) != 0) {
|
2008-12-23 13:05:01 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-20 23:55:15 +01:00
|
|
|
printf("ERROR: unable to locate package '%s'.\n",
|
2008-12-20 05:49:41 +01:00
|
|
|
argv[2]);
|
2008-12-20 23:55:15 +01:00
|
|
|
exit(EINVAL);
|
2008-12-20 05:49:41 +01:00
|
|
|
}
|
2008-12-23 12:28:21 +01:00
|
|
|
prop_object_release(dict);
|
2008-12-20 23:55:15 +01:00
|
|
|
|
2008-12-21 05:32:13 +01:00
|
|
|
} else if (strcasecmp(argv[1], "install") == 0) {
|
|
|
|
/* Installs a binary package and required deps. */
|
2008-12-26 04:36:51 +01:00
|
|
|
if (argc < 3 || argc > 4)
|
2008-12-21 05:32:13 +01:00
|
|
|
usage();
|
|
|
|
|
2008-12-26 04:36:51 +01:00
|
|
|
if (argc == 3) {
|
|
|
|
/* Install into root directory by default. */
|
|
|
|
rv = xbps_install_binary_pkg(argv[2], "/");
|
|
|
|
} else {
|
|
|
|
/* install into specified directory. */
|
|
|
|
rv = xbps_install_binary_pkg(argv[2], argv[3]);
|
2008-12-24 10:58:19 +01:00
|
|
|
}
|
|
|
|
|
2008-12-26 10:13:03 +01:00
|
|
|
if (rv) {
|
|
|
|
printf("ERROR: unable to install %s.\n", argv[2]);
|
2008-12-26 04:36:51 +01:00
|
|
|
exit(rv);
|
2008-12-26 10:13:03 +01:00
|
|
|
}
|
2008-12-19 23:10:24 +01:00
|
|
|
} else {
|
|
|
|
usage();
|
2008-12-19 10:31:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|