doc/
authorMarcus Brinkmann <mb@g10code.com>
Mon, 6 Oct 2003 16:17:13 +0000 (16:17 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Mon, 6 Oct 2003 16:17:13 +0000 (16:17 +0000)
2003-10-06  Marcus Brinkmann  <marcus@g10code.de>

* gpgme.texi (Signal Handling): New section.

gpgme/
2003-10-06  Marcus Brinkmann  <marcus@g10code.de>

* io.h (_gpgme_io_subsystem_init): New prototype.
* posix-io.c (_gpgme_io_subsystem_init): Add function.
(_gpgme_io_spawn): Do not fixup signal handler here.
* version.c (do_subsystem_inits): Call _gpgme_io_subsystem_init.

tests/
2003-10-06  Marcus Brinkmann  <marcus@g10code.de>

* gpg/t-thread1.c (thread_one): Do not call initialize_gpgme.
Likewise.

assuan/README.1st
assuan/assuan-pipe-connect.c
doc/ChangeLog
doc/gpgme.texi
gpgme/ChangeLog
gpgme/io.h
gpgme/posix-io.c
gpgme/version.c
tests/ChangeLog
tests/gpg/t-thread1.c

index 7b6074ff2b6824c380e7d04eff00a339850799aa..6e8d4ec86a71b1fcadac665b8e8205d505a349e7 100644 (file)
@@ -20,3 +20,6 @@ updating this directory, are:
 
 * assuan-io.c
 ** Don't try to support GNU Pth here.
+
+* assuan-pipe-connect.c
+** Do not install SIGPIPE signal handler here.
index d30c106bfeba046636183f113c4c34da529c1bc9..a3ddc2241583b6ec14ce94349fab250df47cbc45 100644 (file)
@@ -102,7 +102,9 @@ AssuanError
 assuan_pipe_connect (ASSUAN_CONTEXT *ctx, const char *name, char *const argv[],
                     int *fd_child_list)
 {
+#ifndef _ASSUAN_IN_GPGME
   static int fixed_signals = 0;
+#endif
   AssuanError err;
   int rp[2];
   int wp[2];
@@ -110,6 +112,7 @@ assuan_pipe_connect (ASSUAN_CONTEXT *ctx, const char *name, char *const argv[],
   if (!ctx || !name || !argv || !argv[0])
     return ASSUAN_Invalid_Value;
 
+#ifndef _ASSUAN_IN_GPGME
   if (!fixed_signals)
     { 
       struct sigaction act;
@@ -125,6 +128,7 @@ assuan_pipe_connect (ASSUAN_CONTEXT *ctx, const char *name, char *const argv[],
       fixed_signals = 1;
       /* FIXME: This is not MT safe */
     }
+#endif
 
   if (pipe (rp) < 0)
     return ASSUAN_General_Error;
index de523fea9a94536802a745aeddb2d0b717289581..0064e2d23f563d2c1669f901264fbdbb420ef878 100644 (file)
@@ -1,3 +1,7 @@
+2003-10-06  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpgme.texi (Signal Handling): New section.
+
 2003-09-14  Marcus Brinkmann  <marcus@g10code.de>
 
        * gpgme.texi (Multi Threading): Correct documentation on memory
index c76916e375b7c2c1c3f3c74a5cf30223fe4a9c81..480945485e1f2efcaab5495793c73912a8fa71fc 100644 (file)
@@ -107,6 +107,7 @@ Preparation
 * Using Automake::                Compiler options to be used the easy way.
 * Using Libtool::                 Avoiding compiler options entirely.
 * Library Version Check::         Getting and verifying the library version.
+* Signal Handling::               How @acronym{GPGME} affects signal handling.
 * Multi Threading::               How @acronym{GPGME} can be used in an MT environment.
 
 Protocols and Engines
@@ -322,6 +323,7 @@ of the library are verified.
 * Using Automake::                Compiler options to be used the easy way.
 * Using Libtool::                 Avoiding compiler options entirely.
 * Library Version Check::         Getting and verifying the library version.
+* Signal Handling::               How @acronym{GPGME} affects signal handling.
 * Multi Threading::               How @acronym{GPGME} can be used in an MT environment.
 @end menu
 
@@ -518,6 +520,34 @@ like this.  @acronym{GPGME} can not do this for you because it would
 not be thread safe.
 
 
+@node Signal Handling
+@section Signal Handling
+@cindex signals
+@cindex signal handling
+
+The @acronym{GPGME} library communicates with child processes (the
+crypto engines).  If a child process dies unexpectedly, for example
+due to a bug, or system problem, a @code{SIGPIPE} signal will be
+delivered to the application.  The default action is to abort the
+program.  To protect against this, @code{gpgme_check_version} sets the
+@code{SIGPIPE} signal action to @code{SIG_IGN}, which means that the
+signal will be ignored.
+
+@acronym{GPGME} will only do that if the signal action for
+@code{SIGPIPE} is @code{SIG_DEF} at the time
+@code{gpgme_check_version} is called.  If it is something different,
+@code{GPGME} will take no action.
+
+This means that if your application does not install any signal
+handler for @code{SIGPIPE}, you don't need to take any precautions.
+If you do install a signal handler for @code{SIGPIPE}, you must be
+prepared to handle any @code{SIGPIPE} events that occur due to
+@acronym{GPGME} writing to a defunct pipe.  Furthermore, if your
+application is multi-threaded, and you install a signal action for
+@code{SIGPIPE}, you must make sure you do this either before
+@code{gpgme_check_version} is called or afterwards.
+
+
 @node Multi Threading
 @section Multi Threading
 @cindex thread-safeness
index 18552f670947f14723e879f9a448e5d625c51094..d2b82bd58ff388d680df62e28f16683797811e0d 100644 (file)
@@ -1,5 +1,10 @@
 2003-10-06  Marcus Brinkmann  <marcus@g10code.de>
 
+       * io.h (_gpgme_io_subsystem_init): New prototype.
+       * posix-io.c (_gpgme_io_subsystem_init): Add function.
+       (_gpgme_io_spawn): Do not fixup signal handler here.
+       * version.c (do_subsystem_inits): Call _gpgme_io_subsystem_init.
+
        * debug.c (debug_init): Drop const qualifier from E.
 
        * ath.h (struct ath_ops): Make ADDR argument of CONNECT prototype
index cb09969f2e4f2ea14fd70166a170c2824774f1c1..9cc5eb25dca11b4a0a748f002c8aad63f0eff490 100644 (file)
@@ -40,6 +40,7 @@ struct io_select_fd_s
 };
 
 /* These function are either defined in posix-io.c or w32-io.c.  */
+void _gpgme_io_subsystem_init (void);
 int _gpgme_io_read (int fd, void *buffer, size_t count);
 int _gpgme_io_write (int fd, const void *buffer, size_t count);
 int _gpgme_io_pipe (int filedes[2], int inherit_idx);
index 5034468d7de6238474434531ee0f8d5e1168f026..5c9baacaab83e07b27b8012054365728789a0618 100644 (file)
 #include "ath.h"
 #include "debug.h"
 
+\f
+void
+_gpgme_io_subsystem_init (void)
+{
+  struct sigaction act;
+
+  sigaction (SIGPIPE, NULL, &act);
+  if (act.sa_handler == SIG_DFL)
+    {
+      act.sa_handler = SIG_IGN;
+      sigemptyset (&act.sa_mask);
+      act.sa_flags = 0;
+      sigaction (SIGPIPE, &act, NULL);
+    }
+}
+
+\f
 static struct
 {
   void (*handler) (int,void*);
@@ -162,27 +179,9 @@ _gpgme_io_spawn (const char *path, char **argv,
                 struct spawn_fd_item_s *fd_child_list,
                 struct spawn_fd_item_s *fd_parent_list)
 {
-  static int fixed_signals;
-  DEFINE_STATIC_LOCK (fixed_signals_lock);
   pid_t pid;
   int i;
   int status, signo;
-  LOCK (fixed_signals_lock);
-  if (!fixed_signals)
-    { 
-      struct sigaction act;
-        
-      sigaction (SIGPIPE, NULL, &act);
-      if (act.sa_handler == SIG_DFL)
-       {
-         act.sa_handler = SIG_IGN;
-         sigemptyset (&act.sa_mask);
-         act.sa_flags = 0;
-         sigaction (SIGPIPE, &act, NULL);
-        }
-      fixed_signals = 1;
-    }
-  UNLOCK (fixed_signals_lock);
 
   pid = fork ();
   if (pid == -1) 
index d64e67a307274975c89da7905e8c6fb4709299dd..e2c4ef81b122f106d9d2717337a502775927821b 100644 (file)
@@ -46,6 +46,8 @@ do_subsystem_inits (void)
     return;
 
   _gpgme_sema_subsystem_init ();
+  _gpgme_io_subsystem_init ();
+
   done = 1;
 }
 
index 012566759bc4102eaa49ecad1bd36b3916598ef4..e48dd6f2be4cb091d2a8f5c2f93c7d94c0714e43 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-06  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpg/t-thread1.c (thread_one): Do not call initialize_gpgme.
+       Likewise.
+
 2003-09-14  Marcus Brinkmann  <marcus@g10code.de>
 
        * gpg/t-thread1.c (main): Call init_gpgme here.
index 4c003b12ec30a59789315843665bdb950105d72f..5054974632b71cefc0cbe0c449913f8b030b2b97 100644 (file)
@@ -37,8 +37,6 @@ thread_one (void *name)
 {
   int i;
 
-  initialize_gpgme ();
-
   for (i = 0; i < ROUNDS; i++)
     {
       gpgme_ctx_t ctx;
@@ -89,7 +87,6 @@ void *
 thread_two (void *name)
 {
   int i;
-  initialize_gpgme ();
   const char *cipher_1_asc = make_filename ("cipher-1.asc");
   char *agent_info;
 
@@ -143,7 +140,7 @@ main (int argc, char *argv[])
   init_gpgme (GPGME_PROTOCOL_OpenPGP);
 
   pthread_create (&tone, NULL, thread_one, "A");
-  pthread_create (&ttwo, NULL, thread_two, "A");
+  pthread_create (&ttwo, NULL, thread_two, "B");
 
   pthread_join (tone, NULL);
   pthread_join (ttwo, NULL);