Imported Upstream version 2.0.26
[platform/upstream/gpg2.git] / scd / scdaemon.h
1 /* scdaemon.h - Global definitions for the SCdaemon
2  *      Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
3  *
4  * This file is part of GnuPG.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 #ifndef SCDAEMON_H
21 #define SCDAEMON_H
22
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>
28
29 #include <time.h>
30 #include <gcrypt.h>
31 #include "../common/util.h"
32 #include "../common/sysutils.h"
33
34 /* To convey some special hash algorithms we use algorithm numbers
35    reserved for application use. */
36 #ifndef GCRY_MODULE_ID_USER
37 #define GCRY_MODULE_ID_USER 1024
38 #endif
39 #define MD_USER_TLS_MD5SHA1 (GCRY_MODULE_ID_USER+1)
40
41 /* Maximum length of a digest.  */
42 #define MAX_DIGEST_LEN 64
43
44
45
46 /* A large struct name "opt" to keep global flags. */
47 struct
48 {
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_pinpad;  /* Do not use a pinpad. */
60   int enable_pinpad_varlen;  /* Use variable length input for pinpad. */
61   int allow_admin;     /* Allow the use of admin commands for certain
62                           cards. */
63   strlist_t disabled_applications;  /* Card applications we do not
64                                        want to use. */
65   unsigned long card_timeout; /* Disconnect after N seconds of inactivity.  */
66 } opt;
67
68
69 #define DBG_COMMAND_VALUE 1     /* debug commands i/o */
70 #define DBG_MPI_VALUE     2     /* debug mpi details */
71 #define DBG_CRYPTO_VALUE  4     /* debug low level crypto */
72 #define DBG_MEMORY_VALUE  32    /* debug memory allocation stuff */
73 #define DBG_CACHE_VALUE   64    /* debug the caching */
74 #define DBG_MEMSTAT_VALUE 128   /* show memory statistics */
75 #define DBG_HASHING_VALUE 512   /* debug hashing operations */
76 #define DBG_ASSUAN_VALUE 1024   
77 #define DBG_CARD_IO_VALUE 2048
78
79 #define DBG_COMMAND (opt.debug & DBG_COMMAND_VALUE)
80 #define DBG_CRYPTO  (opt.debug & DBG_CRYPTO_VALUE)
81 #define DBG_MEMORY  (opt.debug & DBG_MEMORY_VALUE)
82 #define DBG_CACHE   (opt.debug & DBG_CACHE_VALUE)
83 #define DBG_HASHING (opt.debug & DBG_HASHING_VALUE)
84 #define DBG_ASSUAN  (opt.debug & DBG_ASSUAN_VALUE)
85 #define DBG_CARD_IO (opt.debug & DBG_CARD_IO_VALUE)
86
87 struct server_local_s;
88 struct app_ctx_s;
89
90 struct server_control_s 
91 {
92   /* Private data used to fire up the connection thread.  We use this
93      structure do avoid an extra allocation for just a few bytes. */
94   struct {
95     gnupg_fd_t fd;
96   } thread_startup;
97   
98   /* Local data of the server; used only in command.c. */
99   struct server_local_s *server_local;
100
101   /* Slot of the open reader or -1 if not open. */
102   int reader_slot; 
103
104   /* The application context used with this connection or NULL if none
105      associated.  Note that this is shared with the other connections:
106      All connections accessing the same reader are using the same
107      application context. */
108   struct app_ctx_s *app_ctx;
109
110   /* Helper to store the value we are going to sign */
111   struct 
112   {
113     unsigned char *value;  
114     int valuelen;
115   } in_data;  
116 };
117
118 typedef struct app_ctx_s *app_t;
119
120 /*-- scdaemon.c --*/
121 void scd_exit (int rc);
122 const char *scd_get_socket_name (void);
123
124 /*-- command.c --*/
125 void initialize_module_command (void);
126 int  scd_command_handler (ctrl_t, int);
127 void send_status_info (ctrl_t ctrl, const char *keyword, ...)
128      GNUPG_GCC_A_SENTINEL(1);
129 void send_status_direct (ctrl_t ctrl, const char *keyword, const char *args);
130 void scd_update_reader_status_file (void);
131
132
133 #endif /*SCDAEMON_H*/