summaryrefslogtreecommitdiff
path: root/rpmkeys.c
diff options
context:
space:
mode:
authorKim Kibum <kb0929.kim@samsung.com>2012-05-21 17:49:08 +0900
committerKim Kibum <kb0929.kim@samsung.com>2012-05-21 17:49:08 +0900
commitdec48cfa66e17ba4a7e50c92cb24b913289feb12 (patch)
treee1f48cd5cabb40a1d604b36949ff072d01267cb5 /rpmkeys.c
parentb7a3bffb8e0341b7e4ef69def268bca3a7f279ff (diff)
downloadrpm-dec48cfa66e17ba4a7e50c92cb24b913289feb12.tar.gz
rpm-dec48cfa66e17ba4a7e50c92cb24b913289feb12.tar.bz2
rpm-dec48cfa66e17ba4a7e50c92cb24b913289feb12.zip
Upload Tizen:Base source
Diffstat (limited to 'rpmkeys.c')
-rw-r--r--rpmkeys.c84
1 files changed, 84 insertions, 0 deletions
diff --git a/rpmkeys.c b/rpmkeys.c
new file mode 100644
index 0000000..b91bb27
--- /dev/null
+++ b/rpmkeys.c
@@ -0,0 +1,84 @@
+#include "system.h"
+
+#include <popt.h>
+#include <rpm/rpmcli.h>
+#include "cliutils.h"
+#include "debug.h"
+
+#if !defined(__GLIBC__) && !defined(__APPLE__)
+char ** environ = NULL;
+#endif
+
+enum modes {
+ MODE_CHECKSIG = (1 << 0),
+ MODE_IMPORTKEY = (1 << 1),
+ MODE_DELKEY = (1 << 2),
+ MODE_LISTKEY = (1 << 3),
+};
+
+static int mode = 0;
+
+static struct poptOption keyOptsTable[] = {
+ { "checksig", 'K', (POPT_ARG_VAL|POPT_ARGFLAG_OR), &mode, MODE_CHECKSIG,
+ N_("verify package signature(s)"), NULL },
+ { "import", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_OR), &mode, MODE_IMPORTKEY,
+ N_("import an armored public key"), NULL },
+#if 0
+ { "delete-key", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_OR), &mode, MODE_DELKEY,
+ N_("list keys from RPM keyring"), NULL },
+ { "list-keys", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_OR), &mode, MODE_LISTKEY,
+ N_("list keys from RPM keyring"), NULL },
+#endif
+ POPT_TABLEEND
+};
+
+static struct poptOption optionsTable[] = {
+ { NULL, '\0', POPT_ARG_INCLUDE_TABLE, keyOptsTable, 0,
+ N_("Keyring options:"), NULL },
+ { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliAllPoptTable, 0,
+ N_("Common options for all rpm modes and executables:"), NULL },
+
+ POPT_AUTOALIAS
+ POPT_AUTOHELP
+ POPT_TABLEEND
+};
+
+int main(int argc, char *argv[])
+{
+ int ec = EXIT_FAILURE;
+ poptContext optCon = rpmcliInit(argc, argv, optionsTable);
+ rpmts ts = rpmtsCreate();
+ ARGV_const_t args = NULL;
+
+ if (argc < 2) {
+ printUsage(optCon, stderr, 0);
+ goto exit;
+ }
+
+ args = (ARGV_const_t) poptGetArgs(optCon);
+
+ if (mode != MODE_LISTKEY && args == NULL)
+ argerror(_("no arguments given"));
+
+ rpmtsSetRootDir(ts, rpmcliRootDir);
+
+ switch (mode) {
+ case MODE_CHECKSIG:
+ ec = rpmcliVerifySignatures(ts, args);
+ break;
+ case MODE_IMPORTKEY:
+ ec = rpmcliImportPubkeys(ts, args);
+ break;
+ /* XXX TODO: actually implement these... */
+ case MODE_DELKEY:
+ case MODE_LISTKEY:
+ break;
+ default:
+ argerror(_("only one major mode may be specified"));
+ }
+
+exit:
+ rpmtsFree(ts);
+ rpmcliFini(optCon);
+ return ec;
+}