2001-11-06 20:14:14 +01:00
|
|
|
/* gpgsm.h - Global definitions for GpgSM
|
|
|
|
* Copyright (C) 2001 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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
2001-11-25 19:23:06 +01:00
|
|
|
#ifndef GPGSM_H
|
|
|
|
#define GPGSM_H
|
2001-11-06 20:14:14 +01:00
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
#include <ksba.h>
|
2001-11-24 18:43:43 +01:00
|
|
|
#include "../common/util.h"
|
|
|
|
#include "../common/errors.h"
|
2001-11-19 13:42:01 +01:00
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
#define MAX_DIGEST_LEN 24
|
2001-11-07 18:44:22 +01:00
|
|
|
|
2001-11-06 20:14:14 +01:00
|
|
|
/* A large struct name "opt" to keep global flags */
|
|
|
|
struct {
|
|
|
|
unsigned int debug; /* debug flags (DBG_foo_VALUE) */
|
|
|
|
int verbose; /* verbosity level */
|
|
|
|
int quiet; /* be as quiet as possible */
|
|
|
|
int batch; /* run in batch mode, i.e w/o any user interaction */
|
|
|
|
int answer_yes; /* assume yes on most questions */
|
|
|
|
int answer_no; /* assume no on most questions */
|
|
|
|
int dry_run; /* don't change any persistent data */
|
|
|
|
|
|
|
|
const char *homedir; /* configuration directory name */
|
2001-11-26 18:54:49 +01:00
|
|
|
const char *agent_program;
|
2002-04-25 00:08:35 +02:00
|
|
|
char *display;
|
|
|
|
char *ttyname;
|
|
|
|
char *ttytype;
|
|
|
|
char *lc_ctype;
|
|
|
|
char *lc_messages;
|
2002-04-24 Marcus Brinkmann <marcus@g10code.de>
* configure.ac: Check for locale.h.
agent/
2002-04-24 Marcus Brinkmann <marcus@g10code.de>
* agent.h (struct opt): Add members display, ttyname, ttytype,
lc_ctype, and lc_messages.
* gpg-agent.c (enum cmd_and_opt_values): Add oDisplay, oTTYname,
oTTYtype, oLCctype, and LCmessages.
(main): Handle these options.
* command.c (option_handler): New function.
(register_commands): Register option handler.
* query.c (start_pinentry): Pass the various display and tty
options to the pinentry.
sm/
2002-04-24 Marcus Brinkmann <marcus@g10code.de>
* gpgsm.h (struct opt): New members display, ttyname, ttytype,
lc_ctype, lc_messages.
* gpgsm.c (enum cmd_and_opt_values): New members oDisplay,
oTTYname, oTTYtype, oLCctype, oLCmessages.
(opts): New entries for these options.
(main): Handle these new options.
* call-agent.c (start_agent): Set the various display and tty
parameter after resetting.
2002-04-24 23:52:47 +02:00
|
|
|
|
2002-01-11 18:07:51 +01:00
|
|
|
const char *dirmngr_program;
|
2001-11-06 20:14:14 +01:00
|
|
|
char *outfile; /* name of output file */
|
|
|
|
|
|
|
|
int with_key_data;/* include raw key in the column delimted output */
|
|
|
|
|
|
|
|
int fingerprint; /* list fingerprints in all key listings */
|
|
|
|
|
2001-11-27 18:40:09 +01:00
|
|
|
int armor; /* force base64 armoring (see also ctrl.with_base64) */
|
2001-11-06 20:14:14 +01:00
|
|
|
int no_armor; /* don't try to figure out whether data is base64 armored*/
|
|
|
|
|
2001-12-11 13:31:04 +01:00
|
|
|
const char *def_cipher_algoid; /* cipher algorithm to use if
|
|
|
|
nothing else is specified */
|
|
|
|
|
2001-11-06 20:14:14 +01:00
|
|
|
int def_digest_algo; /* Ditto for hash algorithm */
|
|
|
|
int def_compress_algo; /* Ditto for compress algorithm */
|
|
|
|
|
|
|
|
char *def_recipient; /* userID of the default recipient */
|
|
|
|
int def_recipient_self; /* The default recipient is the default key */
|
|
|
|
|
2002-03-05 16:56:46 +01:00
|
|
|
char *local_user; /* NULL or argument to -u */
|
|
|
|
|
2001-11-06 20:14:14 +01:00
|
|
|
int always_trust; /* Trust the given keys even if there is no
|
|
|
|
valid certification path */
|
|
|
|
int skip_verify; /* do not check signatures on data */
|
|
|
|
|
|
|
|
int lock_once; /* Keep lock once they are set */
|
|
|
|
|
|
|
|
int ignore_time_conflict; /* Ignore certain time conflicts */
|
|
|
|
|
2002-02-19 18:39:05 +01:00
|
|
|
int no_crl_check; /* Don't do a CRL check */
|
|
|
|
|
|
|
|
char *policy_file; /* full pathname of policy file */
|
|
|
|
int no_policy_check; /* ignore certificate policies */
|
2002-06-24 16:34:52 +02:00
|
|
|
int no_path_validation; /* Bypass all cert path validity tests */
|
2002-06-29 16:01:53 +02:00
|
|
|
|
|
|
|
int auto_issuer_key_retrieve; /* try to retrieve a missing issuer key. */
|
2001-11-06 20:14:14 +01:00
|
|
|
} opt;
|
|
|
|
|
|
|
|
|
|
|
|
#define DBG_X509_VALUE 1 /* debug x.509 data reading/writing */
|
|
|
|
#define DBG_MPI_VALUE 2 /* debug mpi details */
|
2001-11-13 13:50:14 +01:00
|
|
|
#define DBG_CRYPTO_VALUE 4 /* debug low level crypto */
|
2001-11-06 20:14:14 +01:00
|
|
|
#define DBG_MEMORY_VALUE 32 /* debug memory allocation stuff */
|
|
|
|
#define DBG_CACHE_VALUE 64 /* debug the caching */
|
|
|
|
#define DBG_MEMSTAT_VALUE 128 /* show memory statistics */
|
|
|
|
#define DBG_HASHING_VALUE 512 /* debug hashing operations */
|
2002-04-27 15:50:16 +02:00
|
|
|
#define DBG_ASSUAN_VALUE 1024 /* debug assuan communication */
|
2001-11-06 20:14:14 +01:00
|
|
|
|
|
|
|
#define DBG_X509 (opt.debug & DBG_X509_VALUE)
|
2001-11-13 13:50:14 +01:00
|
|
|
#define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE)
|
2001-11-06 20:14:14 +01:00
|
|
|
#define DBG_MEMORY (opt.debug & DBG_MEMORY_VALUE)
|
|
|
|
#define DBG_CACHE (opt.debug & DBG_CACHE_VALUE)
|
|
|
|
#define DBG_HASHING (opt.debug & DBG_HASHING_VALUE)
|
2002-04-27 15:50:16 +02:00
|
|
|
#define DBG_ASSUAN (opt.debug & DBG_ASSUAN_VALUE)
|
2001-11-06 20:14:14 +01:00
|
|
|
|
2001-11-19 13:42:01 +01:00
|
|
|
struct server_local_s;
|
|
|
|
|
2002-01-25 17:41:13 +01:00
|
|
|
/* Note that the default values for this are set by
|
|
|
|
gpgsm_init_default_ctrl() */
|
2001-11-19 13:42:01 +01:00
|
|
|
struct server_control_s {
|
|
|
|
int no_server; /* we are not running under server control */
|
|
|
|
int status_fd; /* only for non-server mode */
|
|
|
|
struct server_local_s *server_local;
|
2001-11-19 17:17:43 +01:00
|
|
|
int with_colons; /* use column delimited output format */
|
2002-06-04 11:41:59 +02:00
|
|
|
int with_chain; /* include the certifying certs in a listing */
|
2001-11-27 18:40:09 +01:00
|
|
|
|
|
|
|
int autodetect_encoding; /* try to detect the input encoding */
|
|
|
|
int is_pem; /* Is in PEM format */
|
|
|
|
int is_base64; /* is in plain base-64 format */
|
|
|
|
|
|
|
|
int create_base64; /* Create base64 encoded output */
|
|
|
|
int create_pem; /* create PEM output */
|
2002-01-10 20:47:20 +01:00
|
|
|
const char *pem_name; /* PEM name to use */
|
2002-01-25 17:41:13 +01:00
|
|
|
|
|
|
|
int include_certs; /* -1 to send all certificates in the chain
|
|
|
|
along with a signature or the number of
|
|
|
|
certificates up the chain (0 = none, 1 = only
|
|
|
|
signer) */
|
2001-11-19 13:42:01 +01:00
|
|
|
};
|
|
|
|
typedef struct server_control_s *CTRL;
|
|
|
|
|
2001-12-11 13:31:04 +01:00
|
|
|
/* data structure used in base64.c */
|
2001-11-27 18:40:09 +01:00
|
|
|
typedef struct base64_context_s *Base64Context;
|
|
|
|
|
2001-11-19 13:42:01 +01:00
|
|
|
|
2001-12-11 13:31:04 +01:00
|
|
|
struct certlist_s {
|
|
|
|
struct certlist_s *next;
|
|
|
|
KsbaCert cert;
|
|
|
|
};
|
|
|
|
typedef struct certlist_s *CERTLIST;
|
|
|
|
|
2001-11-06 20:14:14 +01:00
|
|
|
/*-- gpgsm.c --*/
|
|
|
|
void gpgsm_exit (int rc);
|
2002-01-25 17:41:13 +01:00
|
|
|
void gpgsm_init_default_ctrl (struct server_control_s *ctrl);
|
2001-11-06 20:14:14 +01:00
|
|
|
|
|
|
|
/*-- server.c --*/
|
|
|
|
void gpgsm_server (void);
|
2001-11-19 13:42:01 +01:00
|
|
|
void gpgsm_status (CTRL ctrl, int no, const char *text);
|
2002-03-12 14:36:29 +01:00
|
|
|
void gpgsm_status2 (CTRL ctrl, int no, ...);
|
2001-11-06 20:14:14 +01:00
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
/*-- fingerprint --*/
|
|
|
|
char *gpgsm_get_fingerprint (KsbaCert cert, int algo, char *array, int *r_len);
|
|
|
|
char *gpgsm_get_fingerprint_string (KsbaCert cert, int algo);
|
2001-11-19 13:42:01 +01:00
|
|
|
char *gpgsm_get_fingerprint_hexstring (KsbaCert cert, int algo);
|
2001-11-24 23:20:38 +01:00
|
|
|
char *gpgsm_get_keygrip (KsbaCert cert, char *array);
|
|
|
|
char *gpgsm_get_keygrip_hexstring (KsbaCert cert);
|
2002-01-11 18:07:51 +01:00
|
|
|
char *gpgsm_get_certid (KsbaCert cert);
|
|
|
|
|
2001-11-24 23:20:38 +01:00
|
|
|
|
2001-11-27 18:40:09 +01:00
|
|
|
/*-- base64.c --*/
|
|
|
|
int gpgsm_create_reader (Base64Context *ctx,
|
|
|
|
CTRL ctrl, FILE *fp, KsbaReader *r_reader);
|
|
|
|
void gpgsm_destroy_reader (Base64Context ctx);
|
|
|
|
int gpgsm_create_writer (Base64Context *ctx,
|
|
|
|
CTRL ctrl, FILE *fp, KsbaWriter *r_writer);
|
2001-11-27 19:38:59 +01:00
|
|
|
int gpgsm_finish_writer (Base64Context ctx);
|
2001-11-27 18:40:09 +01:00
|
|
|
void gpgsm_destroy_writer (Base64Context ctx);
|
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
|
|
|
|
/*-- certdump.c --*/
|
2002-06-04 11:41:59 +02:00
|
|
|
void gpgsm_print_serial (FILE *fp, KsbaConstSexp p);
|
|
|
|
void gpgsm_print_time (FILE *fp, time_t t);
|
|
|
|
void gpgsm_print_name (FILE *fp, const char *string);
|
|
|
|
|
2001-11-16 18:56:23 +01:00
|
|
|
void gpgsm_dump_cert (const char *text, KsbaCert cert);
|
2001-12-20 14:25:08 +01:00
|
|
|
void gpgsm_dump_serial (KsbaConstSexp p);
|
|
|
|
void gpgsm_dump_time (time_t t);
|
2002-01-23 14:40:38 +01:00
|
|
|
void gpgsm_dump_string (const char *string);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2002-06-04 11:41:59 +02:00
|
|
|
|
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
/*-- certcheck.c --*/
|
|
|
|
int gpgsm_check_cert_sig (KsbaCert issuer_cert, KsbaCert cert);
|
2001-12-18 18:37:48 +01:00
|
|
|
int gpgsm_check_cms_signature (KsbaCert cert, KsbaConstSexp sigval,
|
2001-11-16 18:56:23 +01:00
|
|
|
GCRY_MD_HD md, int hash_algo);
|
2001-11-24 15:26:27 +01:00
|
|
|
/* fixme: move create functions to another file */
|
|
|
|
int gpgsm_create_cms_signature (KsbaCert cert, GCRY_MD_HD md, int mdalgo,
|
|
|
|
char **r_sigval);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*-- certpath.c --*/
|
2002-01-25 17:41:13 +01:00
|
|
|
int gpgsm_walk_cert_chain (KsbaCert start, KsbaCert *r_next);
|
2002-02-25 19:18:40 +01:00
|
|
|
int gpgsm_is_root_cert (KsbaCert cert);
|
2002-06-20 12:43:02 +02:00
|
|
|
int gpgsm_validate_path (CTRL ctrl, KsbaCert cert, time_t *r_exptime);
|
2002-01-15 14:02:47 +01:00
|
|
|
int gpgsm_basic_cert_check (KsbaCert cert);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2002-02-25 19:18:40 +01:00
|
|
|
/*-- certlist.c --*/
|
2002-04-12 20:54:34 +02:00
|
|
|
int gpgsm_cert_use_sign_p (KsbaCert cert);
|
|
|
|
int gpgsm_cert_use_encrypt_p (KsbaCert cert);
|
|
|
|
int gpgsm_cert_use_verify_p (KsbaCert cert);
|
|
|
|
int gpgsm_cert_use_decrypt_p (KsbaCert cert);
|
2002-06-20 12:43:02 +02:00
|
|
|
int gpgsm_cert_use_cert_p (KsbaCert cert);
|
|
|
|
int gpgsm_add_to_certlist (CTRL ctrl, const char *name, CERTLIST *listaddr);
|
2001-12-11 13:31:04 +01:00
|
|
|
void gpgsm_release_certlist (CERTLIST list);
|
2002-01-14 13:15:30 +01:00
|
|
|
int gpgsm_find_cert (const char *name, KsbaCert *r_cert);
|
2001-12-11 13:31:04 +01:00
|
|
|
|
2001-11-19 17:17:43 +01:00
|
|
|
/*-- keylist.c --*/
|
2002-01-29 11:05:24 +01:00
|
|
|
void gpgsm_list_keys (CTRL ctrl, STRLIST names, FILE *fp, unsigned int mode);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2001-11-07 18:44:22 +01:00
|
|
|
/*-- import.c --*/
|
2001-11-19 13:42:01 +01:00
|
|
|
int gpgsm_import (CTRL ctrl, int in_fd);
|
2001-11-07 18:44:22 +01:00
|
|
|
|
2002-03-21 15:42:14 +01:00
|
|
|
/*-- export.c --*/
|
|
|
|
void gpgsm_export (CTRL ctrl, STRLIST names, FILE *fp);
|
|
|
|
|
2001-11-16 18:56:23 +01:00
|
|
|
/*-- verify.c --*/
|
2001-12-20 17:51:06 +01:00
|
|
|
int gpgsm_verify (CTRL ctrl, int in_fd, int data_fd, FILE *out_fp);
|
2001-11-16 18:56:23 +01:00
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
/*-- sign.c --*/
|
2002-03-05 16:56:46 +01:00
|
|
|
int gpgsm_get_default_cert (KsbaCert *r_cert);
|
2001-11-23 18:12:37 +01:00
|
|
|
int gpgsm_sign (CTRL ctrl, int data_fd, int detached, FILE *out_fp);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2001-12-06 00:48:01 +01:00
|
|
|
/*-- encrypt.c --*/
|
2001-12-11 13:31:04 +01:00
|
|
|
int gpgsm_encrypt (CTRL ctrl, CERTLIST recplist, int in_fd, FILE *out_fp);
|
2001-12-06 00:48:01 +01:00
|
|
|
|
|
|
|
/*-- decrypt.c --*/
|
|
|
|
int gpgsm_decrypt (CTRL ctrl, int in_fd, FILE *out_fp);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2002-01-10 20:47:20 +01:00
|
|
|
/*-- certreqgen.c --*/
|
|
|
|
int gpgsm_genkey (CTRL ctrl, int in_fd, FILE *out_fp);
|
|
|
|
|
2001-11-25 19:23:06 +01:00
|
|
|
/*-- call-agent.c --*/
|
|
|
|
int gpgsm_agent_pksign (const char *keygrip,
|
|
|
|
unsigned char *digest,
|
|
|
|
size_t digestlen,
|
|
|
|
int digestalgo,
|
|
|
|
char **r_buf, size_t *r_buflen);
|
2001-12-06 21:48:10 +01:00
|
|
|
int gpgsm_agent_pkdecrypt (const char *keygrip,
|
2001-12-18 18:37:48 +01:00
|
|
|
KsbaConstSexp ciphertext,
|
2001-12-06 21:48:10 +01:00
|
|
|
char **r_buf, size_t *r_buflen);
|
2002-01-10 20:47:20 +01:00
|
|
|
int gpgsm_agent_genkey (KsbaConstSexp keyparms, KsbaSexp *r_pubkey);
|
2002-01-15 14:02:47 +01:00
|
|
|
int gpgsm_agent_istrusted (KsbaCert cert);
|
2002-01-29 11:05:24 +01:00
|
|
|
int gpgsm_agent_havekey (const char *hexkeygrip);
|
2002-02-19 18:39:05 +01:00
|
|
|
int gpgsm_agent_marktrusted (KsbaCert cert);
|
2002-03-06 15:16:37 +01:00
|
|
|
int gpgsm_agent_learn (void);
|
2001-12-06 21:48:10 +01:00
|
|
|
|
2002-01-11 18:07:51 +01:00
|
|
|
/*-- call-dirmngr.c --*/
|
|
|
|
int gpgsm_dirmngr_isvalid (KsbaCert cert);
|
2002-06-12 16:35:41 +02:00
|
|
|
int gpgsm_dirmngr_lookup (CTRL ctrl, STRLIST names,
|
2002-05-21 21:20:40 +02:00
|
|
|
void (*cb)(void*, KsbaCert), void *cb_value);
|
2002-01-11 18:07:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2001-11-25 19:23:06 +01:00
|
|
|
#endif /*GPGSM_H*/
|