2003-08-05 19:11:04 +02:00
|
|
|
/* agent.h - Global definitions for the agent
|
2005-01-26 23:20:21 +01:00
|
|
|
* Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
|
2003-08-05 19:11:04 +02:00
|
|
|
*
|
|
|
|
* 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
|
2006-06-20 19:21:37 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
|
|
* USA.
|
2003-08-05 19:11:04 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AGENT_H
|
|
|
|
#define AGENT_H
|
|
|
|
|
|
|
|
#ifdef GPG_ERR_SOURCE_DEFAULT
|
|
|
|
#error GPG_ERR_SOURCE_DEFAULT already defined
|
|
|
|
#endif
|
|
|
|
#define GPG_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_GPGAGENT
|
|
|
|
#include <gpg-error.h>
|
2004-12-18 11:22:10 +01:00
|
|
|
#define map_assuan_err(a) \
|
|
|
|
map_assuan_err_with_source (GPG_ERR_SOURCE_DEFAULT, (a))
|
2003-08-05 19:11:04 +02:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <gcrypt.h>
|
|
|
|
#include "../common/util.h"
|
|
|
|
#include "../common/errors.h"
|
2004-12-20 09:32:56 +01:00
|
|
|
#include "membuf.h"
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/* Convenience function to be used instead of returning the old
|
|
|
|
GNUPG_Out_Of_Core. */
|
2005-05-31 22:03:04 +02:00
|
|
|
static inline gpg_error_t
|
2003-08-05 19:11:04 +02:00
|
|
|
out_of_core (void)
|
|
|
|
{
|
|
|
|
return gpg_error (gpg_err_code_from_errno (errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_DIGEST_LEN 24
|
|
|
|
|
|
|
|
/* A large struct name "opt" to keep global flags */
|
|
|
|
struct {
|
2005-02-03 18:40:02 +01:00
|
|
|
unsigned int debug; /* Debug flags (DBG_foo_VALUE) */
|
|
|
|
int verbose; /* Verbosity level */
|
|
|
|
int quiet; /* Be as quiet as possible */
|
|
|
|
int dry_run; /* Don't change any persistent data */
|
|
|
|
int batch; /* Batch mode */
|
|
|
|
const char *homedir; /* Configuration directory name */
|
2005-02-23 22:06:32 +01:00
|
|
|
|
2006-02-09 19:29:31 +01:00
|
|
|
/* Environment setting gathered at program start or changed using the
|
2005-06-03 15:57:24 +02:00
|
|
|
Assuan command UPDATESTARTUPTTY. */
|
|
|
|
char *startup_display;
|
|
|
|
char *startup_ttyname;
|
|
|
|
char *startup_ttytype;
|
|
|
|
char *startup_lc_ctype;
|
|
|
|
char *startup_lc_messages;
|
2005-02-23 22:06:32 +01:00
|
|
|
|
|
|
|
|
2005-02-03 18:40:02 +01:00
|
|
|
const char *pinentry_program; /* Filename of the program to start as
|
|
|
|
pinentry. */
|
|
|
|
const char *scdaemon_program; /* Filename of the program to handle
|
|
|
|
smartcard tasks. */
|
2005-04-20 21:19:24 +02:00
|
|
|
int disable_scdaemon; /* Never use the SCdaemon. */
|
2005-02-03 18:40:02 +01:00
|
|
|
int no_grab; /* Don't let the pinentry grab the keyboard */
|
2005-06-07 21:09:18 +02:00
|
|
|
|
|
|
|
/* The default and maximum TTL of cache entries. */
|
2005-06-16 10:12:03 +02:00
|
|
|
unsigned long def_cache_ttl; /* Default. */
|
|
|
|
unsigned long def_cache_ttl_ssh; /* for SSH. */
|
|
|
|
unsigned long max_cache_ttl; /* Default. */
|
|
|
|
unsigned long max_cache_ttl_ssh; /* for SSH. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2005-06-07 21:09:18 +02:00
|
|
|
|
2005-02-03 18:40:02 +01:00
|
|
|
int running_detached; /* We are running detached from the tty. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
int ignore_cache_for_signing;
|
2004-05-03 15:37:38 +02:00
|
|
|
int allow_mark_trusted;
|
2004-12-21 20:05:15 +01:00
|
|
|
int allow_preset_passphrase;
|
2005-02-03 18:40:02 +01:00
|
|
|
int keep_tty; /* Don't switch the TTY (for pinentry) on request */
|
|
|
|
int keep_display; /* Don't switch the DISPLAY (for pinentry) on request */
|
|
|
|
int ssh_support; /* Enable ssh-agent emulation. */
|
2003-08-05 19:11:04 +02:00
|
|
|
} opt;
|
|
|
|
|
|
|
|
|
|
|
|
#define DBG_COMMAND_VALUE 1 /* debug commands i/o */
|
|
|
|
#define DBG_MPI_VALUE 2 /* debug mpi details */
|
|
|
|
#define DBG_CRYPTO_VALUE 4 /* debug low level crypto */
|
|
|
|
#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 */
|
|
|
|
#define DBG_ASSUAN_VALUE 1024
|
|
|
|
|
|
|
|
#define DBG_COMMAND (opt.debug & DBG_COMMAND_VALUE)
|
|
|
|
#define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE)
|
|
|
|
#define DBG_MEMORY (opt.debug & DBG_MEMORY_VALUE)
|
|
|
|
#define DBG_CACHE (opt.debug & DBG_CACHE_VALUE)
|
|
|
|
#define DBG_HASHING (opt.debug & DBG_HASHING_VALUE)
|
|
|
|
#define DBG_ASSUAN (opt.debug & DBG_ASSUAN_VALUE)
|
|
|
|
|
|
|
|
struct server_local_s;
|
2005-05-18 12:48:06 +02:00
|
|
|
struct scd_local_s;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2005-05-18 12:48:06 +02:00
|
|
|
/* Collection of data per session (aka connection). */
|
2005-06-16 10:12:03 +02:00
|
|
|
struct server_control_s
|
|
|
|
{
|
2005-05-18 12:48:06 +02:00
|
|
|
/* Private data of the server (command.c). */
|
2003-08-05 19:11:04 +02:00
|
|
|
struct server_local_s *server_local;
|
2005-05-18 12:48:06 +02:00
|
|
|
|
|
|
|
/* Private data of the SCdaemon (call-scd.c). */
|
|
|
|
struct scd_local_s *scd_local;
|
|
|
|
|
2004-01-29 21:17:27 +01:00
|
|
|
int connection_fd; /* -1 or an identifier for the current connection. */
|
2005-05-18 12:48:06 +02:00
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
char *display;
|
|
|
|
char *ttyname;
|
|
|
|
char *ttytype;
|
|
|
|
char *lc_ctype;
|
|
|
|
char *lc_messages;
|
|
|
|
struct {
|
|
|
|
int algo;
|
|
|
|
unsigned char value[MAX_DIGEST_LEN];
|
|
|
|
int valuelen;
|
2004-09-26 23:48:13 +02:00
|
|
|
int raw_value: 1;
|
2003-08-05 19:11:04 +02:00
|
|
|
} digest;
|
2005-06-16 10:12:03 +02:00
|
|
|
unsigned char keygrip[20];
|
2003-08-05 19:11:04 +02:00
|
|
|
int have_keygrip;
|
|
|
|
|
2005-02-25 17:14:55 +01:00
|
|
|
int use_auth_call; /* Hack to send the PKAUTH command instead of the
|
2005-11-28 12:52:25 +01:00
|
|
|
PKSIGN command to the scdaemon. */
|
2003-08-05 19:11:04 +02:00
|
|
|
};
|
|
|
|
typedef struct server_control_s *CTRL;
|
2004-01-29 21:17:27 +01:00
|
|
|
typedef struct server_control_s *ctrl_t;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct pin_entry_info_s {
|
|
|
|
int min_digits; /* min. number of digits required or 0 for freeform entry */
|
|
|
|
int max_digits; /* max. number of allowed digits allowed*/
|
|
|
|
int max_tries;
|
|
|
|
int failed_tries;
|
|
|
|
int (*check_cb)(struct pin_entry_info_s *); /* CB used to check the PIN */
|
|
|
|
void *check_cb_arg; /* optional argument which might be of use in the CB */
|
|
|
|
const char *cb_errtext; /* used by the cb to displaye a specific error */
|
|
|
|
size_t max_length; /* allocated length of the buffer */
|
|
|
|
char pin[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-06-07 21:09:18 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PRIVATE_KEY_UNKNOWN = 0,
|
|
|
|
PRIVATE_KEY_CLEAR = 1,
|
|
|
|
PRIVATE_KEY_PROTECTED = 2,
|
|
|
|
PRIVATE_KEY_SHADOWED = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Values for the cache_mode arguments. */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CACHE_MODE_IGNORE = 0, /* Special mode to by pass the cache. */
|
|
|
|
CACHE_MODE_ANY, /* Any mode except ignore matches. */
|
|
|
|
CACHE_MODE_NORMAL, /* Normal cache (gpg-agent). */
|
|
|
|
CACHE_MODE_USER, /* GET_PASSPHRASE related cache. */
|
|
|
|
CACHE_MODE_SSH /* SSH related cache. */
|
|
|
|
}
|
|
|
|
cache_mode_t;
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- gpg-agent.c --*/
|
2005-02-03 18:40:02 +01:00
|
|
|
void agent_exit (int rc) JNLIB_GCC_A_NR; /* Also implemented in other tools */
|
2003-08-05 19:11:04 +02:00
|
|
|
void agent_init_default_ctrl (struct server_control_s *ctrl);
|
|
|
|
|
|
|
|
/*-- command.c --*/
|
|
|
|
void start_command_handler (int, int);
|
|
|
|
|
2005-01-26 23:20:21 +01:00
|
|
|
/*-- command-ssh.c --*/
|
|
|
|
void start_command_handler_ssh (int);
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
/*-- findkey.c --*/
|
|
|
|
int agent_write_private_key (const unsigned char *grip,
|
|
|
|
const void *buffer, size_t length, int force);
|
2004-02-13 18:06:34 +01:00
|
|
|
gpg_error_t agent_key_from_file (ctrl_t ctrl,
|
|
|
|
const char *desc_text,
|
|
|
|
const unsigned char *grip,
|
2003-08-05 19:11:04 +02:00
|
|
|
unsigned char **shadow_info,
|
2005-06-07 21:09:18 +02:00
|
|
|
cache_mode_t cache_mode,
|
|
|
|
gcry_sexp_t *result);
|
2005-02-23 22:06:32 +01:00
|
|
|
gpg_error_t agent_public_key_from_file (ctrl_t ctrl,
|
|
|
|
const unsigned char *grip,
|
|
|
|
gcry_sexp_t *result);
|
2003-08-05 19:11:04 +02:00
|
|
|
int agent_key_available (const unsigned char *grip);
|
|
|
|
|
|
|
|
/*-- query.c --*/
|
2004-12-19 18:44:20 +01:00
|
|
|
void initialize_module_query (void);
|
2005-06-07 21:09:18 +02:00
|
|
|
void agent_query_dump_state (void);
|
2005-11-28 12:52:25 +01:00
|
|
|
void agent_reset_query (ctrl_t ctrl);
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_askpin (ctrl_t ctrl,
|
2005-05-24 14:37:36 +02:00
|
|
|
const char *desc_text, const char *prompt_text,
|
|
|
|
const char *inital_errtext,
|
2004-02-21 14:05:22 +01:00
|
|
|
struct pin_entry_info_s *pininfo);
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_get_passphrase (ctrl_t ctrl, char **retpass,
|
2003-08-05 19:11:04 +02:00
|
|
|
const char *desc, const char *prompt,
|
|
|
|
const char *errtext);
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_get_confirmation (ctrl_t ctrl, const char *desc, const char *ok,
|
2003-08-05 19:11:04 +02:00
|
|
|
const char *cancel);
|
2005-11-28 12:52:25 +01:00
|
|
|
int agent_popup_message_start (ctrl_t ctrl, const char *desc,
|
|
|
|
const char *ok_btn, const char *cancel_btn);
|
|
|
|
void agent_popup_message_stop (ctrl_t ctrl);
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- cache.c --*/
|
|
|
|
void agent_flush_cache (void);
|
2005-06-07 21:09:18 +02:00
|
|
|
int agent_put_cache (const char *key, cache_mode_t cache_mode,
|
|
|
|
const char *data, int ttl);
|
|
|
|
const char *agent_get_cache (const char *key, cache_mode_t cache_mode,
|
|
|
|
void **cache_id);
|
2003-08-05 19:11:04 +02:00
|
|
|
void agent_unlock_cache_entry (void **cache_id);
|
|
|
|
|
|
|
|
|
|
|
|
/*-- pksign.c --*/
|
2005-06-07 21:09:18 +02:00
|
|
|
int agent_pksign_do (ctrl_t ctrl, const char *desc_text,
|
|
|
|
gcry_sexp_t *signature_sexp,
|
|
|
|
cache_mode_t cache_mode);
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_pksign (ctrl_t ctrl, const char *desc_text,
|
2005-06-07 21:09:18 +02:00
|
|
|
membuf_t *outbuf, cache_mode_t cache_mode);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- pkdecrypt.c --*/
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_pkdecrypt (ctrl_t ctrl, const char *desc_text,
|
|
|
|
const unsigned char *ciphertext, size_t ciphertextlen,
|
2004-12-20 09:32:56 +01:00
|
|
|
membuf_t *outbuf);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- genkey.c --*/
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_genkey (ctrl_t ctrl,
|
2004-12-20 09:32:56 +01:00
|
|
|
const char *keyparam, size_t keyparmlen, membuf_t *outbuf);
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_protect_and_store (ctrl_t ctrl, gcry_sexp_t s_skey);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- protect.c --*/
|
|
|
|
int agent_protect (const unsigned char *plainkey, const char *passphrase,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
int agent_unprotect (const unsigned char *protectedkey, const char *passphrase,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
int agent_private_key_type (const unsigned char *privatekey);
|
2005-02-25 17:14:55 +01:00
|
|
|
unsigned char *make_shadow_info (const char *serialno, const char *idstring);
|
2003-08-05 19:11:04 +02:00
|
|
|
int agent_shadow_key (const unsigned char *pubkey,
|
|
|
|
const unsigned char *shadow_info,
|
|
|
|
unsigned char **result);
|
|
|
|
int agent_get_shadow_info (const unsigned char *shadowkey,
|
|
|
|
unsigned char const **shadow_info);
|
|
|
|
|
|
|
|
|
|
|
|
/*-- trustlist.c --*/
|
|
|
|
int agent_istrusted (const char *fpr);
|
|
|
|
int agent_listtrusted (void *assuan_context);
|
2004-02-13 18:06:34 +01:00
|
|
|
int agent_marktrusted (ctrl_t ctrl, const char *name,
|
|
|
|
const char *fpr, int flag);
|
2004-05-11 21:11:53 +02:00
|
|
|
void agent_trustlist_housekeeping (void);
|
|
|
|
void agent_reload_trustlist (void);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*-- divert-scd.c --*/
|
2004-02-13 18:06:34 +01:00
|
|
|
int divert_pksign (ctrl_t ctrl,
|
2003-08-05 19:11:04 +02:00
|
|
|
const unsigned char *digest, size_t digestlen, int algo,
|
|
|
|
const unsigned char *shadow_info, unsigned char **r_sig);
|
2004-02-13 18:06:34 +01:00
|
|
|
int divert_pkdecrypt (ctrl_t ctrl,
|
2003-08-05 19:11:04 +02:00
|
|
|
const unsigned char *cipher,
|
|
|
|
const unsigned char *shadow_info,
|
|
|
|
char **r_buf, size_t *r_len);
|
2004-02-13 18:06:34 +01:00
|
|
|
int divert_generic_cmd (ctrl_t ctrl,
|
|
|
|
const char *cmdline, void *assuan_context);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*-- call-scd.c --*/
|
2004-12-19 18:44:20 +01:00
|
|
|
void initialize_module_call_scd (void);
|
2005-06-03 15:57:24 +02:00
|
|
|
void agent_scd_dump_state (void);
|
2005-05-21 20:49:00 +02:00
|
|
|
void agent_scd_check_aliveness (void);
|
2004-01-29 21:17:27 +01:00
|
|
|
int agent_reset_scd (ctrl_t ctrl);
|
|
|
|
int agent_card_learn (ctrl_t ctrl,
|
|
|
|
void (*kpinfo_cb)(void*, const char *),
|
2003-08-05 19:11:04 +02:00
|
|
|
void *kpinfo_cb_arg,
|
|
|
|
void (*certinfo_cb)(void*, const char *),
|
|
|
|
void *certinfo_cb_arg,
|
|
|
|
void (*sinfo_cb)(void*, const char *,
|
|
|
|
size_t, const char *),
|
|
|
|
void *sinfo_cb_arg);
|
2004-01-29 21:17:27 +01:00
|
|
|
int agent_card_serialno (ctrl_t ctrl, char **r_serialno);
|
|
|
|
int agent_card_pksign (ctrl_t ctrl,
|
|
|
|
const char *keyid,
|
2003-08-05 19:11:04 +02:00
|
|
|
int (*getpin_cb)(void *, const char *, char*, size_t),
|
|
|
|
void *getpin_cb_arg,
|
|
|
|
const unsigned char *indata, size_t indatalen,
|
2005-06-16 10:12:03 +02:00
|
|
|
unsigned char **r_buf, size_t *r_buflen);
|
2004-01-29 21:17:27 +01:00
|
|
|
int agent_card_pkdecrypt (ctrl_t ctrl,
|
|
|
|
const char *keyid,
|
2003-08-05 19:11:04 +02:00
|
|
|
int (*getpin_cb)(void *, const char *, char*,size_t),
|
|
|
|
void *getpin_cb_arg,
|
|
|
|
const unsigned char *indata, size_t indatalen,
|
|
|
|
char **r_buf, size_t *r_buflen);
|
2004-01-29 21:17:27 +01:00
|
|
|
int agent_card_readcert (ctrl_t ctrl,
|
|
|
|
const char *id, char **r_buf, size_t *r_buflen);
|
|
|
|
int agent_card_readkey (ctrl_t ctrl, const char *id, unsigned char **r_buf);
|
2005-02-24 22:40:48 +01:00
|
|
|
gpg_error_t agent_card_getattr (ctrl_t ctrl, const char *name, char **result);
|
2004-01-29 21:17:27 +01:00
|
|
|
int agent_card_scd (ctrl_t ctrl, const char *cmdline,
|
2003-08-05 19:11:04 +02:00
|
|
|
int (*getpin_cb)(void *, const char *, char*, size_t),
|
|
|
|
void *getpin_cb_arg, void *assuan_context);
|
|
|
|
|
|
|
|
|
|
|
|
/*-- learncard.c --*/
|
2004-01-29 21:17:27 +01:00
|
|
|
int agent_handle_learn (ctrl_t ctrl, void *assuan_context);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*AGENT_H*/
|