2008-04-17 14:09:13 +00:00
|
|
|
/* apk.c - Alpine Package Keeper (APK)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
2011-09-13 08:53:01 +00:00
|
|
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
2008-04-17 14:09:13 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2009-06-25 12:14:07 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
2008-04-17 14:09:13 +00:00
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation. See http://www.gnu.org/ for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2008-04-22 08:16:26 +00:00
|
|
|
#include <fcntl.h>
|
2009-01-13 12:09:45 +00:00
|
|
|
#include <ctype.h>
|
2010-06-30 13:53:56 +00:00
|
|
|
#include <errno.h>
|
2011-07-22 09:08:35 +00:00
|
|
|
#include <signal.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
#include <stdarg.h>
|
2008-04-21 16:30:10 +00:00
|
|
|
#include <stdlib.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
#include <string.h>
|
2008-04-21 16:30:10 +00:00
|
|
|
#include <getopt.h>
|
2011-03-16 13:22:05 +00:00
|
|
|
#include <unistd.h>
|
2008-04-21 16:30:10 +00:00
|
|
|
#include <sys/stat.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2010-06-30 13:53:56 +00:00
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2009-07-08 13:19:06 +00:00
|
|
|
#include <openssl/engine.h>
|
2010-06-30 13:53:56 +00:00
|
|
|
#endif
|
2009-07-08 13:19:06 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
#include "apk_defines.h"
|
2009-08-06 11:25:03 +00:00
|
|
|
#include "apk_database.h"
|
2008-04-17 14:09:13 +00:00
|
|
|
#include "apk_applet.h"
|
2009-06-25 12:14:07 +00:00
|
|
|
#include "apk_blob.h"
|
2010-03-05 08:13:25 +00:00
|
|
|
#include "apk_print.h"
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2011-01-01 13:48:10 +00:00
|
|
|
char **apk_argv;
|
|
|
|
|
2009-06-25 12:14:07 +00:00
|
|
|
static struct apk_option generic_options[] = {
|
|
|
|
{ 'h', "help", "Show generic help or applet specific help" },
|
|
|
|
{ 'p', "root", "Install packages to DIR",
|
2009-07-07 07:30:54 +00:00
|
|
|
required_argument, "DIR" },
|
2009-06-25 12:14:07 +00:00
|
|
|
{ 'X', "repository", "Use packages from REPO",
|
2009-07-07 07:30:54 +00:00
|
|
|
required_argument, "REPO" },
|
2009-06-25 12:14:07 +00:00
|
|
|
{ 'q', "quiet", "Print less information" },
|
|
|
|
{ 'v', "verbose", "Print more information" },
|
2009-07-24 11:18:07 +00:00
|
|
|
{ 'i', "interactive", "Ask confirmation for certain operations" },
|
2009-06-25 12:14:07 +00:00
|
|
|
{ 'V', "version", "Print program version and exit" },
|
|
|
|
{ 'f', "force", "Do what was asked even if it looks dangerous" },
|
2009-07-07 09:12:24 +00:00
|
|
|
{ 'U', "update-cache", "Update the repository cache" },
|
2009-06-25 12:14:07 +00:00
|
|
|
{ 0x101, "progress", "Show a progress bar" },
|
2011-03-16 13:22:05 +00:00
|
|
|
{ 0x110, "no-progress", "Disable progress bar even for TTYs" },
|
2009-07-07 07:30:54 +00:00
|
|
|
{ 0x102, "clean-protected", "Do not create .apk-new files to "
|
|
|
|
"configuration dirs" },
|
2009-07-22 18:34:25 +00:00
|
|
|
{ 0x106, "purge", "Delete also modified configuration files on "
|
|
|
|
"package removal" },
|
2009-07-22 13:06:34 +00:00
|
|
|
{ 0x103, "allow-untrusted", "Blindly install packages with untrusted "
|
|
|
|
"signatures or no signature at all" },
|
2009-07-07 07:30:54 +00:00
|
|
|
{ 0x104, "simulate", "Show what would be done without actually "
|
|
|
|
"doing it" },
|
|
|
|
{ 0x105, "wait", "Wait for TIME seconds to get an exclusive "
|
|
|
|
"repository lock before failing",
|
|
|
|
required_argument, "TIME" },
|
2009-08-06 11:25:03 +00:00
|
|
|
{ 0x107, "keys-dir", "Override directory of trusted keys",
|
|
|
|
required_argument, "KEYSDIR" },
|
|
|
|
{ 0x108, "repositories-file", "Override repositories file",
|
2009-08-06 13:00:20 +00:00
|
|
|
required_argument, "REPOFILE" },
|
|
|
|
{ 0x109, "no-network", "Do not use network (cache is still used)" },
|
2009-12-21 12:14:02 +00:00
|
|
|
{ 0x111, "overlay-from-stdin", "Read list of overlay files from stdin" },
|
2011-04-14 19:48:49 +00:00
|
|
|
{ 0x112, "arch", "Use architecture with --root",
|
|
|
|
required_argument, "ARCH" },
|
2009-06-25 12:14:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int version(void)
|
2009-01-17 08:51:52 +00:00
|
|
|
{
|
2011-07-16 09:29:09 +00:00
|
|
|
printf("apk-tools " APK_VERSION ", compiled for " APK_DEFAULT_ARCH ".\n");
|
2009-01-17 08:51:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-06-25 12:14:07 +00:00
|
|
|
static int format_option(char *buf, size_t len, struct apk_option *o,
|
|
|
|
const char *separator)
|
2009-06-19 13:40:37 +00:00
|
|
|
{
|
2009-06-25 12:14:07 +00:00
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
if (o->val <= 0xff && isalnum(o->val)) {
|
|
|
|
i += snprintf(&buf[i], len - i, "-%c", o->val);
|
|
|
|
if (o->name != NULL)
|
|
|
|
i += snprintf(&buf[i], len - i, "%s", separator);
|
|
|
|
}
|
|
|
|
if (o->name != NULL)
|
|
|
|
i += snprintf(&buf[i], len - i, "--%s", o->name);
|
|
|
|
if (o->arg_name != NULL)
|
|
|
|
i += snprintf(&buf[i], len - i, " %s", o->arg_name);
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_usage(const char *cmd, const char *args, int num_opts,
|
|
|
|
struct apk_option *opts)
|
|
|
|
{
|
2011-09-09 17:06:10 +00:00
|
|
|
struct apk_indent indent = { .indent = 11 };
|
2009-06-25 12:14:07 +00:00
|
|
|
char word[128];
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
indent.x = printf("\nusage: apk %s", cmd) - 1;
|
|
|
|
for (i = 0; i < num_opts; i++) {
|
|
|
|
j = 0;
|
|
|
|
word[j++] = '[';
|
|
|
|
j += format_option(&word[j], sizeof(word) - j, &opts[i], "|");
|
|
|
|
word[j++] = ']';
|
2009-08-06 12:34:33 +00:00
|
|
|
apk_print_indented(&indent, APK_BLOB_PTR_LEN(word, j));
|
2009-06-25 12:14:07 +00:00
|
|
|
}
|
|
|
|
if (args != NULL)
|
2009-08-06 12:34:33 +00:00
|
|
|
apk_print_indented(&indent, APK_BLOB_STR(args));
|
2009-06-25 12:14:07 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_options(int num_opts, struct apk_option *opts)
|
|
|
|
{
|
2011-09-09 17:06:10 +00:00
|
|
|
struct apk_indent indent = { .indent = 26 };
|
2009-06-25 12:14:07 +00:00
|
|
|
char word[128];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num_opts; i++) {
|
|
|
|
format_option(word, sizeof(word), &opts[i], ", ");
|
|
|
|
indent.x = printf(" %-*s", indent.indent - 3, word);
|
2009-08-06 12:34:33 +00:00
|
|
|
apk_print_indented_words(&indent, opts[i].help);
|
2009-06-25 12:14:07 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usage(struct apk_applet *applet)
|
|
|
|
{
|
2009-06-19 13:40:37 +00:00
|
|
|
version();
|
2009-06-25 12:14:07 +00:00
|
|
|
if (applet == NULL) {
|
|
|
|
struct apk_applet **a;
|
|
|
|
|
|
|
|
print_usage("COMMAND", "[ARGS]...",
|
|
|
|
ARRAY_SIZE(generic_options), generic_options);
|
|
|
|
|
2011-07-16 09:14:58 +00:00
|
|
|
printf("\nThe following commands are available:\n");
|
|
|
|
for (a = &__start_apkapplets; a < &__stop_apkapplets; a++) {
|
2011-09-09 17:06:10 +00:00
|
|
|
struct apk_indent indent = { .indent = 26 };
|
2011-07-16 09:14:58 +00:00
|
|
|
|
2011-07-22 09:08:35 +00:00
|
|
|
indent.x = printf(" %-*s", indent.indent - 3, (*a)->name);
|
|
|
|
apk_print_indented_words(&indent, (*a)->help);
|
2011-07-16 09:14:58 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
2009-06-25 12:14:07 +00:00
|
|
|
} else {
|
2011-09-09 17:06:10 +00:00
|
|
|
struct apk_indent indent = { .indent = 2 };
|
2011-07-22 09:08:35 +00:00
|
|
|
|
2009-06-25 12:14:07 +00:00
|
|
|
print_usage(applet->name, applet->arguments,
|
|
|
|
applet->num_options, applet->options);
|
2011-09-09 17:06:10 +00:00
|
|
|
printf("\nDescription:\n");
|
2009-08-06 12:34:33 +00:00
|
|
|
apk_print_indented_words(&indent, applet->help);
|
2011-07-22 09:08:35 +00:00
|
|
|
printf("\n");
|
2009-06-25 12:14:07 +00:00
|
|
|
}
|
2011-07-16 09:14:58 +00:00
|
|
|
printf("\nGeneric options:\n");
|
2009-06-25 12:14:07 +00:00
|
|
|
print_options(ARRAY_SIZE(generic_options), generic_options);
|
|
|
|
|
|
|
|
if (applet != NULL && applet->num_options > 0) {
|
2011-07-22 09:08:35 +00:00
|
|
|
printf("\nOptions for %s command:\n", applet->name);
|
2009-06-25 12:14:07 +00:00
|
|
|
print_options(applet->num_options, applet->options);
|
|
|
|
}
|
2011-07-16 09:14:58 +00:00
|
|
|
printf("\nThis apk has coffee making abilities.\n");
|
2009-06-25 12:14:07 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
static struct apk_applet *find_applet(const char *name)
|
|
|
|
{
|
|
|
|
struct apk_applet **a;
|
|
|
|
|
|
|
|
for (a = &__start_apkapplets; a < &__stop_apkapplets; a++) {
|
|
|
|
if (strcmp(name, (*a)->name) == 0)
|
|
|
|
return *a;
|
|
|
|
}
|
2009-06-25 12:14:07 +00:00
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-13 12:09:45 +00:00
|
|
|
static struct apk_applet *deduce_applet(int argc, char **argv)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-01-13 12:09:45 +00:00
|
|
|
struct apk_applet *a;
|
2008-04-21 16:30:10 +00:00
|
|
|
const char *prog;
|
2009-01-13 12:09:45 +00:00
|
|
|
int i;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
prog = strrchr(argv[0], '/');
|
|
|
|
if (prog == NULL)
|
|
|
|
prog = argv[0];
|
|
|
|
else
|
|
|
|
prog++;
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
if (strncmp(prog, "apk_", 4) == 0)
|
2009-01-13 12:09:45 +00:00
|
|
|
return find_applet(prog + 4);
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (argv[i][0] == '-')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
a = find_applet(argv[i]);
|
|
|
|
if (a != NULL)
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
static struct apk_repository_list *apk_repository_new(const char *url)
|
2009-02-17 12:23:01 +00:00
|
|
|
{
|
2009-08-06 11:25:03 +00:00
|
|
|
struct apk_repository_list *r = calloc(1,
|
|
|
|
sizeof(struct apk_repository_list));
|
2009-02-17 12:23:01 +00:00
|
|
|
if (r) {
|
|
|
|
r->url = url;
|
|
|
|
list_init(&r->list);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-06-25 12:14:07 +00:00
|
|
|
static void merge_options(struct option *opts, struct apk_option *ao, int num)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++, opts++, ao++) {
|
|
|
|
opts->name = ao->name;
|
|
|
|
opts->has_arg = ao->has_arg;
|
|
|
|
opts->flag = NULL;
|
|
|
|
opts->val = ao->val;
|
|
|
|
}
|
|
|
|
opts->name = NULL;
|
|
|
|
}
|
2009-01-13 12:09:45 +00:00
|
|
|
|
2009-07-08 13:19:06 +00:00
|
|
|
static void fini_openssl(void)
|
|
|
|
{
|
|
|
|
EVP_cleanup();
|
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
|
|
ENGINE_cleanup();
|
|
|
|
#endif
|
|
|
|
CRYPTO_cleanup_all_ex_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_openssl(void)
|
|
|
|
{
|
|
|
|
atexit(fini_openssl);
|
|
|
|
OpenSSL_add_all_algorithms();
|
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
|
|
ENGINE_load_builtin_engines();
|
2009-07-13 11:28:52 +00:00
|
|
|
ENGINE_register_all_complete();
|
2009-07-08 13:19:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-07-22 09:08:35 +00:00
|
|
|
static void on_sigwinch(int s)
|
2011-03-19 13:20:47 +00:00
|
|
|
{
|
2011-07-22 09:08:35 +00:00
|
|
|
apk_reset_screen_width();
|
|
|
|
}
|
2011-03-19 13:20:47 +00:00
|
|
|
|
2011-07-22 09:08:35 +00:00
|
|
|
static void setup_terminal(void)
|
|
|
|
{
|
2011-03-19 13:20:47 +00:00
|
|
|
setvbuf(stderr, NULL, _IOLBF, BUFSIZ);
|
|
|
|
if (isatty(STDOUT_FILENO) && isatty(STDERR_FILENO) && isatty(STDIN_FILENO))
|
|
|
|
apk_flags |= APK_PROGRESS;
|
2011-07-22 09:08:35 +00:00
|
|
|
signal(SIGWINCH, on_sigwinch);
|
2011-03-19 13:20:47 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 12:09:45 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct apk_applet *applet;
|
|
|
|
char short_options[256], *sopt;
|
2009-06-25 12:14:07 +00:00
|
|
|
struct option *opt, *all_options;
|
2010-03-06 19:22:01 +00:00
|
|
|
int r, optindex, num_options;
|
2009-01-13 12:09:45 +00:00
|
|
|
void *ctx = NULL;
|
2009-08-06 11:25:03 +00:00
|
|
|
struct apk_repository_list *repo = NULL;
|
|
|
|
struct apk_database db;
|
|
|
|
struct apk_db_options dbopts;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2011-09-14 08:07:45 +00:00
|
|
|
apk_argv = malloc(sizeof(char*[argc+2]));
|
2011-01-01 13:48:10 +00:00
|
|
|
memcpy(apk_argv, argv, sizeof(char*[argc]));
|
|
|
|
apk_argv[argc] = NULL;
|
2011-09-14 08:07:45 +00:00
|
|
|
apk_argv[argc+1] = NULL;
|
2011-01-01 13:48:10 +00:00
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
memset(&dbopts, 0, sizeof(dbopts));
|
|
|
|
list_init(&dbopts.repository_list);
|
2010-12-14 17:51:16 +00:00
|
|
|
apk_atom_init();
|
2009-01-13 12:09:45 +00:00
|
|
|
umask(0);
|
2011-03-19 13:20:47 +00:00
|
|
|
setup_terminal();
|
2011-03-16 13:22:05 +00:00
|
|
|
|
2009-01-13 12:09:45 +00:00
|
|
|
applet = deduce_applet(argc, argv);
|
2009-06-25 12:14:07 +00:00
|
|
|
num_options = ARRAY_SIZE(generic_options) + 1;
|
|
|
|
if (applet != NULL)
|
|
|
|
num_options += applet->num_options;
|
|
|
|
all_options = alloca(sizeof(struct option) * num_options);
|
|
|
|
merge_options(&all_options[0], generic_options,
|
|
|
|
ARRAY_SIZE(generic_options));
|
2009-01-17 08:51:52 +00:00
|
|
|
if (applet != NULL) {
|
2009-06-25 12:14:07 +00:00
|
|
|
merge_options(&all_options[ARRAY_SIZE(generic_options)],
|
|
|
|
applet->options, applet->num_options);
|
2009-01-17 08:51:52 +00:00
|
|
|
if (applet->context_size != 0)
|
|
|
|
ctx = calloc(1, applet->context_size);
|
2009-08-06 11:25:03 +00:00
|
|
|
dbopts.open_flags = applet->open_flags;
|
|
|
|
apk_flags |= applet->forced_flags;
|
2009-01-13 12:09:45 +00:00
|
|
|
}
|
2009-01-17 08:51:52 +00:00
|
|
|
|
2009-06-25 12:14:07 +00:00
|
|
|
for (opt = all_options, sopt = short_options; opt->name != NULL; opt++) {
|
2009-01-15 09:10:14 +00:00
|
|
|
if (opt->flag == NULL &&
|
|
|
|
opt->val <= 0xff && isalnum(opt->val)) {
|
2009-01-13 12:09:45 +00:00
|
|
|
*(sopt++) = opt->val;
|
|
|
|
if (opt->has_arg != no_argument)
|
|
|
|
*(sopt++) = ':';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-08 13:19:06 +00:00
|
|
|
init_openssl();
|
|
|
|
|
2009-01-13 12:09:45 +00:00
|
|
|
optindex = 0;
|
|
|
|
while ((r = getopt_long(argc, argv, short_options,
|
2009-06-25 12:14:07 +00:00
|
|
|
all_options, &optindex)) != -1) {
|
2008-04-21 16:30:10 +00:00
|
|
|
switch (r) {
|
2009-03-04 06:27:06 +00:00
|
|
|
case 0:
|
|
|
|
break;
|
2009-06-19 13:40:37 +00:00
|
|
|
case 'h':
|
2012-02-17 08:02:44 +00:00
|
|
|
r = usage(applet);
|
|
|
|
goto err;
|
2009-01-16 09:57:53 +00:00
|
|
|
case 'p':
|
2009-08-06 11:25:03 +00:00
|
|
|
dbopts.root = optarg;
|
|
|
|
break;
|
|
|
|
case 0x107:
|
|
|
|
dbopts.keys_dir = optarg;
|
|
|
|
break;
|
|
|
|
case 0x108:
|
|
|
|
dbopts.repositories_file = optarg;
|
2008-04-21 16:30:10 +00:00
|
|
|
break;
|
|
|
|
case 'X':
|
2009-02-17 12:23:01 +00:00
|
|
|
repo = apk_repository_new(optarg);
|
|
|
|
if (repo)
|
2009-08-06 11:25:03 +00:00
|
|
|
list_add(&repo->list, &dbopts.repository_list);
|
2008-04-21 16:30:10 +00:00
|
|
|
break;
|
2008-04-22 06:04:20 +00:00
|
|
|
case 'q':
|
2009-01-16 09:33:55 +00:00
|
|
|
apk_verbosity--;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
apk_verbosity++;
|
2008-04-22 06:04:20 +00:00
|
|
|
break;
|
2009-01-17 08:51:52 +00:00
|
|
|
case 'V':
|
2012-02-17 08:02:44 +00:00
|
|
|
r = version();
|
|
|
|
goto err;
|
2009-04-15 10:19:36 +00:00
|
|
|
case 'f':
|
|
|
|
apk_flags |= APK_FORCE;
|
|
|
|
break;
|
2009-07-24 11:18:07 +00:00
|
|
|
case 'i':
|
|
|
|
apk_flags |= APK_INTERACTIVE;
|
|
|
|
break;
|
2009-07-07 09:12:24 +00:00
|
|
|
case 'U':
|
|
|
|
apk_flags |= APK_UPDATE_CACHE;
|
|
|
|
break;
|
2009-04-14 15:48:02 +00:00
|
|
|
case 0x101:
|
|
|
|
apk_flags |= APK_PROGRESS;
|
|
|
|
break;
|
2011-03-16 13:22:05 +00:00
|
|
|
case 0x110:
|
|
|
|
apk_flags &= ~APK_PROGRESS;
|
|
|
|
break;
|
2009-04-14 15:48:02 +00:00
|
|
|
case 0x102:
|
|
|
|
apk_flags |= APK_CLEAN_PROTECTED;
|
|
|
|
break;
|
2009-07-22 13:06:34 +00:00
|
|
|
case 0x103:
|
|
|
|
apk_flags |= APK_ALLOW_UNTRUSTED;
|
|
|
|
break;
|
2009-04-14 15:48:02 +00:00
|
|
|
case 0x104:
|
|
|
|
apk_flags |= APK_SIMULATE;
|
2009-01-17 08:51:52 +00:00
|
|
|
break;
|
2009-07-22 18:34:25 +00:00
|
|
|
case 0x106:
|
|
|
|
apk_flags |= APK_PURGE;
|
|
|
|
break;
|
2009-07-07 07:30:54 +00:00
|
|
|
case 0x105:
|
2010-03-06 19:22:01 +00:00
|
|
|
dbopts.lock_wait = atoi(optarg);
|
2009-07-07 07:30:54 +00:00
|
|
|
break;
|
2009-08-06 13:00:20 +00:00
|
|
|
case 0x109:
|
|
|
|
apk_flags |= APK_NO_NETWORK;
|
|
|
|
break;
|
2009-12-21 12:14:02 +00:00
|
|
|
case 0x111:
|
|
|
|
apk_flags |= APK_OVERLAY_FROM_STDIN;
|
|
|
|
break;
|
2011-04-14 19:48:49 +00:00
|
|
|
case 0x112:
|
|
|
|
dbopts.arch = optarg;
|
|
|
|
break;
|
2008-04-21 16:30:10 +00:00
|
|
|
default:
|
2009-06-19 13:40:37 +00:00
|
|
|
if (applet == NULL || applet->parse == NULL ||
|
2009-08-06 11:25:03 +00:00
|
|
|
applet->parse(ctx, &dbopts, r,
|
2009-06-25 12:14:07 +00:00
|
|
|
optindex - ARRAY_SIZE(generic_options),
|
2012-02-17 08:02:44 +00:00
|
|
|
optarg) != 0) {
|
|
|
|
r = usage(applet);
|
|
|
|
goto err;
|
|
|
|
}
|
2009-01-13 12:09:45 +00:00
|
|
|
break;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-17 08:02:44 +00:00
|
|
|
if (applet == NULL) {
|
|
|
|
r = usage(NULL);
|
|
|
|
goto err;
|
|
|
|
}
|
2009-01-17 08:51:52 +00:00
|
|
|
|
2009-01-13 12:09:45 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc >= 1 && strcmp(argv[0], applet->name) == 0) {
|
2008-04-21 16:30:10 +00:00
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
2010-03-06 19:22:01 +00:00
|
|
|
r = apk_db_open(&db, &dbopts);
|
2009-08-06 11:25:03 +00:00
|
|
|
if (r != 0) {
|
|
|
|
apk_error("Failed to open apk database: %s",
|
|
|
|
apk_error_str(r));
|
2012-02-17 08:02:44 +00:00
|
|
|
goto err;
|
2009-08-06 11:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
r = applet->main(ctx, &db, argc, argv);
|
|
|
|
apk_db_close(&db);
|
|
|
|
|
2009-07-22 11:24:19 +00:00
|
|
|
if (r == -EINVAL)
|
2012-02-17 08:02:44 +00:00
|
|
|
r = usage(applet);
|
|
|
|
err:
|
|
|
|
if (ctx)
|
|
|
|
free(ctx);
|
2009-06-29 08:22:55 +00:00
|
|
|
return r;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|