2004-01-05 10:28:27 +01:00
|
|
|
/* gpgconf.h - Global definitions for gpgconf
|
|
|
|
* Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-01-05 10:28:27 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG 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
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2004-01-05 10:28:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GPGCONF_H
|
|
|
|
#define GPGCONF_H
|
|
|
|
|
|
|
|
#include "../common/util.h"
|
|
|
|
|
2004-02-23 21:31:35 +01:00
|
|
|
/* We keep all global options in the structure OPT. */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int verbose; /* Verbosity level. */
|
|
|
|
int quiet; /* Be extra quiet. */
|
|
|
|
int dry_run; /* Don't change any persistent data. */
|
|
|
|
int runtime; /* Make changes active at runtime. */
|
2016-08-04 13:02:37 +02:00
|
|
|
int null; /* Option -0 active. */
|
2004-02-23 21:31:35 +01:00
|
|
|
char *outfile; /* Name of output file. */
|
2004-01-29 00:58:18 +01:00
|
|
|
|
|
|
|
int component; /* The active component. */
|
2004-01-05 10:28:27 +01:00
|
|
|
} opt;
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-01-29 00:58:18 +01:00
|
|
|
/*-- gpgconf-comp.c --*/
|
2017-01-10 15:42:27 +01:00
|
|
|
|
|
|
|
/* Initialize the components. */
|
|
|
|
void gc_components_init (void);
|
|
|
|
|
2008-05-26 15:43:20 +02:00
|
|
|
/* Percent-Escape special characters. The string is valid until the
|
|
|
|
next invocation of the function. */
|
|
|
|
char *gc_percent_escape (const char *src);
|
|
|
|
|
|
|
|
|
2007-10-23 20:13:27 +02:00
|
|
|
void gc_error (int status, int errnum, const char *fmt, ...);
|
|
|
|
|
2014-04-08 15:55:51 +02:00
|
|
|
/* Launch given component. */
|
2014-12-17 10:36:24 +01:00
|
|
|
gpg_error_t gc_component_launch (int component);
|
2014-04-08 15:55:51 +02:00
|
|
|
|
2011-02-23 10:15:34 +01:00
|
|
|
/* Kill given component. */
|
|
|
|
void gc_component_kill (int component);
|
|
|
|
|
2009-03-03 10:02:58 +01:00
|
|
|
/* Reload given component. */
|
|
|
|
void gc_component_reload (int component);
|
|
|
|
|
2004-01-29 00:58:18 +01:00
|
|
|
/* List all components that are available. */
|
2010-08-18 21:25:15 +02:00
|
|
|
void gc_component_list_components (estream_t out);
|
2004-01-29 00:58:18 +01:00
|
|
|
|
2007-08-29 11:51:37 +02:00
|
|
|
/* List all programs along with their status. */
|
2010-08-18 21:25:15 +02:00
|
|
|
void gc_check_programs (estream_t out);
|
2007-08-29 11:51:37 +02:00
|
|
|
|
2004-01-29 00:58:18 +01:00
|
|
|
/* Find the component with the name NAME. Returns -1 if not
|
|
|
|
found. */
|
|
|
|
int gc_component_find (const char *name);
|
|
|
|
|
|
|
|
/* Retrieve the currently active options and their defaults from all
|
|
|
|
involved backends for this component. */
|
|
|
|
void gc_component_retrieve_options (int component);
|
|
|
|
|
|
|
|
/* List all options of the component COMPONENT. */
|
2010-08-18 21:25:15 +02:00
|
|
|
void gc_component_list_options (int component, estream_t out);
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2004-01-29 00:58:18 +01:00
|
|
|
/* Read the modifications from IN and apply them. */
|
2016-12-16 16:00:15 +01:00
|
|
|
void gc_component_change_options (int component, estream_t in, estream_t out,
|
|
|
|
int verbatim);
|
2008-05-20 00:46:41 +02:00
|
|
|
|
|
|
|
/* Check the options of a single component. Returns 0 if everything
|
|
|
|
is OK. */
|
2010-08-18 21:25:15 +02:00
|
|
|
int gc_component_check_options (int component, estream_t out,
|
2008-05-20 00:46:41 +02:00
|
|
|
const char *conf_file);
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2007-03-06 21:44:41 +01:00
|
|
|
/* Process global configuration file. */
|
2007-10-23 20:13:27 +02:00
|
|
|
int gc_process_gpgconf_conf (const char *fname, int update, int defaults,
|
2010-08-18 21:25:15 +02:00
|
|
|
estream_t listfp);
|
2007-03-06 21:44:41 +01:00
|
|
|
|
2016-12-16 16:00:15 +01:00
|
|
|
/* Apply a profile. */
|
|
|
|
gpg_error_t gc_apply_profile (const char *fname);
|
|
|
|
|
2007-03-06 21:44:41 +01:00
|
|
|
|
2004-01-05 10:28:27 +01:00
|
|
|
#endif /*GPGCONF_H*/
|