chiark / gitweb /
gpg: Fix searching for mail addresses in keyrings.
[gnupg2.git] / scd / scdaemon.c
1 /* scdaemon.c  -  The GnuPG Smartcard Daemon
2  * Copyright (C) 2001-2002, 2004-2005, 2007-2009 Free Software Foundation, Inc.
3  * Copyright (C) 2001-2002, 2004-2005, 2007-2014 Werner Koch
4  *
5  * This file is part of GnuPG.
6  *
7  * GnuPG is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * GnuPG is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, see <https://www.gnu.org/licenses/>.
19  */
20
21 #include <config.h>
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <stddef.h>
26 #include <stdarg.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <assert.h>
30 #include <time.h>
31 #include <fcntl.h>
32 #ifndef HAVE_W32_SYSTEM
33 #include <sys/socket.h>
34 #include <sys/un.h>
35 #endif /*HAVE_W32_SYSTEM*/
36 #include <unistd.h>
37 #include <signal.h>
38 #include <npth.h>
39
40 #define GNUPG_COMMON_NEED_AFLOCAL
41 #include "scdaemon.h"
42 #include <ksba.h>
43 #include <gcrypt.h>
44
45 #include <assuan.h> /* malloc hooks */
46
47 #include "i18n.h"
48 #include "sysutils.h"
49 #include "app-common.h"
50 #include "iso7816.h"
51 #include "apdu.h"
52 #include "ccid-driver.h"
53 #include "gc-opt-flags.h"
54 #include "asshelp.h"
55 #include "../common/init.h"
56
57 #ifndef ENAMETOOLONG
58 # define ENAMETOOLONG EINVAL
59 #endif
60
61 enum cmd_and_opt_values
62 { aNull = 0,
63   oCsh            = 'c',
64   oQuiet          = 'q',
65   oSh             = 's',
66   oVerbose        = 'v',
67
68   oNoVerbose = 500,
69   aGPGConfList,
70   aGPGConfTest,
71   oOptions,
72   oDebug,
73   oDebugAll,
74   oDebugLevel,
75   oDebugWait,
76   oDebugAllowCoreDump,
77   oDebugCCIDDriver,
78   oDebugLogTid,
79   oDebugAssuanLogCats,
80   oNoGreeting,
81   oNoOptions,
82   oHomedir,
83   oNoDetach,
84   oNoGrab,
85   oLogFile,
86   oServer,
87   oMultiServer,
88   oDaemon,
89   oBatch,
90   oReaderPort,
91   oCardTimeout,
92   octapiDriver,
93   opcscDriver,
94   oDisableCCID,
95   oDisableOpenSC,
96   oDisablePinpad,
97   oAllowAdmin,
98   oDenyAdmin,
99   oDisableApplication,
100   oEnablePinpadVarlen,
101   oDebugDisableTicker
102 };
103
104
105
106 static ARGPARSE_OPTS opts[] = {
107   ARGPARSE_c (aGPGConfList, "gpgconf-list", "@"),
108   ARGPARSE_c (aGPGConfTest, "gpgconf-test", "@"),
109
110   ARGPARSE_group (301, N_("@Options:\n ")),
111
112   ARGPARSE_s_n (oServer,"server", N_("run in server mode (foreground)")),
113   ARGPARSE_s_n (oMultiServer, "multi-server",
114                 N_("run in multi server mode (foreground)")),
115   ARGPARSE_s_n (oDaemon, "daemon", N_("run in daemon mode (background)")),
116   ARGPARSE_s_n (oVerbose, "verbose", N_("verbose")),
117   ARGPARSE_s_n (oQuiet, "quiet", N_("be somewhat more quiet")),
118   ARGPARSE_s_n (oSh,    "sh", N_("sh-style command output")),
119   ARGPARSE_s_n (oCsh,   "csh", N_("csh-style command output")),
120   ARGPARSE_s_s (oOptions, "options", N_("|FILE|read options from FILE")),
121   ARGPARSE_s_s (oDebug, "debug", "@"),
122   ARGPARSE_s_n (oDebugAll, "debug-all", "@"),
123   ARGPARSE_s_s (oDebugLevel, "debug-level" ,
124                 N_("|LEVEL|set the debugging level to LEVEL")),
125   ARGPARSE_s_i (oDebugWait, "debug-wait", "@"),
126   ARGPARSE_s_n (oDebugAllowCoreDump, "debug-allow-core-dump", "@"),
127   ARGPARSE_s_n (oDebugCCIDDriver, "debug-ccid-driver", "@"),
128   ARGPARSE_s_n (oDebugDisableTicker, "debug-disable-ticker", "@"),
129   ARGPARSE_s_n (oDebugLogTid, "debug-log-tid", "@"),
130   ARGPARSE_p_u (oDebugAssuanLogCats, "debug-assuan-log-cats", "@"),
131   ARGPARSE_s_n (oNoDetach, "no-detach", N_("do not detach from the console")),
132   ARGPARSE_s_s (oLogFile,  "log-file", N_("|FILE|write a log to FILE")),
133   ARGPARSE_s_s (oReaderPort, "reader-port",
134                 N_("|N|connect to reader at port N")),
135   ARGPARSE_s_s (octapiDriver, "ctapi-driver",
136                 N_("|NAME|use NAME as ct-API driver")),
137   ARGPARSE_s_s (opcscDriver, "pcsc-driver",
138                 N_("|NAME|use NAME as PC/SC driver")),
139   ARGPARSE_s_n (oDisableCCID, "disable-ccid",
140 #ifdef HAVE_LIBUSB
141                                     N_("do not use the internal CCID driver")
142 #else
143                                     "@"
144 #endif
145                 /* end --disable-ccid */),
146   ARGPARSE_s_u (oCardTimeout, "card-timeout",
147                 N_("|N|disconnect the card after N seconds of inactivity")),
148
149   ARGPARSE_s_n (oDisablePinpad, "disable-pinpad",
150                 N_("do not use a reader's pinpad")),
151   ARGPARSE_ignore (300, "disable-keypad"),
152
153   ARGPARSE_s_n (oAllowAdmin, "allow-admin", "@"),
154   ARGPARSE_s_n (oDenyAdmin, "deny-admin",
155                 N_("deny the use of admin card commands")),
156   ARGPARSE_s_s (oDisableApplication, "disable-application", "@"),
157   ARGPARSE_s_n (oEnablePinpadVarlen, "enable-pinpad-varlen",
158                 N_("use variable length input for pinpad")),
159   ARGPARSE_s_s (oHomedir,    "homedir",      "@"),
160
161   ARGPARSE_end ()
162 };
163
164
165 /* The list of supported debug flags.  */
166 static struct debug_flags_s debug_flags [] =
167   {
168     { DBG_MPI_VALUE    , "mpi"     },
169     { DBG_CRYPTO_VALUE , "crypto"  },
170     { DBG_MEMORY_VALUE , "memory"  },
171     { DBG_CACHE_VALUE  , "cache"   },
172     { DBG_MEMSTAT_VALUE, "memstat" },
173     { DBG_HASHING_VALUE, "hashing" },
174     { DBG_IPC_VALUE    , "ipc"     },
175     { DBG_CARD_IO_VALUE, "cardio"  },
176     { DBG_READER_VALUE , "reader"  },
177     { 0, NULL }
178   };
179
180
181 /* The card driver we use by default for PC/SC.  */
182 #if defined(HAVE_W32_SYSTEM) || defined(__CYGWIN__)
183 #define DEFAULT_PCSC_DRIVER "winscard.dll"
184 #elif defined(__APPLE__)
185 #define DEFAULT_PCSC_DRIVER "/System/Library/Frameworks/PCSC.framework/PCSC"
186 #elif defined(__GLIBC__)
187 #define DEFAULT_PCSC_DRIVER "libpcsclite.so.1"
188 #else
189 #define DEFAULT_PCSC_DRIVER "libpcsclite.so"
190 #endif
191
192 /* The timer tick used for housekeeping stuff.  We poll every 500ms to
193    let the user immediately know a status change.
194
195    This is not too good for power saving but given that there is no
196    easy way to block on card status changes it is the best we can do.
197    For PC/SC we could in theory use an extra thread to wait for status
198    changes but that requires a native thread because there is no way
199    to make the underlying PC/SC card change function block using a Npth
200    mechanism.  Given that a native thread could only be used under W32
201    we don't do that at all.  */
202 #define TIMERTICK_INTERVAL_SEC     (0)
203 #define TIMERTICK_INTERVAL_USEC    (500000)
204
205 /* Flag to indicate that a shutdown was requested. */
206 static int shutdown_pending;
207
208 /* It is possible that we are currently running under setuid permissions */
209 static int maybe_setuid = 1;
210
211 /* Flag telling whether we are running as a pipe server.  */
212 static int pipe_server;
213
214 /* Name of the communication socket */
215 static char *socket_name;
216 /* Name of the redirected socket or NULL.  */
217 static char *redir_socket_name;
218
219 /* We need to keep track of the server's nonces (these are dummies for
220    POSIX systems). */
221 static assuan_sock_nonce_t socket_nonce;
222
223 /* Debug flag to disable the ticker.  The ticker is in fact not
224    disabled but it won't perform any ticker specific actions. */
225 static int ticker_disabled;
226
227
228 \f
229 static char *create_socket_name (char *standard_name);
230 static gnupg_fd_t create_server_socket (const char *name,
231                                         char **r_redir_name,
232                                         assuan_sock_nonce_t *nonce);
233
234 static void *start_connection_thread (void *arg);
235 static void handle_connections (int listen_fd);
236
237 /* Pth wrapper function definitions. */
238 ASSUAN_SYSTEM_NPTH_IMPL;
239
240 static int active_connections;
241
242 \f
243 static char *
244 make_libversion (const char *libname, const char *(*getfnc)(const char*))
245 {
246   const char *s;
247   char *result;
248
249   if (maybe_setuid)
250     {
251       gcry_control (GCRYCTL_INIT_SECMEM, 0, 0);  /* Drop setuid. */
252       maybe_setuid = 0;
253     }
254   s = getfnc (NULL);
255   result = xmalloc (strlen (libname) + 1 + strlen (s) + 1);
256   strcpy (stpcpy (stpcpy (result, libname), " "), s);
257   return result;
258 }
259
260
261 static const char *
262 my_strusage (int level)
263 {
264   static char *ver_gcry, *ver_ksba;
265   const char *p;
266
267   switch (level)
268     {
269     case 11: p = "@SCDAEMON@ (@GNUPG@)";
270       break;
271     case 13: p = VERSION; break;
272     case 17: p = PRINTABLE_OS_NAME; break;
273     case 19: p = _("Please report bugs to <@EMAIL@>.\n"); break;
274
275     case 20:
276       if (!ver_gcry)
277         ver_gcry = make_libversion ("libgcrypt", gcry_check_version);
278       p = ver_gcry;
279       break;
280     case 21:
281       if (!ver_ksba)
282         ver_ksba = make_libversion ("libksba", ksba_check_version);
283       p = ver_ksba;
284       break;
285     case 1:
286     case 40: p =  _("Usage: @SCDAEMON@ [options] (-h for help)");
287       break;
288     case 41: p =  _("Syntax: scdaemon [options] [command [args]]\n"
289                     "Smartcard daemon for @GNUPG@\n");
290     break;
291
292     default: p = NULL;
293     }
294   return p;
295 }
296
297
298 static int
299 tid_log_callback (unsigned long *rvalue)
300 {
301   int len = sizeof (*rvalue);
302   npth_t thread;
303
304   thread = npth_self ();
305   if (sizeof (thread) < len)
306     len = sizeof (thread);
307   memcpy (rvalue, &thread, len);
308
309   return 2; /* Use use hex representation.  */
310 }
311
312
313 /* Setup the debugging.  With a LEVEL of NULL only the active debug
314    flags are propagated to the subsystems.  With LEVEL set, a specific
315    set of debug flags is set; thus overriding all flags already
316    set. */
317 static void
318 set_debug (const char *level)
319 {
320   int numok = (level && digitp (level));
321   int numlvl = numok? atoi (level) : 0;
322
323   if (!level)
324     ;
325   else if (!strcmp (level, "none") || (numok && numlvl < 1))
326     opt.debug = 0;
327   else if (!strcmp (level, "basic") || (numok && numlvl <= 2))
328     opt.debug = DBG_IPC_VALUE;
329   else if (!strcmp (level, "advanced") || (numok && numlvl <= 5))
330     opt.debug = DBG_IPC_VALUE;
331   else if (!strcmp (level, "expert") || (numok && numlvl <= 8))
332     opt.debug = (DBG_IPC_VALUE|DBG_CACHE_VALUE|DBG_CARD_IO_VALUE);
333   else if (!strcmp (level, "guru") || numok)
334     {
335       opt.debug = ~0;
336       /* Unless the "guru" string has been used we don't want to allow
337          hashing debugging.  The rationale is that people tend to
338          select the highest debug value and would then clutter their
339          disk with debug files which may reveal confidential data.  */
340       if (numok)
341         opt.debug &= ~(DBG_HASHING_VALUE);
342     }
343   else
344     {
345       log_error (_("invalid debug-level '%s' given\n"), level);
346       scd_exit(2);
347     }
348
349
350   if (opt.debug && !opt.verbose)
351     opt.verbose = 1;
352   if (opt.debug && opt.quiet)
353     opt.quiet = 0;
354
355   if (opt.debug & DBG_MPI_VALUE)
356     gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 2);
357   if (opt.debug & DBG_CRYPTO_VALUE )
358     gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1);
359   gcry_control (GCRYCTL_SET_VERBOSITY, (int)opt.verbose);
360
361   if (opt.debug)
362     parse_debug_flag (NULL, &opt.debug, debug_flags);
363 }
364
365
366
367 static void
368 cleanup (void)
369 {
370   if (socket_name && *socket_name)
371     {
372       char *name;
373
374       name = redir_socket_name? redir_socket_name : socket_name;
375
376       gnupg_remove (name);
377       *socket_name = 0;
378     }
379 }
380
381
382
383 int
384 main (int argc, char **argv )
385 {
386   ARGPARSE_ARGS pargs;
387   int orig_argc;
388   char **orig_argv;
389   FILE *configfp = NULL;
390   char *configname = NULL;
391   const char *shell;
392   unsigned int configlineno;
393   int parse_debug = 0;
394   const char *debug_level = NULL;
395   int default_config =1;
396   int greeting = 0;
397   int nogreeting = 0;
398   int multi_server = 0;
399   int is_daemon = 0;
400   int nodetach = 0;
401   int csh_style = 0;
402   char *logfile = NULL;
403   int debug_wait = 0;
404   int gpgconf_list = 0;
405   const char *config_filename = NULL;
406   int allow_coredump = 0;
407   struct assuan_malloc_hooks malloc_hooks;
408   int res;
409   npth_t pipecon_handler;
410
411   early_system_init ();
412   set_strusage (my_strusage);
413   gcry_control (GCRYCTL_SUSPEND_SECMEM_WARN);
414   /* Please note that we may running SUID(ROOT), so be very CAREFUL
415      when adding any stuff between here and the call to INIT_SECMEM()
416      somewhere after the option parsing */
417   log_set_prefix ("scdaemon", GPGRT_LOG_WITH_PREFIX | GPGRT_LOG_WITH_PID);
418
419   /* Make sure that our subsystems are ready.  */
420   i18n_init ();
421   init_common_subsystems (&argc, &argv);
422
423   ksba_set_malloc_hooks (gcry_malloc, gcry_realloc, gcry_free);
424
425   malloc_hooks.malloc = gcry_malloc;
426   malloc_hooks.realloc = gcry_realloc;
427   malloc_hooks.free = gcry_free;
428   assuan_set_malloc_hooks (&malloc_hooks);
429   assuan_set_gpg_err_source (GPG_ERR_SOURCE_DEFAULT);
430   assuan_set_system_hooks (ASSUAN_SYSTEM_NPTH);
431   assuan_sock_init ();
432   setup_libassuan_logging (&opt.debug, NULL);
433
434   setup_libgcrypt_logging ();
435   gcry_control (GCRYCTL_USE_SECURE_RNDPOOL);
436
437   disable_core_dumps ();
438
439   /* Set default options. */
440   opt.allow_admin = 1;
441   opt.pcsc_driver = DEFAULT_PCSC_DRIVER;
442
443   shell = getenv ("SHELL");
444   if (shell && strlen (shell) >= 3 && !strcmp (shell+strlen (shell)-3, "csh") )
445     csh_style = 1;
446
447   /* Check whether we have a config file on the commandline */
448   orig_argc = argc;
449   orig_argv = argv;
450   pargs.argc = &argc;
451   pargs.argv = &argv;
452   pargs.flags= 1|(1<<6);  /* do not remove the args, ignore version */
453   while (arg_parse( &pargs, opts))
454     {
455       if (pargs.r_opt == oDebug || pargs.r_opt == oDebugAll)
456         parse_debug++;
457       else if (pargs.r_opt == oOptions)
458         { /* yes there is one, so we do not try the default one, but
459              read the option file when it is encountered at the
460              commandline */
461           default_config = 0;
462         }
463         else if (pargs.r_opt == oNoOptions)
464           default_config = 0; /* --no-options */
465         else if (pargs.r_opt == oHomedir)
466           gnupg_set_homedir (pargs.r.ret_str);
467     }
468
469   /* initialize the secure memory. */
470   gcry_control (GCRYCTL_INIT_SECMEM, 16384, 0);
471   maybe_setuid = 0;
472
473   /*
474      Now we are working under our real uid
475   */
476
477
478   if (default_config)
479     configname = make_filename (gnupg_homedir (), SCDAEMON_NAME EXTSEP_S "conf",
480                                 NULL );
481
482
483   argc = orig_argc;
484   argv = orig_argv;
485   pargs.argc = &argc;
486   pargs.argv = &argv;
487   pargs.flags=  1;  /* do not remove the args */
488  next_pass:
489   if (configname)
490     {
491       configlineno = 0;
492       configfp = fopen (configname, "r");
493       if (!configfp)
494         {
495           if (default_config)
496             {
497               if( parse_debug )
498                 log_info (_("Note: no default option file '%s'\n"),
499                           configname );
500             }
501           else
502             {
503               log_error (_("option file '%s': %s\n"),
504                          configname, strerror(errno) );
505               exit(2);
506             }
507           xfree (configname);
508           configname = NULL;
509         }
510       if (parse_debug && configname )
511         log_info (_("reading options from '%s'\n"), configname );
512       default_config = 0;
513     }
514
515   while (optfile_parse( configfp, configname, &configlineno, &pargs, opts) )
516     {
517       switch (pargs.r_opt)
518         {
519         case aGPGConfList: gpgconf_list = 1; break;
520         case aGPGConfTest: gpgconf_list = 2; break;
521         case oQuiet: opt.quiet = 1; break;
522         case oVerbose: opt.verbose++; break;
523         case oBatch: opt.batch=1; break;
524
525         case oDebug:
526           if (parse_debug_flag (pargs.r.ret_str, &opt.debug, debug_flags))
527             {
528               pargs.r_opt = ARGPARSE_INVALID_ARG;
529               pargs.err = ARGPARSE_PRINT_ERROR;
530             }
531           break;
532         case oDebugAll: opt.debug = ~0; break;
533         case oDebugLevel: debug_level = pargs.r.ret_str; break;
534         case oDebugWait: debug_wait = pargs.r.ret_int; break;
535         case oDebugAllowCoreDump:
536           enable_core_dumps ();
537           allow_coredump = 1;
538           break;
539         case oDebugCCIDDriver:
540 #ifdef HAVE_LIBUSB
541           ccid_set_debug_level (ccid_set_debug_level (-1)+1);
542 #endif /*HAVE_LIBUSB*/
543           break;
544         case oDebugDisableTicker: ticker_disabled = 1; break;
545         case oDebugLogTid:
546           log_set_pid_suffix_cb (tid_log_callback);
547           break;
548         case oDebugAssuanLogCats:
549           set_libassuan_log_cats (pargs.r.ret_ulong);
550           break;
551
552         case oOptions:
553           /* config files may not be nested (silently ignore them) */
554           if (!configfp)
555             {
556                 xfree(configname);
557                 configname = xstrdup(pargs.r.ret_str);
558                 goto next_pass;
559             }
560           break;
561         case oNoGreeting: nogreeting = 1; break;
562         case oNoVerbose: opt.verbose = 0; break;
563         case oNoOptions: break; /* no-options */
564         case oHomedir: gnupg_set_homedir (pargs.r.ret_str); break;
565         case oNoDetach: nodetach = 1; break;
566         case oLogFile: logfile = pargs.r.ret_str; break;
567         case oCsh: csh_style = 1; break;
568         case oSh: csh_style = 0; break;
569         case oServer: pipe_server = 1; break;
570         case oMultiServer: pipe_server = 1; multi_server = 1; break;
571         case oDaemon: is_daemon = 1; break;
572
573         case oReaderPort: opt.reader_port = pargs.r.ret_str; break;
574         case octapiDriver: opt.ctapi_driver = pargs.r.ret_str; break;
575         case opcscDriver: opt.pcsc_driver = pargs.r.ret_str; break;
576         case oDisableCCID: opt.disable_ccid = 1; break;
577         case oDisableOpenSC: break;
578
579         case oDisablePinpad: opt.disable_pinpad = 1; break;
580
581         case oAllowAdmin: /* Dummy because allow is now the default.  */
582           break;
583         case oDenyAdmin: opt.allow_admin = 0; break;
584
585         case oCardTimeout: opt.card_timeout = pargs.r.ret_ulong; break;
586
587         case oDisableApplication:
588           add_to_strlist (&opt.disabled_applications, pargs.r.ret_str);
589           break;
590
591         case oEnablePinpadVarlen: opt.enable_pinpad_varlen = 1; break;
592
593         default:
594           pargs.err = configfp? ARGPARSE_PRINT_WARNING:ARGPARSE_PRINT_ERROR;
595           break;
596         }
597     }
598   if (configfp)
599     {
600       fclose( configfp );
601       configfp = NULL;
602       /* Keep a copy of the config name for use by --gpgconf-list. */
603       config_filename = configname;
604       configname = NULL;
605       goto next_pass;
606     }
607   xfree (configname);
608   configname = NULL;
609   if (log_get_errorcount(0))
610     exit(2);
611   if (nogreeting )
612     greeting = 0;
613
614   if (greeting)
615     {
616       es_fprintf (es_stderr, "%s %s; %s\n",
617                   strusage(11), strusage(13), strusage(14) );
618       es_fprintf (es_stderr, "%s\n", strusage(15) );
619     }
620 #ifdef IS_DEVELOPMENT_VERSION
621   log_info ("NOTE: this is a development version!\n");
622 #endif
623
624   /* Print a warning if an argument looks like an option.  */
625   if (!opt.quiet && !(pargs.flags & ARGPARSE_FLAG_STOP_SEEN))
626     {
627       int i;
628
629       for (i=0; i < argc; i++)
630         if (argv[i][0] == '-' && argv[i][1] == '-')
631           log_info (_("Note: '%s' is not considered an option\n"), argv[i]);
632     }
633
634   if (atexit (cleanup))
635     {
636       log_error ("atexit failed\n");
637       cleanup ();
638       exit (1);
639     }
640
641   set_debug (debug_level);
642
643   if (initialize_module_command ())
644     {
645       log_error ("initialization failed\n");
646       cleanup ();
647       exit (1);
648     }
649
650   if (gpgconf_list == 2)
651     scd_exit (0);
652   if (gpgconf_list)
653     {
654       /* List options and default values in the GPG Conf format.  */
655       char *filename = NULL;
656       char *filename_esc;
657
658       if (config_filename)
659         filename = xstrdup (config_filename);
660       else
661         filename = make_filename (gnupg_homedir (),
662                                   SCDAEMON_NAME EXTSEP_S "conf", NULL);
663       filename_esc = percent_escape (filename, NULL);
664
665       es_printf ("%s-%s.conf:%lu:\"%s\n",
666                  GPGCONF_NAME, SCDAEMON_NAME,
667                  GC_OPT_FLAG_DEFAULT, filename_esc);
668       xfree (filename_esc);
669       xfree (filename);
670
671       es_printf ("verbose:%lu:\n"
672                  "quiet:%lu:\n"
673                  "debug-level:%lu:\"none:\n"
674                  "log-file:%lu:\n",
675                  GC_OPT_FLAG_NONE,
676                  GC_OPT_FLAG_NONE,
677                  GC_OPT_FLAG_DEFAULT,
678                  GC_OPT_FLAG_NONE );
679
680       es_printf ("reader-port:%lu:\n", GC_OPT_FLAG_NONE );
681       es_printf ("ctapi-driver:%lu:\n", GC_OPT_FLAG_NONE );
682       es_printf ("pcsc-driver:%lu:\"%s:\n",
683               GC_OPT_FLAG_DEFAULT, DEFAULT_PCSC_DRIVER );
684 #ifdef HAVE_LIBUSB
685       es_printf ("disable-ccid:%lu:\n", GC_OPT_FLAG_NONE );
686 #endif
687       es_printf ("deny-admin:%lu:\n", GC_OPT_FLAG_NONE );
688       es_printf ("disable-pinpad:%lu:\n", GC_OPT_FLAG_NONE );
689       es_printf ("card-timeout:%lu:%d:\n", GC_OPT_FLAG_DEFAULT, 0);
690       es_printf ("enable-pinpad-varlen:%lu:\n", GC_OPT_FLAG_NONE );
691
692       scd_exit (0);
693     }
694
695   /* Now start with logging to a file if this is desired.  */
696   if (logfile)
697     {
698       log_set_file (logfile);
699       log_set_prefix (NULL, GPGRT_LOG_WITH_PREFIX | GPGRT_LOG_WITH_TIME | GPGRT_LOG_WITH_PID);
700     }
701
702   if (debug_wait && pipe_server)
703     {
704       log_debug ("waiting for debugger - my pid is %u .....\n",
705                  (unsigned int)getpid());
706       gnupg_sleep (debug_wait);
707       log_debug ("... okay\n");
708     }
709
710   if (pipe_server)
711     {
712       /* This is the simple pipe based server */
713       ctrl_t ctrl;
714       npth_attr_t tattr;
715       int fd = -1;
716
717 #ifndef HAVE_W32_SYSTEM
718       {
719         struct sigaction sa;
720
721         sa.sa_handler = SIG_IGN;
722         sigemptyset (&sa.sa_mask);
723         sa.sa_flags = 0;
724         sigaction (SIGPIPE, &sa, NULL);
725       }
726 #endif
727
728       npth_init ();
729       gpgrt_set_syscall_clamp (npth_unprotect, npth_protect);
730
731       /* If --debug-allow-core-dump has been given we also need to
732          switch the working directory to a place where we can actually
733          write. */
734       if (allow_coredump)
735         {
736           if (chdir("/tmp"))
737             log_debug ("chdir to '/tmp' failed: %s\n", strerror (errno));
738           else
739             log_debug ("changed working directory to '/tmp'\n");
740         }
741
742       /* In multi server mode we need to listen on an additional
743          socket.  Create that socket now before starting the handler
744          for the pipe connection.  This allows that handler to send
745          back the name of that socket. */
746       if (multi_server)
747         {
748           socket_name = create_socket_name (SCDAEMON_SOCK_NAME);
749           fd = FD2INT(create_server_socket (socket_name,
750                                             &redir_socket_name, &socket_nonce));
751         }
752
753       res = npth_attr_init (&tattr);
754       if (res)
755         {
756           log_error ("error allocating thread attributes: %s\n",
757                      strerror (res));
758           scd_exit (2);
759         }
760       npth_attr_setdetachstate (&tattr, NPTH_CREATE_DETACHED);
761
762       ctrl = xtrycalloc (1, sizeof *ctrl);
763       if ( !ctrl )
764         {
765           log_error ("error allocating connection control data: %s\n",
766                      strerror (errno) );
767           scd_exit (2);
768         }
769       ctrl->thread_startup.fd = GNUPG_INVALID_FD;
770       res = npth_create (&pipecon_handler, &tattr, start_connection_thread, ctrl);
771       if (res)
772         {
773           log_error ("error spawning pipe connection handler: %s\n",
774                      strerror (res) );
775           xfree (ctrl);
776           scd_exit (2);
777         }
778       npth_setname_np (pipecon_handler, "pipe-connection");
779       npth_attr_destroy (&tattr);
780
781       /* We run handle_connection to wait for the shutdown signal and
782          to run the ticker stuff.  */
783       handle_connections (fd);
784       if (fd != -1)
785         close (fd);
786     }
787   else if (!is_daemon)
788     {
789       log_info (_("please use the option '--daemon'"
790                   " to run the program in the background\n"));
791     }
792   else
793     { /* Regular server mode */
794       int fd;
795 #ifndef HAVE_W32_SYSTEM
796       pid_t pid;
797       int i;
798 #endif
799
800       /* Create the socket.  */
801       socket_name = create_socket_name (SCDAEMON_SOCK_NAME);
802       fd = FD2INT (create_server_socket (socket_name,
803                                          &redir_socket_name, &socket_nonce));
804
805
806       fflush (NULL);
807 #ifdef HAVE_W32_SYSTEM
808       (void)csh_style;
809       (void)nodetach;
810 #else
811       pid = fork ();
812       if (pid == (pid_t)-1)
813         {
814           log_fatal ("fork failed: %s\n", strerror (errno) );
815           exit (1);
816         }
817       else if (pid)
818         { /* we are the parent */
819           char *infostr;
820
821           close (fd);
822
823           /* create the info string: <name>:<pid>:<protocol_version> */
824           if (gpgrt_asprintf (&infostr, "SCDAEMON_INFO=%s:%lu:1",
825                               socket_name, (ulong) pid) < 0)
826             {
827               log_error ("out of core\n");
828               kill (pid, SIGTERM);
829               exit (1);
830             }
831           *socket_name = 0; /* don't let cleanup() remove the socket -
832                                the child should do this from now on */
833           if (argc)
834             { /* run the program given on the commandline */
835               if (putenv (infostr))
836                 {
837                   log_error ("failed to set environment: %s\n",
838                              strerror (errno) );
839                   kill (pid, SIGTERM );
840                   exit (1);
841                 }
842               execvp (argv[0], argv);
843               log_error ("failed to run the command: %s\n", strerror (errno));
844               kill (pid, SIGTERM);
845               exit (1);
846             }
847           else
848             {
849               /* Print the environment string, so that the caller can use
850                  shell's eval to set it */
851               if (csh_style)
852                 {
853                   *strchr (infostr, '=') = ' ';
854                   es_printf ( "setenv %s;\n", infostr);
855                 }
856               else
857                 {
858                   es_printf ( "%s; export SCDAEMON_INFO;\n", infostr);
859                 }
860               xfree (infostr);
861               exit (0);
862             }
863           /* NOTREACHED */
864         } /* end parent */
865
866       /* This is the child. */
867
868       npth_init ();
869       gpgrt_set_syscall_clamp (npth_unprotect, npth_protect);
870
871       /* Detach from tty and put process into a new session. */
872       if (!nodetach )
873         {
874           /* Close stdin, stdout and stderr unless it is the log stream. */
875           for (i=0; i <= 2; i++)
876             {
877               if (!log_test_fd (i) && i != fd )
878                 {
879                   if ( !close (i)
880                        && open ("/dev/null", i? O_WRONLY : O_RDONLY) == -1)
881                     {
882                       log_error ("failed to open '%s': %s\n",
883                                  "/dev/null", strerror (errno));
884                       cleanup ();
885                       exit (1);
886                     }
887                 }
888             }
889
890           if (setsid() == -1)
891             {
892               log_error ("setsid() failed: %s\n", strerror(errno) );
893               cleanup ();
894               exit (1);
895             }
896         }
897
898       {
899         struct sigaction sa;
900
901         sa.sa_handler = SIG_IGN;
902         sigemptyset (&sa.sa_mask);
903         sa.sa_flags = 0;
904         sigaction (SIGPIPE, &sa, NULL);
905       }
906
907       if (chdir("/"))
908         {
909           log_error ("chdir to / failed: %s\n", strerror (errno));
910           exit (1);
911         }
912
913 #endif /*!HAVE_W32_SYSTEM*/
914
915       handle_connections (fd);
916
917       close (fd);
918     }
919
920   return 0;
921 }
922
923 void
924 scd_exit (int rc)
925 {
926   apdu_prepare_exit ();
927 #if 0
928 #warning no update_random_seed_file
929   update_random_seed_file();
930 #endif
931 #if 0
932   /* at this time a bit annoying */
933   if (opt.debug & DBG_MEMSTAT_VALUE)
934     {
935       gcry_control( GCRYCTL_DUMP_MEMORY_STATS );
936       gcry_control( GCRYCTL_DUMP_RANDOM_STATS );
937     }
938   if (opt.debug)
939     gcry_control (GCRYCTL_DUMP_SECMEM_STATS );
940 #endif
941   gcry_control (GCRYCTL_TERM_SECMEM );
942   rc = rc? rc : log_get_errorcount(0)? 2 : 0;
943   exit (rc);
944 }
945
946
947 static void
948 scd_init_default_ctrl (ctrl_t ctrl)
949 {
950   (void)ctrl;
951 }
952
953 static void
954 scd_deinit_default_ctrl (ctrl_t ctrl)
955 {
956   if (!ctrl)
957     return;
958   xfree (ctrl->in_data.value);
959   ctrl->in_data.value = NULL;
960   ctrl->in_data.valuelen = 0;
961 }
962
963
964 /* Return the name of the socket to be used to connect to this
965    process.  If no socket is available, return NULL. */
966 const char *
967 scd_get_socket_name ()
968 {
969   if (socket_name && *socket_name)
970     return socket_name;
971   return NULL;
972 }
973
974
975 #ifndef HAVE_W32_SYSTEM
976 static void
977 handle_signal (int signo)
978 {
979   switch (signo)
980     {
981     case SIGHUP:
982       log_info ("SIGHUP received - "
983                 "re-reading configuration and resetting cards\n");
984 /*       reread_configuration (); */
985       break;
986
987     case SIGUSR1:
988       log_info ("SIGUSR1 received - printing internal information:\n");
989       /* Fixme: We need to see how to integrate pth dumping into our
990          logging system.  */
991       /* pth_ctrl (PTH_CTRL_DUMPSTATE, log_get_stream ()); */
992       app_dump_state ();
993       break;
994
995     case SIGUSR2:
996       log_info ("SIGUSR2 received - no action defined\n");
997       break;
998
999     case SIGTERM:
1000       if (!shutdown_pending)
1001         log_info ("SIGTERM received - shutting down ...\n");
1002       else
1003         log_info ("SIGTERM received - still %i running threads\n",
1004                   active_connections);
1005       shutdown_pending++;
1006       if (shutdown_pending > 2)
1007         {
1008           log_info ("shutdown forced\n");
1009           log_info ("%s %s stopped\n", strusage(11), strusage(13) );
1010           cleanup ();
1011           scd_exit (0);
1012         }
1013       break;
1014
1015     case SIGINT:
1016       log_info ("SIGINT received - immediate shutdown\n");
1017       log_info( "%s %s stopped\n", strusage(11), strusage(13));
1018       cleanup ();
1019       scd_exit (0);
1020       break;
1021
1022     default:
1023       log_info ("signal %d received - no action defined\n", signo);
1024     }
1025 }
1026 #endif /*!HAVE_W32_SYSTEM*/
1027
1028
1029 static void
1030 handle_tick (void)
1031 {
1032   if (!ticker_disabled)
1033     scd_update_reader_status_file ();
1034 }
1035
1036
1037 /* Create a name for the socket.  We check for valid characters as
1038    well as against a maximum allowed length for a unix domain socket
1039    is done.  The function terminates the process in case of an error.
1040    Retunrs: Pointer to an allcoated string with the absolute name of
1041    the socket used.  */
1042 static char *
1043 create_socket_name (char *standard_name)
1044 {
1045   char *name;
1046
1047   name = make_filename (gnupg_socketdir (), standard_name, NULL);
1048   if (strchr (name, PATHSEP_C))
1049     {
1050       log_error (("'%s' are not allowed in the socket name\n"), PATHSEP_S);
1051       scd_exit (2);
1052     }
1053   return name;
1054 }
1055
1056
1057
1058 /* Create a Unix domain socket with NAME.  Returns the file descriptor
1059    or terminates the process in case of an error.  If the socket has
1060    been redirected the name of the real socket is stored as a malloced
1061    string at R_REDIR_NAME. */
1062 static gnupg_fd_t
1063 create_server_socket (const char *name, char **r_redir_name,
1064                       assuan_sock_nonce_t *nonce)
1065 {
1066   struct sockaddr *addr;
1067   struct sockaddr_un *unaddr;
1068   socklen_t len;
1069   gnupg_fd_t fd;
1070   int rc;
1071
1072   xfree (*r_redir_name);
1073   *r_redir_name = NULL;
1074
1075   fd = assuan_sock_new (AF_UNIX, SOCK_STREAM, 0);
1076   if (fd == GNUPG_INVALID_FD)
1077     {
1078       log_error (_("can't create socket: %s\n"), strerror (errno));
1079       scd_exit (2);
1080     }
1081
1082   unaddr = xmalloc (sizeof (*unaddr));
1083   addr = (struct sockaddr*)unaddr;
1084
1085   {
1086     int redirected;
1087
1088     if (assuan_sock_set_sockaddr_un (name, addr, &redirected))
1089       {
1090         if (errno == ENAMETOOLONG)
1091           log_error (_("socket name '%s' is too long\n"), name);
1092         else
1093           log_error ("error preparing socket '%s': %s\n",
1094                      name, gpg_strerror (gpg_error_from_syserror ()));
1095         scd_exit (2);
1096       }
1097     if (redirected)
1098       {
1099         *r_redir_name = xstrdup (unaddr->sun_path);
1100         if (opt.verbose)
1101           log_info ("redirecting socket '%s' to '%s'\n", name, *r_redir_name);
1102       }
1103   }
1104
1105   len = SUN_LEN (unaddr);
1106
1107   rc = assuan_sock_bind (fd, addr, len);
1108   if (rc == -1 && errno == EADDRINUSE)
1109     {
1110       gnupg_remove (unaddr->sun_path);
1111       rc = assuan_sock_bind (fd, addr, len);
1112     }
1113   if (rc != -1
1114       && (rc=assuan_sock_get_nonce (addr, len, nonce)))
1115     log_error (_("error getting nonce for the socket\n"));
1116  if (rc == -1)
1117     {
1118       log_error (_("error binding socket to '%s': %s\n"),
1119                  unaddr->sun_path,
1120                  gpg_strerror (gpg_error_from_syserror ()));
1121       assuan_sock_close (fd);
1122       scd_exit (2);
1123     }
1124
1125   if (gnupg_chmod (unaddr->sun_path, "-rwx"))
1126     log_error (_("can't set permissions of '%s': %s\n"),
1127                unaddr->sun_path, strerror (errno));
1128
1129   if (listen (FD2INT(fd), 5 ) == -1)
1130     {
1131       log_error (_("listen() failed: %s\n"),
1132                  gpg_strerror (gpg_error_from_syserror ()));
1133       assuan_sock_close (fd);
1134       scd_exit (2);
1135     }
1136
1137   if (opt.verbose)
1138     log_info (_("listening on socket '%s'\n"), unaddr->sun_path);
1139
1140   return fd;
1141 }
1142
1143
1144
1145 /* This is the standard connection thread's main function.  */
1146 static void *
1147 start_connection_thread (void *arg)
1148 {
1149   ctrl_t ctrl = arg;
1150
1151   if (ctrl->thread_startup.fd != GNUPG_INVALID_FD
1152       && assuan_sock_check_nonce (ctrl->thread_startup.fd, &socket_nonce))
1153     {
1154       log_info (_("error reading nonce on fd %d: %s\n"),
1155                 FD2INT(ctrl->thread_startup.fd), strerror (errno));
1156       assuan_sock_close (ctrl->thread_startup.fd);
1157       xfree (ctrl);
1158       return NULL;
1159     }
1160
1161   scd_init_default_ctrl (ctrl);
1162   if (opt.verbose)
1163     log_info (_("handler for fd %d started\n"),
1164               FD2INT(ctrl->thread_startup.fd));
1165
1166   /* If this is a pipe server, we request a shutdown if the command
1167      handler asked for it.  With the next ticker event and given that
1168      no other connections are running the shutdown will then
1169      happen.  */
1170   if (scd_command_handler (ctrl, FD2INT(ctrl->thread_startup.fd))
1171       && pipe_server)
1172     shutdown_pending = 1;
1173
1174   if (opt.verbose)
1175     log_info (_("handler for fd %d terminated\n"),
1176               FD2INT (ctrl->thread_startup.fd));
1177
1178   scd_deinit_default_ctrl (ctrl);
1179   xfree (ctrl);
1180   return NULL;
1181 }
1182
1183
1184 /* Connection handler loop.  Wait for connection requests and spawn a
1185    thread after accepting a connection.  LISTEN_FD is allowed to be -1
1186    in which case this code will only do regular timeouts and handle
1187    signals. */
1188 static void
1189 handle_connections (int listen_fd)
1190 {
1191   npth_attr_t tattr;
1192   struct sockaddr_un paddr;
1193   socklen_t plen;
1194   fd_set fdset, read_fdset;
1195   int ret;
1196   int fd;
1197   int nfd;
1198   struct timespec abstime;
1199   struct timespec curtime;
1200   struct timespec timeout;
1201   int saved_errno;
1202 #ifndef HAVE_W32_SYSTEM
1203   int signo;
1204 #endif
1205
1206   ret = npth_attr_init(&tattr);
1207   /* FIXME: Check error.  */
1208   npth_attr_setdetachstate (&tattr, NPTH_CREATE_DETACHED);
1209
1210 #ifndef HAVE_W32_SYSTEM
1211   npth_sigev_init ();
1212   npth_sigev_add (SIGHUP);
1213   npth_sigev_add (SIGUSR1);
1214   npth_sigev_add (SIGUSR2);
1215   npth_sigev_add (SIGINT);
1216   npth_sigev_add (SIGTERM);
1217   npth_sigev_fini ();
1218 #endif
1219
1220   FD_ZERO (&fdset);
1221   nfd = 0;
1222   if (listen_fd != -1)
1223     {
1224       FD_SET (listen_fd, &fdset);
1225       nfd = listen_fd;
1226     }
1227
1228   npth_clock_gettime (&curtime);
1229   timeout.tv_sec = TIMERTICK_INTERVAL_SEC;
1230   timeout.tv_nsec = TIMERTICK_INTERVAL_USEC * 1000;
1231   npth_timeradd (&curtime, &timeout, &abstime);
1232   /* We only require abstime here.  The others will be reused.  */
1233
1234   for (;;)
1235     {
1236       if (shutdown_pending)
1237         {
1238           if (active_connections == 0)
1239             break; /* ready */
1240
1241           /* Do not accept anymore connections but wait for existing
1242              connections to terminate. We do this by clearing out all
1243              file descriptors to wait for, so that the select will be
1244              used to just wait on a signal or timeout event. */
1245           FD_ZERO (&fdset);
1246           listen_fd = -1;
1247         }
1248
1249       npth_clock_gettime (&curtime);
1250       if (!(npth_timercmp (&curtime, &abstime, <)))
1251         {
1252           /* Timeout.  */
1253           handle_tick ();
1254           timeout.tv_sec = TIMERTICK_INTERVAL_SEC;
1255           timeout.tv_nsec = TIMERTICK_INTERVAL_USEC * 1000;
1256           npth_timeradd (&curtime, &timeout, &abstime);
1257         }
1258       npth_timersub (&abstime, &curtime, &timeout);
1259
1260       /* POSIX says that fd_set should be implemented as a structure,
1261          thus a simple assignment is fine to copy the entire set.  */
1262       read_fdset = fdset;
1263
1264 #ifndef HAVE_W32_SYSTEM
1265       ret = npth_pselect (nfd+1, &read_fdset, NULL, NULL, &timeout, npth_sigev_sigmask());
1266       saved_errno = errno;
1267
1268       while (npth_sigev_get_pending(&signo))
1269         handle_signal (signo);
1270 #else
1271       ret = npth_eselect (nfd+1, &read_fdset, NULL, NULL, &timeout, NULL, NULL);
1272       saved_errno = errno;
1273 #endif
1274
1275       if (ret == -1 && saved_errno != EINTR)
1276         {
1277           log_error (_("npth_pselect failed: %s - waiting 1s\n"),
1278                      strerror (saved_errno));
1279           npth_sleep (1);
1280           continue;
1281         }
1282
1283       if (ret <= 0)
1284         /* Timeout.  Will be handled when calculating the next timeout.  */
1285         continue;
1286
1287       if (listen_fd != -1 && FD_ISSET (listen_fd, &read_fdset))
1288         {
1289           ctrl_t ctrl;
1290
1291           plen = sizeof paddr;
1292           fd = npth_accept (listen_fd, (struct sockaddr *)&paddr, &plen);
1293           if (fd == -1)
1294             {
1295               log_error ("accept failed: %s\n", strerror (errno));
1296             }
1297           else if ( !(ctrl = xtrycalloc (1, sizeof *ctrl)) )
1298             {
1299               log_error ("error allocating connection control data: %s\n",
1300                          strerror (errno) );
1301               close (fd);
1302             }
1303           else
1304             {
1305               char threadname[50];
1306               npth_t thread;
1307
1308               snprintf (threadname, sizeof threadname, "conn fd=%d", fd);
1309               ctrl->thread_startup.fd = INT2FD (fd);
1310               ret = npth_create (&thread, &tattr, start_connection_thread, ctrl);
1311               if (ret)
1312                 {
1313                   log_error ("error spawning connection handler: %s\n",
1314                              strerror (ret));
1315                   xfree (ctrl);
1316                   close (fd);
1317                 }
1318               else
1319                 npth_setname_np (thread, threadname);
1320             }
1321           fd = -1;
1322         }
1323     }
1324
1325   cleanup ();
1326   log_info (_("%s %s stopped\n"), strusage(11), strusage(13));
1327   npth_attr_destroy (&tattr);
1328 }