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
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://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. */
|
|
|
|
const char *homedir; /* Configuration directory name. */
|
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. */
|
2005-11-28 12:52:25 +01:00
|
|
|
int disable_keypad; /* Do not use a keypad. */
|
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_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 */
|
2011-02-04 12:57:53 +01:00
|
|
|
#define DBG_ASSUAN_VALUE 1024
|
2003-08-05 19:11:04 +02:00
|
|
|
#define DBG_CARD_IO_VALUE 2048
|
|
|
|
|
|
|
|
#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)
|
|
|
|
#define DBG_CARD_IO (opt.debug & DBG_CARD_IO_VALUE)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
/* Slot of the open reader or -1 if not open. */
|
2011-02-04 12:57:53 +01:00
|
|
|
int reader_slot;
|
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 --*/
|
2007-06-14 19:05:07 +02:00
|
|
|
void 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, ...)
|
|
|
|
GNUPG_GCC_A_SENTINEL(1);
|
2009-03-10 17:10:35 +01:00
|
|
|
void send_status_direct (ctrl_t ctrl, const char *keyword, const char *args);
|
2004-04-20 16:17:10 +02:00
|
|
|
void scd_update_reader_status_file (void);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*SCDAEMON_H*/
|