2003-08-05 19:11:04 +02:00
|
|
|
/* scdaemon.h - Global definitions for the SCdaemon
|
|
|
|
* Copyright (C) 2001, 2002, 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
|
2003-08-05 19:11:04 +02: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/>.
|
2003-08-05 19:11:04 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SCDAEMON_H
|
|
|
|
#define SCDAEMON_H
|
|
|
|
|
|
|
|
#ifdef GPG_ERR_SOURCE_DEFAULT
|
|
|
|
#error GPG_ERR_SOURCE_DEFAULT already defined
|
|
|
|
#endif
|
|
|
|
#define GPG_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_SCD
|
|
|
|
#include <gpg-error.h>
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <gcrypt.h>
|
|
|
|
#include "../common/util.h"
|
2007-10-01 16:48:39 +02:00
|
|
|
#include "../common/sysutils.h"
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2006-10-24 16:45:34 +02:00
|
|
|
/* To convey some special hash algorithms we use algorithm numbers
|
|
|
|
reserved for application use. */
|
2008-09-29 17:02:55 +02:00
|
|
|
#ifndef GCRY_MODULE_ID_USER
|
|
|
|
#define GCRY_MODULE_ID_USER 1024
|
2006-10-24 16:45:34 +02:00
|
|
|
#endif
|
2008-09-29 17:02:55 +02:00
|
|
|
#define MD_USER_TLS_MD5SHA1 (GCRY_MODULE_ID_USER+1)
|
2006-10-24 16:45:34 +02:00
|
|
|
|
|
|
|
/* Maximum length of a digest. */
|
2009-03-26 20:27:04 +01:00
|
|
|
#define MAX_DIGEST_LEN 64
|
2006-10-24 16:45:34 +02:00
|
|
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2005-11-28 12:52:25 +01:00
|
|
|
/* A large struct name "opt" to keep global flags. */
|
2006-09-06 18:35:52 +02:00
|
|
|
struct
|
|
|
|
{
|
2005-11-28 12:52:25 +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. */
|
2003-08-05 19:11:04 +02:00
|
|
|
const char *ctapi_driver; /* Library to access the ctAPI. */
|
2003-08-19 11:36:48 +02:00
|
|
|
const char *pcsc_driver; /* Library to access the PC/SC system. */
|
2004-01-27 17:40:42 +01:00
|
|
|
const char *reader_port; /* NULL or reder port to use. */
|
2003-09-02 21:06:34 +02:00
|
|
|
int disable_ccid; /* Disable the use of the internal CCID driver. */
|
scd: Rename 'keypad' to 'pinpad'.
* NEWS: Mention scd changes.
* agent/divert-scd.c (getpin_cb): Change message.
* agent/call-scd.c (inq_needpin): Change the protocol to
POPUPPINPADPROMPT and DISMISSPINPADPROMPT.
* scd/command.c (pin_cb): Likewise.
* scd/apdu.c (struct reader_table_s): Rename member functions.
(check_pcsc_pinpad, pcsc_pinpad_verify, pcsc_pinpad_modify,
check_ccid_pinpad, ccid_pinpad_operation, apdu_check_pinpad
apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/apdu.h (SW_HOST_NO_PINPAD, apdu_check_pinpad)
(apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/iso7816.h (iso7816_check_pinpad): Rename.
* scd/iso7816.c (map_sw): Use SW_HOST_NO_PINPAD.
(iso7816_check_pinpad): Rename.
(iso7816_verify_kp, iso7816_change_reference_data_kp): Follow
the change.
* scd/ccid-driver.h (CCID_DRIVER_ERR_NO_PINPAD): Rename.
* scd/ccid-driver.c (ccid_transceive_secure): Use it.
* scd/app-dinsig.c (verify_pin): Follow the change.
* scd/app-nks.c (verify_pin): Follow the change.
* scd/app-openpgp.c (check_pinpad_request): Rename.
(parse_login_data, verify_a_chv, verify_chv3, do_change_pin): Follow
the change.
* scd/scdaemon.c (oDisablePinpad, oEnablePinpadVarlen): Rename.
* scd/scdaemon.h (opt): Rename to disable_pinpad,
enable_pinpad_varlen.
* tools/gpgconf-comp.c (gc_options_scdaemon): Rename to
disable-pinpad.
2013-02-07 02:07:51 +01:00
|
|
|
int disable_pinpad; /* Do not use a pinpad. */
|
|
|
|
int enable_pinpad_varlen; /* Use variable length input for pinpad. */
|
2003-12-01 11:54:09 +01:00
|
|
|
int allow_admin; /* Allow the use of admin commands for certain
|
|
|
|
cards. */
|
2005-11-28 12:52:25 +01:00
|
|
|
strlist_t disabled_applications; /* Card applications we do not
|
2004-08-05 11:24:36 +02:00
|
|
|
want to use. */
|
2008-12-05 13:01:01 +01:00
|
|
|
unsigned long card_timeout; /* Disconnect after N seconds of inactivity. */
|
2003-08-05 19:11:04 +02:00
|
|
|
} opt;
|
|
|
|
|
|
|
|
|
|
|
|
#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 */
|
2015-04-06 13:42:17 +02:00
|
|
|
#define DBG_IPC_VALUE 1024
|
2003-08-05 19:11:04 +02:00
|
|
|
#define DBG_CARD_IO_VALUE 2048
|
2011-12-14 10:21:15 +01:00
|
|
|
#define DBG_READER_VALUE 4096 /* Trace reader related functions. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
#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)
|
2015-04-06 13:42:17 +02:00
|
|
|
#define DBG_IPC (opt.debug & DBG_IPC_VALUE)
|
2003-08-05 19:11:04 +02:00
|
|
|
#define DBG_CARD_IO (opt.debug & DBG_CARD_IO_VALUE)
|
2011-12-14 10:21:15 +01:00
|
|
|
#define DBG_READER (opt.debug & DBG_READER_VALUE)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
struct server_local_s;
|
|
|
|
struct app_ctx_s;
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
struct server_control_s
|
2005-06-03 15:57:24 +02:00
|
|
|
{
|
2006-11-20 17:49:41 +01:00
|
|
|
/* Private data used to fire up the connection thread. We use this
|
|
|
|
structure do avoid an extra allocation for just a few bytes. */
|
|
|
|
struct {
|
2007-10-01 16:48:39 +02:00
|
|
|
gnupg_fd_t fd;
|
2006-11-20 17:49:41 +01:00
|
|
|
} thread_startup;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2005-06-03 15:57:24 +02:00
|
|
|
/* Local data of the server; used only in command.c. */
|
2003-08-05 19:11:04 +02:00
|
|
|
struct server_local_s *server_local;
|
2005-06-03 15:57:24 +02:00
|
|
|
|
|
|
|
/* The application context used with this connection or NULL if none
|
|
|
|
associated. Note that this is shared with the other connections:
|
|
|
|
All connections accessing the same reader are using the same
|
|
|
|
application context. */
|
2003-08-05 19:11:04 +02:00
|
|
|
struct app_ctx_s *app_ctx;
|
2005-06-03 15:57:24 +02:00
|
|
|
|
|
|
|
/* Helper to store the value we are going to sign */
|
2011-02-04 12:57:53 +01:00
|
|
|
struct
|
2005-06-03 15:57:24 +02:00
|
|
|
{
|
2011-02-04 12:57:53 +01:00
|
|
|
unsigned char *value;
|
2003-08-05 19:11:04 +02:00
|
|
|
int valuelen;
|
2011-02-04 12:57:53 +01:00
|
|
|
} in_data;
|
2003-08-05 19:11:04 +02:00
|
|
|
};
|
|
|
|
|
2004-01-27 17:40:42 +01:00
|
|
|
typedef struct app_ctx_s *app_t;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- scdaemon.c --*/
|
|
|
|
void scd_exit (int rc);
|
2005-05-18 12:48:06 +02:00
|
|
|
const char *scd_get_socket_name (void);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
/*-- command.c --*/
|
2016-12-29 02:07:43 +01:00
|
|
|
gpg_error_t initialize_module_command (void);
|
2008-10-15 15:23:10 +02:00
|
|
|
int scd_command_handler (ctrl_t, int);
|
2006-10-10 13:11:04 +02:00
|
|
|
void send_status_info (ctrl_t ctrl, const char *keyword, ...)
|
2015-07-26 12:50:16 +02:00
|
|
|
GPGRT_ATTR_SENTINEL(1);
|
2009-03-10 17:10:35 +01:00
|
|
|
void send_status_direct (ctrl_t ctrl, const char *keyword, const char *args);
|
2016-12-30 05:17:49 +01:00
|
|
|
void send_client_notifications (app_t app, int removal);
|
2017-01-27 16:18:11 +01:00
|
|
|
void scd_kick_the_loop (void);
|
2017-02-01 00:58:01 +01:00
|
|
|
int get_active_connection_count (void);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2017-01-31 04:56:11 +01:00
|
|
|
/*-- app.c --*/
|
|
|
|
int scd_update_reader_status_file (void);
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
#endif /*SCDAEMON_H*/
|