2018-01-23 10:28:24 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
Copyright (C) 2018 Taler Systems SA
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published
|
|
|
|
by the Free Software Foundation; either version 3, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with TALER; see the file COPYING. If not,
|
|
|
|
see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-01-19 15:23:19 +01:00
|
|
|
* @file testing/testing_api_cmd_exec_auditor-sign.c
|
2018-01-23 10:28:24 +01:00
|
|
|
* @brief run the taler-exchange-aggregator command
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include "taler_signatures.h"
|
|
|
|
#include "taler_testing_lib.h"
|
|
|
|
|
|
|
|
|
2018-05-26 10:31:25 +02:00
|
|
|
/**
|
|
|
|
* State for a "auditor sign" CMD.
|
|
|
|
*/
|
2018-01-23 10:28:24 +01:00
|
|
|
struct AuditorSignState
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:31:25 +02:00
|
|
|
* Handle to the process making the signature.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
struct GNUNET_OS_Process *auditor_sign_proc;
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:31:25 +02:00
|
|
|
* Configuration file used by the command.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
const char *config_filename;
|
|
|
|
|
2018-06-29 15:28:05 +02:00
|
|
|
/**
|
|
|
|
* File name of signed blob.
|
|
|
|
*/
|
|
|
|
char *signed_keys_out;
|
2018-01-23 10:28:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:31:25 +02:00
|
|
|
* Run the command; calls the `taler-auditor-sign' program.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-26 10:31:25 +02:00
|
|
|
* @param cls closure.
|
|
|
|
* @param cmd the command.
|
|
|
|
* @param is interpreter state.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
auditor_sign_run (void *cls,
|
|
|
|
const struct TALER_TESTING_Command *cmd,
|
|
|
|
struct TALER_TESTING_Interpreter *is)
|
|
|
|
{
|
|
|
|
struct AuditorSignState *ass = cls;
|
|
|
|
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
char *test_home_dir;
|
|
|
|
char *exchange_master_pub;
|
2018-06-29 15:15:07 +02:00
|
|
|
struct GNUNET_TIME_Absolute now;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK != GNUNET_CONFIGURATION_load
|
2019-08-25 16:18:24 +02:00
|
|
|
(cfg, ass->config_filename))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
2018-04-02 17:10:05 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
2018-01-23 10:28:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2018-04-02 17:10:05 +02:00
|
|
|
GNUNET_CONFIGURATION_get_value_filename (cfg,
|
|
|
|
"paths",
|
|
|
|
"TALER_TEST_HOME",
|
|
|
|
&test_home_dir))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"paths",
|
|
|
|
"TALER_TEST_HOME");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2018-04-02 17:10:05 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
2018-01-23 10:28:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-29 15:15:07 +02:00
|
|
|
now = GNUNET_TIME_absolute_get ();
|
|
|
|
GNUNET_asprintf
|
2018-06-29 15:28:05 +02:00
|
|
|
(&ass->signed_keys_out,
|
2019-08-25 16:18:24 +02:00
|
|
|
"%s/.local/share/taler/auditors/auditor-%llu.out",
|
|
|
|
test_home_dir,
|
|
|
|
(unsigned long long) now.abs_value_us);
|
2018-10-13 18:51:48 +02:00
|
|
|
GNUNET_free (test_home_dir);
|
2019-08-01 00:24:11 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchange",
|
|
|
|
"MASTER_PUBLIC_KEY",
|
|
|
|
&exchange_master_pub))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
|
|
|
"MASTER_PUBLIC_KEY");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
|
2018-04-02 17:10:05 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
2018-01-23 10:28:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
|
|
|
|
ass->auditor_sign_proc = GNUNET_OS_start_process
|
2019-08-25 16:18:24 +02:00
|
|
|
(GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-auditor-sign",
|
|
|
|
"taler-auditor-sign",
|
|
|
|
"-c", ass->config_filename,
|
|
|
|
"-u", "http://auditor/",
|
|
|
|
"-m", exchange_master_pub,
|
|
|
|
"-r", "auditor.in",
|
|
|
|
"-o", ass->signed_keys_out,
|
|
|
|
NULL);
|
2018-10-13 18:51:48 +02:00
|
|
|
GNUNET_free (exchange_master_pub);
|
2018-01-23 10:28:24 +01:00
|
|
|
if (NULL == ass->auditor_sign_proc)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TALER_TESTING_wait_for_sigchld (is);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:31:25 +02:00
|
|
|
* Free the state of a "auditor sign" CMD, and possibly
|
|
|
|
* kill its process if it did not terminate correctly.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-26 10:31:25 +02:00
|
|
|
* @param cls closure.
|
|
|
|
* @param cmd the command being freed.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
auditor_sign_cleanup (void *cls,
|
2019-08-01 00:24:11 +02:00
|
|
|
const struct TALER_TESTING_Command *cmd)
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
struct AuditorSignState *ass = cls;
|
|
|
|
|
|
|
|
if (NULL != ass->auditor_sign_proc)
|
|
|
|
{
|
|
|
|
GNUNET_break (0 == GNUNET_OS_process_kill
|
2019-08-25 16:18:24 +02:00
|
|
|
(ass->auditor_sign_proc, SIGKILL));
|
2018-01-23 10:28:24 +01:00
|
|
|
GNUNET_OS_process_wait (ass->auditor_sign_proc);
|
|
|
|
GNUNET_OS_process_destroy (ass->auditor_sign_proc);
|
|
|
|
ass->auditor_sign_proc = NULL;
|
|
|
|
}
|
2018-06-29 15:28:05 +02:00
|
|
|
GNUNET_free_non_null (ass->signed_keys_out);
|
2018-01-23 10:28:24 +01:00
|
|
|
GNUNET_free (ass);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:31:25 +02:00
|
|
|
* Offer "auditor sign" CMD internal data to other commands.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-26 10:31:25 +02:00
|
|
|
* @param cls closure.
|
2020-01-18 13:57:47 +01:00
|
|
|
* @param[out] ret result.
|
2018-05-26 10:31:25 +02:00
|
|
|
* @param trait name of the trait.
|
2018-05-29 12:43:34 +02:00
|
|
|
* @param index index number of the object to offer.
|
2018-05-26 10:31:25 +02:00
|
|
|
* @return #GNUNET_OK on success.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
auditor_sign_traits (void *cls,
|
2018-11-17 17:19:02 +01:00
|
|
|
const void **ret,
|
2018-01-23 10:28:24 +01:00
|
|
|
const char *trait,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
|
|
|
struct AuditorSignState *ass = cls;
|
|
|
|
struct TALER_TESTING_Trait traits[] = {
|
|
|
|
TALER_TESTING_make_trait_process (0, &ass->auditor_sign_proc),
|
|
|
|
TALER_TESTING_trait_end ()
|
|
|
|
};
|
|
|
|
|
|
|
|
return TALER_TESTING_get_trait (traits,
|
|
|
|
ret,
|
|
|
|
trait,
|
|
|
|
index);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:31:25 +02:00
|
|
|
* Make a "auditor sign" CMD.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
|
|
|
* @param label command label
|
|
|
|
* @param config_filename configuration filename
|
|
|
|
*
|
|
|
|
* @return the command.
|
|
|
|
*/
|
|
|
|
struct TALER_TESTING_Command
|
|
|
|
TALER_TESTING_cmd_exec_auditor_sign (const char *label,
|
|
|
|
const char *config_filename)
|
|
|
|
{
|
|
|
|
struct AuditorSignState *ass;
|
|
|
|
|
|
|
|
ass = GNUNET_new (struct AuditorSignState);
|
|
|
|
ass->config_filename = config_filename;
|
2018-12-19 11:43:05 +01:00
|
|
|
|
2019-08-01 00:24:11 +02:00
|
|
|
{
|
|
|
|
struct TALER_TESTING_Command cmd = {
|
|
|
|
.cls = ass,
|
|
|
|
.label = label,
|
|
|
|
.run = &auditor_sign_run,
|
|
|
|
.cleanup = &auditor_sign_cleanup,
|
|
|
|
.traits = &auditor_sign_traits
|
|
|
|
};
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/* end of testing_api_cmd_exec_auditor-sign.c */
|