2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
3 Ben Kibbey <bjk@luxsci.net>
5 This file is part of pwmd.
7 Pwmd 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 2 of the License, or
10 (at your option) any later version.
12 Pwmd 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.
17 You should have received a copy of the GNU General Public License
18 along with Pwmd. If not, see <http://www.gnu.org/licenses/>.
30 #include <sys/socket.h>
44 #include <netinet/in.h>
45 #include <arpa/inet.h>
48 #include <sys/resource.h>
62 #ifdef HAVE_GETOPT_LONG
67 #include "getopt_long.h"
70 #ifdef HAVE_PR_SET_NAME
71 #include <sys/prctl.h>
74 #include "pwmd-error.h"
77 #include "util-misc.h"
83 #include "util-string.h"
90 /* In tenths of a second. */
93 /* For (tcp_)accept_thread (usec). */
94 #define ACCEPT_TIMEOUT 30000
101 static pthread_cond_t quit_cond
;
102 static pthread_mutex_t quit_mutex
;
103 static int no_passphrase_file
= 0;
104 static pthread_t keepalive_tid
;
106 #ifndef HAVE_PTHREAD_CANCEL
107 static pthread_key_t signal_thread_key
;
113 static pthread_t tls_tid
;
114 static pthread_t tls6_tid
;
115 static int spawned_tls
;
116 static int spawned_tls6
;
118 static int start_stop_tls (int term
);
121 static int do_cache_push (const char *filename
, struct crypto_s
*crypto
);
122 static int signal_loop (sigset_t sigset
);
124 GCRY_THREAD_OPTION_PTHREAD_IMPL
;
126 #ifndef HAVE_PTHREAD_CANCEL
127 #define INIT_THREAD_SIGNAL do { \
128 struct sigaction act; \
130 sigemptyset (&sigset); \
131 sigaddset (&sigset, SIGUSR2); \
132 pthread_sigmask (SIG_UNBLOCK, &sigset, NULL); \
133 memset (&act, 0, sizeof(act)); \
134 act.sa_flags = SA_SIGINFO; \
135 act.sa_mask = sigset; \
136 act.sa_sigaction = catch_thread_signal; \
137 sigaction (SIGUSR2, &act, NULL); \
141 catch_thread_signal (int sig
, siginfo_t
*info
, void *ctx
)
143 int *n
= (int *) pthread_getspecific (signal_thread_key
);
146 pthread_setspecific (signal_thread_key
, n
);
151 cache_push_from_rcfile ()
153 struct crypto_s
*crypto
= NULL
;
155 gpg_error_t rc
= init_client_crypto (&crypto
);
159 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
166 rc
= set_agent_option (crypto
->agent
, "pinentry-mode", "error");
169 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
175 cache_push
= config_get_list ("global", "cache_push");
180 for (p
= cache_push
; *p
; p
++)
182 (void) do_cache_push (*p
, crypto
);
183 cleanup_crypto_stage1 (crypto
);
186 strv_free (cache_push
);
190 (void) kill_scd (crypto
->agent
);
192 cleanup_crypto (&crypto
);
198 int n
= config_get_boolean ("global", "enable_logging");
202 char *p
= config_get_string ("global", "log_path");
205 logfile
= expand_homedir (p
);
214 log_syslog
= config_get_boolean ("global", "syslog");
216 openlog ("pwmd", LOG_NDELAY
| LOG_PID
, LOG_DAEMON
);
220 reload_rcfile_thread (void *arg
)
222 #ifndef HAVE_PTHREAD_CANCEL
223 int *n
= xmalloc (sizeof (int));
226 pthread_setspecific (signal_thread_key
, n
);
230 #ifdef HAVE_PR_SET_NAME
231 prctl (PR_SET_NAME
, "reload rcfile");
233 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
234 MUTEX_LOCK (&rcfile_mutex
);
235 pthread_cleanup_push (cleanup_mutex_cb
, &rcfile_mutex
);
239 struct allowed_users_s
244 struct slist_s
*allowed_users
= NULL
;
245 struct slist_s
*config
;
246 int b
= disable_list_and_dump
;
248 int require_save_key
= config_get_bool_param (global_config
, "global",
252 int tcp_require_key
= config_get_bool_param (global_config
, "global",
257 pthread_cond_wait (&rcfile_cond
, &rcfile_mutex
);
258 #ifndef HAVE_PTHREAD_CANCEL
259 int *cancel
= (int *) pthread_getspecific (signal_thread_key
);
264 /* Keep the "allowed" parameter across rcfile reloads to prevent
266 int n
, t
= slist_length (global_config
);
267 for (n
= 0; n
< t
; n
++)
269 struct allowed_users_s
*allowed
;
270 struct config_section_s
*section
;
273 section
= slist_nth_data (global_config
, n
);
274 users
= config_get_list_param (global_config
, section
->name
,
278 allowed
= xmalloc (sizeof(struct allowed_users_s
));
279 allowed
->section
= str_dup (section
->name
);
280 allowed
->users
= users
;
281 allowed_users
= slist_append (allowed_users
, allowed
);
285 log_write (_("reloading configuration file '%s'"), rcfile
);
286 config
= config_parse (rcfile
);
289 config_free (global_config
);
290 global_config
= config
;
292 cache_push_from_rcfile ();
293 config_clear_keys ();
296 disable_list_and_dump
= !disable_list_and_dump
? b
: 1;
297 config_set_bool_param (&global_config
, "global", "require_save_key",
298 require_save_key
? "true" : "false");
300 if (config_get_bool_param (global_config
, "global", "tcp_require_key",
304 config_set_bool_param (&global_config
, "global", "tcp_require_key",
305 tcp_require_key
? "true" : "false");
310 int n
, t
= slist_length (allowed_users
);
312 for (n
= 0; n
< t
; n
++)
314 struct allowed_users_s
*allowed
;
317 allowed
= slist_nth_data (allowed_users
, n
);
318 tmp
= strv_join (",", allowed
->users
);
319 config_set_list_param (&global_config
, allowed
->section
,
322 xfree (allowed
->section
);
323 strv_free (allowed
->users
);
327 slist_free (allowed_users
);
331 /* Kill existing listening threads since the configured listening
332 * protocols may have changed. */
338 pthread_cleanup_pop (1);
343 send_error (assuan_context_t ctx
, gpg_error_t e
)
345 struct client_s
*client
= assuan_get_pointer (ctx
);
347 if (gpg_err_source (e
) == GPG_ERR_SOURCE_UNKNOWN
)
354 return assuan_process_done (ctx
, 0);
358 log_write ("ERR %i: %s", e
, pwmd_strerror (e
));
362 if (client
&& client
->xml_error
)
364 log_write ("%s", client
->xml_error
->message
);
365 xfree (client
->last_error
);
366 client
->last_error
= NULL
;
367 if (client
->xml_error
->message
)
368 client
->last_error
= str_dup (client
->xml_error
->message
);
370 e
= assuan_process_done (ctx
,
371 assuan_set_error (ctx
, e
,
372 client
->xml_error
->message
? client
->xml_error
->message
: NULL
));
373 xmlResetLastError ();
374 xmlResetError (client
->xml_error
);
375 xfree (client
->xml_error
);
376 client
->xml_error
= NULL
;
380 return assuan_process_done (ctx
,
381 assuan_set_error (ctx
, e
, pwmd_strerror (e
)));
385 assuan_log_cb (assuan_context_t ctx
, void *data
, unsigned cat
,
388 static pthread_mutex_t m
= PTHREAD_MUTEX_INITIALIZER
;
392 pthread_mutex_lock (&m
);
393 pthread_cleanup_push ((void (*)(void *)) pthread_mutex_unlock
, &m
);
394 t
= strv_length (debug_level
);
396 for (i
= 0; i
< t
; i
++)
398 if (!strcasecmp (debug_level
[i
], (char *) "init")
399 && cat
== ASSUAN_LOG_INIT
)
405 if (!strcasecmp (debug_level
[i
], (char *) "ctx")
406 && cat
== ASSUAN_LOG_CTX
)
412 if (!strcasecmp (debug_level
[i
], (char *) "engine")
413 && cat
== ASSUAN_LOG_ENGINE
)
419 if (!strcasecmp (debug_level
[i
], (char *) "data")
420 && cat
== ASSUAN_LOG_DATA
)
426 if (!strcasecmp (debug_level
[i
], (char *) "sysio")
427 && cat
== ASSUAN_LOG_SYSIO
)
433 if (!strcasecmp (debug_level
[i
], (char *) "control")
434 && cat
== ASSUAN_LOG_CONTROL
)
448 open (logfile
, O_WRONLY
| O_CREAT
| O_APPEND
, 0600)) == -1)
449 warn ("%s", logfile
);
452 pthread_cleanup_push (cleanup_fd_cb
, &fd
);
453 write (fd
, msg
, strlen (msg
));
454 pthread_cleanup_pop (1);
460 fprintf (stderr
, "%s%s", data
? (char *) data
: "", msg
);
465 pthread_cleanup_pop (1);
470 log_write (const char *fmt
, ...)
480 pthread_t tid
= pthread_self ();
481 static pthread_mutex_t m
= PTHREAD_MUTEX_INITIALIZER
;
483 if ((!logfile
&& !isatty (STDERR_FILENO
) && !log_syslog
) || !fmt
)
486 pthread_mutex_lock (&m
);
487 pthread_cleanup_push ((void (*)(void *)) pthread_mutex_unlock
, &m
);
488 pthread_cleanup_push (cleanup_fd_cb
, &fd
);
490 if (!cmdline
&& logfile
)
492 if ((fd
= open (logfile
, O_WRONLY
| O_CREAT
| O_APPEND
, 0600)) == -1)
493 warn ("%s", logfile
);
498 if (str_vasprintf (&args
, fmt
, ap
) != -1)
502 pthread_cleanup_push (xfree
, args
);
503 fprintf (stderr
, "pwmd: %s\n", args
);
505 pthread_cleanup_pop (1);
509 pthread_cleanup_push (xfree
, args
);
510 name
= pthread_getspecific (thread_name_key
);
511 snprintf (buf
, sizeof (buf
), "%s(%p): ", name
? name
: _("unknown"),
515 if (!cmdline
&& log_syslog
&& !nofork
)
516 syslog (LOG_INFO
, "%s%s", name
, args
);
519 tm
= localtime (&now
);
520 strftime (tbuf
, sizeof (tbuf
), "%b %d %Y %H:%M:%S ", tm
);
521 tbuf
[sizeof (tbuf
) - 1] = 0;
523 if (args
[strlen (args
) - 1] == '\n')
524 args
[strlen (args
) - 1] = 0;
526 line
= str_asprintf ("%s %i %s%s\n", tbuf
, getpid (), name
, args
);
527 pthread_cleanup_pop (1);
530 pthread_cleanup_push (xfree
, line
);
531 if (logfile
&& fd
!= -1)
533 write (fd
, line
, strlen (line
));
539 fprintf (stdout
, "%s", line
);
543 pthread_cleanup_pop (1);
549 pthread_cleanup_pop (1);
550 pthread_cleanup_pop (0);
551 pthread_mutex_unlock (&m
);
556 secure_mem_check (const void *arg
)
565 gcry_control (GCRYCTL_SET_THREAD_CBS
, &gcry_threads_pthread
);
567 if (!gcry_check_version (GCRYPT_VERSION
))
569 fprintf (stderr
, _("gcry_check_version(): Incompatible libgcrypt. "
570 "Wanted %s, got %s.\n"), GCRYPT_VERSION
,
571 gcry_check_version (NULL
));
572 return GPG_ERR_UNKNOWN_VERSION
;
575 gcry_set_allocation_handler (xmalloc
, xmalloc
, NULL
, xrealloc
, xfree
);
579 #ifdef HAVE_GETGRNAM_R
581 do_validate_peer (assuan_context_t ctx
, const char *section
,
582 assuan_peercred_t
* peer
)
588 struct client_s
*client
= assuan_get_pointer (ctx
);
590 if (client
&& client
->thd
->remote
)
591 return tls_validate_access (client
, section
);
594 rc
= assuan_get_peercred (ctx
, peer
);
598 users
= config_get_list (section
, "allowed");
601 for (char **p
= users
; *p
; p
++)
603 struct passwd pw
, *result
;
604 struct group gr
, *gresult
;
607 int deny
= (*user
== '-') ? 1 : 0;
612 if (*user
== '@') // all users in group
614 size_t len
= sysconf (_SC_GETGR_R_SIZE_MAX
);
623 return GPG_ERR_ENOMEM
;
627 if (!getgrnam_r (user
, &gr
, buf
, len
, &gresult
) && gresult
)
629 if (gresult
->gr_gid
== (*peer
)->gid
)
636 len
= sysconf (_SC_GETPW_R_SIZE_MAX
);
640 char *tbuf
= xmalloc (len
);
641 for (char **t
= gresult
->gr_mem
; *t
; t
++)
643 if (!getpwnam_r (*t
, &pw
, tbuf
, len
, &result
) && result
)
645 if (result
->pw_uid
== (*peer
)->uid
)
656 size_t len
= sysconf (_SC_GETPW_R_SIZE_MAX
);
666 return GPG_ERR_ENOMEM
;
669 if (!getpwnam_r (user
, &pw
, buf
, len
, &result
) && result
)
671 if (result
->pw_uid
== (*peer
)->uid
)
682 return allowed
? 0 : GPG_ERR_INV_USER_ID
;
686 do_validate_peer (assuan_context_t ctx
, const char *section
,
687 assuan_peercred_t
* peer
)
693 struct client_s
*client
= assuan_get_pointer (ctx
);
695 if (client
&& client
->thd
->remote
)
696 return tls_validate_access (client
, section
);
699 rc
= assuan_get_peercred (ctx
, peer
);
703 users
= config_get_list (section
, "allowed");
706 for (char **p
= users
; *p
; p
++)
708 struct passwd
*result
;
709 struct group
*gresult
;
711 int deny
= (*user
== '-') ? 1 : 0;
716 if (*user
== '@') // all users in group
719 gresult
= getgrnam (user
);
720 if (gresult
&& gresult
->gr_gid
== (*peer
)->gid
)
726 for (char **t
= gresult
->gr_mem
; *t
; t
++)
728 result
= getpwnam (*t
);
729 if (result
&& result
->pw_uid
== (*peer
)->uid
)
738 result
= getpwnam (user
);
739 if (result
&& result
->pw_uid
== (*peer
)->uid
)
747 return allowed
? 0 : GPG_ERR_INV_USER_ID
;
752 validate_peer (struct client_s
*cl
)
755 assuan_peercred_t peer
;
759 return tls_validate_access (cl
, NULL
);
762 rc
= do_validate_peer (cl
->ctx
, "global", &peer
);
763 if (!rc
|| gpg_err_code (rc
) == GPG_ERR_INV_USER_ID
)
764 log_write ("peer %s: uid=%i, gid=%i, pid=%i",
765 !rc
? _("accepted") : _("rejected"), peer
->uid
, peer
->gid
,
768 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
774 xml_error_cb (void *data
, xmlErrorPtr e
)
776 struct client_s
*client
= data
;
779 * Keep the first reported error as the one to show in the error
780 * description. Reset in send_error().
782 if (client
->xml_error
)
785 client
->xml_error
= xcalloc (1, sizeof(xmlError
));
786 xmlCopyError (e
, client
->xml_error
);
790 hook_waitpid (assuan_context_t ctx
, pid_t pid
, int action
,
791 int *status
, int options
)
793 return waitpid (pid
, status
, options
);
797 hook_read (assuan_context_t ctx
, assuan_fd_t fd
, void *data
, size_t len
)
800 struct client_s
*client
= assuan_get_pointer (ctx
);
802 if (client
->thd
->remote
)
803 return tls_read_hook (ctx
, (int) fd
, data
, len
);
806 return read ((int) fd
, data
, len
);
810 hook_write (assuan_context_t ctx
, assuan_fd_t fd
,
811 const void *data
, size_t len
)
814 struct client_s
*client
= assuan_get_pointer (ctx
);
816 if (client
->thd
->remote
)
817 return tls_write_hook (ctx
, (int) fd
, data
, len
);
820 return write ((int) fd
, data
, len
);
824 new_connection (struct client_s
*cl
)
827 static struct assuan_malloc_hooks mhooks
= { xmalloc
, xrealloc
, xfree
};
828 static struct assuan_system_hooks shooks
= {
829 ASSUAN_SYSTEM_HOOKS_VERSION
,
837 NULL
, //sendmsg both are used for FD passing
848 char *prio
= config_get_string ("global", "tls_cipher_suite");
850 cl
->thd
->tls
= tls_init (cl
->thd
->fd
, cl
->thd
->timeout
, prio
);
857 rc
= assuan_new_ext (&cl
->ctx
, GPG_ERR_SOURCE_DEFAULT
, &mhooks
,
858 debug_level
? assuan_log_cb
: NULL
, NULL
);
862 assuan_ctx_set_system_hooks (cl
->ctx
, &shooks
);
863 rc
= assuan_init_socket_server (cl
->ctx
, cl
->thd
->fd
, 2);
867 assuan_set_pointer (cl
->ctx
, cl
);
868 assuan_set_hello_line (cl
->ctx
, PACKAGE_STRING
);
869 rc
= register_commands (cl
->ctx
);
876 cl
->thd
->timeout
= config_get_integer ("global", "tls_timeout");
877 fcntl (cl
->thd
->fd
, F_SETFL
, O_NONBLOCK
);
881 rc
= assuan_accept (cl
->ctx
);
885 rc
= validate_peer (cl
);
886 /* May not be implemented on all platforms. */
887 if (rc
&& gpg_err_code (rc
) != GPG_ERR_ASS_GENERAL
)
890 rc
= init_client_crypto (&cl
->crypto
);
896 cl
->crypto
->agent
->client_ctx
= cl
->ctx
;
899 cl
->crypto
->client_ctx
= cl
->ctx
;
900 xmlSetStructuredErrorFunc (cl
, xml_error_cb
);
904 log_write ("%s", pwmd_strerror (rc
));
909 * This is called after a client_thread() terminates. Set with
910 * pthread_cleanup_push().
913 cleanup_cb (void *arg
)
915 struct client_thread_s
*cn
= arg
;
916 struct client_s
*cl
= cn
->cl
;
918 MUTEX_LOCK (&cn_mutex
);
919 cn_thread_list
= slist_remove (cn_thread_list
, cn
);
920 MUTEX_UNLOCK (&cn_mutex
);
926 xmlResetError (cl
->xml_error
);
928 xfree (cl
->xml_error
);
933 gnutls_deinit (cn
->tls
->ses
);
939 if (!cn
->atfork
&& cl
->ctx
)
940 assuan_release (cl
->ctx
);
941 else if (!cn
->atfork
&& cl
->thd
&& cl
->thd
->fd
!= -1)
945 cleanup_crypto (&cl
->crypto
);
947 pinentry_free_opts (&cl
->pinentry_opts
);
956 while (cn
->msg_queue
)
958 struct status_msg_s
*msg
= cn
->msg_queue
;
960 cn
->msg_queue
= msg
->next
;
965 if (!cn
->atfork
&& cn
->status_msg_pipe
[0] != -1)
966 close (cn
->status_msg_pipe
[0]);
968 if (!cn
->atfork
&& cn
->status_msg_pipe
[1] != -1)
969 close (cn
->status_msg_pipe
[1]);
971 pthread_mutex_destroy (&cn
->status_mutex
);
975 log_write (_("exiting, fd=%i"), cn
->fd
);
976 send_status_all (STATUS_CLIENTS
, NULL
);
980 pthread_cond_signal (&quit_cond
);
984 cleanup_all_clients (int atfork
)
986 /* This function may be called from pthread_atfork() which requires
990 pthread_mutexattr_t attr
;
992 pthread_mutexattr_init (&attr
);
993 pthread_mutexattr_settype (&attr
, PTHREAD_MUTEX_RECURSIVE
);
994 pthread_mutex_init (&cn_mutex
, &attr
);
995 pthread_mutexattr_destroy (&attr
);
999 MUTEX_LOCK (&cn_mutex
);
1001 while (slist_length (cn_thread_list
))
1003 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, 0);
1005 thd
->atfork
= atfork
;
1010 MUTEX_UNLOCK (&cn_mutex
);
1011 cache_deinit (atfork
);
1015 send_msg_queue (struct client_thread_s
*thd
)
1017 MUTEX_LOCK (&thd
->status_mutex
);
1021 read (thd
->status_msg_pipe
[0], &c
, 1);
1023 while (thd
->msg_queue
)
1025 struct status_msg_s
*msg
= thd
->msg_queue
;
1027 thd
->msg_queue
= thd
->msg_queue
->next
;
1028 MUTEX_UNLOCK (&thd
->status_mutex
);
1029 rc
= send_status (thd
->cl
->ctx
, msg
->s
, msg
->line
);
1030 MUTEX_LOCK (&thd
->status_mutex
);
1038 MUTEX_UNLOCK (&thd
->status_mutex
);
1039 if (rc
&& gpg_err_code (rc
) != GPG_ERR_EPIPE
)
1040 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
1046 client_thread (void *data
)
1048 struct client_thread_s
*thd
= data
;
1049 struct client_s
*cl
= xcalloc (1, sizeof (struct client_s
));
1051 #ifdef HAVE_PR_SET_NAME
1052 prctl (PR_SET_NAME
, "client");
1054 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1058 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1059 pwmd_strerror (GPG_ERR_ENOMEM
));
1063 MUTEX_LOCK (&cn_mutex
);
1064 pthread_cleanup_push (cleanup_cb
, thd
);
1067 MUTEX_UNLOCK (&cn_mutex
);
1069 if (new_connection (cl
))
1074 send_status_all (STATUS_CLIENTS
, NULL
);
1075 rc
= send_status (cl
->ctx
, STATUS_CACHE
, NULL
);
1078 log_write ("%s(%i): %s", __FILE__
, __LINE__
, pwmd_strerror (rc
));
1089 FD_SET (thd
->fd
, &rfds
);
1090 FD_SET (thd
->status_msg_pipe
[0], &rfds
);
1091 n
= thd
->fd
> thd
->status_msg_pipe
[0]
1092 ? thd
->fd
: thd
->status_msg_pipe
[0];
1094 n
= select (n
+ 1, &rfds
, NULL
, NULL
, NULL
);
1097 log_write ("%s", strerror (errno
));
1101 if (FD_ISSET (thd
->status_msg_pipe
[0], &rfds
))
1103 rc
= send_msg_queue (thd
);
1104 if (rc
&& gpg_err_code (rc
) != GPG_ERR_EPIPE
)
1108 if (!FD_ISSET (thd
->fd
, &rfds
))
1111 rc
= assuan_process_next (cl
->ctx
, &eof
);
1114 if (gpg_err_code (rc
) == GPG_ERR_EOF
|| eof
)
1117 log_write ("assuan_process_next(): rc=%i %s", rc
,
1118 pwmd_strerror (rc
));
1119 if (rc
== gpg_error (GPG_ERR_ETIMEDOUT
))
1122 rc
= send_error (cl
->ctx
, rc
);
1125 log_write ("assuan_process_done(): rc=%i %s", rc
,
1126 pwmd_strerror (rc
));
1131 /* Since the msg queue pipe fd's are non-blocking, check for
1132 * pending status msgs here. GPG_ERR_EPIPE can be seen when the
1133 * client has already disconnected and will be converted to
1134 * GPG_ERR_EOF during assuan_process_next().
1136 rc
= send_msg_queue (thd
);
1137 if (rc
&& gpg_err_code (rc
) != GPG_ERR_EPIPE
)
1142 pthread_cleanup_pop (1);
1147 xml_import (const char *filename
, const char *outfile
,
1148 const char *keygrip
, const char *sign_keygrip
,
1149 const char *keyfile
, int no_passphrase
, const char *cipher
,
1150 const char *params
, unsigned long s2k_count
, uint64_t iterations
)
1159 struct crypto_s
*crypto
= NULL
;
1162 int algo
= cipher
? cipher_string_to_gcrypt ((char *) cipher
) :
1167 log_write ("ERR %i: %s", gpg_error (GPG_ERR_CIPHER_ALGO
),
1168 pwmd_strerror (GPG_ERR_CIPHER_ALGO
));
1172 if (stat (filename
, &st
) == -1)
1174 log_write ("%s: %s", filename
,
1175 pwmd_strerror (gpg_error_from_errno (errno
)));
1179 rc
= init_client_crypto (&crypto
);
1183 memcpy (&crypto
->save
.hdr
, &crypto
->hdr
, sizeof (file_header_t
));
1184 crypto
->save
.hdr
.flags
= set_cipher_flag (crypto
->save
.hdr
.flags
, algo
);
1185 log_write (_("Importing XML from '%s'. Output will be written to '%s' ..."),
1188 if ((fd
= open (filename
, O_RDONLY
)) == -1)
1190 log_write ("%s: %s", filename
,
1191 pwmd_strerror (gpg_error_from_errno (errno
)));
1195 if ((xmlbuf
= xmalloc (st
.st_size
+ 1)) == NULL
)
1198 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1199 pwmd_strerror (GPG_ERR_ENOMEM
));
1203 if (read (fd
, xmlbuf
, st
.st_size
) == -1)
1205 rc
= gpg_error_from_errno (errno
);
1207 log_write ("%s: %s", filename
, pwmd_strerror (rc
));
1212 xmlbuf
[st
.st_size
] = 0;
1214 * Make sure the document validates.
1216 if ((doc
= xmlReadDoc (xmlbuf
, NULL
, "UTF-8", XML_PARSE_NOBLANKS
)) == NULL
)
1218 log_write ("xmlReadDoc() failed");
1224 xmlNodePtr n
= xmlDocGetRootElement (doc
);
1225 if (n
&& !xmlStrEqual (n
->name
, (xmlChar
*) "pwmd"))
1227 log_write (_("Could not find root \"pwmd\" element."));
1228 rc
= GPG_ERR_BAD_DATA
;
1232 rc
= validate_import (n
? n
->children
: n
);
1236 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
1241 xmlDocDumpMemory (doc
, &xml
, &len
);
1243 crypto
->save
.s2k_count
= s2k_count
;
1244 crypto
->save
.hdr
.iterations
= iterations
;
1247 rc
= export_common (NULL
, 0, crypto
, xml
, len
, outfile
, keyfile
, &key
,
1248 &keylen
, 0, 0, no_passphrase
);
1250 log_write (_("Success!"));
1255 rc
= agent_set_pinentry_options (crypto
->agent
);
1257 rc
= agent_export_common (crypto
, keygrip
, sign_keygrip
, no_passphrase
,
1258 xml
, len
, outfile
, params
, keyfile
);
1266 send_error (NULL
, rc
);
1270 cleanup_crypto (&crypto
);
1274 cleanup_crypto (&crypto
);
1279 do_cache_push (const char *filename
, struct crypto_s
*crypto
)
1281 unsigned char md5file
[16];
1286 struct cache_data_s
*cdata
;
1290 log_write (_("Trying to add datafile '%s' to the file cache ..."),
1293 if (valid_filename (filename
) == 0)
1295 log_write (_("%s: Invalid characters in filename"), filename
);
1299 rc
= decrypt_common (NULL
, 0, crypto
, filename
, &key
, &keylen
);
1303 rc
= parse_doc ((char *) crypto
->plaintext
, crypto
->plaintext_len
, &doc
);
1306 log_write ("%s", pwmd_strerror (rc
));
1311 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, filename
, strlen (filename
));
1312 cdata
= xcalloc (1, sizeof (struct cache_data_s
));
1316 log_write ("%s", pwmd_strerror (GPG_ERR_ENOMEM
));
1321 rc
= get_checksum (filename
, &crc
, &len
);
1324 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
1326 free_cache_data_once (cdata
);
1332 rc
= encrypt_xml (NULL
, cache_key
, cache_keysize
, GCRY_CIPHER_AES
,
1333 crypto
->plaintext
, crypto
->plaintext_len
, &cdata
->doc
,
1334 &cdata
->doclen
, &cache_iv
, &cache_blocksize
, 0);
1335 if (!rc
&& !IS_PKI (crypto
))
1338 cdata
->keylen
= keylen
;
1345 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
1347 free_cache_data_once (cdata
);
1352 if (use_agent
&& IS_PKI (crypto
))
1354 gcry_sexp_build ((gcry_sexp_t
*) & cdata
->pubkey
, NULL
, "%S",
1356 gcry_sexp_build ((gcry_sexp_t
*) & cdata
->sigkey
, NULL
, "%S",
1357 crypto
->sigpkey_sexp
);
1361 int timeout
= config_get_integer (filename
, "cache_timeout");
1362 cache_add_file (md5file
, crypto
->grip
, cdata
, timeout
);
1363 log_write (_("Successfully added '%s' to the cache."), filename
);
1368 init_client (int fd
, const char *addr
)
1371 struct client_thread_s
*new = xcalloc (1, sizeof (struct client_thread_s
));
1376 return GPG_ERR_ENOMEM
;
1379 MUTEX_LOCK (&cn_mutex
);
1380 pthread_cleanup_push (cleanup_mutex_cb
, &cn_mutex
);
1382 if (pipe (new->status_msg_pipe
) == -1)
1383 rc
= gpg_error_from_errno (errno
);
1387 fcntl (new->status_msg_pipe
[0], F_SETFL
, O_NONBLOCK
);
1388 fcntl (new->status_msg_pipe
[1], F_SETFL
, O_NONBLOCK
);
1389 pthread_mutex_init (&new->status_mutex
, NULL
);
1395 new->remote
= addr
? 1 : 0;
1398 rc
= create_thread (client_thread
, new, &new->tid
, 1);
1401 close (new->status_msg_pipe
[0]);
1402 close (new->status_msg_pipe
[1]);
1403 pthread_mutex_destroy (&new->status_mutex
);
1409 struct slist_s
*list
= slist_append (cn_thread_list
, new);
1413 cn_thread_list
= list
;
1415 log_write (_("new connection: tid=%p, fd=%i, addr=%s"),
1416 (pthread_t
*) new->tid
, fd
, addr
);
1418 log_write (_("new connection: tid=%p, fd=%i"),
1419 (pthread_t
*) new->tid
, fd
);
1422 rc
= GPG_ERR_ENOMEM
;
1425 pthread_cleanup_pop (1);
1431 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
1432 pwmd_strerror (rc
));
1438 keepalive_thread (void *arg
)
1440 #ifndef HAVE_PTHREAD_CANCEL
1441 int *n
= xmalloc (sizeof (int));
1444 pthread_setspecific (signal_thread_key
, n
);
1448 #ifdef HAVE_PR_SET_NAME
1449 prctl (PR_SET_NAME
, "keepalive");
1451 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1455 int n
= config_get_integer ("global", "keepalive_interval");
1456 struct timeval tv
= { n
, 0 };
1457 #ifndef HAVE_PTHREAD_CANCEL
1460 sigusr2
= (int *) pthread_getspecific (signal_thread_key
);
1465 send_status_all (STATUS_KEEPALIVE
, NULL
);
1466 select (0, NULL
, NULL
, NULL
, &tv
);
1473 /* From Beej's Guide to Network Programming. It's a good tutorial. */
1475 get_in_addr (struct sockaddr
*sa
)
1477 if (sa
->sa_family
== AF_INET
)
1478 return &(((struct sockaddr_in
*) sa
)->sin_addr
);
1480 return &(((struct sockaddr_in6
*) sa
)->sin6_addr
);
1484 tcp_accept_thread (void *arg
)
1486 int sockfd
= *(int *) arg
;
1487 #ifndef HAVE_PTHREAD_CANCEL
1488 int *n
= xmalloc (sizeof (int));
1491 pthread_setspecific (signal_thread_key
, n
);
1493 fcntl (sockfd
, F_SETFL
, O_NONBLOCK
);
1496 #ifdef HAVE_PR_SET_NAME
1497 prctl (PR_SET_NAME
, "tcp_accept");
1499 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1503 struct sockaddr_storage raddr
;
1504 socklen_t slen
= sizeof (raddr
);
1507 char s
[INET6_ADDRSTRLEN
];
1508 struct timeval tv
= { 0, ACCEPT_TIMEOUT
};
1509 #ifndef HAVE_PTHREAD_CANCEL
1512 sigusr2
= (int *) pthread_getspecific (signal_thread_key
);
1517 fd
= accept (sockfd
, (struct sockaddr
*) &raddr
, &slen
);
1520 if (errno
== EMFILE
|| errno
== ENFILE
)
1521 log_write ("accept(): %s",
1522 pwmd_strerror (gpg_error_from_errno (errno
)));
1523 else if (errno
!= EAGAIN
)
1525 if (!quit
) // probably EBADF
1526 log_write ("accept(): %s", strerror (errno
));
1531 #ifndef HAVE_PTHREAD_CANCEL
1532 select (0, NULL
, NULL
, NULL
, &tv
);
1540 inet_ntop (raddr
.ss_family
, get_in_addr ((struct sockaddr
*) &raddr
),
1542 (void) init_client (fd
, s
);
1543 n
= config_get_integer ("global", "tcp_wait");
1546 tv
.tv_sec
= (n
* 100000) / 100000;
1547 tv
.tv_usec
= (n
* 100000) % 100000;
1548 select (0, NULL
, NULL
, NULL
, &tv
);
1556 start_stop_tls_with_protocol (int ipv6
, int term
)
1558 struct addrinfo hints
, *servinfo
, *p
;
1559 int port
= config_get_integer ("global", "tcp_port");
1563 int *fd
= ipv6
? &tls6_fd
: &tls_fd
;
1565 if (term
|| config_get_boolean ("global", "enable_tcp") == 0)
1571 #ifdef HAVE_PTHREAD_CANCEL
1572 pthread_cancel (tls6_tid
);
1574 pthread_kill (tls6_tid
, SIGUSR2
);
1576 pthread_join (tls6_tid
, NULL
);
1579 shutdown (tls6_fd
, SHUT_RDWR
);
1589 #ifdef HAVE_PTHREAD_CANCEL
1590 pthread_cancel (tls_tid
);
1592 pthread_kill (tls_tid
, SIGUSR2
);
1594 pthread_join (tls_tid
, NULL
);
1597 shutdown (tls_fd
, SHUT_RDWR
);
1603 /* A client may still be connected. */
1604 if (!quit
&& x509_cred
!= NULL
)
1605 tls_deinit_params ();
1610 if ((ipv6
&& tls6_fd
!= -1) || (!ipv6
&& tls_fd
!= -1))
1613 memset (&hints
, 0, sizeof (hints
));
1614 hints
.ai_family
= ipv6
? AF_INET6
: AF_INET
;
1615 hints
.ai_socktype
= SOCK_STREAM
;
1616 hints
.ai_flags
= AI_PASSIVE
;
1617 snprintf (buf
, sizeof (buf
), "%i", port
);
1619 if ((n
= getaddrinfo (NULL
, buf
, &hints
, &servinfo
)) == -1)
1621 log_write ("getaddrinfo(): %s", gai_strerror (n
));
1625 for (n
= 0, p
= servinfo
; p
!= NULL
; p
= p
->ai_next
)
1629 if ((ipv6
&& p
->ai_family
!= AF_INET6
)
1630 || (!ipv6
&& p
->ai_family
!= AF_INET
))
1633 if ((*fd
= socket (p
->ai_family
, p
->ai_socktype
, p
->ai_protocol
)) == -1)
1635 log_write ("socket(): %s", strerror (errno
));
1639 if (setsockopt (*fd
, SOL_SOCKET
, SO_REUSEADDR
, &r
, sizeof (int)) == -1)
1641 log_write ("setsockopt(): %s",
1642 pwmd_strerror (gpg_error_from_errno (errno
)));
1643 freeaddrinfo (servinfo
);
1647 if (bind (*fd
, p
->ai_addr
, p
->ai_addrlen
) == -1)
1650 log_write ("bind(): %s",
1651 pwmd_strerror (gpg_error_from_errno (errno
)));
1659 freeaddrinfo (servinfo
);
1664 #if HAVE_DECL_SO_BINDTODEVICE != 0
1665 char *tmp
= config_get_string ("global", "tcp_interface");
1666 if (tmp
&& setsockopt (*fd
, SOL_SOCKET
, SO_BINDTODEVICE
, tmp
,
1667 strlen (tmp
)) == -1)
1669 log_write ("setsockopt(): %s",
1670 pwmd_strerror (gpg_error_from_errno (errno
)));
1678 if (x509_cred
== NULL
)
1680 rc
= tls_init_params ();
1685 if (listen (*fd
, 0) == -1)
1687 log_write ("listen(): %s", strerror (errno
));
1692 rc
= create_thread (tcp_accept_thread
, fd
, &tls6_tid
, 0);
1694 rc
= create_thread (tcp_accept_thread
, fd
, &tls_tid
, 0);
1698 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
1699 pwmd_strerror (rc
));
1711 start_stop_tls_with_protocol (0, 1);
1724 start_stop_tls (int term
)
1726 char *s
= config_get_string ("global", "tcp_bind");
1732 if (!strcmp (s
, "any"))
1734 b
= start_stop_tls_with_protocol (0, term
);
1736 b
= start_stop_tls_with_protocol (1, term
);
1738 else if (!strcmp (s
, "ipv4"))
1739 b
= start_stop_tls_with_protocol (0, term
);
1740 else if (!strcmp (s
, "ipv6"))
1741 b
= start_stop_tls_with_protocol (1, term
);
1751 accept_thread (void *arg
)
1753 int sockfd
= *(int *) arg
;
1754 #ifndef HAVE_PTHREAD_CANCEL
1755 int *n
= xmalloc (sizeof (int));
1758 pthread_setspecific (signal_thread_key
, n
);
1760 fcntl (sockfd
, F_SETFL
, O_NONBLOCK
);
1763 #ifdef HAVE_PR_SET_NAME
1764 prctl (PR_SET_NAME
, "accept");
1766 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1770 socklen_t slen
= sizeof (struct sockaddr_un
);
1771 struct sockaddr_un raddr
;
1773 #ifndef HAVE_PTHREAD_CANCEL
1774 struct timeval tv
= { 0, ACCEPT_TIMEOUT
};
1775 int *sigusr2
= (int *) pthread_getspecific (signal_thread_key
);
1781 fd
= accept (sockfd
, (struct sockaddr
*) &raddr
, &slen
);
1784 if (errno
== EMFILE
|| errno
== ENFILE
)
1785 log_write ("accept(): %s",
1786 pwmd_strerror (gpg_error_from_errno (errno
)));
1787 else if (errno
!= EAGAIN
)
1789 if (!quit
) // probably EBADF
1790 log_write ("accept(): %s",
1791 pwmd_strerror (gpg_error_from_errno (errno
)));
1796 #ifndef HAVE_PTHREAD_CANCEL
1797 select (0, NULL
, NULL
, NULL
, &tv
);
1802 (void) init_client (fd
, NULL
);
1805 /* Just in case accept() failed for some reason other than EBADF */
1811 cache_timer_thread (void *arg
)
1813 #ifndef HAVE_PTHREAD_CANCEL
1814 int *n
= xmalloc (sizeof (int));
1817 pthread_setspecific (signal_thread_key
, n
);
1821 #ifdef HAVE_PR_SET_NAME
1822 prctl (PR_SET_NAME
, "cache timer");
1824 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1828 struct timeval tv
= { 1, 0 };
1829 #ifndef HAVE_PTHREAD_CANCEL
1832 n
= (int *) pthread_getspecific (signal_thread_key
);
1837 select (0, NULL
, NULL
, NULL
, &tv
);
1838 cache_adjust_timeout ();
1845 signal_loop (sigset_t sigset
)
1854 sigwait (&sigset
, &sig
);
1857 log_write (_("caught signal %i (%s)"), sig
, strsignal (sig
));
1862 pthread_cond_signal (&rcfile_cond
);
1865 log_write (_("clearing file cache"));
1867 send_status_all (STATUS_CACHE
, NULL
);
1886 log_write (_ ("Caught signal %i (%s). Exiting."), sig
, strsignal (sig
));
1887 #ifdef HAVE_BACKTRACE
1888 BACKTRACE (__FUNCTION__
);
1894 waiting_for_exit (void *arg
)
1897 #ifndef HAVE_PTHREAD_CANCEL
1898 int *n
= xmalloc (sizeof (int));
1901 pthread_setspecific (signal_thread_key
, n
);
1905 #ifdef HAVE_PR_SET_NAME
1906 prctl (PR_SET_NAME
, "exiting");
1908 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1909 log_write (_("waiting for all clients to disconnect"));
1910 MUTEX_LOCK (&quit_mutex
);
1911 pthread_cleanup_push (cleanup_mutex_cb
, &quit_mutex
);
1918 MUTEX_LOCK (&cn_mutex
);
1919 n
= slist_length (cn_thread_list
);
1920 MUTEX_UNLOCK (&cn_mutex
);
1924 #ifndef HAVE_PTHREAD_CANCEL
1925 int *s
= (int *) pthread_getspecific (signal_thread_key
);
1932 log_write (_("%i clients remain"), n
);
1936 INIT_TIMESPEC (SIG_TIMEOUT
, ts
);
1937 pthread_cond_timedwait (&quit_cond
, &quit_mutex
, &ts
);
1940 kill (getpid (), SIGQUIT
);
1941 pthread_cleanup_pop (1);
1946 server_loop (int sockfd
, char **socketpath
)
1948 pthread_t accept_tid
;
1949 pthread_t cache_timeout_tid
;
1950 int cancel_timeout_thread
= 0, cancel_accept_thread
= 0;
1951 int cancel_keepalive_thread
= 0;
1958 sigemptyset (&sigset
);
1961 sigaddset (&sigset
, SIGTERM
);
1962 sigaddset (&sigset
, SIGINT
);
1964 /* Clears the file cache. */
1965 sigaddset (&sigset
, SIGUSR1
);
1967 /* Configuration file reloading. */
1968 sigaddset (&sigset
, SIGHUP
);
1970 /* For exiting cleanly. */
1971 sigaddset (&sigset
, SIGQUIT
);
1973 #ifndef HAVE_PTHREAD_CANCEL
1975 The socket, cache and rcfile threads use this signal when
1976 pthread_cancel() is unavailable. Prevent the main thread from
1977 catching this signal from another process.
1979 sigaddset (&sigset
, SIGUSR2
);
1982 /* When mem.c cannot find a pointer in the list (double free). */
1983 signal (SIGABRT
, catchsig
);
1984 sigaddset (&sigset
, SIGABRT
);
1985 sigprocmask (SIG_BLOCK
, &sigset
, NULL
);
1987 #ifndef HAVE_PTHREAD_CANCEL
1988 /* Remove this signal from the watched signals in signal_loop(). */
1989 sigdelset (&sigset
, SIGUSR2
);
1992 /* Ignored everywhere. When a client disconnects abnormally this signal
1993 * gets raised. It isn't needed though because client_thread() will check
1994 * for rcs even after the client disconnects. */
1995 signal (SIGPIPE
, SIG_IGN
);
1997 /* Can show a backtrace of the stack in the log. */
1998 signal (SIGSEGV
, catchsig
);
2001 /* Needs to be done after the fork(). */
2002 if (!start_stop_tls (0))
2009 pthread_mutex_init (&quit_mutex
, NULL
);
2010 pthread_cond_init (&quit_cond
, NULL
);
2011 log_write (_("%s started for user %s"), PACKAGE_STRING
, get_username ());
2014 if (config_get_boolean ("global", "enable_tcp"))
2015 log_write (_("Listening on %s and TCP port %i"), *socketpath
,
2016 config_get_integer ("global", "tcp_port"));
2018 log_write (_("Listening on %s"), *socketpath
);
2020 log_write (_("Listening on %s"), *socketpath
);
2023 rc
= create_thread (keepalive_thread
, NULL
, &keepalive_tid
, 0);
2026 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2027 pwmd_strerror (rc
));
2031 cancel_keepalive_thread
= 1;
2032 rc
= create_thread (reload_rcfile_thread
, NULL
, &rcfile_tid
, 0);
2035 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2036 pwmd_strerror (rc
));
2040 rc
= create_thread (cache_timer_thread
, NULL
, &cache_timeout_tid
, 0);
2043 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2044 pwmd_strerror (rc
));
2048 cancel_timeout_thread
= 1;
2049 rc
= create_thread (accept_thread
, &sockfd
, &accept_tid
, 0);
2052 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2053 pwmd_strerror (rc
));
2057 cancel_accept_thread
= 1;
2059 signal_loop (sigset
);
2065 * We're out of the main server loop. This happens when a signal was sent
2066 * to terminate the daemon. We'll wait for all clients to disconnect
2067 * before exiting but exit immediately if another termination signal is
2070 if (cancel_accept_thread
)
2072 #ifdef HAVE_PTHREAD_CANCEL
2073 int n
= pthread_cancel (accept_tid
);
2075 int n
= pthread_kill (accept_tid
, SIGUSR2
);
2078 pthread_join (accept_tid
, NULL
);
2084 shutdown (sockfd
, SHUT_RDWR
);
2086 unlink (*socketpath
);
2087 xfree (*socketpath
);
2089 MUTEX_LOCK (&cn_mutex
);
2090 n
= slist_length (cn_thread_list
);
2091 MUTEX_UNLOCK (&cn_mutex
);
2097 rc
= create_thread (waiting_for_exit
, NULL
, &tid
, 0);
2100 if (signal_loop (sigset
))
2102 log_write (_("Received second termination request. Exiting."));
2103 #ifdef HAVE_PTHREAD_CANCEL
2104 pthread_cancel (tid
);
2106 pthread_kill (tid
, SIGUSR2
);
2108 pthread_join (tid
, NULL
);
2112 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2113 pwmd_strerror (rc
));
2116 if (cancel_timeout_thread
)
2118 #ifdef HAVE_PTHREAD_CANCEL
2119 pthread_cancel (cache_timeout_tid
);
2121 pthread_kill (cache_timeout_tid
, SIGUSR2
);
2123 pthread_join (cache_timeout_tid
, NULL
);
2126 if (cancel_keepalive_thread
)
2128 #ifdef HAVE_PTHREAD_CANCEL
2129 pthread_cancel (keepalive_tid
);
2131 pthread_kill (keepalive_tid
, SIGUSR2
);
2133 pthread_join (keepalive_tid
, NULL
);
2136 cleanup_all_clients (0);
2141 pthread_cond_destroy (&quit_cond
);
2142 pthread_mutex_destroy (&quit_mutex
);
2143 return segv
? EXIT_FAILURE
: EXIT_SUCCESS
;;
2150 ("Failed to add a file to the cache. Use --ignore to force startup. Exiting."));
2154 /* This is called from cache.c:clear_once(). See
2155 * command.c:clearcache_command() for details about lock checking.
2158 free_cache_data (file_cache_t
* cache
)
2160 gpg_error_t rc
= GPG_ERR_NO_DATA
;
2162 struct client_thread_s
*found
= NULL
;
2169 MUTEX_LOCK (&cn_mutex
);
2170 pthread_cleanup_push (cleanup_mutex_cb
, &cn_mutex
);
2171 t
= slist_length (cn_thread_list
);
2173 for (i
= 0; i
< t
; i
++)
2175 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, i
);
2180 if (!memcmp (thd
->cl
->md5file
, cache
->filename
,
2181 sizeof (cache
->filename
)))
2183 if (pthread_equal (pthread_self (), thd
->tid
))
2190 /* Continue trying to find a client who has the same file open and
2191 * also has a lock. */
2192 rc
= cache_lock_mutex (thd
->cl
->ctx
, thd
->cl
->md5file
, -1, 0, -1);
2202 if (self
&& (!rc
|| rc
== GPG_ERR_NO_DATA
))
2203 rc
= cache_lock_mutex (found
->cl
->ctx
, found
->cl
->md5file
, -1, 0, -1);
2205 if (exiting
|| !rc
|| rc
== GPG_ERR_NO_DATA
)
2207 free_cache_data_once (cache
->data
);
2209 cache
->defer_clear
= 0;
2210 cache
->timeout
= -1;
2213 cache_unlock_mutex (found
->cl
->md5file
, 0);
2219 cache
->defer_clear
= 1;
2221 pthread_cleanup_pop (1);
2227 convert_v2_datafile (const char *filename
, const char *cipher
,
2228 const char *keyfile
, const char *keygrip
,
2229 const char *sign_keygrip
, int nopass
,
2230 const char *outfile
, const char *keyparam
,
2231 unsigned long s2k_count
, uint64_t iterations
)
2236 struct crypto_s
*crypto
= NULL
;
2242 if (outfile
[0] == '-' && outfile
[1] == 0)
2245 log_write (_("Converting version 2 data file \"%s\" ..."), filename
);
2246 if (access (filename
, R_OK
) == -1)
2248 log_write ("%s: %s", filename
,
2249 pwmd_strerror (gpg_error_from_errno (errno
)));
2255 log_write (_("Using passphrase file \"%s\" for decryption ..."),
2257 if (access (keyfile
, R_OK
) == -1)
2259 log_write ("%s: %s", keyfile
,
2260 pwmd_strerror (gpg_error_from_errno (errno
)));
2265 rc
= read_v2_datafile (filename
, keyfile
, &data
, &datalen
, &ver
, &algo
);
2268 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
2274 algo
= cipher_string_to_gcrypt (cipher
);
2277 rc
= GPG_ERR_CIPHER_ALGO
;
2286 rc
= parse_doc (data
, datalen
, &doc
);
2290 rc
= convert_pre_212_elements (doc
);
2295 xmlDocDumpFormatMemory (doc
, (xmlChar
**) & data
, (int *) &datalen
,
2298 rc
= GPG_ERR_ENOMEM
;
2306 rc
= init_client_crypto (&crypto
);
2309 memcpy (&crypto
->save
.hdr
, &crypto
->hdr
, sizeof (file_header_t
));
2310 crypto
->save
.hdr
.flags
= set_cipher_flag (crypto
->save
.hdr
.flags
, algo
);
2311 crypto
->save
.s2k_count
= s2k_count
;
2312 crypto
->save
.hdr
.iterations
= iterations
;
2316 rc
= export_common (NULL
, 0, crypto
, data
, datalen
, outfile
, keyfile
,
2317 &key
, &keylen
, 0, 0, nopass
);
2322 rc
= agent_set_pinentry_options (crypto
->agent
);
2324 rc
= agent_export_common (crypto
, keygrip
, sign_keygrip
, nopass
,
2325 data
, datalen
, outfile
, keyparam
,
2326 no_passphrase_file
? NULL
: keyfile
);
2330 log_write (_("Output written to \"%s\"."), outfile
);
2340 cleanup_crypto (&crypto
);
2343 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
2348 usage (const char *pn
, int status
)
2350 FILE *fp
= status
== EXIT_FAILURE
? stderr
: stdout
;
2352 fprintf (fp
, _("Usage: %s [OPTIONS] [file1] [...]\n"
2353 " -f, --rcfile=filename load the specfied configuration file\n"
2354 " (~/.pwmd/config)\n"
2355 " --homedir alternate pwmd home directory (~/.pwmd)\n"
2357 " --use-agent enable use of gpg-agent\n"
2359 " -n, --no-fork run as a foreground process\n"
2360 " -D, --disable-dump disable the LIST, XPATH and DUMP commands\n"
2361 " --ignore, --force ignore file errors during startup\n"
2362 " --debug-level=keywords log protocol output (see manual for details)\n"
2363 " -o, --outfile=filename output file when importing or converting\n"
2364 " -C, --convert=filename convert a version 2 data file to version 3\n"
2365 " -I, --import=filename import a pwmd DTD formatted XML file)\n"
2366 " -k, --passphrase-file=file for use when importing or converting\n"
2367 " --no-passphrase-file prompt instead of using --passphrase-file when\n"
2369 " --no-passphrase when importing or converting\n"
2370 " --keygrip=hex public key to use when encrypting\n"
2371 " --sign-keygrip=hex private key to use when signing\n"
2372 " --keyparam=s-exp custom key parameters to use (RSA-2048)\n"
2373 " --cipher=string encryption cipher (aes256)\n"
2374 " --iterations=N cipher iteration count (N+1)\n"
2375 " --s2k-count=N hash iteration count (>65536, calibrated)\n"
2376 " --help this help text\n"
2377 " --version show version and compile time features\n"),
2383 unlink_stale_socket (const char *sock
, const char *pidfile
)
2385 log_write (_ ("removing stale socket %s"), sock
);
2391 test_pidfile (const char *path
, const char *sock
, char *buf
, size_t buflen
,
2392 char **pidfile
, int create
, mode_t mode
)
2400 memset (buf
, 0, buflen
);
2401 snprintf (buf
, buflen
, "%s/%s.pid", homedir
, sock
);
2402 *pidfile
= str_dup (buf
);
2403 fd
= open (buf
, O_RDONLY
);
2406 fd
= open (*pidfile
, O_CREAT
|O_WRONLY
|O_TRUNC
, mode
);
2410 if (!create
&& errno
!= ENOENT
)
2412 log_write ("%s: %s", buf
, pwmd_strerror (errno
));
2420 log_write ("%s: %s", *pidfile
, strerror (errno
));
2426 snprintf (buf
, buflen
, "%i", getpid ());
2427 write (fd
, buf
, strlen (buf
));
2432 len
= read (fd
, buf
, sizeof(buf
));
2436 unlink_stale_socket (path
, *pidfile
);
2440 if (sscanf (buf
, "%i", &pid
) != 1 || pid
== 0)
2442 unlink_stale_socket (path
, *pidfile
);
2446 if (kill (pid
, 0) == -1)
2448 unlink_stale_socket (path
, *pidfile
);
2452 log_write (_ ("an instance for socket %s is already running"), path
);
2459 main (int argc
, char *argv
[])
2462 struct sockaddr_un addr
;
2464 char *socketpath
= NULL
, *socketdir
, *socketname
= NULL
;
2465 char *socketarg
= NULL
;
2466 char *datadir
= NULL
;
2467 char *pidfile
= NULL
;
2471 char **cache_push
= NULL
;
2472 char *import
= NULL
, *keygrip
= NULL
, *sign_keygrip
= NULL
;
2473 char *keyparam
= NULL
;
2474 int estatus
= EXIT_FAILURE
;
2476 char *outfile
= NULL
;
2479 int show_version
= 0;
2481 int no_passphrase
= 0;
2483 char *convertfile
= NULL
;
2484 char *cipher
= NULL
;
2485 char *keyfile
= NULL
;
2486 unsigned long s2k_count
= 0;
2487 uint64_t iterations
= 0;
2489 char *debug_level_opt
= NULL
;
2491 /* Must maintain the same order as longopts[] */
2494 OPT_VERSION
, OPT_HELP
,
2498 OPT_DEBUG_LEVEL
, OPT_HOMEDIR
, OPT_NO_FORK
, OPT_DISABLE_DUMP
,
2499 OPT_IGNORE
, OPT_FORCE
, OPT_RCFILE
, OPT_CONVERT
,
2500 OPT_PASSPHRASE_FILE
, OPT_IMPORT
, OPT_OUTFILE
,
2501 OPT_NO_PASSPHRASE_FILE
, OPT_KEYGRIP
, OPT_SIGN_KEYGRIP
,
2502 OPT_KEYPARAM
, OPT_CIPHER
, OPT_ITERATIONS
, OPT_S2K_COUNT
,
2505 const char *optstring
= "nf:C:k:I:o:";
2506 const struct option longopts
[] = {
2507 {"version", no_argument
, 0, 0},
2508 {"help", no_argument
, 0, 0},
2510 {"use-agent", no_argument
, 0, 0},
2512 {"debug-level", required_argument
, 0, 0},
2513 {"homedir", required_argument
, 0, 0},
2514 {"no-fork", no_argument
, 0, 'n'},
2515 {"disable_dump", no_argument
, 0, 0},
2516 {"ignore", no_argument
, 0, 0},
2517 {"force", no_argument
, 0, 0},
2518 {"rcfile", required_argument
, 0, 'f'},
2519 {"convert", required_argument
, 0, 'C'},
2520 {"passphrase-file", required_argument
, 0, 'k'},
2521 {"import", required_argument
, 0, 'I'},
2522 {"outfile", required_argument
, 0, 'o'},
2523 {"no-passphrase-file", no_argument
, 0, 0},
2524 {"keygrip", required_argument
, 0, 0},
2525 {"sign-keygrip", required_argument
, 0, 0},
2526 {"keyparam", required_argument
, 0, 0},
2527 {"cipher", required_argument
, 0, 0},
2528 {"cipher-iterations", required_argument
, 0, 0},
2529 {"s2k-count", required_argument
, 0, 0},
2530 {"no-passphrase", no_argument
, 0, 0},
2535 #ifdef HAVE_SETRLIMIT
2538 rl
.rlim_cur
= rl
.rlim_max
= 0;
2540 if (setrlimit (RLIMIT_CORE
, &rl
) != 0)
2541 err (EXIT_FAILURE
, "setrlimit()");
2546 setlocale (LC_ALL
, "");
2547 bindtextdomain ("pwmd", LOCALEDIR
);
2548 textdomain ("pwmd");
2556 if (setup_crypto ())
2557 exit (EXIT_FAILURE
);
2560 gnutls_global_set_mem_functions (xmalloc
, xmalloc
, secure_mem_check
,
2562 gnutls_global_init ();
2563 gnutls_global_set_log_function (tls_log
);
2564 gnutls_global_set_log_level (1);
2568 xmlMemSetup (xfree
, xmalloc
, xrealloc
, str_dup
);
2576 while ((opt
= getopt_long (argc
, argv
, optstring
, longopts
, &optindex
))
2585 convertfile
= optarg
;
2600 rcfile
= str_dup (optarg
);
2603 usage (argv
[0], EXIT_FAILURE
);
2619 case OPT_DEBUG_LEVEL
:
2620 debug_level_opt
= optarg
;
2623 homedir
= str_dup (optarg
);
2628 case OPT_DISABLE_DUMP
:
2636 rcfile
= str_dup (optarg
);
2639 convertfile
= optarg
;
2641 case OPT_PASSPHRASE_FILE
:
2650 case OPT_NO_PASSPHRASE_FILE
:
2651 no_passphrase_file
= 1;
2656 case OPT_SIGN_KEYGRIP
:
2657 sign_keygrip
= optarg
;
2665 case OPT_ITERATIONS
:
2666 iterations
= strtoull (optarg
, NULL
, 10);
2669 s2k_count
= strtoul (optarg
, NULL
, 10);
2671 case OPT_NO_PASSPHRASE
:
2683 "Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013\n"
2685 "Released under the terms of the GPL v2. Use at your own risk.\n\n"
2686 "Compile time features:\n%s"), PACKAGE_STRING
,
2689 "+PWMD_HOMEDIR=" PWMD_HOMEDIR
"\n"
2727 exit (EXIT_SUCCESS
);
2732 homedir
= str_dup(PWMD_HOMEDIR
);
2734 homedir
= str_asprintf ("%s/.pwmd", get_home_dir ());
2737 if (mkdir (homedir
, 0700) == -1 && errno
!= EEXIST
)
2738 err (EXIT_FAILURE
, "%s", homedir
);
2740 snprintf (buf
, sizeof (buf
), "%s/data", homedir
);
2741 if (mkdir (buf
, 0700) == -1 && errno
!= EEXIST
)
2742 err (EXIT_FAILURE
, "%s", buf
);
2744 datadir
= str_dup (buf
);
2745 pthread_mutexattr_t attr
;
2746 pthread_mutexattr_init (&attr
);
2747 pthread_mutexattr_settype (&attr
, PTHREAD_MUTEX_RECURSIVE
);
2748 pthread_mutex_init (&rcfile_mutex
, &attr
);
2749 pthread_cond_init (&rcfile_cond
, NULL
);
2750 pthread_mutex_init (&cn_mutex
, &attr
);
2751 pthread_mutexattr_destroy (&attr
);
2752 pthread_key_create (&last_error_key
, free_key
);
2753 #ifndef HAVE_PTHREAD_CANCEL
2754 pthread_key_create (&signal_thread_key
, free_key
);
2758 rcfile
= str_asprintf ("%s/config", homedir
);
2760 global_config
= config_parse (rcfile
);
2762 exit (EXIT_FAILURE
);
2766 use_agent
= config_get_boolean ("global", "use_agent");
2771 if (debug_level_opt
)
2772 debug_level
= str_split (debug_level_opt
, ",", 0);
2774 x
= config_get_int_param (global_config
, "global", "priority", &exists
);
2775 if (exists
&& x
!= atoi(INVALID_PRIORITY
))
2778 if (setpriority (PRIO_PROCESS
, 0, x
) == -1)
2780 log_write ("setpriority(): %s",
2781 pwmd_strerror (gpg_error_from_errno (errno
)));
2785 #ifdef HAVE_MLOCKALL
2786 if (disable_mlock
== 0 && mlockall (MCL_CURRENT
| MCL_FUTURE
) == -1)
2788 log_write ("mlockall(): %s",
2789 pwmd_strerror (gpg_error_from_errno (errno
)));
2794 rc
= cache_init (free_cache_data
);
2797 log_write ("pwmd: ERR %i: %s", rc
,
2798 gpg_err_code (rc
) == GPG_ERR_UNKNOWN_VERSION
2799 ? _("incompatible gpg-agent version: 2.1.0 or later required")
2800 : pwmd_strerror (rc
));
2805 s2k_count
= config_get_ulong (NULL
, "s2k_count");
2810 usage (argv
[0], EXIT_FAILURE
);
2812 estatus
= convert_v2_datafile (convertfile
, cipher
, keyfile
, keygrip
,
2813 sign_keygrip
, no_passphrase
, outfile
,
2814 keyparam
, s2k_count
, iterations
);
2815 config_free (global_config
);
2822 if (!outfile
|| !*outfile
)
2823 usage (argv
[0], EXIT_FAILURE
);
2825 if (outfile
&& outfile
[0] == '-' && outfile
[1] == 0)
2828 estatus
= xml_import (import
, outfile
, keygrip
, sign_keygrip
, keyfile
,
2829 no_passphrase
, cipher
, keyparam
, s2k_count
,
2831 config_free (global_config
);
2836 p
= config_get_string ("global", "socket_path");
2838 p
= str_asprintf ("%s/socket", homedir
);
2840 socketarg
= expand_homedir (p
);
2844 disable_list_and_dump
= config_get_boolean ("global",
2845 "disable_list_and_dump");
2847 disable_list_and_dump
= secure
;
2849 cache_push
= config_get_list ("global", "cache_push");
2851 while (optind
< argc
)
2853 if (strv_printf (&cache_push
, "%s", argv
[optind
++]) == 0)
2854 errx (EXIT_FAILURE
, "%s", pwmd_strerror (GPG_ERR_ENOMEM
));
2857 if (strchr (socketarg
, '/') == NULL
)
2859 socketdir
= getcwd (buf
, sizeof (buf
));
2860 socketname
= str_dup (socketarg
);
2861 socketpath
= str_asprintf ("%s/%s", socketdir
, socketname
);
2865 socketname
= str_dup (strrchr (socketarg
, '/'));
2867 socketarg
[strlen (socketarg
) - strlen (socketname
) - 1] = 0;
2868 socketdir
= str_dup (socketarg
);
2869 socketpath
= str_asprintf ("%s/%s", socketdir
, socketname
);
2872 if (chdir (datadir
))
2874 log_write ("%s: %s", datadir
,
2875 pwmd_strerror (gpg_error_from_errno (errno
)));
2876 unlink (socketpath
);
2880 if (test_pidfile (socketpath
, socketname
, buf
, sizeof(buf
), &pidfile
, 0,
2885 * bind() doesn't like the full pathname of the socket or any non alphanum
2886 * characters so change to the directory where the socket is wanted then
2887 * create it then change to datadir.
2889 if (chdir (socketdir
))
2891 log_write ("%s: %s", socketdir
,
2892 pwmd_strerror (gpg_error_from_errno (errno
)));
2898 if ((sockfd
= socket (PF_UNIX
, SOCK_STREAM
, 0)) == -1)
2900 log_write ("socket(): %s", pwmd_strerror (gpg_error_from_errno (errno
)));
2904 addr
.sun_family
= AF_UNIX
;
2905 snprintf (addr
.sun_path
, sizeof (addr
.sun_path
), "%s", socketname
);
2907 if (bind (sockfd
, (struct sockaddr
*) &addr
, sizeof (struct sockaddr
)) ==
2910 log_write ("bind(): %s", pwmd_strerror (gpg_error_from_errno (errno
)));
2912 if (errno
== EADDRINUSE
)
2915 log_write (_("Either there is another pwmd running or '%s' is a \n"
2916 "stale socket. Please remove it manually."), socketpath
);
2923 char *t
= config_get_string ("global", "socket_perms");
2928 mode
= strtol (t
, NULL
, 8);
2932 if (chmod (socketname
, mode
) == -1)
2934 log_write ("%s: %s", socketname
,
2935 pwmd_strerror (gpg_error_from_errno (errno
)));
2945 xfree (--socketname
);
2947 if (chdir (datadir
))
2949 log_write ("%s: %s", datadir
,
2950 pwmd_strerror (gpg_error_from_errno (errno
)));
2958 * Set the cache entry for a file. Prompts for the password.
2962 struct crypto_s
*crypto
= NULL
;
2963 gpg_error_t rc
= init_client_crypto (&crypto
);
2967 estatus
= EXIT_FAILURE
;
2974 rc
= agent_set_pinentry_options (crypto
->agent
);
2977 estatus
= EXIT_FAILURE
;
2983 for (opt
= 0; cache_push
[opt
]; opt
++)
2985 if (!do_cache_push (cache_push
[opt
], crypto
) && !force
)
2987 strv_free (cache_push
);
2989 estatus
= EXIT_FAILURE
;
2990 cleanup_crypto (&crypto
);
2994 cleanup_crypto_stage1 (crypto
);
2999 (void) kill_scd (crypto
->agent
);
3002 cleanup_crypto (&crypto
);
3003 strv_free (cache_push
);
3004 log_write (!nofork
? _("Done. Daemonizing...") :
3005 _("Done. Waiting for connections..."));
3008 config_clear_keys ();
3010 if (listen (sockfd
, 0) == -1)
3012 log_write ("listen(): %s", pwmd_strerror (gpg_error_from_errno (errno
)));
3021 log_write ("fork(): %s",
3022 pwmd_strerror (gpg_error_from_errno (errno
)));
3031 _exit (EXIT_SUCCESS
);
3035 (void)test_pidfile (socketpath
, socketname
, buf
, sizeof(buf
), &pidfile
, 1,
3038 pthread_key_create (&thread_name_key
, free_key
);
3039 pthread_setspecific (thread_name_key
, str_dup ("main"));
3040 estatus
= server_loop (sockfd
, &socketpath
);
3043 if (socketpath
&& do_unlink
)
3045 unlink (socketpath
);
3051 gnutls_global_deinit ();
3055 #ifdef HAVE_PTHREAD_CANCEL
3056 pthread_cancel (rcfile_tid
);
3058 pthread_kill (rcfile_tid
, SIGUSR2
);
3059 pthread_cond_signal (&rcfile_cond
);
3061 pthread_join (rcfile_tid
, NULL
);
3064 pthread_cond_destroy (&rcfile_cond
);
3065 pthread_mutex_destroy (&rcfile_mutex
);
3066 pthread_key_delete (last_error_key
);
3067 #ifndef HAVE_PTHREAD_CANCEL
3068 pthread_key_delete (signal_thread_key
);
3072 config_free (global_config
);
3075 xfree (home_directory
);
3077 xmlCleanupParser ();
3078 xmlCleanupGlobals ();
3084 if (estatus
== EXIT_SUCCESS
)
3085 log_write (_("pwmd exiting normally"));
3087 pthread_key_delete (thread_name_key
);
3089 #if defined(DEBUG) && !defined(MEM_DEBUG)