Fix valid_xml_element() and valid_xml_attribute() to use XML spec.
[pwmd.git] / src / cache.c
blobcc48fecaba63a6589d24950cec471193f274cca7
1 /*
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/>.
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
24 #include <stdio.h>
25 #include <unistd.h>
26 #include <pthread.h>
27 #include <ctype.h>
28 #include <errno.h>
30 #include "pwmd-error.h"
31 #include <gcrypt.h>
32 #include "mutex.h"
33 #include "cache.h"
34 #include "status.h"
35 #include "mem.h"
36 #include "util-misc.h"
37 #include "util-string.h"
38 #include "crypto.h"
40 #ifdef HAVE_TIME_H
41 #include <time.h>
42 #endif
44 static pthread_mutex_t cache_mutex;
45 static struct slist_s *key_cache;
46 #ifdef WITH_AGENT
47 static struct agent_s *cache_agent;
48 #endif
50 extern void log_write (const char *fmt, ...);
52 typedef gpg_error_t (*free_data_fn_t) (file_cache_t *);
53 static free_data_fn_t free_data_fn;
54 static gpg_error_t clear_once (file_cache_t * p);
55 static int remove_entry (const unsigned char *md5file);
56 static void free_entry (file_cache_t * p);
58 static file_cache_t *
59 get_entry (const unsigned char *md5file)
61 int t = slist_length (key_cache);
62 int i;
64 if (!md5file)
65 return NULL;
67 for (i = 0; i < t; i++)
69 file_cache_t *p = slist_nth_data (key_cache, i);
71 if (!memcmp (p->filename, md5file, sizeof (p->filename)))
72 return p;
75 return NULL;
78 gpg_error_t
79 cache_lock_mutex (void *ctx, const unsigned char *md5file,
80 long lock_timeout, int add, int timeout)
82 MUTEX_LOCK (&cache_mutex);
83 gpg_error_t rc = 0;
84 file_cache_t *p = get_entry (md5file);
86 if (p)
88 MUTEX_UNLOCK (&cache_mutex);
89 MUTEX_TRYLOCK (ctx, p->mutex, rc, lock_timeout);
91 else if (add)
93 if (cache_add_file (md5file, NULL, NULL, timeout))
95 p = get_entry (md5file);
96 MUTEX_UNLOCK (&cache_mutex);
97 MUTEX_TRYLOCK (ctx, p->mutex, rc, lock_timeout);
99 else
101 MUTEX_UNLOCK (&cache_mutex);
102 rc = GPG_ERR_ENOMEM;
105 else
107 MUTEX_UNLOCK (&cache_mutex);
110 return !p && !rc ? GPG_ERR_NO_DATA : rc;
113 static int
114 remove_entry (const unsigned char *md5file)
116 MUTEX_LOCK (&cache_mutex);
117 file_cache_t *p = get_entry (md5file);
119 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
120 if (p)
122 /* Keep a refcount because another client maybe editing this same new
123 * file. The entry needs to be kept in case the other client SAVE's.
125 p->refcount--;
126 if (!p->refcount)
127 free_entry (p);
130 pthread_cleanup_pop (1);
131 return p ? 1 : 0;
134 gpg_error_t
135 cache_unlock_mutex (const unsigned char *md5file, int remove)
137 MUTEX_LOCK (&cache_mutex);
138 file_cache_t *p = get_entry (md5file);
140 if (p)
142 MUTEX_UNLOCK (p->mutex);
143 if (remove)
144 remove_entry (md5file);
147 MUTEX_UNLOCK (&cache_mutex);
148 return p ? 0 : GPG_ERR_NO_DATA;
151 #ifdef WITH_AGENT
152 static int valid_agent_grip (file_cache_t *e)
154 size_t c;
156 for (c = 0; c < sizeof (e->grip); c++)
158 if (e->grip[c] && e->grip[c] != '0')
159 return 1;
162 return 0;
164 #endif
166 static int
167 valid_grip (file_cache_t * e)
169 if (e->data && e->data->key)
170 return 1;
172 #ifdef WITH_AGENT
173 return valid_agent_grip (e);
174 #else
175 return 0;
176 #endif
179 static gpg_error_t
180 iscached (const unsigned char *md5file, int *defer)
182 gpg_error_t rc = 0;
183 file_cache_t *p = get_entry (md5file);
185 if (!p || !p->data || !valid_grip (p))
186 return GPG_ERR_NO_DATA;
188 if (defer)
189 *defer = p->defer_clear;
191 if (p->data && p->data->key)
192 return 0;
194 #ifdef WITH_AGENT
195 char *line;
197 rc = send_to_agent (cache_agent, &line, NULL, "KEYINFO --data %s", p->grip);
198 if (!rc)
200 char **fields = str_split (line, " ", 0);
202 /* Smartcard with a cached document. */
203 if (*fields[1] == 'T' && p->data->doc)
204 rc = 0;
205 else
206 rc = isdigit (*fields[4]) || *fields[5] == 'C' ? 0 : GPG_ERR_NO_DATA;
208 strv_free (fields);
209 xfree (line);
211 #endif
213 return rc;
216 unsigned
217 cache_file_count ()
219 MUTEX_LOCK (&cache_mutex);
220 unsigned total = 0, i, n;
222 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
223 n = slist_length (key_cache);
224 for (i = 0; i < n; i++)
226 file_cache_t *p = slist_nth_data (key_cache, i);
228 if (!iscached (p->filename, NULL))
229 total++;
232 pthread_cleanup_pop (1);
233 return total;
236 void
237 cache_adjust_timeout ()
239 MUTEX_LOCK (&cache_mutex);
240 int t = slist_length (key_cache);
241 int i;
243 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
245 for (i = 0; i < t; i++)
247 file_cache_t *p = slist_nth_data (key_cache, i);
249 if (p->timeout > 0)
250 p->timeout--;
252 if (!p->timeout || p->defer_clear)
254 /* The file associated with this cache entry may be locked by a
255 * client. Defer freeing this cache entry until the next timeout
256 * check. */
257 if (!clear_once (p))
258 send_status_all (STATUS_CACHE, NULL);
262 pthread_cleanup_pop (1);
265 static void
266 setgrip (file_cache_t * p, const unsigned char *grip)
268 if (grip)
270 char *tmp = bin2hex (grip, 20);
272 memcpy (p->grip, tmp, sizeof (p->grip));
273 xfree (tmp);
275 else
276 memset (p->grip, 0, sizeof(p->grip));
279 static gpg_error_t
280 set_timeout (const unsigned char *md5file, int timeout, int defer)
282 MUTEX_LOCK (&cache_mutex);
283 file_cache_t *p = get_entry (md5file);
284 gpg_error_t rc = 0;
286 if (!p)
288 MUTEX_UNLOCK (&cache_mutex);
289 return GPG_ERR_NOT_FOUND;
292 p->reset = timeout;
293 if (p->timeout == -1 || timeout == -1)
294 p->timeout = timeout;
296 if (!timeout || defer)
298 rc = clear_once (p);
299 if (!rc)
300 send_status_all (STATUS_CACHE, NULL);
303 MUTEX_UNLOCK (&cache_mutex);
304 return rc;
307 gpg_error_t
308 cache_set_data (const unsigned char *md5file, struct cache_data_s * data,
309 const unsigned char *grip)
311 MUTEX_LOCK (&cache_mutex);
312 file_cache_t *p = get_entry (md5file);
314 if (p)
316 setgrip (p, grip);
317 p->data = data;
318 set_timeout (md5file, p->reset, p->defer_clear);
319 if (!p->reset)
321 clear_once (p);
322 send_status_all (STATUS_CACHE, NULL);
326 MUTEX_UNLOCK (&cache_mutex);
327 return p ? 0 : GPG_ERR_NO_DATA;
330 struct cache_data_s *
331 cache_get_data (const unsigned char *md5file)
333 MUTEX_LOCK (&cache_mutex);
334 file_cache_t *p = get_entry (md5file);
336 MUTEX_UNLOCK (&cache_mutex);
337 return p ? p->data : NULL;
341 struct cache_data_s *
342 cache_get_data_filename (const char *filename)
344 unsigned char md5file[16];
346 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, filename, strlen (filename));
347 return cache_get_data (md5file);
351 cache_add_file (const unsigned char *md5file, const unsigned char *grip,
352 struct cache_data_s *data, int timeout)
354 MUTEX_LOCK (&cache_mutex);
355 file_cache_t *p = get_entry (md5file);
356 struct slist_s *new;
357 int b;
359 if (p)
361 setgrip (p, grip);
362 p->data = data;
363 p->refcount++;
364 b = set_timeout (md5file, timeout, p->defer_clear) == 0 ? 1 : 0;
365 MUTEX_UNLOCK (&cache_mutex);
366 send_status_all (STATUS_CACHE, NULL);
367 return b;
370 p = xcalloc (1, sizeof (file_cache_t));
371 if (!p)
373 MUTEX_UNLOCK (&cache_mutex);
374 return 0;
377 p->mutex = (pthread_mutex_t *) xmalloc (sizeof (pthread_mutex_t));
378 if (!p->mutex)
380 xfree (p);
381 MUTEX_UNLOCK (&cache_mutex);
382 return 0;
385 pthread_mutexattr_t attr;
386 pthread_mutexattr_init (&attr);
387 pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE);
388 pthread_mutex_init (p->mutex, &attr);
389 pthread_mutexattr_destroy (&attr);
390 memcpy (p->filename, md5file, sizeof (p->filename));
391 setgrip (p, grip);
392 p->reset = p->timeout = timeout;
393 p->data = data;
394 p->refcount++;
395 new = slist_append (key_cache, p);
396 if (!new)
398 pthread_mutex_destroy (p->mutex);
399 xfree (p->mutex);
400 xfree (p);
401 MUTEX_UNLOCK (&cache_mutex);
402 return 0;
405 key_cache = new;
406 MUTEX_UNLOCK (&cache_mutex);
407 send_status_all (STATUS_CACHE, NULL);
408 return 1;
411 static gpg_error_t
412 clear_once (file_cache_t * p)
414 gpg_error_t rc = free_data_fn (p);
416 if (!rc && valid_grip (p))
418 #ifdef WITH_AGENT
419 if (use_agent && valid_agent_grip (p))
421 rc = send_to_agent (cache_agent, NULL, NULL,
422 "CLEAR_PASSPHRASE --mode=normal %s", p->grip);
423 if (rc)
424 log_write ("%s(): %s", __FUNCTION__, pwmd_strerror (rc));
426 #endif
427 memset (p->grip, 0, sizeof (p->grip));
430 return rc;
433 static void
434 free_entry (file_cache_t * p)
436 gpg_error_t rc;
438 if (!p)
439 return;
441 rc = clear_once (p);
442 if (rc)
443 log_write ("%s(): %s", __FUNCTION__, pwmd_strerror (rc));
445 if (p->mutex)
447 pthread_mutex_destroy (p->mutex);
448 xfree (p->mutex);
451 key_cache = slist_remove (key_cache, p);
452 xfree (p);
455 gpg_error_t
456 cache_clear (const unsigned char *md5file)
458 file_cache_t *p;
459 gpg_error_t rc = 0;
460 int i, t;
462 MUTEX_LOCK (&cache_mutex);
464 if (md5file)
466 p = get_entry (md5file);
467 if (!p)
469 MUTEX_UNLOCK (&cache_mutex);
470 return 0;
473 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
474 rc = clear_once (p);
475 pthread_cleanup_pop (1);
476 if (rc)
477 log_write ("%s(): %s", __FUNCTION__, pwmd_strerror (rc));
479 return rc;
482 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
483 t = slist_length (key_cache);
484 for (i = 0; i < t; i++)
486 p = slist_nth_data (key_cache, i);
487 clear_once (p);
490 pthread_cleanup_pop (1);
491 return 0;
494 gpg_error_t
495 cache_iscached (const char *filename, int *defer)
497 gpg_error_t rc;
498 unsigned char md5file[16];
500 MUTEX_LOCK (&cache_mutex);
501 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
502 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, filename, strlen (filename));
503 rc = iscached (md5file, defer);
504 pthread_cleanup_pop (1);
506 /* Test if the data file disappeared from the filesystem. */
507 if ((!rc || gpg_err_code (rc) == GPG_ERR_NO_DATA)
508 && access (filename, R_OK) == -1)
510 rc = gpg_error_from_errno (errno);
511 if (gpg_err_code (rc) == GPG_ERR_ENOENT)
513 /* When -1, don't clear the cache entry. Fixes clearing the
514 * cache entry when saving a new file. */
515 if ((defer && *defer != -1) || !defer)
517 rc = cache_defer_clear (md5file);
518 if (!rc && defer)
519 *defer = 1;
522 rc = GPG_ERR_ENOENT;
526 return rc;
529 gpg_error_t
530 cache_defer_clear (const unsigned char *md5file)
532 MUTEX_LOCK (&cache_mutex);
533 file_cache_t *p = get_entry (md5file);
534 gpg_error_t rc = 0;
536 if (!p)
537 rc = GPG_ERR_NOT_FOUND;
538 else
539 p->defer_clear = 1;
541 MUTEX_UNLOCK (&cache_mutex);
542 return rc;
545 gpg_error_t
546 cache_set_timeout (const unsigned char *md5file, int timeout)
548 return set_timeout (md5file, timeout, 0);
552 cache_get_grip (const unsigned char *md5file, unsigned char *grip)
554 MUTEX_LOCK (&cache_mutex);
555 file_cache_t *p = get_entry (md5file);
557 if (!p || !valid_grip (p))
559 MUTEX_UNLOCK (&cache_mutex);
560 return 0;
563 memcpy (grip, p->grip, sizeof (p->grip));
564 MUTEX_UNLOCK (&cache_mutex);
565 return 1;
568 /* The atfork parameter is needed to prevent clearing gpg-agent
569 cached keys during an atfork callback since the agent is still
570 shared between the two processes. */
571 void
572 cache_deinit (int atfork)
574 MUTEX_LOCK (&cache_mutex);
575 int i, t = slist_length (key_cache);
577 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
578 for (i = 0; i < t; i++)
580 file_cache_t *p = slist_nth_data (key_cache, i);
582 #ifdef WITH_AGENT
583 if (atfork && valid_agent_grip (p))
584 continue;
585 #endif
587 free_entry (p);
588 t = slist_length (key_cache);
589 i = -1;
592 #ifdef WITH_AGENT
593 if (use_agent && cache_agent)
594 cleanup_agent (cache_agent);
596 cache_agent = NULL;
597 #endif
598 gcry_free (cache_key);
599 xfree (cache_iv);
600 cache_key = NULL;
601 cache_iv = NULL;
602 pthread_cleanup_pop (1);
603 pthread_mutex_destroy (&cache_mutex);
606 void
607 cache_mutex_init ()
609 pthread_mutexattr_t attr;
611 pthread_mutexattr_init (&attr);
612 pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE);
613 pthread_mutex_init (&cache_mutex, &attr);
614 pthread_mutexattr_destroy (&attr);
617 gpg_error_t
618 cache_init (free_data_fn_t fn)
620 gpg_error_t rc = 0;
622 if (!cache_key)
624 rc = gcry_cipher_algo_info (GCRY_CIPHER_AES, GCRYCTL_GET_BLKLEN, NULL,
625 &cache_blocksize);
626 if (rc)
627 return rc;
629 rc = gcry_cipher_algo_info (GCRY_CIPHER_AES, GCRYCTL_GET_KEYLEN, NULL,
630 &cache_keysize);
631 if (rc)
632 return rc;
634 cache_key = gcry_malloc (cache_keysize);
635 if (!cache_key)
636 return GPG_ERR_ENOMEM;
638 cache_iv = xmalloc (cache_blocksize);
639 if (!cache_iv)
641 gcry_free (cache_key);
642 cache_key = NULL;
643 return GPG_ERR_ENOMEM;
646 gcry_create_nonce (cache_key, cache_keysize);
647 gcry_create_nonce (cache_iv, cache_blocksize);
650 #ifdef WITH_AGENT
651 if (use_agent && !cache_agent)
653 rc = agent_init (&cache_agent);
654 if (!rc)
656 char *line;
658 rc = send_to_agent (cache_agent, &line, NULL, "GETINFO version");
659 if (!rc)
661 char **fields = str_split (line, ".", 0);
662 int major, minor;
664 major = atoi (fields[0]);
665 minor = atoi (fields[1]);
666 if (major < 2 || minor < 1)
667 rc = GPG_ERR_UNKNOWN_VERSION;
669 strv_free (fields);
670 xfree (line);
674 #endif
676 cache_mutex_init ();
677 free_data_fn = fn;
678 return rc;
681 #ifdef WITH_AGENT
682 gpg_error_t
683 cache_is_shadowed (const char *grip)
685 MUTEX_LOCK (&cache_mutex);
686 char *line;
687 size_t len;
688 gpg_error_t rc;
690 pthread_cleanup_push (cleanup_mutex_cb, &cache_mutex);
691 rc = send_to_agent (cache_agent, &line, &len, "KEYINFO --data %s", grip);
692 pthread_cleanup_pop (1);
694 if (!rc)
696 char **fields = str_split (line, " ", 0);
698 rc = (*fields[1] == 'T') ? 0 : GPG_ERR_NO_DATA;
699 xfree (line);
700 strv_free (fields);
703 return rc;
705 #endif
707 void
708 cache_lock ()
710 MUTEX_LOCK (&cache_mutex);
713 void
714 cache_unlock ()
716 MUTEX_UNLOCK (&cache_mutex);
719 void
720 free_cache_data_once (struct cache_data_s *data)
722 if (!data)
723 return;
725 #ifdef WITH_AGENT
726 if (data->pubkey)
727 gcry_sexp_release (data->pubkey);
729 if (data->sigkey)
730 gcry_sexp_release (data->sigkey);
731 #endif
733 gcry_free (data->doc);
734 gcry_free (data->key);
735 xfree (data->crc);
736 xfree (data);