2008-02-09 Marcus Brinkmann <marcus@g10code.de>
[gnupg.git] / scd / scdaemon.h
blobbfc9f358e26e65644d54c48b60f08bac9304969b
1 /* scdaemon.h - Global definitions for the SCdaemon
2 * Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef SCDAEMON_H
21 #define SCDAEMON_H
23 #ifdef GPG_ERR_SOURCE_DEFAULT
24 #error GPG_ERR_SOURCE_DEFAULT already defined
25 #endif
26 #define GPG_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_SCD
27 #include <gpg-error.h>
29 #include <time.h>
30 #include <gcrypt.h>
31 #include "../common/util.h"
32 #include "../common/sysutils.h"
34 /* To convey some special hash algorithms we use algorithm numbers
35 reserved for application use. */
36 #ifndef GCRY_MD_USER
37 #define GCRY_MD_USER 1024
38 #endif
39 #define GCRY_MD_USER_TLS_MD5SHA1 (GCRY_MD_USER+1)
41 /* Maximum length of a digest. */
42 #define MAX_DIGEST_LEN 36
46 /* A large struct name "opt" to keep global flags. */
47 struct
49 unsigned int debug; /* Debug flags (DBG_foo_VALUE). */
50 int verbose; /* Verbosity level. */
51 int quiet; /* Be as quiet as possible. */
52 int dry_run; /* Don't change any persistent data. */
53 int batch; /* Batch mode. */
54 const char *homedir; /* Configuration directory name. */
55 const char *ctapi_driver; /* Library to access the ctAPI. */
56 const char *pcsc_driver; /* Library to access the PC/SC system. */
57 const char *reader_port; /* NULL or reder port to use. */
58 int disable_ccid; /* Disable the use of the internal CCID driver. */
59 int disable_keypad; /* Do not use a keypad. */
60 int allow_admin; /* Allow the use of admin commands for certain
61 cards. */
62 strlist_t disabled_applications; /* Card applications we do not
63 want to use. */
64 } opt;
67 #define DBG_COMMAND_VALUE 1 /* debug commands i/o */
68 #define DBG_MPI_VALUE 2 /* debug mpi details */
69 #define DBG_CRYPTO_VALUE 4 /* debug low level crypto */
70 #define DBG_MEMORY_VALUE 32 /* debug memory allocation stuff */
71 #define DBG_CACHE_VALUE 64 /* debug the caching */
72 #define DBG_MEMSTAT_VALUE 128 /* show memory statistics */
73 #define DBG_HASHING_VALUE 512 /* debug hashing operations */
74 #define DBG_ASSUAN_VALUE 1024
75 #define DBG_CARD_IO_VALUE 2048
77 #define DBG_COMMAND (opt.debug & DBG_COMMAND_VALUE)
78 #define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE)
79 #define DBG_MEMORY (opt.debug & DBG_MEMORY_VALUE)
80 #define DBG_CACHE (opt.debug & DBG_CACHE_VALUE)
81 #define DBG_HASHING (opt.debug & DBG_HASHING_VALUE)
82 #define DBG_ASSUAN (opt.debug & DBG_ASSUAN_VALUE)
83 #define DBG_CARD_IO (opt.debug & DBG_CARD_IO_VALUE)
85 struct server_local_s;
86 struct app_ctx_s;
88 struct server_control_s
90 /* Private data used to fire up the connection thread. We use this
91 structure do avoid an extra allocation for just a few bytes. */
92 struct {
93 gnupg_fd_t fd;
94 } thread_startup;
96 /* Local data of the server; used only in command.c. */
97 struct server_local_s *server_local;
99 /* Slot of the open reader or -1 if not open. */
100 int reader_slot;
102 /* The application context used with this connection or NULL if none
103 associated. Note that this is shared with the other connections:
104 All connections accessing the same reader are using the same
105 application context. */
106 struct app_ctx_s *app_ctx;
108 /* Helper to store the value we are going to sign */
109 struct
111 unsigned char *value;
112 int valuelen;
113 } in_data;
116 typedef struct app_ctx_s *app_t;
118 /*-- scdaemon.c --*/
119 void scd_exit (int rc);
120 const char *scd_get_socket_name (void);
122 /*-- command.c --*/
123 void initialize_module_command (void);
124 void scd_command_handler (ctrl_t, int);
125 void send_status_info (ctrl_t ctrl, const char *keyword, ...)
126 GNUPG_GCC_A_SENTINEL(1);
127 void scd_update_reader_status_file (void);
130 #endif /*SCDAEMON_H*/