1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
3 Copyright (C) 2006-2008 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38 #include <glib/gprintf.h>
48 #include <sys/resource.h>
63 #include "pwmd_error.h"
68 static void clear_errorfile_key()
74 groups
= g_key_file_get_groups(keyfileh
, &n
);
76 for (p
= groups
; *p
; p
++) {
79 if (g_key_file_has_key(keyfileh
, *p
, "key", &rc
) == TRUE
)
80 g_key_file_set_string(keyfileh
, *p
, "key", "");
86 static void reload_rcfile()
88 log_write(N_("reloading configuration file '%s'"), rcfile
);
89 g_key_file_free(keyfileh
);
90 keyfileh
= parse_rcfile(0);
91 clear_errorfile_key();
92 send_status_all(STATUS_CONFIG
);
95 gpg_error_t
send_syserror(assuan_context_t ctx
, gint e
)
97 gpg_error_t n
= gpg_error_from_errno(e
);
99 return assuan_process_done(ctx
, assuan_set_error(ctx
, n
, gpg_strerror(n
)));
102 gpg_error_t
send_error(assuan_context_t ctx
, gpg_error_t e
)
104 gpg_err_code_t n
= gpg_err_code(e
);
105 gpg_error_t code
= gpg_err_make(PWMD_ERR_SOURCE
, n
);
106 struct client_s
*client
= assuan_get_pointer(ctx
);
109 return assuan_process_done(ctx
, 0);
112 log_write("%s\n", pwmd_strerror(e
));
116 if (n
== EPWMD_LIBXML_ERROR
) {
117 xmlErrorPtr xe
= client
->xml_error
;
120 xe
= xmlGetLastError();
122 e
= assuan_process_done(ctx
, assuan_set_error(ctx
, code
, xe
->message
));
123 log_write("%s", xe
->message
);
125 if (xe
== client
->xml_error
)
130 client
->xml_error
= NULL
;
134 return assuan_process_done(ctx
, assuan_set_error(ctx
, code
, pwmd_strerror(e
)));
137 void log_write(const gchar
*fmt
, ...)
148 if ((!logfile
&& !isatty(STDERR_FILENO
) && log_syslog
== FALSE
) || !fmt
)
152 if ((fd
= open(logfile
, O_WRONLY
|O_CREAT
|O_APPEND
, 0600)) == -1) {
160 if (g_vasprintf(&args
, fmt
, ap
) == -1) {
168 attr
= pth_attr_of(pth_self());
170 if (pth_attr_get(attr
, PTH_ATTR_NAME
, &name
) == FALSE
)
173 pth_attr_destroy(attr
);
175 if (log_syslog
== TRUE
)
176 syslog(LOG_INFO
, "%s: %s", name
, args
);
180 tm
= localtime(&now
);
181 strftime(tbuf
, sizeof(tbuf
), "%b %d %Y %H:%M:%S ", tm
);
182 tbuf
[sizeof(tbuf
) - 1] = 0;
184 if (args
[strlen(args
)-1] == '\n')
185 args
[strlen(args
)-1] = 0;
187 line
= g_strdup_printf("%s %i %s: %s\n", tbuf
, getpid(), name
, args
);
198 write(fd
, line
, strlen(line
));
203 if (isatty(STDERR_FILENO
)) {
204 fprintf(stderr
, "%s", line
);
211 static void usage(gchar
*pn
)
214 "Usage: %s [-hvDb] [-f <rcfile>] [-I <filename> [-i <iter>]] [file1] [...]\n"
215 " -b run as a background process\n"
216 " -f load the specified rcfile (~/.pwmd/config)\n"
217 " -I import an XML file and write the encrypted data to stdout\n"
218 " -i encrypt with the specified number of iterations when importing\n"
219 " (config default in the \"global\" section)\n"
220 " -D disable use of the LIST and DUMP commands\n"
222 " -h this help text\n"
228 static int gcry_SecureCheck(const void *ptr
)
234 static void setup_gcrypt()
236 gcry_check_version(NULL
);
239 gcry_set_allocation_handler(xmalloc
, xmalloc
, gcry_SecureCheck
, xrealloc
,
243 if (gcry_cipher_algo_info(GCRY_CIPHER_AES256
, GCRYCTL_TEST_ALGO
, NULL
,
245 errx(EXIT_FAILURE
, N_("Required AES cipher not supported by libgcrypt."));
247 gcry_cipher_algo_info(GCRY_CIPHER_AES256
, GCRYCTL_GET_KEYLEN
, NULL
, &gcrykeysize
);
248 gcry_cipher_algo_info(GCRY_CIPHER_AES256
, GCRYCTL_GET_BLKLEN
, NULL
, &gcryblocksize
);
251 static assuan_context_t
new_connection(gint fd
)
254 gchar ver
[ASSUAN_LINELENGTH
];
255 assuan_context_t ctx
;
257 rc
= assuan_init_socket_server_ext(&ctx
, fd
, 2);
262 g_snprintf(ver
, sizeof(ver
), "%s", PACKAGE_STRING
);
263 assuan_set_hello_line(ctx
, ver
);
264 rc
= register_commands(ctx
);
269 rc
= assuan_accept(ctx
);
277 assuan_deinit_server(ctx
);
278 log_write("%s", gpg_strerror(rc
));
282 gpg_error_t
send_status(assuan_context_t ctx
, status_msg_t which
)
285 struct client_s
*client
= assuan_get_pointer(ctx
);
286 gchar buf
[ASSUAN_LINELENGTH
];
287 gchar
*status
= NULL
;
291 CACHE_LOCK(client
->ctx
);
292 line
= print_fmt(buf
, sizeof(buf
), "%i %i",
294 (cache_size
/ sizeof(file_cache_t
)) - cache_file_count());
299 pth_mutex_acquire(&cn_mutex
, FALSE
, NULL
);
300 line
= print_fmt(buf
, sizeof(buf
), "%i", g_slist_length(cn_thread_list
));
301 pth_mutex_release(&cn_mutex
);
307 case STATUS_KEEPALIVE
:
308 status
= "KEEPALIVE";
312 line
= N_("Waiting for lock");
316 return assuan_write_status(ctx
, status
, line
);
319 void send_status_all(status_msg_t which
)
323 pth_mutex_acquire(&cn_mutex
, FALSE
, NULL
);
325 for (t
= g_slist_length(cn_thread_list
), i
= 0; i
< t
; i
++) {
326 struct client_thread_s
*cn
= g_slist_nth_data(cn_thread_list
, i
);
327 pth_msgport_t m
= pth_msgport_find(cn
->msg_name
);
330 pth_message_t
*msg
= g_malloc0(sizeof(pth_message_t
));
332 msg
->m_data
= (status_msg_t
*)which
;
333 pth_msgport_put(m
, msg
);
337 pth_mutex_release(&cn_mutex
);
340 static void xml_error_cb(void *data
, xmlErrorPtr e
)
342 struct client_s
*client
= data
;
345 * Keep the first reported error as the one to show in the error
346 * description. Reset in send_error().
348 if (client
->xml_error
)
351 xmlCopyError(e
, client
->xml_error
);
355 * This is called after a child_thread terminates. Set with
356 * pth_cleanup_push().
358 static void cleanup_cb(void *arg
)
360 struct client_thread_s
*cn
= arg
;
362 struct client_s
*cl
= cn
->cl
;
364 pth_mutex_acquire(&cn_mutex
, FALSE
, NULL
);
365 log_write(N_("exiting, fd=%i"), cn
->fd
);
366 pth_join(cn
->tid
, &value
);
368 if (cl
&& cl
->freed
== FALSE
)
369 cleanup_assuan(cl
->ctx
);
372 assuan_deinit_server(cl
->ctx
);
375 if (cl
&& cl
->pinentry
)
376 cleanup_pinentry(cl
->pinentry
);
382 g_free(cn
->msg_name
);
385 while (pth_msgport_pending(cn
->msg
) > 0) {
386 pth_message_t
*m
= pth_msgport_get(cn
->msg
);
391 pth_msgport_destroy(cn
->msg
);
394 cn_thread_list
= g_slist_remove(cn_thread_list
, cn
);
396 pth_mutex_release(&cn_mutex
);
397 send_status_all(STATUS_CLIENTS
);
401 * Called every time a connection is made via pth_spawn(). This is the thread
404 static void *client_thread(void *data
)
406 struct client_thread_s
*thd
= data
;
408 pth_event_t ev
, msg_ev
;
410 pth_event_t pinentry_ev
= NULL
;
412 struct client_s
*cl
= g_malloc0(sizeof(struct client_s
));
416 log_write("%s(%i): %s", __FILE__
, __LINE__
, strerror(ENOMEM
));
421 cl
->pinentry
= g_malloc0(sizeof(struct pinentry_s
));
425 log_write("%s(%i): %s", __FILE__
, __LINE__
, strerror(ENOMEM
));
429 set_pinentry_defaults(cl
->pinentry
);
433 pth_cleanup_push(cleanup_cb
, thd
);
434 thd
->msg_name
= g_strdup_printf("%p", thd
->tid
);
436 if (!thd
->msg_name
) {
437 log_write("%s(%i): %s", __FILE__
, __LINE__
, strerror(ENOMEM
));
441 thd
->msg
= pth_msgport_create(thd
->msg_name
);
444 log_write("%s(%i): %s", __FILE__
, __LINE__
, strerror(ENOMEM
));
449 * This is a "child" thread. Don't catch any signals. Let the master
450 * thread take care of signals in accept_thread().
452 cl
->ctx
= new_connection(fd
);
458 assuan_set_pointer(cl
->ctx
, cl
);
461 if (disable_mlock
== FALSE
&& mlockall(MCL_FUTURE
) == -1) {
462 log_write("mlockall(): %s", strerror(errno
));
467 rc
= send_status(cl
->ctx
, STATUS_CACHE
);
470 log_write("%s", gpg_strerror(rc
));
474 send_status_all(STATUS_CLIENTS
);
475 ev
= pth_event(PTH_EVENT_FD
|PTH_UNTIL_FD_READABLE
, cl
->fd
);
476 msg_ev
= pth_event(PTH_EVENT_MSG
, thd
->msg
);
477 pth_event_concat(ev
, msg_ev
, NULL
);
480 xmlSetStructuredErrorFunc(cl
, xml_error_cb
);
484 pth_event_isolate(ev
);
485 pth_event_isolate(msg_ev
);
487 if (pth_event_occurred(msg_ev
)) {
488 pth_event_free(msg_ev
, PTH_FREE_THIS
);
490 while (pth_msgport_pending(thd
->msg
) > 0) {
491 pth_message_t
*m
= pth_msgport_get(thd
->msg
);
492 status_msg_t n
= (status_msg_t
)m
->m_data
;
494 rc
= send_status(cl
->ctx
, n
);
498 log_write("%s", gpg_strerror(rc
));
503 msg_ev
= pth_event(PTH_EVENT_MSG
, thd
->msg
);
506 pth_event_concat(ev
, msg_ev
, NULL
);
508 if (pth_event_occurred(ev
)) {
509 rc
= assuan_process_next(cl
->ctx
);
512 cl
->inquire_status
= INQUIRE_INIT
;
514 if (gpg_err_code(rc
) == GPG_ERR_EOF
)
517 log_write("assuan_process_next(): %s", gpg_strerror(rc
));
518 rc
= send_error(cl
->ctx
, gpg_err_make(PWMD_ERR_SOURCE
, rc
));
521 log_write("assuan_process_done(): %s", gpg_strerror(rc
));
527 if (cl
->pinentry
->pid
&& cl
->pinentry
->status
== PINENTRY_INIT
) {
528 pinentry_ev
= pth_event(PTH_EVENT_FD
|PTH_UNTIL_FD_READABLE
, cl
->pinentry
->fd
);
529 pth_event_concat(ev
, pinentry_ev
, NULL
);
530 cl
->pinentry
->status
= PINENTRY_RUNNING
;
534 switch (cl
->inquire_status
) {
539 cl
->inquire_status
= INQUIRE_INIT
;
540 rc
= assuan_process_done(cl
->ctx
, 0);
547 if (cl
->pinentry
->status
== PINENTRY_RUNNING
) {
548 pth_event_isolate(pinentry_ev
);
550 if (pth_event_occurred(pinentry_ev
)) {
551 guchar shakey
[gcrykeysize
];
553 gsize len
= pth_read(cl
->pinentry
->fd
, &pk
, sizeof(pk
));
556 pth_event_free(pinentry_ev
, PTH_FREE_THIS
);
558 cl
->pinentry
->status
= PINENTRY_NONE
;
560 if (len
== sizeof(pk
)) {
562 rc
= send_error(cl
->ctx
, pk
.error
);
564 gcry_md_hash_buffer(GCRY_MD_SHA256
, shakey
, pk
.key
,
565 strlen(pk
.key
) == 0 ? 1 : strlen(pk
.key
));
566 rc
= cl
->pinentry
->cb(cl
->ctx
, shakey
, FALSE
);
567 memset(shakey
, 0, sizeof(shakey
));
571 log_write("%s", strerror(errno
));
573 log_write("pth_read(): EOF");
575 log_write(N_("pth_read(): short byte count"));
577 pth_waitpid(cl
->pinentry
->pid
, &status
, 0);
578 close(cl
->pinentry
->fd
);
579 cl
->pinentry
->fd
= -1;
580 cl
->pinentry
->pid
= 0;
582 if (pk
.error
&& cl
->pinentry
->which
== PINENTRY_OPEN
)
585 unlock_file_mutex(cl
);
587 memset(&pk
, 0, sizeof(pk
));
588 unlock_pin_mutex(cl
->pinentry
);
591 pth_event_concat(ev
, pinentry_ev
, NULL
);
597 * Client cleanup (including XML data) is done in cleanup_cb() from
598 * the cleanup thread.
601 pth_event_free(ev
, PTH_FREE_ALL
);
608 static void setup_logging(GKeyFile
*kf
)
610 gboolean n
= g_key_file_get_boolean(kf
, "global", "enable_logging", NULL
);
613 gchar
*p
= g_key_file_get_string(kf
, "global", "log_path", NULL
);
619 g_snprintf(buf
, sizeof(buf
), "%s%s", g_get_home_dir(), p
--);
625 logfile
= g_strdup(buf
);
635 log_syslog
= g_key_file_get_boolean(kf
, "global", "syslog", NULL
);
639 * Make sure all settings are set to either the specified setting or a
642 static void set_rcfile_defaults(GKeyFile
*kf
)
646 if (g_key_file_has_key(kf
, "global", "socket_path", NULL
) == FALSE
) {
647 g_snprintf(buf
, sizeof(buf
), "~/.pwmd/socket");
648 g_key_file_set_string(kf
, "global", "socket_path", buf
);
651 if (g_key_file_has_key(kf
, "global", "data_directory", NULL
) == FALSE
) {
652 g_snprintf(buf
, sizeof(buf
), "~/.pwmd/data");
653 g_key_file_set_string(kf
, "global", "data_directory", buf
);
656 if (g_key_file_has_key(kf
, "global", "backup", NULL
) == FALSE
)
657 g_key_file_set_boolean(kf
, "global", "backup", TRUE
);
659 if (g_key_file_has_key(kf
, "global", "log_path", NULL
) == FALSE
) {
660 g_snprintf(buf
, sizeof(buf
), "~/.pwmd/log");
661 g_key_file_set_string(kf
, "global", "log_path", buf
);
664 if (g_key_file_has_key(kf
, "global", "enable_logging", NULL
) == FALSE
)
665 g_key_file_set_boolean(kf
, "global", "enable_logging", FALSE
);
667 if (g_key_file_has_key(kf
, "global", "cache_size", NULL
) == FALSE
)
668 g_key_file_set_integer(kf
, "global", "cache_size", cache_size
);
671 if (g_key_file_has_key(kf
, "global", "disable_mlockall", NULL
) == FALSE
)
672 g_key_file_set_boolean(kf
, "global", "disable_mlockall", TRUE
);
675 if (g_key_file_has_key(kf
, "global", "cache_timeout", NULL
) == FALSE
)
676 g_key_file_set_integer(kf
, "global", "cache_timeout", -1);
678 if (g_key_file_has_key(kf
, "global", "iterations", NULL
) == FALSE
)
679 g_key_file_set_integer(kf
, "global", "iterations", 0);
681 if (g_key_file_has_key(kf
, "global", "disable_list_and_dump", NULL
) == FALSE
)
682 g_key_file_set_boolean(kf
, "global", "disable_list_and_dump", FALSE
);
684 if (g_key_file_has_key(kf
, "global", "iteration_progress", NULL
) == FALSE
)
685 g_key_file_set_integer(kf
, "global", "iteration_progress", 0);
687 if (g_key_file_has_key(kf
, "global", "compression_level", NULL
) == FALSE
)
688 g_key_file_set_integer(kf
, "global", "compression_level", 6);
690 if (g_key_file_has_key(kf
, "global", "recursion_depth", NULL
) == FALSE
)
691 g_key_file_set_integer(kf
, "global", "recursion_depth", DEFAULT_RECURSION_DEPTH
);
693 if (g_key_file_has_key(kf
, "global", "zlib_bufsize", NULL
) == FALSE
)
694 g_key_file_set_integer(kf
, "global", "zlib_bufsize", DEFAULT_ZLIB_BUFSIZE
);
696 zlib_bufsize
= g_key_file_get_integer(kf
, "global", "zlib_bufsize", NULL
);
698 max_recursion_depth
= g_key_file_get_integer(kf
, "global", "recursion_depth", NULL
);
699 disable_list_and_dump
= g_key_file_get_boolean(kf
, "global", "disable_list_and_dump", NULL
);
702 disable_mlock
= g_key_file_get_boolean(kf
, "global", "disable_mlockall", NULL
);
705 if (g_key_file_has_key(kf
, "global", "syslog", NULL
) == FALSE
)
706 g_key_file_set_boolean(kf
, "global", "syslog", FALSE
);
708 if (g_key_file_has_key(kf
, "global", "keepalive", NULL
) == FALSE
)
709 g_key_file_set_integer(kf
, "global", "keepalive", 30);
712 if (g_key_file_has_key(kf
, "global", "enable_pinentry", NULL
) == FALSE
)
713 g_key_file_set_boolean(kf
, "global", "enable_pinentry", TRUE
);
719 static GKeyFile
*parse_rcfile(int cmdline
)
721 GKeyFile
*kf
= g_key_file_new();
724 if (g_key_file_load_from_file(kf
, rcfile
, G_KEY_FILE_NONE
, &rc
) == FALSE
) {
725 log_write("%s: %s", rcfile
, rc
->message
);
730 if (rc
->code
== G_FILE_ERROR_NOENT
) {
732 set_rcfile_defaults(kf
);
740 set_rcfile_defaults(kf
);
745 static gchar
*get_password(const gchar
*prompt
)
747 gchar buf
[LINE_MAX
] = {0}, *p
;
748 struct termios told
, tnew
;
751 if (tcgetattr(STDIN_FILENO
, &told
) == -1)
752 err(EXIT_FAILURE
, "tcgetattr()");
754 memcpy(&tnew
, &told
, sizeof(struct termios
));
755 tnew
.c_lflag
&= ~(ECHO
);
756 tnew
.c_lflag
|= ICANON
|ECHONL
;
758 if (tcsetattr(STDIN_FILENO
, TCSANOW
, &tnew
) == -1) {
759 tcsetattr(STDIN_FILENO
, TCSANOW
, &told
);
760 err(EXIT_FAILURE
, "tcsetattr()");
763 fprintf(stderr
, "%s", prompt
);
765 if ((p
= fgets(buf
, sizeof(buf
), stdin
)) == NULL
) {
766 tcsetattr(STDIN_FILENO
, TCSANOW
, &told
);
770 tcsetattr(STDIN_FILENO
, TCSANOW
, &told
);
771 p
[strlen(p
) - 1] = 0;
774 key
= gcry_malloc(1);
778 key
= gcry_malloc(strlen(p
) + 1);
779 sprintf(key
, "%s", p
);
782 memset(&buf
, 0, sizeof(buf
));
786 static gboolean
do_try_xml_decrypt(const gchar
*filename
, guchar
*key
)
793 if ((fd
= open_file(filename
, &st
)) == -1) {
794 warn("%s", filename
);
798 if (st
.st_size
== 0) {
799 warnx(N_("%s: skipping empty file"), filename
);
804 rc
= try_xml_decrypt(NULL
, fd
, st
, key
, &iter
);
806 return rc
? FALSE
: TRUE
;
809 static gboolean
get_input(const gchar
*filename
, guchar
*key
)
815 prompt
= g_strdup_printf(N_("Password for '%s': "), filename
);
818 if ((password
= get_password(prompt
)) == NULL
) {
819 warnx(N_("%s: skipping file"), filename
);
824 gcry_md_hash_buffer(GCRY_MD_SHA256
, key
, password
, strlen(password
) ? strlen(password
) : 1);
827 if (do_try_xml_decrypt(filename
, key
) == FALSE
) {
829 warnx(N_("%s: invalid password, skipping"), filename
);
834 warnx(N_("%s: invalid password"), filename
);
843 static gboolean
xml_import(const gchar
*filename
, gint iter
)
853 guchar shakey
[gcrykeysize
];
861 if (stat(filename
, &st
) == -1) {
862 warn("%s", filename
);
866 if ((rc
= gcry_cipher_open(&gh
, GCRY_CIPHER_AES256
, GCRY_CIPHER_MODE_CBC
, 0))) {
867 send_error(NULL
, rc
);
868 gcry_cipher_close(gh
);
869 log_write("%s(%i): %s", __FUNCTION__
, __LINE__
, gcry_strerror(rc
));
876 if ((key
= get_password(N_("New password: "))) == NULL
) {
877 fprintf(stderr
, "%s\n", N_("Invalid password."));
878 gcry_cipher_close(gh
);
882 if ((key2
= get_password(N_("Verify password: "))) == NULL
) {
883 fprintf(stderr
, "%s\n", N_("Passwords do not match."));
885 gcry_cipher_close(gh
);
889 if (g_utf8_collate(key
, key2
) != 0) {
890 fprintf(stderr
, "%s\n", N_("Passwords do not match."));
893 gcry_cipher_close(gh
);
900 if ((fd
= open(filename
, O_RDONLY
)) == -1) {
902 warn("%s", filename
);
903 gcry_cipher_close(gh
);
907 if ((xmlbuf
= gcry_malloc(st
.st_size
+1)) == NULL
) {
910 log_write("%s", strerror(ENOMEM
));
911 gcry_cipher_close(gh
);
915 if (read(fd
, xmlbuf
, st
.st_size
) == -1) {
919 gcry_cipher_close(gh
);
921 err(EXIT_FAILURE
, "read()");
925 xmlbuf
[st
.st_size
] = 0;
928 * Make sure the document validates.
930 if ((doc
= xmlReadDoc(xmlbuf
, NULL
, "UTF-8", XML_PARSE_NOBLANKS
)) == NULL
) {
931 log_write("xmlReadDoc()");
935 gcry_cipher_close(gh
);
940 xmlDocDumpMemory(doc
, &xml
, &len
);
943 level
= get_key_file_integer(filename
, "compression_level");
948 if (do_compress(NULL
, level
, xml
, len
, &outbuf
, &outsize
, &zrc
) == FALSE
) {
949 memset(shakey
, 0, sizeof(shakey
));
952 if (zrc
== Z_MEM_ERROR
)
953 warnx("%s", strerror(ENOMEM
));
955 warnx("do_compress() failed");
957 gcry_cipher_close(gh
);
967 memset(shakey
, '!', sizeof(shakey
));
969 gcry_md_hash_buffer(GCRY_MD_SHA256
, shakey
, key
, strlen(key
) ? strlen(key
) : 1);
973 rc
= do_xml_encrypt(NULL
, gh
, NULL
, xml
, len
, shakey
, iter
);
974 gcry_cipher_close(gh
);
977 memset(shakey
, 0, sizeof(shakey
));
978 warnx("%s", gpg_strerror(rc
));
982 memset(shakey
, 0, sizeof(shakey
));
986 gchar
*get_key_file_string(const gchar
*section
, const gchar
*what
)
991 if (g_key_file_has_key(keyfileh
, section
, what
, NULL
) == TRUE
) {
992 val
= g_key_file_get_string(keyfileh
, section
, what
, &grc
);
995 log_write("%s(%i): %s", __FILE__
, __LINE__
, grc
->message
);
1000 if (g_key_file_has_key(keyfileh
, "global", what
, NULL
) == TRUE
) {
1001 val
= g_key_file_get_string(keyfileh
, "global", what
, &grc
);
1004 log_write("%s(%i): %s", __FILE__
, __LINE__
, grc
->message
);
1005 g_clear_error(&grc
);
1013 gint
get_key_file_integer(const gchar
*section
, const gchar
*what
)
1018 if (g_key_file_has_key(keyfileh
, section
, what
, NULL
) == TRUE
) {
1019 val
= g_key_file_get_integer(keyfileh
, section
, what
, &grc
);
1022 log_write("%s(%i): %s", __FILE__
, __LINE__
, grc
->message
);
1023 g_clear_error(&grc
);
1027 if (g_key_file_has_key(keyfileh
, "global", what
, NULL
) == TRUE
) {
1028 val
= g_key_file_get_integer(keyfileh
, "global", what
, &grc
);
1031 log_write("%s(%i): %s", __FILE__
, __LINE__
, grc
->message
);
1032 g_clear_error(&grc
);
1040 gboolean
get_key_file_boolean(const gchar
*section
, const gchar
*what
)
1042 gboolean val
= FALSE
;
1045 if (g_key_file_has_key(keyfileh
, section
, what
, NULL
) == TRUE
) {
1046 val
= g_key_file_get_boolean(keyfileh
, section
, what
, &grc
);
1049 log_write("%s(%i): %s", __FILE__
, __LINE__
, grc
->message
);
1050 g_clear_error(&grc
);
1054 if (g_key_file_has_key(keyfileh
, "global", what
, NULL
) == TRUE
) {
1055 val
= g_key_file_get_boolean(keyfileh
, "global", what
, &grc
);
1058 log_write("%s(%i): %s", __FILE__
, __LINE__
, grc
->message
);
1059 g_clear_error(&grc
);
1067 static gboolean
_getline(const gchar
*file
, gchar
**result
)
1070 gchar buf
[LINE_MAX
] = {0}, *p
;
1074 if ((fp
= fopen(file
, "r")) == NULL
) {
1079 p
= fgets(buf
, sizeof(buf
), fp
);
1083 if (len
&& buf
[len
- 1] == '\n')
1086 str
= gcry_malloc(len
+ 1);
1087 memcpy(str
, buf
, len
? len
: 1);
1089 memset(&buf
, 0, sizeof(buf
));
1094 static gboolean
parse_keyfile_key()
1101 groups
= g_key_file_get_groups(keyfileh
, &n
);
1103 for (p
= groups
; *p
; p
++) {
1106 if (g_key_file_has_key(keyfileh
, *p
, "key", &rc
) == TRUE
) {
1107 str
= g_key_file_get_string(keyfileh
, *p
, "key", &rc
);
1111 warnx("%s", rc
->message
);
1118 do_cache_push(*p
, str
);
1124 warnx("%s", rc
->message
);
1129 if (g_key_file_has_key(keyfileh
, *p
, "key_file", &rc
) == TRUE
) {
1131 gchar
*file
= g_key_file_get_string(keyfileh
, *p
, "key_file", &rc
);
1135 warnx("%s", rc
->message
);
1142 t
= expand_homedir(file
);
1146 if (_getline(file
, &str
) == FALSE
) {
1152 do_cache_push(*p
, str
);
1158 warnx("%s", rc
->message
);
1167 static gboolean
do_cache_push(const gchar
*filename
, const gchar
*password
)
1172 const gchar
*p
= filename
;
1173 file_header_t file_header
;
1182 if (valid_filename(p
) == FALSE
) {
1183 warnx(N_("%s: invalid characters in filename"), p
);
1187 md5file
= gcry_malloc(16);
1188 key
= gcry_malloc(gcrykeysize
);
1189 gcry_md_hash_buffer(GCRY_MD_MD5
, md5file
, p
, strlen(p
));
1191 if (cache_iscached(md5file
) == TRUE
) {
1192 warnx(N_("%s: file already cached, skipping"), p
);
1198 if (access(p
, R_OK
|W_OK
) != 0) {
1202 if (errno
!= ENOENT
) {
1211 rc
= read_file_header(filename
, &file_header
);
1216 warnx("%s", pwmd_strerror(rc
));
1220 if (file_header
.iter
== -1) {
1221 memset(key
, '!', gcrykeysize
);
1226 #ifdef WITH_PINENTRY
1227 if (g_key_file_get_boolean(keyfileh
, "global", "enable_pinentry", NULL
) == FALSE
) {
1229 if (get_input(p
, key
) == FALSE
) {
1234 #ifdef WITH_PINENTRY
1237 gchar
*result
= NULL
;
1238 struct pinentry_s
*pin
= g_malloc0(sizeof(struct pinentry_s
));
1241 pin
->which
= PINENTRY_OPEN
;
1242 pin
->filename
= g_strdup(filename
);
1244 rc
= pinentry_getpin(pin
, &result
);
1247 warnx("%s: %s", filename
, gpg_strerror(rc
));
1248 cleanup_pinentry(pin
);
1255 gcry_md_hash_buffer(GCRY_MD_SHA256
, key
, result
, strlen(result
) ? strlen(result
) : 1);
1258 if (do_try_xml_decrypt(filename
, key
) == FALSE
) {
1260 cleanup_pinentry(pin
);
1263 warnx(N_("%s: invalid password, skipping"), filename
);
1268 pin
->title
= g_strdup(N_("Incorrect password. Please try again."));
1273 cleanup_pinentry(pin
);
1278 gcry_md_hash_buffer(GCRY_MD_SHA256
, key
, password
, strlen(password
) ? strlen(password
) : 1);
1281 if (do_try_xml_decrypt(filename
, key
) == FALSE
) {
1282 warnx(N_("%s: invalid password, skipping"), filename
);
1289 if (cache_add_file(md5file
, key
) == FALSE
) {
1290 warnx("%s: %s", p
, pwmd_strerror(EPWMD_MAX_SLOTS
));
1296 timeout
= get_key_file_integer(p
, "cache_timeout");
1297 cache_set_timeout(md5file
, timeout
);
1298 warnx(N_("%s: file added to the cache"), filename
);
1304 static void *accept_thread(void *arg
)
1306 gint sockfd
= (gint
)arg
;
1309 socklen_t slen
= sizeof(struct sockaddr_un
);
1310 struct sockaddr_un raddr
;
1314 if ((fd
= pth_accept(sockfd
, (struct sockaddr
*)&raddr
, &slen
)) == -1) {
1315 if (errno
!= EAGAIN
) {
1316 if (!quit
) // probably EBADF
1317 log_write("accept(): %s", strerror(errno
));
1325 struct client_thread_s
*new;
1328 new = g_malloc0(sizeof(struct client_thread_s
));
1331 log_write("%s", strerror(ENOMEM
));
1336 * Thread priority is inherited from the calling thread. This
1337 * thread is PTH_PRIO_MAX. Keep the "child" threads at standard
1341 attr
= pth_attr_new();
1342 pth_attr_set(attr
, PTH_ATTR_PRIO
, PTH_PRIO_STD
);
1343 pth_attr_set(attr
, PTH_ATTR_JOINABLE
, FALSE
);
1344 tid
= pth_spawn(attr
, client_thread
, new);
1345 pth_attr_destroy(attr
);
1349 log_write(N_("pth_spawn() failed"));
1353 g_snprintf(buf
, sizeof(buf
), "%p", tid
);
1354 log_write(N_("new tid=%s, fd=%i"), buf
, fd
);
1355 attr
= pth_attr_of(tid
);
1356 pth_attr_set(attr
, PTH_ATTR_NAME
, buf
);
1357 pth_attr_destroy(attr
);
1359 pth_mutex_acquire(&cn_mutex
, FALSE
, NULL
);
1360 cn_thread_list
= g_slist_append(cn_thread_list
, new);
1361 pth_mutex_release(&cn_mutex
);
1365 /* Just in case pth_accept() failed for some reason other than EBADF */
1367 pth_exit(PTH_CANCELED
);
1372 * This thread isn't joinable. For operations that block, these threads will
1375 static void *adjust_timer_thread(void *arg
)
1378 cache_adjust_timer();
1383 static void server_loop(gint sockfd
, gchar
**socketpath
)
1390 pth_event_t timeout_ev
, keepalive_ev
= NULL
;
1391 gint keepalive
= get_key_file_integer("global", "keepalive");
1394 pth_mutex_init(&cn_mutex
);
1395 log_write(N_("%s started for user %s"), PACKAGE_STRING
, g_get_user_name());
1398 sigaddset(&set
, SIGTERM
);
1399 sigaddset(&set
, SIGINT
);
1400 sigaddset(&set
, SIGUSR1
);
1401 sigaddset(&set
, SIGHUP
);
1402 sigaddset(&set
, SIGABRT
);
1404 attr
= pth_attr_new();
1405 pth_attr_init(attr
);
1406 pth_attr_set(attr
, PTH_ATTR_PRIO
, PTH_PRIO_MAX
);
1407 pth_attr_set(attr
, PTH_ATTR_NAME
, "accept");
1408 accept_tid
= pth_spawn(attr
, accept_thread
, (void *)sockfd
);
1411 * For the cache_timeout configuration parameter. This replaces the old
1412 * SIGALRM stuff and is safer.
1414 timeout_ev
= pth_event(PTH_EVENT_TIME
, pth_timeout(1, 0));
1416 if (keepalive
> 0) {
1417 keepalive_ev
= pth_event(PTH_EVENT_TIME
, pth_timeout(keepalive
, 0));
1418 pth_event_concat(timeout_ev
, keepalive_ev
, NULL
);
1421 pth_attr_init(attr
);
1422 pth_attr_set(attr
, PTH_ATTR_JOINABLE
, FALSE
);
1423 pth_attr_set(attr
, PTH_ATTR_PRIO
, PTH_PRIO_MAX
);
1428 pth_sigwait_ev(&set
, &sig
, timeout_ev
);
1429 pth_event_isolate(timeout_ev
);
1430 pth_event_isolate(keepalive_ev
);
1432 if (pth_event_occurred(timeout_ev
)) {
1434 * The timer event has expired. Update the file cache. When the
1435 * cache mutex is locked and the timer expires again, the threads
1438 pth_spawn(attr
, adjust_timer_thread
, NULL
);
1439 pth_event_free(timeout_ev
, PTH_FREE_THIS
);
1440 timeout_ev
= pth_event(PTH_EVENT_TIME
, pth_timeout(1, 0));
1443 * Just in case the configuration file has been reloaded.
1445 keepalive
= get_key_file_integer("global", "keepalive");
1448 if (keepalive_ev
&& pth_event_occurred(keepalive_ev
)) {
1449 pth_event_free(keepalive_ev
, PTH_FREE_THIS
);
1450 keepalive_ev
= NULL
;
1451 send_status_all(STATUS_KEEPALIVE
);
1454 keepalive_ev
= pth_event(PTH_EVENT_TIME
, pth_timeout(keepalive
, 0));
1457 pth_event_concat(timeout_ev
, keepalive_ev
, NULL
);
1460 log_write(N_("caught signal %i (%s)"), sig
, strsignal(sig
));
1462 /* Caught a signal. */
1469 cache_clear(NULL
, 2);
1477 log_write(N_("clearing file cache"));
1478 cache_clear(NULL
, 2);
1483 shutdown(sockfd
, SHUT_RDWR
);
1491 * We're out of the main server loop. This happens when a signal was sent
1492 * to terminate the daemon. We'll wait for all clients to disconnect
1493 * before exiting and ignore any following signals.
1495 pth_join(accept_tid
, &value
);
1496 pth_attr_destroy(attr
);
1497 pth_event_free(timeout_ev
, PTH_FREE_THIS
);
1498 n
= pth_ctrl(PTH_CTRL_GETTHREADS
);
1499 unlink(*socketpath
);
1500 g_free(*socketpath
);
1504 log_write(N_("waiting for all threads to terminate"));
1509 if (n
!= n_clients
) {
1510 log_write(N_("%i threads remain"), n
-1);
1514 events
= pth_event(PTH_EVENT_TIME
, pth_timeout(0, 500000));
1516 pth_event_isolate(events
);
1517 pth_event_free(events
, PTH_FREE_THIS
);
1518 n
= pth_ctrl(PTH_CTRL_GETTHREADS
);
1523 * Called from pinentry_fork() in the child process.
1525 void free_client_list()
1527 gint i
, t
= g_slist_length(cn_thread_list
);
1529 for (i
= 0; i
< t
; i
++) {
1530 struct client_thread_s
*cn
= g_slist_nth_data(cn_thread_list
, i
);
1532 free_client(cn
->cl
);
1535 memset(key_cache
, 0, cache_size
);
1538 int main(int argc
, char *argv
[])
1541 struct sockaddr_un addr
;
1542 struct passwd
*pw
= getpwuid(getuid());
1543 gchar buf
[PATH_MAX
];
1544 gchar
*socketpath
= NULL
, *socketdir
, *socketname
= NULL
;
1545 gchar
*socketarg
= NULL
;
1546 gchar
*datadir
= NULL
;
1549 gchar
**cache_push
= NULL
;
1551 gchar
*import
= NULL
;
1552 gint cmd_iterations
= -1;
1553 gint default_timeout
;
1554 gint rcfile_spec
= 0;
1555 gint estatus
= EXIT_FAILURE
;
1558 GMemVTable mtable
= { xmalloc
, xrealloc
, xfree
, xcalloc
, NULL
, NULL
};
1561 gboolean secure
= FALSE
;
1563 gint background
= 0;
1566 #ifdef HAVE_SETRLIMIT
1569 rl
.rlim_cur
= rl
.rlim_max
= 0;
1571 if (setrlimit(RLIMIT_CORE
, &rl
) != 0)
1572 err(EXIT_FAILURE
, "setrlimit()");
1577 setlocale(LC_ALL
, "");
1578 bindtextdomain("pwmd", LOCALEDIR
);
1583 assuan_set_assuan_err_source(GPG_ERR_SOURCE_DEFAULT
);
1585 g_mem_set_vtable(&mtable
);
1586 assuan_set_malloc_hooks(xmalloc
, xrealloc
, xfree
);
1587 xmlMemSetup(xfree
, xmalloc
, xrealloc
, xstrdup
);
1591 g_snprintf(buf
, sizeof(buf
), "%s/.pwmd", pw
->pw_dir
);
1593 if (mkdir(buf
, 0700) == -1 && errno
!= EEXIST
)
1594 err(EXIT_FAILURE
, "%s", buf
);
1596 g_snprintf(buf
, sizeof(buf
), "%s/.pwmd/data", pw
->pw_dir
);
1598 if (mkdir(buf
, 0700) == -1 && errno
!= EEXIST
)
1599 err(EXIT_FAILURE
, "%s", buf
);
1601 rcfile
= g_strdup_printf("%s/.pwmd/config", pw
->pw_dir
);
1603 if ((page_size
= sysconf(_SC_PAGESIZE
)) == -1)
1604 err(EXIT_FAILURE
, "sysconf()");
1606 cache_size
= page_size
;
1608 while ((opt
= getopt(argc
, argv
, "bI:i:hvf:D")) != EOF
) {
1620 cmd_iterations
= atoi(optarg
);
1624 rcfile
= g_strdup(optarg
);
1628 printf("%s\n%s\n", PACKAGE_STRING
, PACKAGE_BUGREPORT
);
1636 if ((keyfileh
= parse_rcfile(rcfile_spec
)) == NULL
)
1639 if (g_key_file_has_key(keyfileh
, "global", "syslog", NULL
) == TRUE
)
1640 log_syslog
= g_key_file_get_boolean(keyfileh
, "global", "syslog", NULL
);
1642 if (log_syslog
== TRUE
)
1643 openlog("pwmd", LOG_NDELAY
|LOG_PID
, LOG_DAEMON
);
1645 if (g_key_file_has_key(keyfileh
, "global", "iterations", NULL
) == TRUE
)
1646 iter
= g_key_file_get_integer(keyfileh
, "global", "iterations", NULL
);
1648 #ifdef HAVE_MLOCKALL
1649 if (disable_mlock
== FALSE
&& mlockall(MCL_FUTURE
) == -1) {
1658 opt
= xml_import(import
, cmd_iterations
< -1 ? iter
: cmd_iterations
);
1659 g_key_file_free(keyfileh
);
1661 exit(opt
== FALSE
? EXIT_FAILURE
: EXIT_SUCCESS
);
1664 g_key_file_set_list_separator(keyfileh
, ',');
1666 if ((p
= g_key_file_get_string(keyfileh
, "global", "socket_path", NULL
)) == NULL
)
1667 errx(EXIT_FAILURE
, N_("%s: socket_path not defined"), rcfile
);
1671 g_snprintf(buf
, sizeof(buf
), "%s%s", g_get_home_dir(), p
--);
1673 socketarg
= g_strdup(buf
);
1678 if ((p
= g_key_file_get_string(keyfileh
, "global", "data_directory", NULL
)) == NULL
)
1679 errx(EXIT_FAILURE
, N_("%s: data_directory not defined"), rcfile
);
1681 datadir
= expand_homedir(p
);
1684 if (secure
== FALSE
&& g_key_file_has_key(keyfileh
, "global", "disable_list_and_dump", NULL
) == TRUE
) {
1685 n
= g_key_file_get_boolean(keyfileh
, "global", "disable_list_and_dump", NULL
);
1686 disable_list_and_dump
= n
;
1689 disable_list_and_dump
= secure
;
1691 if (g_key_file_has_key(keyfileh
, "global", "cache_timeout", NULL
) == TRUE
)
1692 default_timeout
= g_key_file_get_integer(keyfileh
, "global", "cache_timeout", NULL
);
1694 default_timeout
= -1;
1696 if (g_key_file_has_key(keyfileh
, "global", "cache_size", NULL
) == TRUE
) {
1697 cache_size
= g_key_file_get_integer(keyfileh
, "global", "cache_size", NULL
);
1699 if (cache_size
< page_size
|| cache_size
% page_size
)
1700 errx(EXIT_FAILURE
, N_("cache size must be in multiples of %li"), page_size
);
1703 setup_logging(keyfileh
);
1705 if (g_key_file_has_key(keyfileh
, "global", "cache_push", NULL
) == TRUE
)
1706 cache_push
= g_key_file_get_string_list(keyfileh
, "global", "cache_push", NULL
, NULL
);
1708 if (argc
!= optind
) {
1710 ptotal
= g_strv_length(cache_push
);
1712 for (; optind
< argc
; optind
++) {
1713 if (strv_printf(&cache_push
, "%s", argv
[optind
]) == FALSE
)
1714 errx(EXIT_FAILURE
, "%s", strerror(ENOMEM
));
1718 if (strchr(socketarg
, '/') == NULL
) {
1719 socketdir
= g_get_current_dir();
1720 socketname
= g_strdup(socketarg
);
1721 socketpath
= g_strdup_printf("%s/%s", socketdir
, socketname
);
1724 socketname
= g_strdup(strrchr(socketarg
, '/'));
1726 socketarg
[strlen(socketarg
) - strlen(socketname
) -1] = 0;
1727 socketdir
= g_strdup(socketarg
);
1728 socketpath
= g_strdup_printf("%s/%s", socketdir
, socketname
);
1731 if ((key_cache
= mmap(NULL
, cache_size
, PROT_READ
|PROT_WRITE
,
1732 #ifdef MMAP_ANONYMOUS
1733 MAP_PRIVATE
|MAP_ANONYMOUS
, -1, 0)) == MAP_FAILED
) {
1735 MAP_PRIVATE
|MAP_ANON
, -1, 0)) == MAP_FAILED
) {
1737 err(EXIT_FAILURE
, "mmap()");
1740 if (mlock(key_cache
, cache_size
) == -1)
1741 log_write("mlock(): %s", strerror(errno
));
1743 memset(key_cache
, 0, cache_size
);
1745 if (chdir(datadir
)) {
1746 warn("%s", datadir
);
1751 if (parse_keyfile_key() == FALSE
)
1754 clear_errorfile_key();
1757 * Set the cache entry for a file. Prompts for the password.
1760 for (opt
= 0; cache_push
[opt
]; opt
++)
1761 do_cache_push(cache_push
[opt
], NULL
);
1763 g_strfreev(cache_push
);
1764 warnx(background
? N_("Done. Daemonizing...") : N_("Done. Waiting for connections..."));
1768 * bind() doesn't like the full pathname of the socket or any non alphanum
1769 * characters so change to the directory where the socket is wanted then
1770 * create it then change to datadir.
1772 if (chdir(socketdir
)) {
1773 warn("%s", socketdir
);
1779 if ((sockfd
= socket(PF_UNIX
, SOCK_STREAM
, 0)) == -1) {
1784 addr
.sun_family
= AF_UNIX
;
1785 g_snprintf(addr
.sun_path
, sizeof(addr
.sun_path
), "%s", socketname
);
1787 if (bind(sockfd
, (struct sockaddr
*)&addr
, sizeof(struct sockaddr
)) == -1) {
1790 if (errno
== EADDRINUSE
)
1791 warnx(N_("Either there is another pwmd running or '%s' is a \n"
1792 "stale socket. Please remove it manually."), socketpath
);
1798 if (g_key_file_has_key(keyfileh
, "global", "socket_perms", NULL
) == TRUE
) {
1799 gchar
*t
= g_key_file_get_string(keyfileh
, "global", "socket_perms", NULL
);
1800 mode_t mode
= strtol(t
, NULL
, 8);
1801 mode_t mask
= umask(0);
1805 if (chmod(socketname
, mode
) == -1) {
1806 warn("%s", socketname
);
1816 g_free(--socketname
);
1818 if (chdir(datadir
)) {
1819 warn("%s", datadir
);
1826 pth_mutex_init(&cache_mutex
);
1827 #ifdef WITH_PINENTRY
1828 pth_mutex_init(&pin_mutex
);
1831 if (listen(sockfd
, 0) == -1) {
1853 * These are the signals that we use in threads. libpth can catch signals
1854 * itself so ignore them everywhere else. Note that using
1855 * signal(N, SIG_IGN) doesn't work like you might think.
1860 sigaddset(&set
, SIGTERM
);
1861 sigaddset(&set
, SIGINT
);
1863 /* Configuration file reloading. */
1864 sigaddset(&set
, SIGUSR1
);
1866 /* Clears the file cache. */
1867 sigaddset(&set
, SIGHUP
);
1869 /* Caught in client_thread(). Sends a cache status message. */
1870 sigaddset(&set
, SIGUSR2
);
1872 /* Ignored everywhere. When a client disconnects abnormally this signal
1873 * gets raised. It isn't needed though because client_thread() will check
1874 * for rcs even after the client disconnects. */
1875 signal(SIGPIPE
, SIG_IGN
);
1876 pth_sigmask(SIG_BLOCK
, &set
, NULL
);
1877 server_loop(sockfd
, &socketpath
);
1878 estatus
= EXIT_SUCCESS
;
1881 if (socketpath
&& do_unlink
) {
1886 g_key_file_free(keyfileh
);
1891 cache_clear(NULL
, 2);
1892 memset(key_cache
, 0, cache_size
);
1895 if (key_cache
&& munmap(key_cache
, cache_size
) == -1)
1896 log_write("munmap(): %s", strerror(errno
));
1898 if (estatus
== EXIT_SUCCESS
)
1899 log_write(N_("pwmd exiting normally"));
1902 #if defined(DEBUG) && !defined(MEM_DEBUG)