2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
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
;
107 #ifndef HAVE_PTHREAD_CANCEL
108 static pthread_key_t signal_thread_key
;
114 static pthread_t tls_tid
;
115 static pthread_t tls6_tid
;
116 static int spawned_tls
;
117 static int spawned_tls6
;
119 static int start_stop_tls (int term
);
122 static int do_cache_push (const char *filename
, struct crypto_s
*crypto
);
123 static int signal_loop (sigset_t sigset
);
125 GCRY_THREAD_OPTION_PTHREAD_IMPL
;
127 #ifndef HAVE_PTHREAD_CANCEL
128 #define INIT_THREAD_SIGNAL do { \
129 struct sigaction act; \
131 sigemptyset (&sigset); \
132 sigaddset (&sigset, SIGUSR2); \
133 pthread_sigmask (SIG_UNBLOCK, &sigset, NULL); \
134 memset (&act, 0, sizeof(act)); \
135 act.sa_flags = SA_SIGINFO; \
136 act.sa_mask = sigset; \
137 act.sa_sigaction = catch_thread_signal; \
138 sigaction (SIGUSR2, &act, NULL); \
142 catch_thread_signal (int sig
, siginfo_t
*info
, void *ctx
)
144 int *n
= (int *) pthread_getspecific (signal_thread_key
);
147 pthread_setspecific (signal_thread_key
, n
);
152 cache_push_from_rcfile ()
154 struct crypto_s
*crypto
= NULL
;
156 gpg_error_t rc
= init_client_crypto (&crypto
);
160 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
167 rc
= set_agent_option (crypto
->agent
, "pinentry-mode", "error");
170 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
176 cache_push
= config_get_list ("global", "cache_push");
181 for (p
= cache_push
; *p
; p
++)
183 (void) do_cache_push (*p
, crypto
);
184 cleanup_crypto_stage1 (crypto
);
187 strv_free (cache_push
);
191 (void) kill_scd (crypto
->agent
);
193 cleanup_crypto (&crypto
);
199 int n
= config_get_boolean ("global", "enable_logging");
203 char *p
= config_get_string ("global", "log_path");
205 if (!p
|| (logfile
&& p
&& log_fd
!= -1 && strcmp(p
, logfile
)))
214 logfile
= expand_homedir (p
);
227 log_syslog
= config_get_boolean ("global", "syslog");
229 openlog ("pwmd", LOG_NDELAY
| LOG_PID
, LOG_DAEMON
);
233 reload_rcfile_thread (void *arg
)
235 #ifndef HAVE_PTHREAD_CANCEL
236 int *n
= xmalloc (sizeof (int));
239 pthread_setspecific (signal_thread_key
, n
);
243 #ifdef HAVE_PR_SET_NAME
244 prctl (PR_SET_NAME
, "reload rcfile");
246 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
247 MUTEX_LOCK (&rcfile_mutex
);
248 pthread_cleanup_push (cleanup_mutex_cb
, &rcfile_mutex
);
252 struct allowed_users_s
257 struct slist_s
*allowed_users
= NULL
;
258 struct slist_s
*config
;
259 int b
= disable_list_and_dump
;
260 uid_t invoking_uid_orig
= invoking_uid
;
261 gid_t invoking_gid_orig
= invoking_gid
;
262 char *invoking_tls_orig
;
264 int require_save_key
= config_get_bool_param (global_config
, "global",
268 int tcp_require_key
= config_get_bool_param (global_config
, "global",
273 pthread_cond_wait (&rcfile_cond
, &rcfile_mutex
);
274 #ifndef HAVE_PTHREAD_CANCEL
275 int *cancel
= (int *) pthread_getspecific (signal_thread_key
);
280 /* Keep the "allowed" parameter across rcfile reloads to prevent
282 int n
, t
= slist_length (global_config
);
283 for (n
= 0; n
< t
; n
++)
285 struct config_section_s
*section
;
288 section
= slist_nth_data (global_config
, n
);
289 users
= config_get_list_param (global_config
, section
->name
,
293 struct allowed_users_s
*allowed
;
295 allowed
= xmalloc (sizeof(struct allowed_users_s
));
296 allowed
->section
= str_dup (section
->name
);
297 allowed
->users
= users
;
298 allowed_users
= slist_append (allowed_users
, allowed
);
302 invoking_tls_orig
= invoking_tls
? str_dup (invoking_tls
) : NULL
;
303 xfree (invoking_tls
);
305 log_write (_("reload_origing configuration file '%s'"), rcfile
);
307 config
= config_parse (rcfile
);
310 config_free (global_config
);
311 global_config
= config
;
313 cache_push_from_rcfile ();
314 config_clear_keys ();
317 xfree (invoking_tls
);
318 invoking_tls
= invoking_tls_orig
;
319 invoking_uid
= invoking_uid_orig
;
320 invoking_gid
= invoking_gid_orig
;
321 disable_list_and_dump
= !disable_list_and_dump
? b
: 1;
322 config_set_bool_param (&global_config
, "global", "require_save_key",
323 require_save_key
? "true" : "false");
325 if (config_get_bool_param (global_config
, "global", "tcp_require_key",
329 config_set_bool_param (&global_config
, "global", "tcp_require_key",
330 tcp_require_key
? "true" : "false");
335 int n
, t
= slist_length (allowed_users
);
337 for (n
= 0; n
< t
; n
++)
339 struct allowed_users_s
*allowed
;
342 allowed
= slist_nth_data (allowed_users
, n
);
343 tmp
= strv_join (",", allowed
->users
);
344 config_set_list_param (&global_config
, allowed
->section
,
347 xfree (allowed
->section
);
348 strv_free (allowed
->users
);
352 slist_free (allowed_users
);
356 /* Kill existing listening threads since the configured listening
357 * protocols may have changed. */
363 pthread_cleanup_pop (1);
368 send_error (assuan_context_t ctx
, gpg_error_t e
)
370 struct client_s
*client
= assuan_get_pointer (ctx
);
372 if (gpg_err_source (e
) == GPG_ERR_SOURCE_UNKNOWN
)
379 return assuan_process_done (ctx
, 0);
383 log_write ("ERR %i: %s", e
, pwmd_strerror (e
));
387 if (client
&& client
->xml_error
)
389 log_write ("%s", client
->xml_error
->message
);
390 xfree (client
->last_error
);
391 client
->last_error
= NULL
;
392 if (client
->xml_error
->message
)
393 client
->last_error
= str_dup (client
->xml_error
->message
);
395 e
= assuan_process_done (ctx
,
396 assuan_set_error (ctx
, e
,
397 client
->xml_error
->message
? client
->xml_error
->message
: NULL
));
398 xmlResetLastError ();
399 xmlResetError (client
->xml_error
);
400 xfree (client
->xml_error
);
401 client
->xml_error
= NULL
;
405 return assuan_process_done (ctx
,
406 assuan_set_error (ctx
, e
, pwmd_strerror (e
)));
410 assuan_log_cb (assuan_context_t ctx
, void *data
, unsigned cat
,
413 static pthread_mutex_t m
= PTHREAD_MUTEX_INITIALIZER
;
417 pthread_mutex_lock (&m
);
418 pthread_cleanup_push ((void (*)(void *)) pthread_mutex_unlock
, &m
);
419 t
= strv_length (debug_level
);
421 for (i
= 0; i
< t
; i
++)
423 if (!strcasecmp (debug_level
[i
], (char *) "init")
424 && cat
== ASSUAN_LOG_INIT
)
430 if (!strcasecmp (debug_level
[i
], (char *) "ctx")
431 && cat
== ASSUAN_LOG_CTX
)
437 if (!strcasecmp (debug_level
[i
], (char *) "engine")
438 && cat
== ASSUAN_LOG_ENGINE
)
444 if (!strcasecmp (debug_level
[i
], (char *) "data")
445 && cat
== ASSUAN_LOG_DATA
)
451 if (!strcasecmp (debug_level
[i
], (char *) "sysio")
452 && cat
== ASSUAN_LOG_SYSIO
)
458 if (!strcasecmp (debug_level
[i
], (char *) "control")
459 && cat
== ASSUAN_LOG_CONTROL
)
473 open (logfile
, O_WRONLY
| O_CREAT
| O_APPEND
, 0600)) == -1)
474 warn ("%s", logfile
);
477 pthread_cleanup_push (cleanup_fd_cb
, &fd
);
478 write (fd
, msg
, strlen (msg
));
479 pthread_cleanup_pop (1);
485 fprintf (stderr
, "%s%s", data
? (char *) data
: "", msg
);
490 pthread_cleanup_pop (1);
495 log_write (const char *fmt
, ...)
501 pthread_t tid
= pthread_self ();
502 static pthread_mutex_t m
= PTHREAD_MUTEX_INITIALIZER
;
504 if ((!logfile
&& !isatty (STDERR_FILENO
) && !log_syslog
) || !fmt
)
507 pthread_mutex_lock (&m
);
508 pthread_cleanup_push ((void (*)(void *)) pthread_mutex_unlock
, &m
);
510 if (!cmdline
&& logfile
&& log_fd
== -1)
512 log_fd
= open (logfile
, O_WRONLY
| O_CREAT
| O_APPEND
, 0600);
514 warn ("%s", logfile
);
519 if (str_vasprintf (&args
, fmt
, ap
) != -1)
523 pthread_cleanup_push (xfree
, args
);
524 fprintf (stderr
, "pwmd: %s\n", args
);
526 pthread_cleanup_pop (1);
530 char *name
= pthread_getspecific (thread_name_key
);
533 pthread_cleanup_push (xfree
, args
);
534 snprintf (buf
, sizeof (buf
), "%s(%p): ", name
? name
: _("unknown"),
538 if (!cmdline
&& log_syslog
&& !nofork
)
539 syslog (LOG_INFO
, "%s%s", name
, args
);
542 struct tm
*tm
= localtime (&now
);
544 strftime (tbuf
, sizeof (tbuf
), "%b %d %Y %H:%M:%S ", tm
);
545 tbuf
[sizeof (tbuf
) - 1] = 0;
547 if (args
[strlen (args
) - 1] == '\n')
548 args
[strlen (args
) - 1] = 0;
550 line
= str_asprintf ("%s %i %s%s\n", tbuf
, getpid (), name
,
552 pthread_cleanup_pop (1);
555 pthread_cleanup_push (xfree
, line
);
556 if (logfile
&& log_fd
!= -1)
558 write (log_fd
, line
, strlen (line
));
564 fprintf (stdout
, "%s", line
);
568 pthread_cleanup_pop (1);
574 pthread_cleanup_pop (0);
576 if (log_fd
!= -1 && config_get_boolean (NULL
, "log_keepopen") <= 0)
582 pthread_mutex_unlock (&m
);
587 secure_mem_check (const void *arg
)
596 gcry_control (GCRYCTL_SET_THREAD_CBS
, &gcry_threads_pthread
);
598 if (!gcry_check_version (GCRYPT_VERSION
))
600 fprintf (stderr
, _("gcry_check_version(): Incompatible libgcrypt. "
601 "Wanted %s, got %s.\n"), GCRYPT_VERSION
,
602 gcry_check_version (NULL
));
603 return GPG_ERR_UNKNOWN_VERSION
;
606 gcry_set_allocation_handler (xmalloc
, xmalloc
, NULL
, xrealloc
, xfree
);
611 do_validate_peer (assuan_context_t ctx
, const char *section
,
612 assuan_peercred_t
* peer
)
617 struct client_s
*client
= assuan_get_pointer (ctx
);
620 if (client
&& client
->thd
->remote
)
621 return tls_validate_access (client
, section
);
624 rc
= assuan_get_peercred (ctx
, peer
);
628 users
= config_get_list (section
, "allowed");
631 for (char **p
= users
; *p
; p
++)
633 rc
= acl_check_common(client
, *p
, (*peer
)->uid
, (*peer
)->gid
,
640 return allowed
? 0 : GPG_ERR_INV_USER_ID
;
644 peer_is_self(struct client_s
*client
)
647 if (client
->thd
->remote
)
649 char *p
= invoking_tls
;
652 return GPG_ERR_EPERM
;
654 if (*p
== '#') // to avoid confusion with ACLs, accept the prefix
657 if (!strcmp(client
->thd
->tls
->fp
, p
))
660 return GPG_ERR_EPERM
;
664 if (client
->thd
->peer
->uid
== invoking_uid
)
667 return GPG_ERR_EPERM
;
670 #ifdef HAVE_GETGRNAM_R
672 acl_check_common (struct client_s
*client
, const char *user
, uid_t uid
,
673 gid_t gid
, int *allowed
)
675 struct passwd pw
, *result
;
684 if (*user
== '-' || *user
== '!')
687 if (*user
== '+') // not implemented yet
690 if (*user
== '#') // TLS fingerprint hash
693 if (not || rw
|| tls
)
699 if (client
->thd
->remote
)
701 if (!strcasecmp (client
->thd
->tls
->fp
, user
))
711 else if (client
->thd
->remote
) // Remote client with no TLS in the ACL
715 if (*user
== '@') // all users in group
717 struct group gr
, *gresult
;
718 size_t len
= sysconf (_SC_GETGR_R_SIZE_MAX
);
725 return GPG_ERR_ENOMEM
;
728 if (!getgrnam_r (user
, &gr
, buf
, len
, &gresult
) && gresult
)
730 if (gresult
->gr_gid
== gid
)
737 len
= sysconf (_SC_GETPW_R_SIZE_MAX
);
741 char *tbuf
= xmalloc (len
);
742 for (char **t
= gresult
->gr_mem
; *t
; t
++)
744 if (!getpwnam_r (*t
, &pw
, tbuf
, len
, &result
) && result
)
746 if (result
->pw_uid
== uid
)
759 size_t len
= sysconf (_SC_GETPW_R_SIZE_MAX
);
766 return GPG_ERR_ENOMEM
;
768 if (!getpwnam_r (user
, &pw
, buf
, len
, &result
) && result
)
770 if (result
->pw_uid
== uid
)
781 acl_check_common (struct client_s
*client
, const char *user
, uid_t uid
,
782 gid_t gid
, int *allowed
)
784 struct passwd
*result
;
792 if (*user
== '-' || *user
== '!')
795 if (*user
== '+') // not implemented yet
798 if (*user
== '#') // TLS fingerprint hash
801 if (not || rw
|| tls
)
807 if (client
->thd
->remote
)
809 if (!strcasecmp (client
->thd
->tls
->fp
, user
))
819 if (*user
== '@') // all users in group
821 struct group
*gresult
;
824 gresult
= getgrnam (user
);
825 if (gresult
&& gresult
->gr_gid
== gid
)
831 for (char **t
= gresult
->gr_mem
; *t
; t
++)
833 result
= getpwnam (*t
);
834 if (result
&& result
->pw_uid
== uid
)
845 result
= getpwnam (user
);
846 if (result
&& result
->pw_uid
== uid
)
855 validate_peer (struct client_s
*cl
)
861 return tls_validate_access (cl
, NULL
);
864 rc
= do_validate_peer (cl
->ctx
, "global", &cl
->thd
->peer
);
865 if (!rc
|| gpg_err_code (rc
) == GPG_ERR_INV_USER_ID
)
866 log_write ("peer %s: uid=%i, gid=%i, pid=%i",
867 !rc
? _("accepted") : _("rejected"), cl
->thd
->peer
->uid
,
868 cl
->thd
->peer
->gid
, cl
->thd
->peer
->pid
);
870 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
876 xml_error_cb (void *data
, xmlErrorPtr e
)
878 struct client_s
*client
= data
;
881 * Keep the first reported error as the one to show in the error
882 * description. Reset in send_error().
884 if (client
->xml_error
)
887 client
->xml_error
= xcalloc (1, sizeof(xmlError
));
888 xmlCopyError (e
, client
->xml_error
);
892 hook_waitpid (assuan_context_t ctx
, pid_t pid
, int action
,
893 int *status
, int options
)
895 return waitpid (pid
, status
, options
);
899 hook_read (assuan_context_t ctx
, assuan_fd_t fd
, void *data
, size_t len
)
902 struct client_s
*client
= assuan_get_pointer (ctx
);
904 if (client
->thd
->remote
)
905 return tls_read_hook (ctx
, (int) fd
, data
, len
);
908 return read ((int) fd
, data
, len
);
912 hook_write (assuan_context_t ctx
, assuan_fd_t fd
,
913 const void *data
, size_t len
)
916 struct client_s
*client
= assuan_get_pointer (ctx
);
918 if (client
->thd
->remote
)
919 return tls_write_hook (ctx
, (int) fd
, data
, len
);
922 return write ((int) fd
, data
, len
);
926 new_connection (struct client_s
*cl
)
929 static struct assuan_malloc_hooks mhooks
= { xmalloc
, xrealloc
, xfree
};
930 static struct assuan_system_hooks shooks
= {
931 ASSUAN_SYSTEM_HOOKS_VERSION
,
939 NULL
, //sendmsg both are used for FD passing
950 char *prio
= config_get_string ("global", "tls_cipher_suite");
952 cl
->thd
->tls
= tls_init (cl
->thd
->fd
, cl
->thd
->timeout
, prio
);
959 rc
= assuan_new_ext (&cl
->ctx
, GPG_ERR_SOURCE_DEFAULT
, &mhooks
,
960 debug_level
? assuan_log_cb
: NULL
, NULL
);
964 assuan_ctx_set_system_hooks (cl
->ctx
, &shooks
);
965 rc
= assuan_init_socket_server (cl
->ctx
, cl
->thd
->fd
, 2);
969 assuan_set_pointer (cl
->ctx
, cl
);
970 assuan_set_hello_line (cl
->ctx
, PACKAGE_STRING
);
971 rc
= register_commands (cl
->ctx
);
978 cl
->thd
->timeout
= config_get_integer ("global", "tls_timeout");
979 fcntl (cl
->thd
->fd
, F_SETFL
, O_NONBLOCK
);
983 rc
= assuan_accept (cl
->ctx
);
987 rc
= validate_peer (cl
);
988 /* May not be implemented on all platforms. */
989 if (rc
&& gpg_err_code (rc
) != GPG_ERR_ASS_GENERAL
)
992 rc
= init_client_crypto (&cl
->crypto
);
998 cl
->crypto
->agent
->client_ctx
= cl
->ctx
;
1001 cl
->crypto
->client_ctx
= cl
->ctx
;
1002 xmlSetStructuredErrorFunc (cl
, xml_error_cb
);
1006 log_write ("%s", pwmd_strerror (rc
));
1011 * This is called after a client_thread() terminates. Set with
1012 * pthread_cleanup_push().
1015 cleanup_cb (void *arg
)
1017 struct client_thread_s
*cn
= arg
;
1018 struct client_s
*cl
= cn
->cl
;
1020 MUTEX_LOCK (&cn_mutex
);
1021 cn_thread_list
= slist_remove (cn_thread_list
, cn
);
1022 MUTEX_UNLOCK (&cn_mutex
);
1026 cleanup_client (cl
);
1028 xmlResetError (cl
->xml_error
);
1030 xfree (cl
->xml_error
);
1035 gnutls_deinit (cn
->tls
->ses
);
1036 xfree (cn
->tls
->fp
);
1041 if (!cn
->atfork
&& cl
->ctx
)
1042 assuan_release (cl
->ctx
);
1043 else if (!cn
->atfork
&& cl
->thd
&& cl
->thd
->fd
!= -1)
1044 close (cl
->thd
->fd
);
1047 cleanup_crypto (&cl
->crypto
);
1049 pinentry_free_opts (&cl
->pinentry_opts
);
1058 while (cn
->msg_queue
)
1060 struct status_msg_s
*msg
= cn
->msg_queue
;
1062 cn
->msg_queue
= msg
->next
;
1067 if (!cn
->atfork
&& cn
->status_msg_pipe
[0] != -1)
1068 close (cn
->status_msg_pipe
[0]);
1070 if (!cn
->atfork
&& cn
->status_msg_pipe
[1] != -1)
1071 close (cn
->status_msg_pipe
[1]);
1073 pthread_mutex_destroy (&cn
->status_mutex
);
1077 log_write (_("exiting, fd=%i"), cn
->fd
);
1078 send_status_all (STATUS_CLIENTS
, NULL
);
1082 pthread_cond_signal (&quit_cond
);
1086 cleanup_all_clients (int atfork
)
1088 /* This function may be called from pthread_atfork() which requires
1089 reinitialization. */
1092 pthread_mutexattr_t attr
;
1094 pthread_mutexattr_init (&attr
);
1095 pthread_mutexattr_settype (&attr
, PTHREAD_MUTEX_RECURSIVE
);
1096 pthread_mutex_init (&cn_mutex
, &attr
);
1097 pthread_mutexattr_destroy (&attr
);
1098 cache_mutex_init ();
1101 MUTEX_LOCK (&cn_mutex
);
1103 while (slist_length (cn_thread_list
))
1105 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, 0);
1107 thd
->atfork
= atfork
;
1112 MUTEX_UNLOCK (&cn_mutex
);
1113 cache_deinit (atfork
);
1117 send_msg_queue (struct client_thread_s
*thd
)
1119 MUTEX_LOCK (&thd
->status_mutex
);
1123 read (thd
->status_msg_pipe
[0], &c
, 1);
1125 while (thd
->msg_queue
)
1127 struct status_msg_s
*msg
= thd
->msg_queue
;
1129 thd
->msg_queue
= thd
->msg_queue
->next
;
1130 MUTEX_UNLOCK (&thd
->status_mutex
);
1131 rc
= send_status (thd
->cl
->ctx
, msg
->s
, msg
->line
);
1132 MUTEX_LOCK (&thd
->status_mutex
);
1140 MUTEX_UNLOCK (&thd
->status_mutex
);
1141 if (rc
&& gpg_err_code (rc
) != GPG_ERR_EPIPE
)
1142 log_write ("%s: %s", __FUNCTION__
, pwmd_strerror (rc
));
1148 client_thread (void *data
)
1150 struct client_thread_s
*thd
= data
;
1151 struct client_s
*cl
= xcalloc (1, sizeof (struct client_s
));
1153 #ifdef HAVE_PR_SET_NAME
1154 prctl (PR_SET_NAME
, "client");
1156 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1160 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1161 pwmd_strerror (GPG_ERR_ENOMEM
));
1165 MUTEX_LOCK (&cn_mutex
);
1166 pthread_cleanup_push (cleanup_cb
, thd
);
1169 MUTEX_UNLOCK (&cn_mutex
);
1171 if (new_connection (cl
))
1176 send_status_all (STATUS_CLIENTS
, NULL
);
1177 rc
= send_status (cl
->ctx
, STATUS_CACHE
, NULL
);
1180 log_write ("%s(%i): %s", __FILE__
, __LINE__
, pwmd_strerror (rc
));
1191 FD_SET (thd
->fd
, &rfds
);
1192 FD_SET (thd
->status_msg_pipe
[0], &rfds
);
1193 n
= thd
->fd
> thd
->status_msg_pipe
[0]
1194 ? thd
->fd
: thd
->status_msg_pipe
[0];
1196 n
= select (n
+ 1, &rfds
, NULL
, NULL
, NULL
);
1199 log_write ("%s", strerror (errno
));
1203 if (FD_ISSET (thd
->status_msg_pipe
[0], &rfds
))
1205 rc
= send_msg_queue (thd
);
1206 if (rc
&& gpg_err_code (rc
) != GPG_ERR_EPIPE
)
1210 if (!FD_ISSET (thd
->fd
, &rfds
))
1213 rc
= assuan_process_next (cl
->ctx
, &eof
);
1216 if (gpg_err_code (rc
) == GPG_ERR_EOF
|| eof
)
1219 log_write ("assuan_process_next(): rc=%i %s", rc
,
1220 pwmd_strerror (rc
));
1221 if (rc
== gpg_error (GPG_ERR_ETIMEDOUT
))
1224 rc
= send_error (cl
->ctx
, rc
);
1227 log_write ("assuan_process_done(): rc=%i %s", rc
,
1228 pwmd_strerror (rc
));
1233 /* Since the msg queue pipe fd's are non-blocking, check for
1234 * pending status msgs here. GPG_ERR_EPIPE can be seen when the
1235 * client has already disconnected and will be converted to
1236 * GPG_ERR_EOF during assuan_process_next().
1238 rc
= send_msg_queue (thd
);
1239 if (rc
&& gpg_err_code (rc
) != GPG_ERR_EPIPE
)
1244 pthread_cleanup_pop (1);
1249 xml_import (const char *filename
, const char *outfile
,
1250 const char *keygrip
, const char *sign_keygrip
,
1251 const char *keyfile
, int no_passphrase
, const char *cipher
,
1252 const char *params
, unsigned long s2k_count
, uint64_t iterations
)
1261 struct crypto_s
*crypto
= NULL
;
1264 int algo
= cipher
? cipher_string_to_gcrypt ((char *) cipher
) :
1269 log_write ("ERR %i: %s", gpg_error (GPG_ERR_CIPHER_ALGO
),
1270 pwmd_strerror (GPG_ERR_CIPHER_ALGO
));
1274 if (stat (filename
, &st
) == -1)
1276 log_write ("%s: %s", filename
,
1277 pwmd_strerror (gpg_error_from_errno (errno
)));
1281 rc
= init_client_crypto (&crypto
);
1285 memcpy (&crypto
->save
.hdr
, &crypto
->hdr
, sizeof (file_header_t
));
1286 crypto
->save
.hdr
.flags
= set_cipher_flag (crypto
->save
.hdr
.flags
, algo
);
1287 log_write (_("Importing XML from '%s'. Output will be written to '%s' ..."),
1290 if ((fd
= open (filename
, O_RDONLY
)) == -1)
1292 log_write ("%s: %s", filename
,
1293 pwmd_strerror (gpg_error_from_errno (errno
)));
1297 if ((xmlbuf
= xmalloc (st
.st_size
+ 1)) == NULL
)
1300 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1301 pwmd_strerror (GPG_ERR_ENOMEM
));
1305 if (read (fd
, xmlbuf
, st
.st_size
) == -1)
1307 rc
= gpg_error_from_errno (errno
);
1309 log_write ("%s: %s", filename
, pwmd_strerror (rc
));
1314 xmlbuf
[st
.st_size
] = 0;
1316 * Make sure the document validates.
1318 if ((doc
= xmlReadDoc (xmlbuf
, NULL
, "UTF-8", XML_PARSE_NOBLANKS
)) == NULL
)
1320 log_write ("xmlReadDoc() failed");
1326 xmlNodePtr n
= xmlDocGetRootElement (doc
);
1327 if (n
&& !xmlStrEqual (n
->name
, (xmlChar
*) "pwmd"))
1329 log_write (_("Could not find root \"pwmd\" element."));
1330 rc
= GPG_ERR_BAD_DATA
;
1334 rc
= validate_import (n
? n
->children
: n
);
1338 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
1343 xmlDocDumpMemory (doc
, &xml
, &len
);
1345 crypto
->save
.s2k_count
= s2k_count
;
1346 crypto
->save
.hdr
.iterations
= iterations
;
1349 rc
= export_common (NULL
, 0, crypto
, xml
, len
, outfile
, keyfile
, &key
,
1350 &keylen
, 0, 0, no_passphrase
);
1352 log_write (_("Success!"));
1357 rc
= agent_set_pinentry_options (crypto
->agent
);
1359 rc
= agent_export_common (crypto
, keygrip
, sign_keygrip
, no_passphrase
,
1360 xml
, len
, outfile
, params
, keyfile
);
1368 send_error (NULL
, rc
);
1372 cleanup_crypto (&crypto
);
1376 cleanup_crypto (&crypto
);
1381 do_cache_push (const char *filename
, struct crypto_s
*crypto
)
1383 unsigned char md5file
[16];
1388 struct cache_data_s
*cdata
;
1392 log_write (_("Trying to add datafile '%s' to the file cache ..."),
1395 if (valid_filename (filename
) == 0)
1397 log_write (_("%s: Invalid characters in filename"), filename
);
1401 rc
= decrypt_common (NULL
, 0, crypto
, filename
, &key
, &keylen
);
1405 rc
= parse_doc ((char *) crypto
->plaintext
, crypto
->plaintext_len
, &doc
);
1408 log_write ("%s", pwmd_strerror (rc
));
1413 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, filename
, strlen (filename
));
1414 cdata
= xcalloc (1, sizeof (struct cache_data_s
));
1418 log_write ("%s", pwmd_strerror (GPG_ERR_ENOMEM
));
1423 rc
= get_checksum (filename
, &crc
, &len
);
1426 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
1428 free_cache_data_once (cdata
);
1434 rc
= encrypt_xml (NULL
, cache_key
, cache_keysize
, GCRY_CIPHER_AES
,
1435 crypto
->plaintext
, crypto
->plaintext_len
, &cdata
->doc
,
1436 &cdata
->doclen
, &cache_iv
, &cache_blocksize
, 0);
1437 if (!rc
&& !IS_PKI (crypto
))
1440 cdata
->keylen
= keylen
;
1447 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
1449 free_cache_data_once (cdata
);
1454 if (use_agent
&& IS_PKI (crypto
))
1456 gcry_sexp_build ((gcry_sexp_t
*) & cdata
->pubkey
, NULL
, "%S",
1458 gcry_sexp_build ((gcry_sexp_t
*) & cdata
->sigkey
, NULL
, "%S",
1459 crypto
->sigpkey_sexp
);
1463 int timeout
= config_get_integer (filename
, "cache_timeout");
1464 cache_add_file (md5file
, crypto
->grip
, cdata
, timeout
);
1465 log_write (_("Successfully added '%s' to the cache."), filename
);
1470 init_client (int fd
, const char *addr
)
1473 struct client_thread_s
*new = xcalloc (1, sizeof (struct client_thread_s
));
1478 return GPG_ERR_ENOMEM
;
1481 MUTEX_LOCK (&cn_mutex
);
1482 pthread_cleanup_push (cleanup_mutex_cb
, &cn_mutex
);
1484 if (pipe (new->status_msg_pipe
) == -1)
1485 rc
= gpg_error_from_errno (errno
);
1489 fcntl (new->status_msg_pipe
[0], F_SETFL
, O_NONBLOCK
);
1490 fcntl (new->status_msg_pipe
[1], F_SETFL
, O_NONBLOCK
);
1491 pthread_mutex_init (&new->status_mutex
, NULL
);
1497 new->remote
= addr
? 1 : 0;
1500 rc
= create_thread (client_thread
, new, &new->tid
, 1);
1503 close (new->status_msg_pipe
[0]);
1504 close (new->status_msg_pipe
[1]);
1505 pthread_mutex_destroy (&new->status_mutex
);
1511 struct slist_s
*list
= slist_append (cn_thread_list
, new);
1515 cn_thread_list
= list
;
1517 log_write (_("new connection: tid=%p, fd=%i, addr=%s"),
1518 (pthread_t
*) new->tid
, fd
, addr
);
1520 log_write (_("new connection: tid=%p, fd=%i"),
1521 (pthread_t
*) new->tid
, fd
);
1524 rc
= GPG_ERR_ENOMEM
;
1527 pthread_cleanup_pop (1);
1533 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
1534 pwmd_strerror (rc
));
1540 keepalive_thread (void *arg
)
1542 #ifndef HAVE_PTHREAD_CANCEL
1543 int *n
= xmalloc (sizeof (int));
1546 pthread_setspecific (signal_thread_key
, n
);
1550 #ifdef HAVE_PR_SET_NAME
1551 prctl (PR_SET_NAME
, "keepalive");
1553 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1557 int n
= config_get_integer ("global", "keepalive_interval");
1558 struct timeval tv
= { n
, 0 };
1559 #ifndef HAVE_PTHREAD_CANCEL
1562 sigusr2
= (int *) pthread_getspecific (signal_thread_key
);
1567 send_status_all (STATUS_KEEPALIVE
, NULL
);
1568 select (0, NULL
, NULL
, NULL
, &tv
);
1575 /* From Beej's Guide to Network Programming. It's a good tutorial. */
1577 get_in_addr (struct sockaddr
*sa
)
1579 if (sa
->sa_family
== AF_INET
)
1580 return &(((struct sockaddr_in
*) sa
)->sin_addr
);
1582 return &(((struct sockaddr_in6
*) sa
)->sin6_addr
);
1586 tcp_accept_thread (void *arg
)
1588 int sockfd
= *(int *) arg
;
1589 #ifndef HAVE_PTHREAD_CANCEL
1590 int *n
= xmalloc (sizeof (int));
1593 pthread_setspecific (signal_thread_key
, n
);
1595 fcntl (sockfd
, F_SETFL
, O_NONBLOCK
);
1598 #ifdef HAVE_PR_SET_NAME
1599 prctl (PR_SET_NAME
, "tcp_accept");
1601 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1605 struct sockaddr_storage raddr
;
1606 socklen_t slen
= sizeof (raddr
);
1609 char s
[INET6_ADDRSTRLEN
];
1610 struct timeval tv
= { 0, ACCEPT_TIMEOUT
};
1611 #ifndef HAVE_PTHREAD_CANCEL
1614 sigusr2
= (int *) pthread_getspecific (signal_thread_key
);
1619 fd
= accept (sockfd
, (struct sockaddr
*) &raddr
, &slen
);
1622 if (errno
== EMFILE
|| errno
== ENFILE
)
1623 log_write ("accept(): %s",
1624 pwmd_strerror (gpg_error_from_errno (errno
)));
1625 else if (errno
!= EAGAIN
)
1627 if (!quit
) // probably EBADF
1628 log_write ("accept(): %s", strerror (errno
));
1633 #ifndef HAVE_PTHREAD_CANCEL
1634 select (0, NULL
, NULL
, NULL
, &tv
);
1642 inet_ntop (raddr
.ss_family
, get_in_addr ((struct sockaddr
*) &raddr
),
1644 (void) init_client (fd
, s
);
1645 n
= config_get_integer ("global", "tcp_wait");
1648 tv
.tv_sec
= (n
* 100000) / 100000;
1649 tv
.tv_usec
= (n
* 100000) % 100000;
1650 select (0, NULL
, NULL
, NULL
, &tv
);
1658 start_stop_tls_with_protocol (int ipv6
, int term
)
1660 struct addrinfo hints
, *servinfo
, *p
;
1661 int port
= config_get_integer ("global", "tcp_port");
1665 int *fd
= ipv6
? &tls6_fd
: &tls_fd
;
1667 if (term
|| config_get_boolean ("global", "enable_tcp") == 0)
1673 #ifdef HAVE_PTHREAD_CANCEL
1674 pthread_cancel (tls6_tid
);
1676 pthread_kill (tls6_tid
, SIGUSR2
);
1678 pthread_join (tls6_tid
, NULL
);
1681 shutdown (tls6_fd
, SHUT_RDWR
);
1691 #ifdef HAVE_PTHREAD_CANCEL
1692 pthread_cancel (tls_tid
);
1694 pthread_kill (tls_tid
, SIGUSR2
);
1696 pthread_join (tls_tid
, NULL
);
1699 shutdown (tls_fd
, SHUT_RDWR
);
1705 /* A client may still be connected. */
1706 if (!quit
&& x509_cred
!= NULL
)
1707 tls_deinit_params ();
1712 if ((ipv6
&& tls6_fd
!= -1) || (!ipv6
&& tls_fd
!= -1))
1715 memset (&hints
, 0, sizeof (hints
));
1716 hints
.ai_family
= ipv6
? AF_INET6
: AF_INET
;
1717 hints
.ai_socktype
= SOCK_STREAM
;
1718 hints
.ai_flags
= AI_PASSIVE
;
1719 snprintf (buf
, sizeof (buf
), "%i", port
);
1721 if ((n
= getaddrinfo (NULL
, buf
, &hints
, &servinfo
)) == -1)
1723 log_write ("getaddrinfo(): %s", gai_strerror (n
));
1727 for (n
= 0, p
= servinfo
; p
!= NULL
; p
= p
->ai_next
)
1731 if ((ipv6
&& p
->ai_family
!= AF_INET6
)
1732 || (!ipv6
&& p
->ai_family
!= AF_INET
))
1735 if ((*fd
= socket (p
->ai_family
, p
->ai_socktype
, p
->ai_protocol
)) == -1)
1737 log_write ("socket(): %s", strerror (errno
));
1741 if (setsockopt (*fd
, SOL_SOCKET
, SO_REUSEADDR
, &r
, sizeof (int)) == -1)
1743 log_write ("setsockopt(): %s",
1744 pwmd_strerror (gpg_error_from_errno (errno
)));
1745 freeaddrinfo (servinfo
);
1749 if (bind (*fd
, p
->ai_addr
, p
->ai_addrlen
) == -1)
1752 log_write ("bind(): %s",
1753 pwmd_strerror (gpg_error_from_errno (errno
)));
1761 freeaddrinfo (servinfo
);
1766 #if HAVE_DECL_SO_BINDTODEVICE != 0
1767 char *tmp
= config_get_string ("global", "tcp_interface");
1768 if (tmp
&& setsockopt (*fd
, SOL_SOCKET
, SO_BINDTODEVICE
, tmp
,
1769 strlen (tmp
)) == -1)
1771 log_write ("setsockopt(): %s",
1772 pwmd_strerror (gpg_error_from_errno (errno
)));
1780 if (x509_cred
== NULL
)
1782 rc
= tls_init_params ();
1787 if (listen (*fd
, 0) == -1)
1789 log_write ("listen(): %s", strerror (errno
));
1794 rc
= create_thread (tcp_accept_thread
, fd
, &tls6_tid
, 0);
1796 rc
= create_thread (tcp_accept_thread
, fd
, &tls_tid
, 0);
1800 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
1801 pwmd_strerror (rc
));
1813 start_stop_tls_with_protocol (0, 1);
1826 start_stop_tls (int term
)
1828 char *s
= config_get_string ("global", "tcp_bind");
1834 if (!strcmp (s
, "any"))
1836 b
= start_stop_tls_with_protocol (0, term
);
1838 b
= start_stop_tls_with_protocol (1, term
);
1840 else if (!strcmp (s
, "ipv4"))
1841 b
= start_stop_tls_with_protocol (0, term
);
1842 else if (!strcmp (s
, "ipv6"))
1843 b
= start_stop_tls_with_protocol (1, term
);
1853 accept_thread (void *arg
)
1855 int sockfd
= *(int *) arg
;
1856 #ifndef HAVE_PTHREAD_CANCEL
1857 int *n
= xmalloc (sizeof (int));
1860 pthread_setspecific (signal_thread_key
, n
);
1862 fcntl (sockfd
, F_SETFL
, O_NONBLOCK
);
1865 #ifdef HAVE_PR_SET_NAME
1866 prctl (PR_SET_NAME
, "accept");
1868 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1872 socklen_t slen
= sizeof (struct sockaddr_un
);
1873 struct sockaddr_un raddr
;
1875 #ifndef HAVE_PTHREAD_CANCEL
1876 struct timeval tv
= { 0, ACCEPT_TIMEOUT
};
1877 int *sigusr2
= (int *) pthread_getspecific (signal_thread_key
);
1883 fd
= accept (sockfd
, (struct sockaddr
*) &raddr
, &slen
);
1886 if (errno
== EMFILE
|| errno
== ENFILE
)
1887 log_write ("accept(): %s",
1888 pwmd_strerror (gpg_error_from_errno (errno
)));
1889 else if (errno
!= EAGAIN
)
1891 if (!quit
) // probably EBADF
1892 log_write ("accept(): %s",
1893 pwmd_strerror (gpg_error_from_errno (errno
)));
1898 #ifndef HAVE_PTHREAD_CANCEL
1899 select (0, NULL
, NULL
, NULL
, &tv
);
1904 (void) init_client (fd
, NULL
);
1907 /* Just in case accept() failed for some reason other than EBADF */
1913 cache_timer_thread (void *arg
)
1915 #ifndef HAVE_PTHREAD_CANCEL
1916 int *n
= xmalloc (sizeof (int));
1919 pthread_setspecific (signal_thread_key
, n
);
1923 #ifdef HAVE_PR_SET_NAME
1924 prctl (PR_SET_NAME
, "cache timer");
1926 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
1930 struct timeval tv
= { 1, 0 };
1931 #ifndef HAVE_PTHREAD_CANCEL
1934 n
= (int *) pthread_getspecific (signal_thread_key
);
1939 select (0, NULL
, NULL
, NULL
, &tv
);
1940 cache_adjust_timeout ();
1947 signal_loop (sigset_t sigset
)
1956 sigwait (&sigset
, &sig
);
1959 log_write (_("caught signal %i (%s)"), sig
, strsignal (sig
));
1964 pthread_cond_signal (&rcfile_cond
);
1967 log_write (_("clearing file cache"));
1969 send_status_all (STATUS_CACHE
, NULL
);
1988 log_write (_ ("Caught signal %i (%s). Exiting."), sig
, strsignal (sig
));
1989 #ifdef HAVE_BACKTRACE
1990 BACKTRACE (__FUNCTION__
);
1996 waiting_for_exit (void *arg
)
1999 #ifndef HAVE_PTHREAD_CANCEL
2000 int *n
= xmalloc (sizeof (int));
2003 pthread_setspecific (signal_thread_key
, n
);
2007 #ifdef HAVE_PR_SET_NAME
2008 prctl (PR_SET_NAME
, "exiting");
2010 pthread_setspecific (thread_name_key
, str_dup (__FUNCTION__
));
2011 log_write (_("waiting for all clients to disconnect"));
2012 MUTEX_LOCK (&quit_mutex
);
2013 pthread_cleanup_push (cleanup_mutex_cb
, &quit_mutex
);
2020 MUTEX_LOCK (&cn_mutex
);
2021 n
= slist_length (cn_thread_list
);
2022 MUTEX_UNLOCK (&cn_mutex
);
2026 #ifndef HAVE_PTHREAD_CANCEL
2027 int *s
= (int *) pthread_getspecific (signal_thread_key
);
2034 log_write (_("%i clients remain"), n
);
2038 INIT_TIMESPEC (SIG_TIMEOUT
, ts
);
2039 pthread_cond_timedwait (&quit_cond
, &quit_mutex
, &ts
);
2042 kill (getpid (), SIGQUIT
);
2043 pthread_cleanup_pop (1);
2048 server_loop (int sockfd
, char **socketpath
)
2050 pthread_t accept_tid
;
2051 pthread_t cache_timeout_tid
;
2052 int cancel_timeout_thread
= 0, cancel_accept_thread
= 0;
2053 int cancel_keepalive_thread
= 0;
2060 sigemptyset (&sigset
);
2063 sigaddset (&sigset
, SIGTERM
);
2064 sigaddset (&sigset
, SIGINT
);
2066 /* Clears the file cache. */
2067 sigaddset (&sigset
, SIGUSR1
);
2069 /* Configuration file reloading. */
2070 sigaddset (&sigset
, SIGHUP
);
2072 /* For exiting cleanly. */
2073 sigaddset (&sigset
, SIGQUIT
);
2075 #ifndef HAVE_PTHREAD_CANCEL
2077 The socket, cache and rcfile threads use this signal when
2078 pthread_cancel() is unavailable. Prevent the main thread from
2079 catching this signal from another process.
2081 sigaddset (&sigset
, SIGUSR2
);
2084 /* When mem.c cannot find a pointer in the list (double free). */
2085 signal (SIGABRT
, catchsig
);
2086 sigaddset (&sigset
, SIGABRT
);
2087 sigprocmask (SIG_BLOCK
, &sigset
, NULL
);
2089 #ifndef HAVE_PTHREAD_CANCEL
2090 /* Remove this signal from the watched signals in signal_loop(). */
2091 sigdelset (&sigset
, SIGUSR2
);
2094 /* Ignored everywhere. When a client disconnects abnormally this signal
2095 * gets raised. It isn't needed though because client_thread() will check
2096 * for rcs even after the client disconnects. */
2097 signal (SIGPIPE
, SIG_IGN
);
2099 /* Can show a backtrace of the stack in the log. */
2100 signal (SIGSEGV
, catchsig
);
2103 /* Needs to be done after the fork(). */
2104 if (!start_stop_tls (0))
2111 pthread_mutex_init (&quit_mutex
, NULL
);
2112 pthread_cond_init (&quit_cond
, NULL
);
2113 char *p
= get_username (getuid());
2114 log_write (_("%s started for user %s"), PACKAGE_STRING
, p
);
2118 if (config_get_boolean ("global", "enable_tcp"))
2119 log_write (_("Listening on %s and TCP port %i as user %i"), *socketpath
,
2120 config_get_integer ("global", "tcp_port"), invoking_uid
);
2122 log_write (_("Listening on %s"), *socketpath
);
2124 log_write (_("Listening on %s"), *socketpath
);
2127 rc
= create_thread (keepalive_thread
, NULL
, &keepalive_tid
, 0);
2130 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2131 pwmd_strerror (rc
));
2135 cancel_keepalive_thread
= 1;
2136 rc
= create_thread (reload_rcfile_thread
, NULL
, &rcfile_tid
, 0);
2139 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2140 pwmd_strerror (rc
));
2144 rc
= create_thread (cache_timer_thread
, NULL
, &cache_timeout_tid
, 0);
2147 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2148 pwmd_strerror (rc
));
2152 cancel_timeout_thread
= 1;
2153 rc
= create_thread (accept_thread
, &sockfd
, &accept_tid
, 0);
2156 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2157 pwmd_strerror (rc
));
2161 cancel_accept_thread
= 1;
2163 signal_loop (sigset
);
2169 * We're out of the main server loop. This happens when a signal was sent
2170 * to terminate the daemon. We'll wait for all clients to disconnect
2171 * before exiting but exit immediately if another termination signal is
2174 if (cancel_accept_thread
)
2176 #ifdef HAVE_PTHREAD_CANCEL
2177 int n
= pthread_cancel (accept_tid
);
2179 int n
= pthread_kill (accept_tid
, SIGUSR2
);
2182 pthread_join (accept_tid
, NULL
);
2188 shutdown (sockfd
, SHUT_RDWR
);
2190 unlink (*socketpath
);
2191 xfree (*socketpath
);
2193 MUTEX_LOCK (&cn_mutex
);
2194 n
= slist_length (cn_thread_list
);
2195 MUTEX_UNLOCK (&cn_mutex
);
2201 rc
= create_thread (waiting_for_exit
, NULL
, &tid
, 0);
2204 if (signal_loop (sigset
))
2206 log_write (_("Received second termination request. Exiting."));
2207 #ifdef HAVE_PTHREAD_CANCEL
2208 pthread_cancel (tid
);
2210 pthread_kill (tid
, SIGUSR2
);
2212 pthread_join (tid
, NULL
);
2216 log_write ("%s(%i): pthread_create(): %s", __FILE__
, __LINE__
,
2217 pwmd_strerror (rc
));
2220 if (cancel_timeout_thread
)
2222 #ifdef HAVE_PTHREAD_CANCEL
2223 pthread_cancel (cache_timeout_tid
);
2225 pthread_kill (cache_timeout_tid
, SIGUSR2
);
2227 pthread_join (cache_timeout_tid
, NULL
);
2230 if (cancel_keepalive_thread
)
2232 #ifdef HAVE_PTHREAD_CANCEL
2233 pthread_cancel (keepalive_tid
);
2235 pthread_kill (keepalive_tid
, SIGUSR2
);
2237 pthread_join (keepalive_tid
, NULL
);
2240 cleanup_all_clients (0);
2245 pthread_cond_destroy (&quit_cond
);
2246 pthread_mutex_destroy (&quit_mutex
);
2247 return segv
? EXIT_FAILURE
: EXIT_SUCCESS
;;
2254 ("Failed to add a file to the cache. Use --ignore to force startup. Exiting."));
2258 /* This is called from cache.c:clear_once(). See
2259 * command.c:clearcache_command() for details about lock checking.
2262 free_cache_data (file_cache_t
* cache
)
2264 gpg_error_t rc
= GPG_ERR_NO_DATA
;
2266 struct client_thread_s
*found
= NULL
;
2273 MUTEX_LOCK (&cn_mutex
);
2274 pthread_cleanup_push (cleanup_mutex_cb
, &cn_mutex
);
2275 t
= slist_length (cn_thread_list
);
2277 for (i
= 0; i
< t
; i
++)
2279 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, i
);
2284 if (!memcmp (thd
->cl
->md5file
, cache
->filename
,
2285 sizeof (cache
->filename
)))
2287 if (pthread_equal (pthread_self (), thd
->tid
))
2294 /* Continue trying to find a client who has the same file open and
2295 * also has a lock. */
2296 rc
= cache_lock_mutex (thd
->cl
->ctx
, thd
->cl
->md5file
, -1, 0, -1);
2306 if (self
&& (!rc
|| rc
== GPG_ERR_NO_DATA
))
2307 rc
= cache_lock_mutex (found
->cl
->ctx
, found
->cl
->md5file
, -1, 0, -1);
2309 if (exiting
|| !rc
|| rc
== GPG_ERR_NO_DATA
)
2311 free_cache_data_once (cache
->data
);
2313 cache
->defer_clear
= 0;
2314 cache
->timeout
= -1;
2317 cache_unlock_mutex (found
->cl
->md5file
, 0);
2323 cache
->defer_clear
= 1;
2325 pthread_cleanup_pop (1);
2331 convert_v2_datafile (const char *filename
, const char *cipher
,
2332 const char *keyfile
, const char *keygrip
,
2333 const char *sign_keygrip
, int nopass
,
2334 const char *outfile
, const char *keyparam
,
2335 unsigned long s2k_count
, uint64_t iterations
)
2340 struct crypto_s
*crypto
= NULL
;
2346 if (outfile
[0] == '-' && outfile
[1] == 0)
2349 log_write (_("Converting version 2 data file \"%s\" ..."), filename
);
2350 if (access (filename
, R_OK
) == -1)
2352 log_write ("%s: %s", filename
,
2353 pwmd_strerror (gpg_error_from_errno (errno
)));
2359 log_write (_("Using passphrase file \"%s\" for decryption ..."),
2361 if (access (keyfile
, R_OK
) == -1)
2363 log_write ("%s: %s", keyfile
,
2364 pwmd_strerror (gpg_error_from_errno (errno
)));
2369 rc
= read_v2_datafile (filename
, keyfile
, &data
, &datalen
, &ver
, &algo
);
2372 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
2378 algo
= cipher_string_to_gcrypt (cipher
);
2381 rc
= GPG_ERR_CIPHER_ALGO
;
2390 rc
= parse_doc (data
, datalen
, &doc
);
2394 rc
= convert_pre_212_elements (doc
);
2399 xmlDocDumpFormatMemory (doc
, (xmlChar
**) & data
, (int *) &datalen
,
2402 rc
= GPG_ERR_ENOMEM
;
2410 rc
= init_client_crypto (&crypto
);
2413 memcpy (&crypto
->save
.hdr
, &crypto
->hdr
, sizeof (file_header_t
));
2414 crypto
->save
.hdr
.flags
= set_cipher_flag (crypto
->save
.hdr
.flags
, algo
);
2415 crypto
->save
.s2k_count
= s2k_count
;
2416 crypto
->save
.hdr
.iterations
= iterations
;
2420 rc
= export_common (NULL
, 0, crypto
, data
, datalen
, outfile
, keyfile
,
2421 &key
, &keylen
, 0, 0, nopass
);
2426 rc
= agent_set_pinentry_options (crypto
->agent
);
2428 rc
= agent_export_common (crypto
, keygrip
, sign_keygrip
, nopass
,
2429 data
, datalen
, outfile
, keyparam
,
2430 no_passphrase_file
? NULL
: keyfile
);
2434 log_write (_("Output written to \"%s\"."), outfile
);
2444 cleanup_crypto (&crypto
);
2447 log_write ("ERR %i: %s", rc
, pwmd_strerror (rc
));
2452 usage (const char *pn
, int status
)
2454 FILE *fp
= status
== EXIT_FAILURE
? stderr
: stdout
;
2456 fprintf (fp
, _("Usage: %s [OPTIONS] [file1] [...]\n"
2457 " -f, --rcfile=filename load the specfied configuration file\n"
2458 " (~/.pwmd/config)\n"
2459 " --homedir alternate pwmd home directory (~/.pwmd)\n"
2461 " --use-agent enable use of gpg-agent\n"
2463 " -n, --no-fork run as a foreground process\n"
2464 " -D, --disable-dump disable the LIST, XPATH and DUMP commands\n"
2465 " --ignore, --force ignore file errors during startup\n"
2466 " --debug-level=keywords log protocol output (see manual for details)\n"
2467 " -o, --outfile=filename output file when importing or converting\n"
2468 " -C, --convert=filename convert a version 2 data file to version 3\n"
2469 " -I, --import=filename import a pwmd DTD formatted XML file)\n"
2470 " -k, --passphrase-file=file for use when importing or converting\n"
2471 " --no-passphrase-file prompt instead of using --passphrase-file when\n"
2473 " --no-passphrase when importing or converting\n"
2474 " --keygrip=hex public key to use when encrypting\n"
2475 " --sign-keygrip=hex private key to use when signing\n"
2476 " --keyparam=s-exp custom key parameters to use (RSA-2048)\n"
2477 " --cipher=string encryption cipher (aes256)\n"
2478 " --cipher-iterations=N cipher iteration count (N+1)\n"
2479 " --s2k-count=N hash iteration count (>65536, calibrated)\n"
2480 " --help this help text\n"
2481 " --version show version and compile time features\n"),
2487 unlink_stale_socket (const char *sock
, const char *pidfile
)
2489 log_write (_ ("removing stale socket %s"), sock
);
2495 test_pidfile (const char *path
, const char *sock
, char *buf
, size_t buflen
,
2496 char **pidfile
, int create
, mode_t mode
)
2504 snprintf (buf
, buflen
, "%s/%s.pid", homedir
, sock
);
2505 *pidfile
= str_dup (buf
);
2506 fd
= open (buf
, O_RDONLY
);
2509 fd
= open (*pidfile
, O_CREAT
|O_WRONLY
|O_TRUNC
, mode
);
2513 if (!create
&& errno
!= ENOENT
)
2515 log_write ("%s: %s", buf
, pwmd_strerror (errno
));
2523 log_write ("%s: %s", *pidfile
, strerror (errno
));
2529 snprintf (buf
, buflen
, "%i", getpid ());
2530 write (fd
, buf
, strlen (buf
));
2535 len
= read (fd
, buf
, sizeof(buf
));
2539 unlink_stale_socket (path
, *pidfile
);
2543 if (sscanf (buf
, "%5i", &pid
) != 1 || pid
== 0)
2545 unlink_stale_socket (path
, *pidfile
);
2549 if (kill (pid
, 0) == -1)
2551 unlink_stale_socket (path
, *pidfile
);
2555 log_write (_ ("an instance for socket %s is already running"), path
);
2562 main (int argc
, char *argv
[])
2565 struct sockaddr_un addr
;
2567 char *socketpath
= NULL
, *socketdir
, *socketname
= NULL
;
2568 char *socketarg
= NULL
;
2569 char *datadir
= NULL
;
2570 char *pidfile
= NULL
;
2574 char **cache_push
= NULL
;
2575 char *import
= NULL
, *keygrip
= NULL
, *sign_keygrip
= NULL
;
2576 char *keyparam
= NULL
;
2577 int estatus
= EXIT_FAILURE
;
2579 char *outfile
= NULL
;
2582 int show_version
= 0;
2584 int no_passphrase
= 0;
2586 char *convertfile
= NULL
;
2587 char *cipher
= NULL
;
2588 char *keyfile
= NULL
;
2589 unsigned long s2k_count
= 0;
2590 uint64_t iterations
= 0;
2592 char *debug_level_opt
= NULL
;
2594 /* Must maintain the same order as longopts[] */
2597 OPT_VERSION
, OPT_HELP
,
2601 OPT_DEBUG_LEVEL
, OPT_HOMEDIR
, OPT_NO_FORK
, OPT_DISABLE_DUMP
,
2602 OPT_IGNORE
, OPT_FORCE
, OPT_RCFILE
, OPT_CONVERT
,
2603 OPT_PASSPHRASE_FILE
, OPT_IMPORT
, OPT_OUTFILE
,
2604 OPT_NO_PASSPHRASE_FILE
, OPT_KEYGRIP
, OPT_SIGN_KEYGRIP
,
2605 OPT_KEYPARAM
, OPT_CIPHER
, OPT_ITERATIONS
, OPT_S2K_COUNT
,
2608 const char *optstring
= "nf:C:k:I:o:";
2609 const struct option longopts
[] = {
2610 {"version", no_argument
, 0, 0},
2611 {"help", no_argument
, 0, 0},
2613 {"use-agent", no_argument
, 0, 0},
2615 {"debug-level", required_argument
, 0, 0},
2616 {"homedir", required_argument
, 0, 0},
2617 {"no-fork", no_argument
, 0, 'n'},
2618 {"disable_dump", no_argument
, 0, 0},
2619 {"ignore", no_argument
, 0, 0},
2620 {"force", no_argument
, 0, 0},
2621 {"rcfile", required_argument
, 0, 'f'},
2622 {"convert", required_argument
, 0, 'C'},
2623 {"passphrase-file", required_argument
, 0, 'k'},
2624 {"import", required_argument
, 0, 'I'},
2625 {"outfile", required_argument
, 0, 'o'},
2626 {"no-passphrase-file", no_argument
, 0, 0},
2627 {"keygrip", required_argument
, 0, 0},
2628 {"sign-keygrip", required_argument
, 0, 0},
2629 {"keyparam", required_argument
, 0, 0},
2630 {"cipher", required_argument
, 0, 0},
2631 {"cipher-iterations", required_argument
, 0, 0},
2632 {"s2k-count", required_argument
, 0, 0},
2633 {"no-passphrase", no_argument
, 0, 0},
2640 #ifdef HAVE_SETRLIMIT
2643 rl
.rlim_cur
= rl
.rlim_max
= 0;
2645 if (setrlimit (RLIMIT_CORE
, &rl
) != 0)
2646 err (EXIT_FAILURE
, "setrlimit()");
2651 setlocale (LC_ALL
, "");
2652 bindtextdomain ("pwmd", LOCALEDIR
);
2653 textdomain ("pwmd");
2661 if (setup_crypto ())
2662 exit (EXIT_FAILURE
);
2665 gnutls_global_set_mem_functions (xmalloc
, xmalloc
, secure_mem_check
,
2667 gnutls_global_init ();
2668 gnutls_global_set_log_function (tls_log
);
2669 gnutls_global_set_log_level (1);
2673 xmlMemSetup (xfree
, xmalloc
, xrealloc
, str_dup
);
2681 while ((opt
= getopt_long (argc
, argv
, optstring
, longopts
, &optindex
))
2690 convertfile
= optarg
;
2705 rcfile
= str_dup (optarg
);
2708 usage (argv
[0], EXIT_FAILURE
);
2724 case OPT_DEBUG_LEVEL
:
2725 debug_level_opt
= optarg
;
2728 homedir
= str_dup (optarg
);
2733 case OPT_DISABLE_DUMP
:
2741 rcfile
= str_dup (optarg
);
2744 convertfile
= optarg
;
2746 case OPT_PASSPHRASE_FILE
:
2755 case OPT_NO_PASSPHRASE_FILE
:
2756 no_passphrase_file
= 1;
2761 case OPT_SIGN_KEYGRIP
:
2762 sign_keygrip
= optarg
;
2770 case OPT_ITERATIONS
:
2771 iterations
= strtoull (optarg
, NULL
, 10);
2774 s2k_count
= strtoul (optarg
, NULL
, 10);
2776 case OPT_NO_PASSPHRASE
:
2788 "Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014\n"
2790 "Released under the terms of the GPL v2. Use at your own risk.\n\n"
2791 "Compile time features:\n%s"), PACKAGE_STRING
,
2794 "+PWMD_HOMEDIR=" PWMD_HOMEDIR
"\n"
2827 exit (EXIT_SUCCESS
);
2832 homedir
= str_dup(PWMD_HOMEDIR
);
2834 homedir
= str_asprintf ("%s/.pwmd", get_home_dir());
2837 if (mkdir (homedir
, 0700) == -1 && errno
!= EEXIST
)
2838 err (EXIT_FAILURE
, "%s", homedir
);
2840 snprintf (buf
, sizeof (buf
), "%s/data", homedir
);
2841 if (mkdir (buf
, 0700) == -1 && errno
!= EEXIST
)
2842 err (EXIT_FAILURE
, "%s", buf
);
2844 datadir
= str_dup (buf
);
2845 pthread_mutexattr_t attr
;
2846 pthread_mutexattr_init (&attr
);
2847 pthread_mutexattr_settype (&attr
, PTHREAD_MUTEX_RECURSIVE
);
2848 pthread_mutex_init (&rcfile_mutex
, &attr
);
2849 pthread_cond_init (&rcfile_cond
, NULL
);
2850 pthread_mutex_init (&cn_mutex
, &attr
);
2851 pthread_mutexattr_destroy (&attr
);
2852 pthread_key_create (&last_error_key
, free_key
);
2853 #ifndef HAVE_PTHREAD_CANCEL
2854 pthread_key_create (&signal_thread_key
, free_key
);
2858 rcfile
= str_asprintf ("%s/config", homedir
);
2860 global_config
= config_parse (rcfile
);
2862 exit (EXIT_FAILURE
);
2866 use_agent
= config_get_boolean ("global", "use_agent");
2871 if (debug_level_opt
)
2872 debug_level
= str_split (debug_level_opt
, ",", 0);
2874 x
= config_get_int_param (global_config
, "global", "priority", &exists
);
2875 if (exists
&& x
!= atoi(INVALID_PRIORITY
))
2878 if (setpriority (PRIO_PROCESS
, 0, x
) == -1)
2880 log_write ("setpriority(): %s",
2881 pwmd_strerror (gpg_error_from_errno (errno
)));
2885 #ifdef HAVE_MLOCKALL
2886 if (disable_mlock
== 0 && mlockall (MCL_CURRENT
| MCL_FUTURE
) == -1)
2888 log_write ("mlockall(): %s",
2889 pwmd_strerror (gpg_error_from_errno (errno
)));
2894 rc
= cache_init (free_cache_data
);
2897 log_write ("pwmd: ERR %i: %s", rc
,
2898 gpg_err_code (rc
) == GPG_ERR_UNKNOWN_VERSION
2899 ? _("incompatible gpg-agent version: 2.1.0 or later required")
2900 : pwmd_strerror (rc
));
2905 s2k_count
= config_get_ulong (NULL
, "s2k_count");
2909 if (!outfile
|| !*outfile
|| argc
!= optind
)
2910 usage (argv
[0], EXIT_FAILURE
);
2912 estatus
= convert_v2_datafile (convertfile
, cipher
, keyfile
, keygrip
,
2913 sign_keygrip
, no_passphrase
, outfile
,
2914 keyparam
, s2k_count
, iterations
);
2915 config_free (global_config
);
2922 if (!outfile
|| !*outfile
|| argc
!= optind
)
2923 usage (argv
[0], EXIT_FAILURE
);
2925 if (outfile
&& outfile
[0] == '-' && outfile
[1] == 0)
2928 estatus
= xml_import (import
, outfile
, keygrip
, sign_keygrip
, keyfile
,
2929 no_passphrase
, cipher
, keyparam
, s2k_count
,
2931 config_free (global_config
);
2936 p
= config_get_string ("global", "socket_path");
2938 p
= str_asprintf ("%s/socket", homedir
);
2940 socketarg
= expand_homedir (p
);
2944 disable_list_and_dump
= config_get_boolean ("global",
2945 "disable_list_and_dump");
2947 disable_list_and_dump
= secure
;
2949 cache_push
= config_get_list ("global", "cache_push");
2951 while (optind
< argc
)
2953 if (strv_printf (&cache_push
, "%s", argv
[optind
++]) == 0)
2954 errx (EXIT_FAILURE
, "%s", pwmd_strerror (GPG_ERR_ENOMEM
));
2957 if (strchr (socketarg
, '/') == NULL
)
2959 socketdir
= getcwd (buf
, sizeof (buf
));
2960 socketname
= str_dup (socketarg
);
2961 socketpath
= str_asprintf ("%s/%s", socketdir
, socketname
);
2965 socketname
= str_dup (strrchr (socketarg
, '/'));
2967 socketarg
[strlen (socketarg
) - strlen (socketname
) - 1] = 0;
2968 socketdir
= str_dup (socketarg
);
2969 socketpath
= str_asprintf ("%s/%s", socketdir
, socketname
);
2972 if (chdir (datadir
))
2974 log_write ("%s: %s", datadir
,
2975 pwmd_strerror (gpg_error_from_errno (errno
)));
2976 unlink (socketpath
);
2980 if (test_pidfile (socketpath
, socketname
, buf
, sizeof(buf
), &pidfile
, 0,
2985 * bind() doesn't like the full pathname of the socket or any non alphanum
2986 * characters so change to the directory where the socket is wanted then
2987 * create it then change to datadir.
2989 if (chdir (socketdir
))
2991 log_write ("%s: %s", socketdir
,
2992 pwmd_strerror (gpg_error_from_errno (errno
)));
2998 if ((sockfd
= socket (PF_UNIX
, SOCK_STREAM
, 0)) == -1)
3000 log_write ("socket(): %s", pwmd_strerror (gpg_error_from_errno (errno
)));
3004 addr
.sun_family
= AF_UNIX
;
3005 snprintf (addr
.sun_path
, sizeof (addr
.sun_path
), "%s", socketname
);
3007 if (bind (sockfd
, (struct sockaddr
*) &addr
, sizeof (struct sockaddr
)) ==
3010 log_write ("bind(): %s", pwmd_strerror (gpg_error_from_errno (errno
)));
3012 if (errno
== EADDRINUSE
)
3015 log_write (_("Either there is another pwmd running or '%s' is a \n"
3016 "stale socket. Please remove it manually."), socketpath
);
3023 char *t
= config_get_string ("global", "socket_perms");
3028 mode
= strtol (t
, NULL
, 8);
3032 if (chmod (socketname
, mode
) == -1)
3034 log_write ("%s: %s", socketname
,
3035 pwmd_strerror (gpg_error_from_errno (errno
)));
3045 xfree (--socketname
);
3047 if (chdir (datadir
))
3049 log_write ("%s: %s", datadir
,
3050 pwmd_strerror (gpg_error_from_errno (errno
)));
3058 * Set the cache entry for a file. Prompts for the password.
3062 struct crypto_s
*crypto
= NULL
;
3063 gpg_error_t rc
= init_client_crypto (&crypto
);
3067 estatus
= EXIT_FAILURE
;
3074 rc
= agent_set_pinentry_options (crypto
->agent
);
3077 estatus
= EXIT_FAILURE
;
3083 for (opt
= 0; cache_push
[opt
]; opt
++)
3085 if (!do_cache_push (cache_push
[opt
], crypto
) && !force
)
3087 strv_free (cache_push
);
3089 estatus
= EXIT_FAILURE
;
3090 cleanup_crypto (&crypto
);
3094 cleanup_crypto_stage1 (crypto
);
3099 (void) kill_scd (crypto
->agent
);
3102 cleanup_crypto (&crypto
);
3103 strv_free (cache_push
);
3104 log_write (!nofork
? _("Done. Daemonizing...") :
3105 _("Done. Waiting for connections..."));
3108 config_clear_keys ();
3110 if (listen (sockfd
, 0) == -1)
3112 log_write ("listen(): %s", pwmd_strerror (gpg_error_from_errno (errno
)));
3121 log_write ("fork(): %s",
3122 pwmd_strerror (gpg_error_from_errno (errno
)));
3131 _exit (EXIT_SUCCESS
);
3135 (void)test_pidfile (socketpath
, socketname
, buf
, sizeof(buf
), &pidfile
, 1,
3138 pthread_key_create (&thread_name_key
, free_key
);
3139 pthread_setspecific (thread_name_key
, str_dup ("main"));
3140 estatus
= server_loop (sockfd
, &socketpath
);
3143 if (socketpath
&& do_unlink
)
3145 unlink (socketpath
);
3151 gnutls_global_deinit ();
3152 xfree (invoking_tls
);
3156 #ifdef HAVE_PTHREAD_CANCEL
3157 pthread_cancel (rcfile_tid
);
3159 pthread_kill (rcfile_tid
, SIGUSR2
);
3160 pthread_cond_signal (&rcfile_cond
);
3162 pthread_join (rcfile_tid
, NULL
);
3165 pthread_cond_destroy (&rcfile_cond
);
3166 pthread_mutex_destroy (&rcfile_mutex
);
3167 pthread_key_delete (last_error_key
);
3168 #ifndef HAVE_PTHREAD_CANCEL
3169 pthread_key_delete (signal_thread_key
);
3173 config_free (global_config
);
3176 xfree (home_directory
);
3178 xmlCleanupParser ();
3179 xmlCleanupGlobals ();
3185 if (estatus
== EXIT_SUCCESS
)
3186 log_write (_("pwmd exiting normally"));
3188 pthread_key_delete (thread_name_key
);
3190 #if defined(DEBUG) && !defined(MEM_DEBUG)