Fix STORE creating elements when not permitted.
[pwmd.git] / src / commands.c
blob23a66f517fafa9ef3336fda54eab3d76a8a5f5c3
1 /*
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/>.
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <err.h>
28 #include <errno.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <fcntl.h>
32 #include <ctype.h>
33 #include <dirent.h>
34 #include <pthread.h>
35 #include <stdint.h>
37 #ifdef WITH_LIBACL
38 #include <sys/acl.h>
39 #endif
41 #include "pwmd-error.h"
42 #include <gcrypt.h>
44 #include "mem.h"
45 #include "xml.h"
46 #include "util-misc.h"
47 #include "common.h"
48 #include "rcfile.h"
49 #include "cache.h"
50 #include "commands.h"
51 #include "mutex.h"
52 #include "crypto.h"
53 #include "pinentry.h"
55 /* Flags needed to be retained for a client across commands. */
56 #define FLAG_NEW 0x0001
57 #define FLAG_HAS_LOCK 0x0002
58 #define FLAG_LOCK_CMD 0x0004
59 #define FLAG_NO_PINENTRY 0x0008
60 #define FLAG_OPEN 0x0010
61 #define FLAG_KEEP_LOCK 0x0020
63 /* These are command option flags. */
64 #define OPT_INQUIRE 0x0001
65 #define OPT_NO_PASSPHRASE 0x0002
66 #define OPT_RESET 0x0004
67 #define OPT_LIST_RECURSE 0x0008
68 #define OPT_LIST_VERBOSE 0x0010
69 #define OPT_LOCK 0x0020
70 #define OPT_LOCK_ON_OPEN 0x0040
71 #define OPT_SIGN 0x0080
72 #define OPT_LIST_ALL 0x0100
73 #define OPT_LIST_WITH_TARGET 0x0200
74 #define OPT_DATA 0x0400
75 #define OPT_NO_AGENT 0x0800
77 #ifdef WITH_AGENT
78 /* The GETCONFIG command, for example, may fail because pwmd lost the
79 * gpg-agent connection. Update the recovered agent ctx. */
80 #define UPDATE_AGENT_CTX(client, crypto) do { \
81 if (crypto && crypto->agent && crypto->agent->did_restart \
82 && client->crypto && client->crypto->agent \
83 && client->crypto->agent->ctx && \
84 crypto->agent->ctx != client->crypto->agent->ctx) \
85 { \
86 client->crypto->agent->ctx = crypto->agent->ctx; \
87 crypto->agent->ctx = NULL; \
88 } \
89 } while (0)
90 #else
91 #define UPDATE_AGENT_CTX(client, crypto)
92 #endif
94 struct command_table_s
96 const char *name;
97 gpg_error_t (*handler) (assuan_context_t, char *line);
98 const char *help;
99 int ignore_startup;
100 int unlock; // unlock the file mutex after validating the checksum
103 static struct command_table_s **command_table;
105 static gpg_error_t do_lock (struct client_s *client, int add);
106 static gpg_error_t validate_checksum (struct client_s *,
107 struct cache_data_s *);
108 static gpg_error_t update_checksum (struct client_s *client);
110 static gpg_error_t
111 unlock_file_mutex (struct client_s *client, int remove)
113 gpg_error_t rc = 0;
115 // OPEN: keep the lock for the same file being reopened.
116 if (client->flags & FLAG_KEEP_LOCK && client->flags & FLAG_HAS_LOCK)
117 return 0;
119 if (!(client->flags & FLAG_HAS_LOCK))
120 return GPG_ERR_NOT_LOCKED;
122 rc = cache_unlock_mutex (client->md5file, remove);
123 if (rc)
124 rc = GPG_ERR_INV_STATE;
125 else
126 client->flags &= ~(FLAG_HAS_LOCK | FLAG_LOCK_CMD);
128 return rc;
131 static gpg_error_t
132 lock_file_mutex (struct client_s *client, int add)
134 gpg_error_t rc = 0;
135 int timeout = config_get_integer (client->filename, "cache_timeout");
137 if (client->flags & FLAG_HAS_LOCK)
138 return 0;
140 rc = cache_lock_mutex (client->ctx, client->md5file,
141 client->lock_timeout, add, timeout);
142 if (!rc)
143 client->flags |= FLAG_HAS_LOCK;
145 return rc;
148 static gpg_error_t
149 file_modified (struct client_s *client, struct command_table_s *cmd)
151 gpg_error_t rc = 0;
153 if (!(client->flags & FLAG_OPEN))
154 return GPG_ERR_INV_STATE;
156 rc = lock_file_mutex (client, 0);
157 if (!rc || rc == GPG_ERR_NO_DATA)
159 rc = validate_checksum (client, NULL);
160 if (gpg_err_code (rc) == GPG_ERR_ENOENT && (client->flags & FLAG_NEW))
161 rc = 0;
162 else if (rc)
163 log_write ("%s: %s", client->filename, pwmd_strerror (rc));
166 if ((cmd->unlock && !(client->flags & FLAG_HAS_LOCK)) || rc)
167 unlock_file_mutex (client, 0);
169 return rc;
172 static gpg_error_t
173 parse_xml (assuan_context_t ctx, int new)
175 struct client_s *client = assuan_get_pointer (ctx);
176 int cached = client->doc != NULL;
177 gpg_error_t rc = 0;
179 if (new)
181 client->doc = new_document ();
182 if (client->doc)
184 xmlChar *result;
185 int len;
187 xmlDocDumpFormatMemory (client->doc, &result, &len, 0);
188 client->crypto->plaintext = result;
189 client->crypto->plaintext_len = len;
190 if (!client->crypto->plaintext)
192 xmlFreeDoc (client->doc);
193 client->doc = NULL;
197 else if (!cached)
198 rc = parse_doc ((char *) client->crypto->plaintext,
199 client->crypto->plaintext_len, (xmlDocPtr *)&client->doc);
201 return rc;
204 static void
205 free_client (struct client_s *client)
207 if (client->doc)
208 xmlFreeDoc (client->doc);
210 xfree (client->crc);
211 xfree (client->filename);
212 xfree (client->last_error);
214 if (client->crypto)
216 cleanup_crypto_stage2 (client->crypto);
217 if (client->crypto->pkey_sexp)
218 gcry_sexp_release (client->crypto->pkey_sexp);
220 client->crypto->pkey_sexp = NULL;
221 memset (client->crypto->sign_grip, 0,
222 sizeof (client->crypto->sign_grip));
223 memset (client->crypto->grip, 0, sizeof(client->crypto->grip));
227 void
228 cleanup_client (struct client_s *client)
230 assuan_context_t ctx = client->ctx;
231 struct client_thread_s *thd = client->thd;
232 struct crypto_s *crypto = client->crypto;
233 long lock_timeout = client->lock_timeout;
234 int no_pinentry = (client->flags & FLAG_NO_PINENTRY);
235 struct pinentry_option_s pin_opts;
236 xmlErrorPtr xml_error = client->xml_error;
237 #ifdef WITH_AGENT
238 struct pinentry_option_s agent_pin_opts;
240 if (crypto && crypto->agent)
241 memcpy (&agent_pin_opts, &crypto->agent->pinentry_opts,
242 sizeof(struct pinentry_option_s));
243 #endif
245 memcpy (&pin_opts, &client->pinentry_opts, sizeof(struct pinentry_option_s));
246 unlock_file_mutex (client, client->flags & FLAG_NEW);
247 free_client (client);
248 memset (client, 0, sizeof (struct client_s));
249 client->xml_error = xml_error;
250 client->crypto = crypto;
251 client->ctx = ctx;
252 client->thd = thd;
253 client->lock_timeout = lock_timeout;
254 memcpy (&client->pinentry_opts, &pin_opts, sizeof(struct pinentry_option_s));
255 client->flags |= no_pinentry ? FLAG_NO_PINENTRY : 0;
256 #ifdef WITH_AGENT
257 if (crypto && crypto->agent)
258 memcpy (&crypto->agent->pinentry_opts, &agent_pin_opts,
259 sizeof(struct pinentry_option_s));
260 #endif
263 static gpg_error_t
264 open_finalize (assuan_context_t ctx, char *key, size_t keylen)
266 struct client_s *client = assuan_get_pointer (ctx);
267 gpg_error_t rc = 0;
268 struct cache_data_s *cdata = cache_get_data (client->md5file);
269 int cached = 0, keyarg = key ? 1 : 0;
270 size_t keysize;
271 unsigned char *salted_key = NULL;
272 int algo;
273 int pin_try = 1;
274 int pin_tries = 3;
275 char *pin_title = client->pinentry_opts.title;
277 client->crypto->filename = str_dup (client->filename);
278 if (cdata || client->flags & FLAG_NEW)
280 if (cdata && !(client->flags & FLAG_NEW))
282 rc = decrypt_cache (client->crypto, cdata->doc, cdata->doclen);
283 if (rc)
284 return rc;
287 cached = cdata != NULL;
288 goto done;
291 if (!key && !IS_PKI (client->crypto)
292 && !(client->crypto->hdr.flags & PWMD_FLAG_NO_PASSPHRASE))
294 if (client->flags & FLAG_NO_PINENTRY)
296 rc = inquire_passphrase (ctx, "PASSPHRASE", (unsigned char **)&key,
297 &keylen);
298 if (rc)
299 return rc;
301 else
303 client->pinentry_opts.timeout = config_get_integer (client->filename,
304 "pinentry_timeout");
305 pin_again:
306 rc = getpin_common (client->ctx, client->filename, PINENTRY_OPEN,
307 &key, &keylen);
308 if (rc)
309 return rc;
313 if (!IS_PKI (client->crypto))
315 if (client->crypto->hdr.flags & PWMD_FLAG_NO_PASSPHRASE)
317 keylen = 1;
318 key = gcry_malloc (keylen);
319 memset (key, 0, keylen);
322 algo = cipher_to_gcrypt (client->crypto->hdr.flags);
323 rc = hash_key (algo, client->crypto->hdr.salt,
324 sizeof(client->crypto->hdr.salt), key, keylen,
325 (void **)&salted_key, &keysize);
326 if (!keyarg)
327 gcry_free (key);
329 if (!rc)
331 rc = decrypt_data (client->ctx, client->crypto, salted_key, keysize);
332 if (gpg_err_code (rc) == GPG_ERR_BAD_PASSPHRASE
333 && ++pin_try <= pin_tries && !(client->flags & FLAG_NO_PINENTRY))
335 gcry_free (salted_key);
336 salted_key = NULL;
337 key = NULL;
338 keylen = 0;
339 client->pinentry_opts.title = str_asprintf (_ ("Bad passphrase (try %i of %i)"), pin_try, pin_tries);
340 goto pin_again;
344 if (client->pinentry_opts.title != pin_title)
345 xfree (client->pinentry_opts.title);
347 client->pinentry_opts.title = pin_title;
348 if (rc)
350 gcry_free (salted_key);
351 return rc;
354 cdata = xcalloc (1, sizeof (struct cache_data_s));
355 if (!cdata)
357 gcry_free (salted_key);
358 return GPG_ERR_ENOMEM;
361 cdata->key = salted_key;
362 cdata->keylen = keysize;
364 else
365 rc = decrypt_data (client->ctx, client->crypto, NULL, 0);
367 done:
368 if (!rc)
370 rc = parse_xml (ctx, client->flags & FLAG_NEW);
371 if (rc && !cached)
372 free_cache_data_once (cdata);
374 if (!rc)
376 int timeout = config_get_integer (client->filename,
377 "cache_timeout");
379 if (!cached)
381 if (!cdata)
382 cdata = xcalloc (1, sizeof (struct cache_data_s));
384 rc = encrypt_xml (NULL, cache_key, cache_keysize,
385 GCRY_CIPHER_AES, client->crypto->plaintext,
386 client->crypto->plaintext_len, &cdata->doc,
387 &cdata->doclen, &cache_iv, &cache_blocksize,
389 if (!rc && !(client->flags & FLAG_NEW) && IS_PKI (client->crypto))
391 rc = gcry_sexp_build ((gcry_sexp_t *) & cdata->pubkey, NULL,
392 "%S", client->crypto->pkey_sexp);
396 if (cdata->sigkey)
397 gcry_sexp_release (cdata->sigkey);
399 cdata->sigkey = NULL;
400 if (!rc && IS_PKI (client->crypto))
401 rc = gcry_sexp_build ((gcry_sexp_t *) &cdata->sigkey, NULL,
402 "%S", client->crypto->sigpkey_sexp);
404 if (!rc && !cache_add_file (client->md5file,
405 (client->flags & FLAG_NEW)
406 ? NULL
407 : client->crypto->grip, cdata, timeout))
409 if (!cached)
411 free_cache_data_once (cdata);
412 xmlFreeDoc (client->doc);
413 client->doc = NULL;
415 rc = GPG_ERR_ENOMEM;
418 if (!rc)
419 client->flags |= FLAG_OPEN;
423 if (!rc)
424 update_checksum (client);
426 if (!rc && (client->opts & OPT_LOCK_ON_OPEN))
427 rc = do_lock (client, 0);
429 return rc;
432 static void
433 req_cleanup (void *arg)
435 if (!arg)
436 return;
438 strv_free ((char **) arg);
441 static gpg_error_t
442 parse_open_opt_lock (void *data, void *value)
444 struct client_s *client = data;
446 client->opts |= OPT_LOCK_ON_OPEN;
447 return 0;
450 static gpg_error_t
451 parse_opt_inquire (void *data, void *value)
453 struct client_s *client = data;
455 (void) value;
456 client->opts |= OPT_INQUIRE;
457 return 0;
460 static gpg_error_t
461 update_checksum (struct client_s *client)
463 unsigned char *crc;
464 size_t len;
465 struct cache_data_s *cdata;
466 gpg_error_t rc = get_checksum (client->filename, &crc, &len);
468 if (rc)
469 return rc;
471 xfree (client->crc);
472 client->crc = crc;
473 cdata = cache_get_data (client->md5file);
474 if (cdata)
476 xfree (cdata->crc);
477 cdata->crc = xmalloc (len);
478 memcpy (cdata->crc, crc, len);
481 return 0;
484 static gpg_error_t
485 validate_checksum (struct client_s *client, struct cache_data_s *cdata)
487 unsigned char *crc;
488 size_t len;
489 gpg_error_t rc;
490 int n = 0;
492 if (cdata && !cdata->crc)
493 return GPG_ERR_CHECKSUM;
495 rc = get_checksum (client->filename, &crc, &len);
496 if (rc)
497 return rc;
499 if (cdata)
500 n = memcmp (cdata->crc, crc, len);
501 else if (client->crc)
502 n = memcmp (client->crc, crc, len);
504 xfree (crc);
505 return n ? GPG_ERR_CHECKSUM : 0;
508 static gpg_error_t
509 do_open (assuan_context_t ctx, const char *filename, const char *password)
511 struct client_s *client = assuan_get_pointer (ctx);
512 struct cache_data_s *cdata;
513 gpg_error_t rc = 0;
514 int done = 0;
516 if (!valid_filename (filename))
517 return GPG_ERR_INV_VALUE;
519 gcry_md_hash_buffer (GCRY_MD_MD5, client->md5file, filename,
520 strlen (filename));
521 client->filename = str_dup (filename);
522 if (!client->filename)
523 return GPG_ERR_ENOMEM;
525 // Cached document?
526 cdata = cache_get_data (client->md5file);
527 if (cdata && cdata->doc)
529 int defer = 0;
531 /* This will check that the key is cached in the agent which needs to
532 * be determined for files that share a keygrip. */
533 if (!rc)
535 rc = cache_iscached (client->filename, &defer);
536 if ((!rc || rc == GPG_ERR_ENOENT) && defer)
537 rc = GPG_ERR_KEY_EXPIRED;
540 if (!rc && !(client->flags & FLAG_NEW))
541 rc = validate_checksum (client, cdata);
543 #ifdef WITH_GNUTLS
544 if (!rc && client->thd->remote
545 && config_get_boolean (client->filename, "tcp_require_key"))
546 rc = GPG_ERR_KEY_EXPIRED;
547 #endif
549 if (!rc && !password)
551 rc = read_data_header (client->filename, &client->crypto->hdr,
552 NULL, NULL);
553 if (!rc)
555 if (IS_PKI (client->crypto))
557 gcry_sexp_build (&client->crypto->pkey_sexp, NULL, "%S",
558 cdata->pubkey);
559 gcry_pk_get_keygrip (client->crypto->pkey_sexp,
560 client->crypto->grip);
561 gcry_sexp_build (&client->crypto->sigpkey_sexp, NULL, "%S",
562 cdata->sigkey);
563 gcry_pk_get_keygrip (client->crypto->sigpkey_sexp,
564 client->crypto->sign_grip);
567 if (!rc)
569 rc = open_finalize (ctx, NULL, 0);
570 done = 1;
575 /* There was an error accessing the file so clear the cache entry. The
576 * real error will be returned from read_data_file() since the file
577 * may have only disappeared. */
578 if (!done)
580 log_write ("%s: %s", filename, pwmd_strerror (rc));
581 rc = cache_clear (client->md5file);
582 send_status_all (STATUS_CACHE, NULL);
586 if (done || rc)
587 return rc;
589 rc = read_data_file (client->filename, client->crypto);
590 if (rc)
592 if (gpg_err_source (rc) != GPG_ERR_SOURCE_DEFAULT ||
593 gpg_err_code (rc) != GPG_ERR_ENOENT)
595 log_write ("%s: %s", client->filename, pwmd_strerror (rc));
596 return rc;
599 client->flags |= FLAG_NEW;
600 memset (client->crypto->grip, 0, sizeof (client->crypto->grip));
601 memset (client->crypto->sign_grip, 0,
602 sizeof (client->crypto->sign_grip));
603 rc = open_finalize (ctx, NULL, 0);
604 return rc;
607 if (password && IS_PKI (client->crypto))
609 #ifdef WITH_AGENT
610 rc = set_agent_passphrase (client->crypto, password, strlen (password));
611 if (rc)
612 return rc;
613 #endif
616 rc = open_finalize (ctx, (char *)password, password ? strlen (password) : 0);
617 return rc;
620 static gpg_error_t
621 open_command (assuan_context_t ctx, char *line)
623 gpg_error_t rc;
624 struct client_s *client = assuan_get_pointer (ctx);
625 char **req, *filename;
626 unsigned char md5file[16];
627 int same_file = 0;
628 assuan_peercred_t peer;
629 struct argv_s *args[] = {
630 &(struct argv_s) {"lock", OPTION_TYPE_NOARG, parse_open_opt_lock},
631 NULL
634 rc = parse_options (&line, args, client);
635 if (rc)
636 return send_error (ctx, rc);
638 req = str_split (line, " ", 2);
639 if (!req)
640 return send_error (ctx, GPG_ERR_SYNTAX);
642 rc = do_validate_peer (ctx, req[0], &peer);
643 if (rc)
645 strv_free (req);
646 return send_error (ctx, rc);
649 pthread_cleanup_push (req_cleanup, req);
650 filename = req[0];
651 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, filename, strlen (filename));
652 /* This client may have locked a different file with ISCACHED --lock than
653 * the current filename. This will remove that lock. */
654 same_file = !memcmp (md5file, client->md5file, 16) ? 1 : 0;
655 if (client->flags & FLAG_OPEN ||
656 (client->flags & FLAG_HAS_LOCK && !same_file))
658 typeof (client->opts) opts = client->opts;
659 typeof (client->flags) flags = client->flags;
661 if (same_file)
662 client->flags |= FLAG_KEEP_LOCK;
664 cleanup_client (client);
665 client->opts = opts;
666 client->flags |= flags;
667 client->flags &= ~(FLAG_LOCK_CMD);
668 if (!same_file)
669 client->flags &= ~(FLAG_HAS_LOCK | FLAG_NEW);
672 /* Need to lock the mutex here because file_modified() cannot without
673 * knowing the filename. */
674 memcpy (client->md5file, md5file, 16);
675 rc = lock_file_mutex (client, 1);
676 if (!rc)
678 char *password = req[1] && *req[1] ? req[1] : NULL;
680 #ifdef WITH_AGENT
681 if (IS_PKI (client->crypto))
682 rc = set_pinentry_mode (client->crypto->agent,
683 (client->flags & FLAG_NO_PINENTRY) ? "loopback"
684 : "ask");
685 #endif
686 if (!rc)
688 rc = do_open (ctx, filename, password);
689 if (rc)
690 cleanup_client (client);
692 cleanup_crypto_stage1 (client->crypto);
696 pthread_cleanup_pop (1);
698 if (!rc && client->flags & FLAG_NEW)
699 rc = send_status (ctx, STATUS_NEWFILE, NULL);
701 #ifdef WITH_AGENT
702 (void) kill_scd (client->crypto->agent);
703 #endif
704 return send_error (ctx, rc);
707 static gpg_error_t
708 parse_opt_no_passphrase (void *data, void *value)
710 struct client_s *client = data;
712 (void) value;
713 client->opts |= OPT_NO_PASSPHRASE;
714 return 0;
717 static gpg_error_t
718 parse_save_opt_no_agent (void *data, void *value)
720 struct client_s *client = data;
722 client->opts |= OPT_NO_AGENT;
723 return 0;
726 static gpg_error_t
727 parse_save_opt_cipher (void *data, void *value)
729 struct client_s *client = data;
730 int algo = cipher_string_to_gcrypt ((char *) value);
731 file_header_t *hdr = &client->crypto->save.hdr;
733 if (algo == -1)
734 return GPG_ERR_INV_VALUE;
736 hdr->flags = set_cipher_flag (hdr->flags, algo);
737 return 0;
740 static gpg_error_t
741 parse_save_opt_keygrip (void *data, void *value)
743 struct client_s *client = data;
745 if (!IS_PKI (client->crypto))
746 return GPG_ERR_INV_ARG;
748 #ifdef WITH_AGENT
749 if (client->crypto->save.pkey)
750 gcry_sexp_release (client->crypto->save.pkey);
752 client->crypto->save.pkey = NULL;
753 return get_pubkey (client->crypto, value, &client->crypto->save.pkey);
754 #else
755 return GPG_ERR_INV_ARG;
756 #endif
759 static gpg_error_t
760 parse_save_opt_sign_keygrip (void *data, void *value)
762 struct client_s *client = data;
764 if (!IS_PKI (client->crypto))
765 return GPG_ERR_INV_ARG;
767 #ifdef WITH_AGENT
768 if (client->crypto->save.sigpkey)
769 gcry_sexp_release (client->crypto->save.sigpkey);
771 client->crypto->save.sigpkey = NULL;
772 return get_pubkey (client->crypto, value, &client->crypto->save.sigpkey);
773 #else
774 return GPG_ERR_INV_ARG;
775 #endif
778 static gpg_error_t
779 parse_opt_s2k_count (void *data, void *value)
781 struct client_s *client = data;
782 char *v = value;
784 if (!v || !*v)
785 return GPG_ERR_INV_VALUE;
787 client->crypto->save.s2k_count = strtoul (v, NULL, 10);
788 return 0;
791 static gpg_error_t
792 parse_save_opt_iterations (void *data, void *value)
794 struct client_s *client = data;
795 char *v = value, *p;
796 uint64_t n;
798 if (!v || !*v)
799 return GPG_ERR_INV_VALUE;
801 errno = 0;
802 n = strtoull (v, &p, 10);
803 if (n == UINT64_MAX && errno)
804 return gpg_error_from_errno (errno);
805 else if (p && *p)
806 return GPG_ERR_INV_VALUE;
808 client->crypto->save.hdr.iterations = n;
809 return 0;
812 static gpg_error_t
813 save_finalize (assuan_context_t ctx)
815 struct client_s *client = assuan_get_pointer (ctx);
816 gpg_error_t rc = 0;
817 xmlChar *xmlbuf = NULL;
818 int xmlbuflen;
819 void *key = NULL;
820 size_t keylen = 0;
822 xmlDocDumpFormatMemory (client->doc, &xmlbuf, &xmlbuflen, 0);
823 if (!xmlbuf)
824 return GPG_ERR_ENOMEM;
826 pthread_cleanup_push (xmlFree, xmlbuf);
828 if (!use_agent || ((client->flags & FLAG_NEW)
829 && (client->opts & OPT_NO_AGENT))
830 || !(client->crypto->hdr.flags & PWMD_FLAG_PKI))
832 rc = export_common (ctx, client->flags & FLAG_NO_PINENTRY,
833 client->crypto, xmlbuf, xmlbuflen, client->filename,
834 NULL, &key, &keylen, 1, 1,
835 (client->opts & OPT_NO_PASSPHRASE));
837 #ifdef WITH_AGENT
838 else
840 gcry_sexp_t pubkey = client->crypto->save.pkey;
841 gcry_sexp_t sigkey = client->crypto->save.sigpkey;
843 if (!pubkey)
844 pubkey = client->crypto->pkey_sexp;
846 if (!sigkey)
848 sigkey = client->crypto->sigpkey_sexp;
849 if (!sigkey)
851 gcry_sexp_build (&client->crypto->save.sigpkey, 0, "%S", pubkey);
852 sigkey = client->crypto->save.sigpkey;
856 rc = encrypt_data_file (client->ctx, client->crypto, pubkey, sigkey,
857 client->filename, xmlbuf, xmlbuflen);
858 if (pubkey == client->crypto->save.pkey)
860 if (!rc)
862 gcry_sexp_release (client->crypto->pkey_sexp);
863 client->crypto->pkey_sexp = client->crypto->save.pkey;
864 gcry_pk_get_keygrip (client->crypto->pkey_sexp,
865 client->crypto->grip);
867 else
868 gcry_sexp_release (pubkey);
870 client->crypto->save.pkey = NULL;
873 if (!rc)
874 gcry_pk_get_keygrip (sigkey, client->crypto->sign_grip);
876 if (sigkey == client->crypto->save.sigpkey)
878 if (!rc)
880 if (client->crypto->sigpkey_sexp)
881 gcry_sexp_release (client->crypto->sigpkey_sexp);
883 client->crypto->sigpkey_sexp = client->crypto->save.sigpkey;
884 gcry_pk_get_keygrip (client->crypto->sigpkey_sexp,
885 client->crypto->sign_grip);
887 else
888 gcry_sexp_release (sigkey);
890 client->crypto->save.sigpkey = NULL;
893 #endif
895 if (!rc)
897 int cached;
899 rc = save_common (client->filename, client->crypto, xmlbuf, xmlbuflen,
900 key, keylen, &cached, client->opts & OPT_NO_AGENT);
901 if (rc)
902 gcry_free (key);
904 if (!rc && (!cached || (client->flags & FLAG_NEW)))
905 send_status_all (STATUS_CACHE, NULL);
907 if (!rc)
909 rc = update_checksum (client);
910 client->flags &= ~(FLAG_NEW);
914 pthread_cleanup_pop (1); // xmlFree
915 return rc;
918 static gpg_error_t
919 parse_opt_reset (void *data, void *value)
921 struct client_s *client = data;
923 (void) value;
924 client->opts |= OPT_RESET;
925 return 0;
928 static gpg_error_t
929 save_command (assuan_context_t ctx, char *line)
931 struct client_s *client = assuan_get_pointer (ctx);
932 gpg_error_t rc;
933 struct stat st;
934 struct argv_s *args[] = {
935 &(struct argv_s) {"no-passphrase", OPTION_TYPE_NOARG,
936 parse_opt_no_passphrase},
937 &(struct argv_s) {"cipher", OPTION_TYPE_ARG, parse_save_opt_cipher},
938 &(struct argv_s) {"inquire-keyparam", OPTION_TYPE_NOARG,
939 parse_opt_inquire},
940 &(struct argv_s) {"keygrip", OPTION_TYPE_ARG, parse_save_opt_keygrip},
941 &(struct argv_s) {"sign-keygrip", OPTION_TYPE_ARG,
942 parse_save_opt_sign_keygrip},
943 &(struct argv_s) {"s2k-count", OPTION_TYPE_ARG, parse_opt_s2k_count},
944 &(struct argv_s) {"reset", OPTION_TYPE_NOARG, parse_opt_reset},
945 &(struct argv_s) {"cipher-iterations", OPTION_TYPE_ARG,
946 parse_save_opt_iterations},
947 &(struct argv_s) {"no-agent", OPTION_TYPE_NOARG,
948 parse_save_opt_no_agent},
949 NULL
952 cleanup_save (&client->crypto->save);
953 memcpy (&client->crypto->save.hdr, &client->crypto->hdr,
954 sizeof (file_header_t));
955 client->crypto->save.s2k_count =
956 config_get_ulong (client->filename, "s2k_count");
958 if (client->flags & FLAG_NEW)
959 client->crypto->save.hdr.iterations =
960 config_get_ulonglong (client->filename, "cipher_iterations");
962 rc = parse_options (&line, args, client);
963 if (rc)
964 return send_error (ctx, rc);
966 if (!(client->flags & FLAG_NEW))
967 client->opts &= ~OPT_NO_AGENT;
968 else if (client->opts & OPT_NO_AGENT)
970 client->crypto->save.hdr.flags &= ~PWMD_FLAG_PKI;
971 client->crypto->hdr.flags &= ~PWMD_FLAG_PKI;
974 if ((client->opts & OPT_NO_PASSPHRASE) && !(client->flags & FLAG_NEW)
975 && !(client->opts & OPT_INQUIRE))
976 return send_error (ctx, GPG_ERR_WRONG_KEY_USAGE);
978 if (lstat (client->filename, &st) == -1 && errno != ENOENT)
979 return send_error (ctx, gpg_error_from_errno (errno));
981 if (errno != ENOENT && !S_ISREG (st.st_mode))
983 log_write ("%s: %s", client->filename, pwmd_strerror (GPG_ERR_ENOANO));
984 return send_error (ctx, GPG_ERR_ENOANO);
987 int defer = 0;
988 rc = cache_iscached (client->filename, &defer);
989 if (gpg_err_code (rc) == GPG_ERR_ENOENT && client->flags & FLAG_NEW)
990 rc = 0;
991 else if (gpg_err_code (rc) == GPG_ERR_NO_DATA)
992 rc = 0;
994 if ((!rc && defer) || config_get_boolean ("global", "require_save_key"))
995 client->opts |= OPT_RESET;
997 if (!rc && (client->opts & OPT_RESET))
999 rc = cache_clear (client->md5file);
1000 if (rc)
1001 return send_error (ctx, rc);
1003 log_write ("%s: %s", client->filename,
1004 pwmd_strerror (GPG_ERR_KEY_EXPIRED));
1005 send_status_all (STATUS_CACHE, NULL);
1008 if (!rc)
1009 rc = update_element_mtime (xmlDocGetRootElement (client->doc));
1011 if (rc)
1012 return send_error (ctx, rc);
1014 #ifdef WITH_AGENT
1015 if (!rc && use_agent && !client->crypto->save.pkey &&
1016 (client->flags & FLAG_NEW || client->opts & OPT_INQUIRE)
1017 && !(client->opts & OPT_NO_AGENT))
1019 rc = set_pinentry_mode (client->crypto->agent,
1020 (client->flags & FLAG_NO_PINENTRY) ? "loopback"
1021 : "ask");
1023 if (!(client->flags & FLAG_NEW))
1025 struct crypto_s *crypto;
1026 char *key = NULL;
1027 size_t keylen = 0;
1029 /* Wanting to generate a new key. Require the key to open the
1030 current file before proceeding reguardless of the
1031 require_save_key configuration parameter. */
1032 rc = cache_clear (client->md5file);
1033 if (!rc)
1035 rc = init_client_crypto (&crypto);
1036 if (!rc)
1037 crypto->client_ctx = client->ctx;
1040 if (!rc)
1041 rc = decrypt_common (client->ctx, client->opts&OPT_INQUIRE, crypto,
1042 client->filename, &key, &keylen);
1044 xfree (key);
1045 cleanup_crypto (&crypto);
1048 if (!rc)
1049 rc = send_status (client->ctx, STATUS_GENKEY, NULL);
1051 if (!rc)
1053 struct inquire_data_s idata = { 0 };
1054 char *params = client->opts & OPT_INQUIRE
1055 ? NULL : default_key_params (client->crypto);
1057 pthread_cleanup_push (xfree, params);
1058 idata.crypto = client->crypto;
1060 if (params)
1062 idata.line = params;
1063 idata.len = strlen (params);
1065 else
1066 idata.preset = 1;
1068 client->crypto->agent->inquire_data = &idata;
1069 client->crypto->agent->inquire_cb = NULL;
1070 rc = generate_key (client->crypto, params,
1071 (client->opts & OPT_NO_PASSPHRASE), 1);
1072 pthread_cleanup_pop (1);
1075 #endif
1077 if (!rc)
1078 rc = save_finalize (ctx);
1080 cleanup_crypto_stage1 (client->crypto);
1081 #ifdef WITH_AGENT
1082 (void) kill_scd (client->crypto->agent);
1083 #endif
1084 return send_error (ctx, rc);
1087 static gpg_error_t
1088 do_delete (assuan_context_t ctx, char *line)
1090 struct client_s *client = assuan_get_pointer (ctx);
1091 gpg_error_t rc;
1092 char **req;
1093 xmlNodePtr n;
1095 if (strchr (line, '\t'))
1096 req = str_split (line, "\t", 0);
1097 else
1098 req = str_split (line, " ", 0);
1100 if (!req || !*req)
1101 return GPG_ERR_SYNTAX;
1103 n = find_root_element (client, client->doc, &req, &rc, NULL, 0, 0);
1104 if (!n)
1106 strv_free (req);
1107 return rc;
1111 * No sub-node defined. Remove the entire node (root element).
1113 if (!req[1])
1115 if (n)
1117 rc = unlink_node (n);
1118 xmlFreeNode (n);
1121 strv_free (req);
1122 return rc;
1126 find_elements (client, client->doc, n->children, req + 1, &rc, NULL, NULL, NULL,
1127 0, 0, NULL, 0);
1128 strv_free (req);
1129 if (!n)
1130 return rc;
1132 if (n)
1134 rc = unlink_node (n);
1135 xmlFreeNode (n);
1138 return rc;
1141 static gpg_error_t
1142 delete_command (assuan_context_t ctx, char *line)
1144 struct client_s *client = assuan_get_pointer (ctx);
1145 gpg_error_t rc;
1146 struct argv_s *args[] = {
1147 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
1148 NULL
1151 rc = parse_options (&line, args, client);
1152 if (rc)
1153 return send_error (ctx, rc);
1155 if (client->opts & OPT_INQUIRE)
1157 unsigned char *result;
1158 size_t len;
1160 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
1161 if (rc)
1162 return send_error (ctx, rc);
1164 line = (char *) result;
1167 rc = do_delete (ctx, line);
1169 if (client->opts & OPT_INQUIRE)
1170 xfree (line);
1172 return send_error (ctx, rc);
1175 static gpg_error_t
1176 store_command (assuan_context_t ctx, char *line)
1178 struct client_s *client = assuan_get_pointer (ctx);
1179 gpg_error_t rc;
1180 size_t len;
1181 unsigned char *result;
1182 char **req;
1183 xmlNodePtr n, parent;
1184 int has_content;
1185 char *content = NULL;
1187 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
1188 if (rc)
1189 return send_error (ctx, rc);
1191 req = str_split ((char *) result, "\t", 0);
1192 xfree (result);
1194 if (!req || !*req)
1195 return send_error (ctx, GPG_ERR_SYNTAX);
1197 len = strv_length (req);
1198 has_content = line[strlen (line) - 1] != '\t' && len > 1;
1199 if (*(req + 1) && !valid_element_path (req, has_content))
1201 strv_free (req);
1202 return send_error (ctx, GPG_ERR_INV_VALUE);
1205 if (has_content || !*req[len - 1])
1207 has_content = 1;
1208 content = req[len - 1];
1209 req[len - 1] = NULL;
1212 again:
1213 n = find_root_element (client, client->doc, &req, &rc, NULL, 0, 0);
1214 if (rc && rc == GPG_ERR_ELEMENT_NOT_FOUND)
1216 rc = new_root_element (client, client->doc, *req);
1217 if (rc)
1219 strv_free (req);
1220 return send_error (ctx, rc);
1223 goto again;
1226 if (!n)
1228 strv_free (req);
1229 return send_error (ctx, rc);
1232 parent = n;
1234 if (req[1] && *req[1])
1236 if (!n->children)
1237 parent = create_elements_cb (client, n, req + 1, &rc, NULL);
1238 else
1239 parent = find_elements (client, client->doc, n->children, req + 1, &rc,
1240 NULL, NULL, create_elements_cb, 0, 0, NULL,
1244 if (!rc && len > 1)
1246 n = find_text_node (parent->children);
1247 if (n)
1248 xmlNodeSetContent (n, (xmlChar *) content);
1249 else
1250 xmlNodeAddContent (parent, (xmlChar *) content);
1252 update_element_mtime (parent);
1255 xfree (content);
1256 strv_free (req);
1257 return send_error (ctx, rc);
1260 static gpg_error_t
1261 xfer_data (assuan_context_t ctx, const char *line, int total)
1263 int to_send;
1264 int sent = 0;
1265 gpg_error_t rc;
1266 int progress = config_get_integer ("global", "xfer_progress");
1267 int flush = 0;
1269 progress =
1270 progress > 0 ? (progress / ASSUAN_LINELENGTH) * ASSUAN_LINELENGTH : 0;
1271 to_send = total < ASSUAN_LINELENGTH ? total : ASSUAN_LINELENGTH;
1272 rc = send_status (ctx, STATUS_XFER, "%li %li", sent, total);
1274 if (rc)
1275 return rc;
1277 again:
1280 if (sent + to_send > total)
1281 to_send = total - sent;
1283 rc = assuan_send_data (ctx, flush ? NULL : (char *) line + sent,
1284 flush ? 0 : to_send);
1285 if (!rc)
1287 sent += flush ? 0 : to_send;
1289 if ((progress && !(sent % progress) && sent != total) ||
1290 (sent == total && flush))
1291 rc = send_status (ctx, STATUS_XFER, "%li %li", sent, total);
1293 if (!flush && !rc && sent == total)
1295 flush = 1;
1296 goto again;
1300 while (!rc && sent < total);
1302 return rc;
1305 static gpg_error_t
1306 do_get (assuan_context_t ctx, char *line)
1308 struct client_s *client = assuan_get_pointer (ctx);
1309 gpg_error_t rc;
1310 char **req;
1311 xmlNodePtr n;
1313 req = str_split (line, "\t", 0);
1315 if (!req || !*req)
1317 strv_free (req);
1318 return GPG_ERR_SYNTAX;
1321 n = find_root_element (client, client->doc, &req, &rc, NULL, 0, 0);
1322 if (!n)
1324 strv_free (req);
1325 return rc;
1328 if (req[1])
1330 find_elements (client, client->doc, n->children, req + 1, &rc, NULL, NULL, NULL,
1331 0, 0, NULL, 0);
1333 strv_free (req);
1334 if (rc)
1335 return rc;
1337 if (!n || !n->children)
1338 return GPG_ERR_NO_DATA;
1340 n = find_text_node (n->children);
1341 if (!n || !n->content || !*n->content)
1342 return GPG_ERR_NO_DATA;
1344 rc = xfer_data (ctx, (char *) n->content, xmlStrlen (n->content));
1345 return rc;
1348 static gpg_error_t
1349 get_command (assuan_context_t ctx, char *line)
1351 struct client_s *client = assuan_get_pointer (ctx);
1352 gpg_error_t rc;
1353 struct argv_s *args[] = {
1354 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
1355 NULL
1358 rc = parse_options (&line, args, client);
1359 if (rc)
1360 return send_error (ctx, rc);
1362 if (client->opts & OPT_INQUIRE)
1364 unsigned char *result;
1365 size_t len;
1367 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
1368 if (rc)
1369 return send_error (ctx, rc);
1371 line = (char *) result;
1374 rc = do_get (ctx, line);
1376 if (client->opts & OPT_INQUIRE)
1377 xfree (line);
1379 return send_error (ctx, rc);
1382 static void list_command_cleanup1 (void *arg);
1383 static gpg_error_t
1384 realpath_command (assuan_context_t ctx, char *line)
1386 struct string_s *string = NULL;
1387 gpg_error_t rc;
1388 struct client_s *client = assuan_get_pointer (ctx);
1389 struct argv_s *args[] = {
1390 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
1391 NULL
1394 rc = parse_options (&line, args, client);
1395 if (rc)
1396 return send_error (ctx, rc);
1398 if (client->opts & OPT_INQUIRE)
1400 unsigned char *result;
1401 size_t len;
1403 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
1404 if (rc)
1405 return send_error (ctx, rc);
1407 line = (char *) result;
1410 rc = build_realpath (client, client->doc, line, &string);
1411 if (!rc)
1413 pthread_cleanup_push (list_command_cleanup1, string);
1414 rc = xfer_data (ctx, string->str, string->len);
1415 pthread_cleanup_pop (1);
1418 if (client->opts & OPT_INQUIRE)
1419 xfree (line);
1421 return send_error (ctx, rc);
1424 static void
1425 list_command_cleanup1 (void *arg)
1427 if (arg)
1428 string_free ((struct string_s *) arg, 1);
1431 static void
1432 list_command_cleanup2 (void *arg)
1434 struct element_list_s *elements = arg;
1436 if (elements)
1438 if (elements->list)
1440 int total = slist_length (elements->list);
1441 int i;
1443 for (i = 0; i < total; i++)
1445 char *tmp = slist_nth_data (elements->list, i);
1446 xfree (tmp);
1449 slist_free (elements->list);
1452 if (elements->prefix)
1453 xfree (elements->prefix);
1455 if (elements->req)
1456 strv_free (elements->req);
1458 xfree (elements);
1462 static gpg_error_t
1463 parse_list_opt_norecurse (void *data, void *value)
1465 struct client_s *client = data;
1467 client->opts &= ~(OPT_LIST_RECURSE);
1468 return 0;
1471 static gpg_error_t
1472 parse_list_opt_verbose (void *data, void *value)
1474 struct client_s *client = data;
1476 client->opts |= OPT_LIST_VERBOSE;
1477 return 0;
1480 static gpg_error_t
1481 parse_list_opt_target (void *data, void *value)
1483 struct client_s *client = data;
1485 client->opts |= OPT_LIST_WITH_TARGET;
1486 return 0;
1489 static gpg_error_t
1490 parse_list_opt_all (void *data, void *value)
1492 struct client_s *client = data;
1494 client->opts |= OPT_LIST_ALL;
1495 return 0;
1498 static gpg_error_t
1499 list_path_once (struct client_s *client, char *line,
1500 struct element_list_s *elements, struct string_s *result)
1502 gpg_error_t rc;
1504 elements->req = str_split (line, " ", 0);
1505 if (!elements->req)
1506 strv_printf (&elements->req, "%s", line);
1508 rc = create_path_list (client, client->doc, elements, *elements->req);
1509 if (rc == GPG_ERR_ELOOP && elements->verbose)
1510 rc = 0;
1512 if (!rc)
1514 int total = slist_length (elements->list);
1516 if (!total)
1517 rc = GPG_ERR_NO_DATA;
1519 if (!rc)
1521 if (!rc)
1523 int i;
1525 for (i = 0; i < total; i++)
1527 char *tmp = slist_nth_data (elements->list, i);
1529 string_append_printf (result, "%s%s", tmp,
1530 i + 1 == total ? "" : "\n");
1534 else
1535 rc = GPG_ERR_NO_DATA;
1538 return rc;
1541 static int
1542 has_list_flag (char *path, char *flags)
1544 char *p = path;
1546 while (*p && *++p != ' ');
1548 if (!*p)
1549 return 0;
1551 for (; *p; p++)
1553 char *f;
1555 for (f = flags; *f && *f != ' '; f++)
1557 if (*p == *f)
1558 return 1;
1562 return 0;
1565 static gpg_error_t
1566 do_list (assuan_context_t ctx, char *line)
1568 struct client_s *client = assuan_get_pointer (ctx);
1569 gpg_error_t rc;
1570 struct element_list_s *elements = NULL;
1572 elements = xcalloc (1, sizeof (struct element_list_s));
1573 if (!elements)
1574 return GPG_ERR_ENOMEM;
1576 elements->recurse = client->opts & OPT_LIST_RECURSE;
1577 elements->verbose =
1578 (client->opts & OPT_LIST_VERBOSE) | (client->opts & OPT_LIST_WITH_TARGET);
1579 elements->with_target = client->opts & OPT_LIST_WITH_TARGET;
1581 if (!line || !*line)
1583 struct string_s *str = NULL;
1585 pthread_cleanup_push (list_command_cleanup2, elements);
1586 rc = list_root_elements (client, client->doc, &str, elements->verbose,
1587 elements->with_target);
1588 pthread_cleanup_pop (1);
1589 pthread_cleanup_push (list_command_cleanup1, str);
1591 if (!rc)
1593 if (client->opts & OPT_LIST_ALL)
1595 char **roots = str_split (str->str, "\n", 0);
1596 char **p;
1598 pthread_cleanup_push (req_cleanup, roots);
1599 string_truncate (str, 0);
1601 for (p = roots; *p; p++)
1603 if (strchr (*p, ' '))
1605 if (has_list_flag (*p, "EO"))
1607 string_append_printf (str, "%s%s", *p,
1608 *(p + 1) ? "\n" : "");
1609 continue;
1613 elements = xcalloc (1, sizeof (struct element_list_s));
1614 if (!elements)
1616 rc = GPG_ERR_ENOMEM;
1617 break;
1620 elements->recurse = client->opts & OPT_LIST_RECURSE;
1621 elements->verbose =
1622 (client->opts & OPT_LIST_VERBOSE) | (client->opts &
1623 OPT_LIST_WITH_TARGET);
1624 elements->with_target = client->opts & OPT_LIST_WITH_TARGET;
1625 pthread_cleanup_push (list_command_cleanup2, elements);
1626 rc = list_path_once (client, *p, elements, str);
1627 pthread_cleanup_pop (1);
1628 if (rc)
1629 break;
1631 if (*(p + 1))
1632 string_append (str, "\n");
1635 pthread_cleanup_pop (1);
1638 if (!rc)
1639 rc = xfer_data (ctx, str->str, str->len);
1642 pthread_cleanup_pop (1);
1643 return rc;
1646 pthread_cleanup_push (list_command_cleanup2, elements);
1647 struct string_s *str = string_new (NULL);
1648 pthread_cleanup_push (list_command_cleanup1, str);
1649 rc = list_path_once (client, line, elements, str);
1650 if (!rc)
1651 rc = xfer_data (ctx, str->str, str->len);
1653 pthread_cleanup_pop (1);
1654 pthread_cleanup_pop (1);
1655 return rc;
1658 static gpg_error_t
1659 list_command (assuan_context_t ctx, char *line)
1661 struct client_s *client = assuan_get_pointer (ctx);
1662 gpg_error_t rc;
1663 struct argv_s *args[] = {
1664 &(struct argv_s) {"no-recurse", OPTION_TYPE_NOARG,
1665 parse_list_opt_norecurse},
1666 &(struct argv_s) {"verbose", OPTION_TYPE_NOARG, parse_list_opt_verbose},
1667 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
1668 &(struct argv_s) {"with-target", OPTION_TYPE_NOARG,
1669 parse_list_opt_target},
1670 &(struct argv_s) {"all", OPTION_TYPE_NOARG, parse_list_opt_all},
1671 NULL
1674 if (disable_list_and_dump == 1)
1675 return send_error (ctx, GPG_ERR_NOT_IMPLEMENTED);
1677 client->opts |= OPT_LIST_RECURSE;
1678 rc = parse_options (&line, args, client);
1679 if (rc)
1680 return send_error (ctx, rc);
1682 if (client->opts & OPT_LIST_ALL)
1683 client->opts |= OPT_LIST_RECURSE | OPT_LIST_VERBOSE;
1685 if (client->opts & OPT_INQUIRE)
1687 unsigned char *result;
1688 size_t len;
1690 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
1691 if (rc)
1692 return send_error (ctx, rc);
1694 line = (char *) result;
1697 rc = do_list (ctx, line);
1699 if (client->opts & OPT_INQUIRE)
1700 xfree (line);
1702 return send_error (ctx, rc);
1706 * req[0] - element path
1708 static gpg_error_t
1709 attribute_list (assuan_context_t ctx, char **req)
1711 struct client_s *client = assuan_get_pointer (ctx);
1712 char **attrlist = NULL;
1713 int i = 0;
1714 char **path = NULL;
1715 xmlAttrPtr a;
1716 xmlNodePtr n, an;
1717 char *line;
1718 gpg_error_t rc;
1720 if (!req || !req[0])
1721 return GPG_ERR_SYNTAX;
1723 if ((path = str_split (req[0], "\t", 0)) == NULL)
1726 * The first argument may be only a root element.
1728 if ((path = str_split (req[0], " ", 0)) == NULL)
1729 return GPG_ERR_SYNTAX;
1732 n = find_root_element (client, client->doc, &path, &rc, NULL, 0, 0);
1734 if (!n)
1736 strv_free (path);
1737 return rc;
1740 if (path[1])
1742 n = find_elements (client, client->doc, n->children, path + 1, &rc,
1743 NULL, NULL, NULL, 0, 0, NULL, 0);
1745 if (!n)
1747 strv_free (path);
1748 return rc;
1752 strv_free (path);
1754 for (a = n->properties; a; a = a->next)
1756 char **pa;
1758 if ((pa = xrealloc (attrlist, (i + 2) * sizeof (char *))) == NULL)
1760 if (attrlist)
1761 strv_free (attrlist);
1763 log_write ("%s(%i): %s", __FILE__, __LINE__,
1764 pwmd_strerror (GPG_ERR_ENOMEM));
1765 return GPG_ERR_ENOMEM;
1768 attrlist = pa;
1769 an = a->children;
1770 attrlist[i] = str_asprintf ("%s %s", (char *) a->name,
1772 && an->content ? (char *) an->content : "");
1774 if (!attrlist[i])
1776 strv_free (attrlist);
1777 log_write ("%s(%i): %s", __FILE__, __LINE__,
1778 pwmd_strerror (GPG_ERR_ENOMEM));
1779 return GPG_ERR_ENOMEM;
1782 attrlist[++i] = NULL;
1785 if (!attrlist)
1786 return GPG_ERR_NO_DATA;
1788 line = strv_join ("\n", attrlist);
1790 if (!line)
1792 log_write ("%s(%i): %s", __FILE__, __LINE__,
1793 pwmd_strerror (GPG_ERR_ENOMEM));
1794 strv_free (attrlist);
1795 return GPG_ERR_ENOMEM;
1798 pthread_cleanup_push (xfree, line);
1799 pthread_cleanup_push (req_cleanup, attrlist);
1800 rc = xfer_data (ctx, line, strlen (line));
1801 pthread_cleanup_pop (1);
1802 pthread_cleanup_pop (1);
1803 return rc;
1807 * req[0] - attribute
1808 * req[1] - element path
1810 static gpg_error_t
1811 attribute_delete (struct client_s *client, char **req)
1813 xmlNodePtr n;
1814 char **path = NULL;
1815 gpg_error_t rc;
1817 if (!req || !req[0] || !req[1])
1818 return GPG_ERR_SYNTAX;
1820 if (!strcmp (req[0], "_name"))
1821 return GPG_ERR_INV_ATTR;
1823 if ((path = str_split (req[1], "\t", 0)) == NULL)
1826 * The first argument may be only a root element.
1828 if ((path = str_split (req[1], " ", 0)) == NULL)
1829 return GPG_ERR_SYNTAX;
1832 n = find_root_element (client, client->doc, &path, &rc, NULL, 0, 0);
1833 if (!n)
1834 goto fail;
1836 if (path[1])
1838 n = find_elements (client, client->doc, n->children, path + 1, &rc,
1839 NULL, NULL, NULL, 0, 0, NULL, 0);
1840 if (!n)
1841 goto fail;
1844 rc = delete_attribute (n, (xmlChar *) req[0]);
1846 fail:
1847 strv_free (path);
1848 return rc;
1851 static xmlNodePtr
1852 create_element_path (struct client_s *client,
1853 char ***elements, gpg_error_t * rc, xmlNodePtr parent)
1855 char **req = *elements;
1856 char **req_orig = strv_dup (req);
1857 xmlNodePtr n = NULL;
1859 *rc = 0;
1861 if (!req_orig)
1863 *rc = GPG_ERR_ENOMEM;
1864 log_write ("%s(%i): %s", __FILE__, __LINE__,
1865 pwmd_strerror (GPG_ERR_ENOMEM));
1866 goto fail;
1869 again:
1870 n = find_root_element (client, client->doc, &req, rc, NULL, 0, 0);
1871 if (!n)
1873 if (*rc != GPG_ERR_ELEMENT_NOT_FOUND)
1874 goto fail;
1876 *rc = new_root_element (client, client->doc, req[0]);
1877 if (*rc)
1878 goto fail;
1880 goto again;
1882 else if (n == parent)
1884 *rc = GPG_ERR_CONFLICT;
1885 goto fail;
1888 if (req[1])
1890 if (!n->children)
1891 n = create_target_elements_cb (client, n, req + 1, rc, NULL);
1892 else
1893 n = find_elements (client, client->doc, n->children, req + 1, rc,
1894 NULL, NULL, create_target_elements_cb, 0, 0,
1895 parent, 0);
1897 if (!n)
1898 goto fail;
1901 * Reset the position of the element tree now that the elements
1902 * have been created.
1904 strv_free (req);
1905 req = req_orig;
1906 req_orig = NULL;
1907 n = find_root_element (client, client->doc, &req, rc, NULL, 0, 0);
1908 if (!n)
1909 goto fail;
1911 n = find_elements (client, client->doc, n->children, req + 1, rc,
1912 NULL, NULL, NULL, 0, 0, NULL, 0);
1913 if (!n)
1914 goto fail;
1917 fail:
1918 if (req_orig)
1919 strv_free (req_orig);
1921 *elements = req;
1922 return n;
1926 * Creates a "target" attribute. When other commands encounter an element with
1927 * this attribute, the element path is modified to the target value. If the
1928 * source element path doesn't exist when using 'ATTR SET target', it is
1929 * created, but the destination element path must exist.
1931 * req[0] - source element path
1932 * req[1] - destination element path
1934 static gpg_error_t
1935 target_attribute (struct client_s *client, char **req)
1937 char **src, **dst, *line = NULL, **odst = NULL;
1938 gpg_error_t rc;
1939 xmlNodePtr n;
1941 if (!req || !req[0] || !req[1])
1942 return GPG_ERR_SYNTAX;
1944 if ((src = str_split (req[0], "\t", 0)) == NULL)
1947 * The first argument may be only a root element.
1949 if ((src = str_split (req[0], " ", 0)) == NULL)
1950 return GPG_ERR_SYNTAX;
1953 if (!valid_element_path (src, 0))
1954 return GPG_ERR_INV_VALUE;
1956 if ((dst = str_split (req[1], "\t", 0)) == NULL)
1959 * The first argument may be only a root element.
1961 if ((dst = str_split (req[1], " ", 0)) == NULL)
1963 rc = GPG_ERR_SYNTAX;
1964 goto fail;
1968 odst = strv_dup (dst);
1969 if (!odst)
1971 rc = GPG_ERR_ENOMEM;
1972 goto fail;
1975 n = find_root_element (client, client->doc, &dst, &rc, NULL, 0, 0);
1977 * Make sure the destination element path exists.
1979 if (!n)
1980 goto fail;
1982 if (dst[1])
1984 n = find_elements (client, client->doc, n->children, dst + 1, &rc,
1985 NULL, NULL, NULL, 0, 0, NULL, 0);
1986 if (!n)
1987 goto fail;
1990 rc = validate_target_attribute (client, client->doc, req[0], n);
1991 if (rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
1992 goto fail;
1994 n = create_element_path (client, &src, &rc, NULL);
1995 if (rc)
1996 goto fail;
1998 line = strv_join ("\t", odst);
1999 if (!line)
2001 rc = GPG_ERR_ENOMEM;
2002 goto fail;
2005 rc = add_attribute (n, "target", line);
2007 fail:
2008 xfree (line);
2009 strv_free (src);
2010 strv_free (dst);
2011 strv_free (odst);
2012 return rc;
2016 * req[0] - attribute
2017 * req[1] - element path
2019 static gpg_error_t
2020 attribute_get (assuan_context_t ctx, char **req)
2022 struct client_s *client = assuan_get_pointer (ctx);
2023 xmlNodePtr n;
2024 xmlChar *a;
2025 char **path = NULL;
2026 gpg_error_t rc;
2028 if (!req || !req[0] || !req[1])
2029 return GPG_ERR_SYNTAX;
2031 if (strchr (req[1], '\t'))
2033 if ((path = str_split (req[1], "\t", 0)) == NULL)
2034 return GPG_ERR_SYNTAX;
2036 else
2038 if ((path = str_split (req[1], " ", 0)) == NULL)
2039 return GPG_ERR_SYNTAX;
2042 n = find_root_element (client, client->doc, &path, &rc, NULL, 0, 0);
2044 if (!n)
2045 goto fail;
2047 if (path[1])
2049 n = find_elements (client, client->doc, n->children, path + 1, &rc,
2050 NULL, NULL, NULL, 0, 0, NULL, 0);
2052 if (!n)
2053 goto fail;
2056 strv_free (path);
2058 if ((a = xmlGetProp (n, (xmlChar *) req[0])) == NULL)
2059 return GPG_ERR_NOT_FOUND;
2061 pthread_cleanup_push (xmlFree, a);
2063 if (*a)
2064 rc = xfer_data (ctx, (char *) a, xmlStrlen (a));
2065 else
2066 rc = GPG_ERR_NO_DATA;
2068 pthread_cleanup_pop (1);
2069 return rc;
2071 fail:
2072 strv_free (path);
2073 return rc;
2077 * req[0] - attribute
2078 * req[1] - element path
2079 * req[2] - value
2081 static gpg_error_t
2082 attribute_set (struct client_s *client, char **req)
2084 char **path = NULL;
2085 gpg_error_t rc;
2086 xmlNodePtr n;
2088 if (!req || !req[0] || !req[1])
2089 return GPG_ERR_SYNTAX;
2092 * Reserved attribute names.
2094 if (!strcmp (req[0], "_name"))
2095 return GPG_ERR_INV_ATTR;
2096 else if (!strcmp (req[0], "target"))
2097 return target_attribute (client, req + 1);
2098 else if (!valid_xml_attribute (req[0]))
2099 return GPG_ERR_INV_VALUE;
2101 if ((path = str_split (req[1], "\t", 0)) == NULL)
2104 * The first argument may be only a root element.
2106 if ((path = str_split (req[1], " ", 0)) == NULL)
2107 return GPG_ERR_SYNTAX;
2110 n = find_root_element (client, client->doc, &path, &rc, NULL, 0, 0);
2112 if (!n)
2113 goto fail;
2115 if (path[1])
2117 n = find_elements (client, client->doc, n->children, path + 1, &rc,
2118 NULL, NULL, NULL, 0, 0, NULL, 0);
2120 if (!n)
2121 goto fail;
2124 rc = add_attribute (n, req[0], req[2]);
2126 fail:
2127 strv_free (path);
2128 return rc;
2132 * req[0] - command
2133 * req[1] - attribute name or element path if command is LIST
2134 * req[2] - element path
2135 * req[2] - element path or value
2138 static gpg_error_t
2139 do_attr (assuan_context_t ctx, char *line)
2141 struct client_s *client = assuan_get_pointer (ctx);
2142 gpg_error_t rc = 0;
2143 char **req;
2145 req = str_split (line, " ", 4);
2146 if (!req || !req[0] || !req[1])
2148 strv_free (req);
2149 return GPG_ERR_SYNTAX;
2152 pthread_cleanup_push (req_cleanup, req);
2154 if (strcasecmp (req[0], "SET") == 0)
2155 rc = attribute_set (client, req + 1);
2156 else if (strcasecmp (req[0], "GET") == 0)
2157 rc = attribute_get (ctx, req + 1);
2158 else if (strcasecmp (req[0], "DELETE") == 0)
2159 rc = attribute_delete (client, req + 1);
2160 else if (strcasecmp (req[0], "LIST") == 0)
2161 rc = attribute_list (ctx, req + 1);
2162 else
2163 rc = GPG_ERR_SYNTAX;
2165 pthread_cleanup_pop (1);
2166 return rc;
2169 static gpg_error_t
2170 attr_command (assuan_context_t ctx, char *line)
2172 struct client_s *client = assuan_get_pointer (ctx);
2173 gpg_error_t rc;
2174 struct argv_s *args[] = {
2175 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
2176 NULL
2179 rc = parse_options (&line, args, client);
2180 if (rc)
2181 return send_error (ctx, rc);
2183 if (client->opts & OPT_INQUIRE)
2185 unsigned char *result;
2186 size_t len;
2188 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
2189 if (rc)
2190 return send_error (ctx, rc);
2192 line = (char *) result;
2195 rc = do_attr (ctx, line);
2197 if (client->opts & OPT_INQUIRE)
2198 xfree (line);
2200 return send_error (ctx, rc);
2203 static gpg_error_t
2204 parse_iscached_opt_lock (void *data, void *value)
2206 struct client_s *client = data;
2208 (void) value;
2209 client->opts |= OPT_LOCK;
2210 return 0;
2213 static gpg_error_t
2214 iscached_command (assuan_context_t ctx, char *line)
2216 struct client_s *client = assuan_get_pointer (ctx);
2217 gpg_error_t rc;
2218 struct argv_s *args[] = {
2219 &(struct argv_s) {"lock", OPTION_TYPE_NOARG, parse_iscached_opt_lock},
2220 NULL
2223 if (!line || !*line)
2224 return send_error (ctx, GPG_ERR_SYNTAX);
2226 rc = parse_options (&line, args, client);
2227 if (rc)
2228 return send_error (ctx, rc);
2229 else if (!valid_filename (line))
2230 return send_error (ctx, GPG_ERR_INV_VALUE);
2232 rc = cache_iscached (line, NULL);
2233 if (client->opts & OPT_LOCK
2234 && (!rc || gpg_err_code (rc) == GPG_ERR_NO_DATA))
2236 unsigned char md5file[16];
2237 gpg_error_t trc = rc;
2239 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, line, strlen (line));
2240 if (memcmp (md5file, client->md5file, 16))
2241 cleanup_client (client);
2243 memcpy (client->md5file, md5file, 16);
2244 rc = do_lock (client, 1);
2245 if (!rc)
2246 rc = trc;
2249 return send_error (ctx, rc);
2252 static gpg_error_t
2253 clearcache_command (assuan_context_t ctx, char *line)
2255 gpg_error_t rc = 0, all_rc = 0;
2256 unsigned char md5file[16];
2257 int i;
2258 int t;
2259 int all = 0;
2260 struct client_thread_s *once = NULL;
2262 cache_lock ();
2263 MUTEX_LOCK (&cn_mutex);
2264 pthread_cleanup_push (cleanup_mutex_cb, &cn_mutex);
2266 if (!line || !*line)
2267 all = 1;
2269 t = slist_length (cn_thread_list);
2271 for (i = 0; i < t; i++)
2273 struct client_thread_s *thd = slist_nth_data (cn_thread_list, i);
2274 assuan_peercred_t peer;
2276 if (!thd->cl)
2277 continue;
2279 /* Lock each connected clients' file mutex to prevent any other client
2280 * from accessing the cache entry (the file mutex is locked upon
2281 * command startup). The cache for the entry is not cleared if the
2282 * file mutex is locked by another client to prevent this function
2283 * from blocking.
2285 if (all)
2287 if (thd->cl->filename)
2289 rc = do_validate_peer (ctx, thd->cl->filename, &peer);
2290 all_rc = !all_rc ? rc : all_rc;
2291 if (rc)
2293 rc = 0;
2294 continue;
2298 rc = cache_lock_mutex (thd->cl->ctx, thd->cl->md5file, -1, 0, -1);
2299 if (gpg_err_code (rc) == GPG_ERR_LOCKED)
2301 if (pthread_equal (pthread_self (), thd->tid))
2302 rc = 0;
2303 else
2305 if (!thd->cl->filename ||
2306 cache_iscached (thd->cl->filename,
2307 NULL) == GPG_ERR_NO_DATA)
2309 rc = 0;
2310 continue;
2313 cache_defer_clear (thd->cl->md5file);
2316 else if (gpg_err_code (rc) == GPG_ERR_NO_DATA)
2318 rc = 0;
2319 continue;
2322 if (!rc)
2324 rc = cache_clear (thd->cl->md5file);
2325 cache_unlock_mutex (thd->cl->md5file, 0);
2328 if (rc)
2329 all_rc = rc;
2331 rc = 0;
2333 /* A single data filename was specified. Lock only this data file
2334 * mutex and free the cache entry. */
2335 else
2337 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, line, strlen (line));
2338 rc = do_validate_peer (ctx, line, &peer);
2340 if (!rc && !memcmp (thd->cl->md5file, md5file, sizeof (md5file)))
2342 rc = cache_lock_mutex (thd->cl->ctx, thd->cl->md5file, -1, 0,
2343 -1);
2344 if (gpg_err_code (rc) == GPG_ERR_LOCKED)
2346 if (pthread_equal (pthread_self (), thd->tid))
2347 rc = 0;
2350 if (!rc)
2352 once = thd;
2353 rc = cache_clear (thd->cl->md5file);
2354 cache_unlock_mutex (thd->cl->md5file, 0);
2356 else
2358 cache_defer_clear (thd->cl->md5file);
2361 break;
2366 /* Only connected clients' cache entries have been cleared. Now clear any
2367 * remaining cache entries without clients but only if there wasn't an
2368 * error from above since this would defeat the locking check of the
2369 * remaining entries. */
2370 if (!all_rc && all)
2372 cache_clear (NULL);
2375 /* No clients are using the specified file. */
2376 else if (!all_rc && !rc && !once)
2378 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, line, strlen (line));
2379 rc = cache_clear (md5file);
2382 /* Release the connection mutex. */
2383 pthread_cleanup_pop (1);
2384 cache_unlock ();
2386 if (!rc)
2387 send_status_all (STATUS_CACHE, NULL);
2389 /* One or more files were locked while clearing all cache entries. */
2390 if (all_rc)
2391 rc = all_rc;
2393 return send_error (ctx, rc);
2396 static gpg_error_t
2397 cachetimeout_command (assuan_context_t ctx, char *line)
2399 int timeout;
2400 char **req = str_split (line, " ", 0);
2401 char *p;
2402 gpg_error_t rc = 0;
2403 assuan_peercred_t peer;
2405 if (!req || !*req || !req[1])
2407 strv_free (req);
2408 return send_error (ctx, GPG_ERR_SYNTAX);
2411 errno = 0;
2412 timeout = (int) strtol (req[1], &p, 10);
2413 if (errno != 0 || *p || timeout < -1)
2415 strv_free (req);
2416 return send_error (ctx, GPG_ERR_SYNTAX);
2419 rc = do_validate_peer (ctx, req[0], &peer);
2420 if (!rc)
2422 unsigned char md5file[16];
2424 gcry_md_hash_buffer (GCRY_MD_MD5, md5file, req[0], strlen (req[0]));
2425 rc = cache_set_timeout (md5file, timeout);
2426 if (!rc || gpg_err_code (rc) == GPG_ERR_NOT_FOUND)
2428 rc = 0;
2429 MUTEX_LOCK (&rcfile_mutex);
2430 config_set_int_param (&global_config, req[0], "cache_timeout",
2431 req[1]);
2432 MUTEX_UNLOCK (&rcfile_mutex);
2436 strv_free (req);
2437 return send_error (ctx, rc);
2440 static gpg_error_t
2441 dump_command (assuan_context_t ctx, char *line)
2443 xmlChar *xml;
2444 int len;
2445 struct client_s *client = assuan_get_pointer (ctx);
2446 gpg_error_t rc;
2448 if (disable_list_and_dump == 1)
2449 return send_error (ctx, GPG_ERR_NOT_IMPLEMENTED);
2450 else if (client->thd->peer->uid != invoking_uid)
2451 return send_error (ctx, GPG_ERR_EPERM);
2453 xmlDocDumpFormatMemory (client->doc, &xml, &len, 1);
2455 if (!xml)
2457 log_write ("%s(%i): %s", __FILE__, __LINE__,
2458 pwmd_strerror (GPG_ERR_ENOMEM));
2459 return send_error (ctx, GPG_ERR_ENOMEM);
2462 pthread_cleanup_push (xmlFree, xml);
2463 rc = xfer_data (ctx, (char *) xml, len);
2464 pthread_cleanup_pop (1);
2465 return send_error (ctx, rc);
2468 static gpg_error_t
2469 getconfig_command (assuan_context_t ctx, char *line)
2471 struct client_s *client = assuan_get_pointer (ctx);
2472 gpg_error_t rc = 0;
2473 char filename[255] = { 0 }, param[747] = { 0 };
2474 char *p, *tmp = NULL, *fp = client->filename, *paramp = line;
2476 if (!line || !*line)
2477 return send_error (ctx, GPG_ERR_SYNTAX);
2479 if (strchr (line, ' '))
2481 sscanf (line, " %254[^ ] %746c", filename, param);
2482 paramp = param;
2483 fp = filename;
2486 if (fp && !valid_filename (fp))
2487 return send_error (ctx, GPG_ERR_INV_VALUE);
2489 paramp = str_down (paramp);
2490 if (!strcmp (paramp, "cipher") && fp)
2492 struct crypto_s *crypto = NULL;
2494 rc = init_client_crypto (&crypto);
2495 if (!rc)
2497 rc = read_data_header (fp, &crypto->hdr, NULL, NULL);
2498 if (!rc)
2500 const char *t =
2501 gcry_cipher_algo_name (cipher_to_gcrypt (crypto->hdr.flags));
2502 if (t)
2504 tmp = str_dup (t);
2505 if (tmp)
2506 str_down (tmp);
2511 UPDATE_AGENT_CTX (client, crypto);
2512 cleanup_crypto (&crypto);
2513 if (rc && gpg_err_code (rc) != GPG_ERR_ENOENT)
2514 return send_error (ctx, rc);
2516 if (!rc && tmp)
2517 goto done;
2519 else if (!strcmp (paramp, "cipher_iterations") && fp)
2521 struct crypto_s *crypto = NULL;
2523 rc = init_client_crypto (&crypto);
2524 if (!rc)
2526 rc = read_data_header (fp, &crypto->hdr, NULL, NULL);
2527 if (!rc)
2529 tmp = str_asprintf ("%llu",
2530 (unsigned long long) crypto->hdr.
2531 iterations);
2532 if (!tmp)
2533 rc = GPG_ERR_ENOMEM;
2537 UPDATE_AGENT_CTX (client, crypto);
2538 cleanup_crypto (&crypto);
2539 if (rc && gpg_err_code (rc) != GPG_ERR_ENOENT)
2540 return send_error (ctx, rc);
2542 if (!rc && tmp)
2543 goto done;
2545 else if (!strcmp (paramp, "passphrase"))
2546 return send_error (ctx, GPG_ERR_UNKNOWN_OPTION);
2548 p = config_get_value (fp ? fp : "global", paramp);
2549 if (!p)
2550 return send_error (ctx, GPG_ERR_UNKNOWN_OPTION);
2552 tmp = expand_homedir (p);
2553 xfree (p);
2554 if (!tmp)
2556 log_write ("%s(%i): %s", __FILE__, __LINE__,
2557 pwmd_strerror (GPG_ERR_ENOMEM));
2558 return send_error (ctx, GPG_ERR_ENOMEM);
2561 done:
2562 p = tmp;
2563 pthread_cleanup_push (xfree, p);
2564 rc = xfer_data (ctx, p, strlen (p));
2565 pthread_cleanup_pop (1);
2566 return send_error (ctx, rc);
2569 struct xpath_s
2571 xmlXPathContextPtr xp;
2572 xmlXPathObjectPtr result;
2573 xmlBufferPtr buf;
2574 char **req;
2577 static void
2578 xpath_command_cleanup (void *arg)
2580 struct xpath_s *xpath = arg;
2582 if (!xpath)
2583 return;
2585 req_cleanup (xpath->req);
2587 if (xpath->buf)
2588 xmlBufferFree (xpath->buf);
2590 if (xpath->result)
2591 xmlXPathFreeObject (xpath->result);
2593 if (xpath->xp)
2594 xmlXPathFreeContext (xpath->xp);
2597 static gpg_error_t
2598 do_xpath (assuan_context_t ctx, char *line)
2600 gpg_error_t rc;
2601 struct client_s *client = assuan_get_pointer (ctx);
2602 struct xpath_s _x = { 0 };
2603 struct xpath_s *xpath = &_x;
2605 if ((xpath->req = str_split (line, "\t", 2)) == NULL)
2607 if (strv_printf (&xpath->req, "%s", line) == 0)
2608 return GPG_ERR_ENOMEM;
2611 xpath->xp = xmlXPathNewContext (client->doc);
2612 if (!xpath->xp)
2614 rc = GPG_ERR_BAD_DATA;
2615 goto fail;
2618 xpath->result =
2619 xmlXPathEvalExpression ((xmlChar *) xpath->req[0], xpath->xp);
2620 if (!xpath->result)
2622 rc = GPG_ERR_BAD_DATA;
2623 goto fail;
2626 if (xmlXPathNodeSetIsEmpty (xpath->result->nodesetval))
2628 rc = GPG_ERR_ELEMENT_NOT_FOUND;
2629 goto fail;
2632 rc = recurse_xpath_nodeset (client->doc, xpath->result->nodesetval,
2633 (xmlChar *) xpath->req[1], &xpath->buf, 0,
2634 NULL);
2635 if (rc)
2636 goto fail;
2637 else if (!xpath->req[1] && !xmlBufferLength (xpath->buf))
2639 rc = GPG_ERR_NO_DATA;
2640 goto fail;
2642 else if (xpath->req[1])
2644 rc = 0;
2645 goto fail;
2648 pthread_cleanup_push (xpath_command_cleanup, &xpath);
2649 rc = xfer_data (ctx, (char *) xmlBufferContent (xpath->buf),
2650 xmlBufferLength (xpath->buf));
2651 pthread_cleanup_pop (0);
2652 fail:
2653 xpath_command_cleanup (xpath);
2654 return rc;
2657 static gpg_error_t
2658 xpath_command (assuan_context_t ctx, char *line)
2660 struct client_s *client = assuan_get_pointer (ctx);
2661 gpg_error_t rc;
2662 struct argv_s *args[] = {
2663 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
2664 NULL
2667 if (disable_list_and_dump == 1)
2668 return send_error (ctx, GPG_ERR_NOT_IMPLEMENTED);
2669 else if (client->thd->peer->uid != invoking_uid)
2670 return send_error (ctx, GPG_ERR_EPERM);
2672 rc = parse_options (&line, args, client);
2673 if (rc)
2674 return send_error (ctx, rc);
2676 if (client->opts & OPT_INQUIRE)
2678 unsigned char *result;
2679 size_t len;
2681 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
2682 if (rc)
2683 return send_error (ctx, rc);
2685 line = (char *) result;
2688 if (!line || !*line)
2689 rc = GPG_ERR_SYNTAX;
2691 if (!rc)
2692 rc = do_xpath (ctx, line);
2694 if (client->opts & OPT_INQUIRE)
2695 xfree (line);
2697 return send_error (ctx, rc);
2700 static gpg_error_t
2701 do_xpathattr (assuan_context_t ctx, char *line)
2703 struct client_s *client = assuan_get_pointer (ctx);
2704 gpg_error_t rc;
2705 char **req = NULL;
2706 int cmd = 0; //SET
2707 struct xpath_s _x = { 0 };
2708 struct xpath_s *xpath = &_x;
2710 if ((req = str_split (line, " ", 3)) == NULL)
2711 return GPG_ERR_ENOMEM;
2713 if (!req[0])
2715 rc = GPG_ERR_SYNTAX;
2716 goto fail;
2719 if (!strcasecmp (req[0], "SET"))
2720 cmd = 0;
2721 else if (!strcasecmp (req[0], "DELETE"))
2722 cmd = 1;
2723 else
2725 rc = GPG_ERR_SYNTAX;
2726 goto fail;
2729 if (!req[1] || !req[2])
2731 rc = GPG_ERR_SYNTAX;
2732 goto fail;
2735 if ((xpath->req = str_split (req[2], "\t", 3)) == NULL)
2737 rc = GPG_ERR_ENOMEM;
2738 goto fail;
2741 if (!xpath->req[0] || (!xpath->req[1] && !cmd) || (xpath->req[1] && cmd))
2743 rc = GPG_ERR_SYNTAX;
2744 goto fail;
2747 xpath->xp = xmlXPathNewContext (client->doc);
2748 if (!xpath->xp)
2750 rc = GPG_ERR_BAD_DATA;
2751 goto fail;
2754 xpath->result = xmlXPathEvalExpression ((xmlChar *) xpath->req[0], xpath->xp);
2755 if (!xpath->result)
2757 rc = GPG_ERR_BAD_DATA;
2758 goto fail;
2761 if (xmlXPathNodeSetIsEmpty (xpath->result->nodesetval))
2763 rc = GPG_ERR_ELEMENT_NOT_FOUND;
2764 goto fail;
2767 rc = recurse_xpath_nodeset (client->doc, xpath->result->nodesetval,
2768 (xmlChar *) xpath->req[1], &xpath->buf, cmd,
2769 (xmlChar *) req[1]);
2771 fail:
2772 xpath_command_cleanup (xpath);
2773 strv_free (req);
2774 return rc;
2777 /* XPATHATTR SET|DELETE <name> <expression>[<TAB>[value]] */
2778 static gpg_error_t
2779 xpathattr_command (assuan_context_t ctx, char *line)
2781 struct client_s *client = assuan_get_pointer (ctx);
2782 gpg_error_t rc;
2783 struct argv_s *args[] = {
2784 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
2785 NULL
2788 if (disable_list_and_dump == 1)
2789 return send_error (ctx, GPG_ERR_NOT_IMPLEMENTED);
2790 else if (client->thd->peer->uid != invoking_uid)
2791 return send_error (ctx, GPG_ERR_EPERM);
2793 rc = parse_options (&line, args, client);
2794 if (rc)
2795 return send_error (ctx, rc);
2797 if (client->opts & OPT_INQUIRE)
2799 unsigned char *result;
2800 size_t len;
2802 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
2803 if (rc)
2804 return send_error (ctx, rc);
2806 line = (char *) result;
2809 if (!line || !*line)
2810 rc = GPG_ERR_SYNTAX;
2812 if (!rc)
2813 rc = do_xpathattr (ctx, line);
2815 if (client->opts & OPT_INQUIRE)
2816 xfree (line);
2818 return send_error (ctx, rc);
2821 static gpg_error_t
2822 do_import (struct client_s *client, const char *root_element,
2823 unsigned char *content)
2825 char **dst_path = NULL;
2826 xmlDocPtr doc = NULL;
2827 xmlNodePtr n, root, copy;
2828 gpg_error_t rc;
2830 if (!content || !*content)
2832 xfree (content);
2833 return GPG_ERR_SYNTAX;
2836 if (root_element)
2837 dst_path = str_split (root_element, "\t", 0);
2839 if (dst_path && !valid_element_path (dst_path, 0))
2841 if (dst_path)
2842 strv_free (dst_path);
2844 return GPG_ERR_INV_VALUE;
2847 struct string_s *str = string_new_content ((char *)content);
2848 str = string_prepend (str, "<pwmd>");
2849 str = string_append (str, "</pwmd>");
2850 doc = xmlReadDoc ((xmlChar *) str->str, NULL, "UTF-8", XML_PARSE_NOBLANKS);
2851 string_free (str, 1);
2852 if (!doc)
2854 rc = GPG_ERR_BAD_DATA;
2855 goto fail;
2858 root = xmlDocGetRootElement (doc);
2859 xmlNodePtr root_orig = root->children;
2860 root = root->children;
2861 rc = validate_import (root);
2862 if (rc)
2863 goto fail;
2867 again:
2868 if (dst_path)
2870 char **path = strv_dup (dst_path);
2871 if (!path)
2873 log_write ("%s(%i): %s", __FILE__, __LINE__,
2874 pwmd_strerror (GPG_ERR_ENOMEM));
2875 rc = GPG_ERR_ENOMEM;
2876 goto fail;
2879 xmlChar *a = xmlGetProp (root, (xmlChar *) "_name");
2880 if (!a)
2882 strv_free (path);
2883 rc = GPG_ERR_ENOMEM;
2884 goto fail;
2887 if (strv_printf (&path, "%s", (char *) a) == 0)
2889 xmlFree (a);
2890 rc = GPG_ERR_ENOMEM;
2891 goto fail;
2894 xmlFree (a);
2895 n = find_root_element (client, client->doc, &path, &rc, NULL, 0, 0);
2896 if (rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
2898 strv_free (path);
2899 goto fail;
2902 if (!rc)
2904 n = find_elements (client, client->doc, n->children, path + 1, &rc,
2905 NULL, NULL, NULL, 0, 0, NULL, 1);
2906 if (rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
2908 strv_free (path);
2909 goto fail;
2911 else if (!rc)
2913 xmlUnlinkNode (n);
2914 xmlFreeNode (n);
2915 strv_free (path);
2916 path = NULL;
2917 goto again;
2921 if (rc == GPG_ERR_ELEMENT_NOT_FOUND)
2923 n = create_element_path (client, &path, &rc, NULL);
2924 if (rc)
2925 goto fail;
2928 if (root->children)
2930 copy = xmlCopyNodeList (root->children);
2931 n = xmlAddChildList (n, copy);
2932 if (!n)
2933 rc = GPG_ERR_ENOMEM;
2936 strv_free (path);
2938 else
2940 char **path = NULL;
2942 /* Check if the content root element can create a DTD root element. */
2943 if (!xmlStrEqual ((xmlChar *) "element", root->name))
2945 rc = GPG_ERR_SYNTAX;
2946 goto fail;
2949 xmlChar *a;
2951 if ((a = xmlGetProp (root, (xmlChar *) "_name")) == NULL)
2953 rc = GPG_ERR_SYNTAX;
2954 goto fail;
2957 char *tmp = str_dup ((char *) a);
2958 xmlFree (a);
2959 int literal = is_literal_element (&tmp);
2961 if (!valid_xml_element ((xmlChar *) tmp) || literal)
2963 xfree (tmp);
2964 rc = GPG_ERR_INV_VALUE;
2965 goto fail;
2968 if (strv_printf (&path, "%s", tmp) == 0)
2970 xfree (tmp);
2971 rc = GPG_ERR_ENOMEM;
2972 goto fail;
2975 xfree (tmp);
2976 n = find_root_element (client, client->doc, &path, &rc, NULL, 0, 1);
2977 if (rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
2979 rc = GPG_ERR_BAD_DATA;
2980 goto fail;
2983 /* Overwriting the existing tree. */
2984 if (!rc)
2986 xmlUnlinkNode (n);
2987 xmlFreeNodeList (n);
2990 rc = 0;
2991 xmlSetProp (root, (xmlChar *) "_name", (xmlChar *) path[0]);
2992 n = xmlCopyNode (root, 1);
2993 n = xmlAddChildList (xmlDocGetRootElement (client->doc), n);
2994 strv_free (path);
2997 if (n && !rc)
2998 rc = update_element_mtime (n->parent);
3000 for (root = root_orig->next; root; root = root->next)
3002 if (root->type == XML_ELEMENT_NODE)
3003 break;
3006 root_orig = root;
3008 while (root);
3010 fail:
3011 if (doc)
3012 xmlFreeDoc (doc);
3014 if (dst_path)
3015 strv_free (dst_path);
3017 return rc;
3020 static gpg_error_t
3021 parse_import_opt_root (void *data, void *value)
3023 struct client_s *client = data;
3025 client->import_root = str_dup (value);
3026 return client->import_root ? 0 : GPG_ERR_ENOMEM;
3029 static gpg_error_t
3030 import_command (assuan_context_t ctx, char *line)
3032 gpg_error_t rc;
3033 struct client_s *client = assuan_get_pointer (ctx);
3034 unsigned char *result;
3035 size_t len;
3036 struct argv_s *args[] = {
3037 &(struct argv_s) {"root", OPTION_TYPE_ARG, parse_import_opt_root},
3038 NULL
3041 xfree (client->import_root);
3042 client->import_root = NULL;
3043 rc = parse_options (&line, args, client);
3044 if (rc)
3045 return send_error (ctx, rc);
3047 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
3048 if (rc)
3049 return send_error (ctx, rc);
3051 rc = do_import (client, client->import_root, result);
3052 xfree (client->import_root);
3053 client->import_root = NULL;
3054 return send_error (ctx, rc);
3057 static gpg_error_t
3058 do_lock (struct client_s *client, int add)
3060 gpg_error_t rc = lock_file_mutex (client, add);
3062 if (!rc)
3063 client->flags |= FLAG_LOCK_CMD;
3065 return rc;
3068 static gpg_error_t
3069 lock_command (assuan_context_t ctx, char *line)
3071 struct client_s *client = assuan_get_pointer (ctx);
3072 gpg_error_t rc = do_lock (client, 0);
3074 return send_error (ctx, rc);
3077 static gpg_error_t
3078 unlock_command (assuan_context_t ctx, char *line)
3080 struct client_s *client = assuan_get_pointer (ctx);
3081 gpg_error_t rc;
3083 rc = unlock_file_mutex (client, 0);
3084 return send_error (ctx, rc);
3087 static gpg_error_t
3088 option_command (assuan_context_t ctx, char *line)
3090 struct client_s *client = assuan_get_pointer (ctx);
3091 gpg_error_t rc = 0;
3092 struct pinentry_option_s *pin_opts = &client->pinentry_opts;
3093 #ifdef WITH_AGENT
3094 struct agent_s *agent = client->crypto->agent;
3095 #endif
3096 char namebuf[255] = { 0 };
3097 char *name = namebuf;
3098 char *value = NULL, *p;
3100 p = strchr (line, '=');
3101 if (!p)
3102 strncpy (namebuf, line, sizeof(namebuf));
3103 else
3105 strncpy (namebuf, line, strlen (line)-strlen (p));
3106 value = p+1;
3109 log_write1 ("OPTION name='%s' value='%s'", name, value);
3111 if (strcasecmp (name, (char *) "log_level") == 0)
3113 long l = 0;
3115 if (value)
3117 l = strtol (value, NULL, 10);
3119 if (l < 0 || l > 2)
3120 return send_error (ctx, GPG_ERR_INV_VALUE);
3123 MUTEX_LOCK (&rcfile_mutex);
3124 config_set_int_param (&global_config, "global", "log_level", value);
3125 MUTEX_UNLOCK (&rcfile_mutex);
3126 goto done;
3128 else if (strcasecmp (name, (char *) "lock-timeout") == 0)
3130 long n = 0;
3131 char *p = NULL;
3133 if (value)
3135 n = strtol (value, &p, 10);
3136 if (p && *p)
3137 return send_error (ctx, GPG_ERR_INV_VALUE);
3140 client->lock_timeout = n;
3141 goto done;
3143 else if (strcasecmp (name, (char *) "NAME") == 0)
3145 char *tmp = pthread_getspecific (thread_name_key);
3147 if (tmp)
3148 xfree (tmp);
3150 if (!value || !*value)
3152 pthread_setspecific (thread_name_key, str_dup (""));
3153 goto done;
3156 pthread_setspecific (thread_name_key, str_dup (value));
3157 goto done;
3159 else if (strcasecmp (name, (char *) "lc-messages") == 0)
3161 xfree (pin_opts->lc_messages);
3162 pin_opts->lc_messages = NULL;
3163 if (value && *value)
3164 pin_opts->lc_messages = str_dup (value);
3165 #ifdef WITH_AGENT
3166 if (use_agent)
3167 rc = set_agent_option (client->crypto->agent, "lc-messages", value);
3168 #endif
3170 else if (strcasecmp (name, (char *) "lc-ctype") == 0)
3172 xfree (pin_opts->lc_ctype);
3173 pin_opts->lc_ctype = NULL;
3174 if (value && *value)
3175 pin_opts->lc_ctype = str_dup (value);
3176 #ifdef WITH_AGENT
3177 if (use_agent)
3178 rc = set_agent_option (client->crypto->agent, "lc-ctype", value);
3179 #endif
3181 else if (strcasecmp (name, (char *) "ttyname") == 0)
3183 xfree (pin_opts->ttyname);
3184 pin_opts->ttyname = NULL;
3185 if (value && *value)
3186 pin_opts->ttyname = str_dup (value);
3187 #ifdef WITH_AGENT
3188 if (use_agent)
3189 rc = set_agent_option (client->crypto->agent, "ttyname", value);
3190 #endif
3192 else if (strcasecmp (name, (char *) "ttytype") == 0)
3194 xfree (pin_opts->ttytype);
3195 pin_opts->ttytype = NULL;
3196 if (value && *value)
3197 pin_opts->ttytype = str_dup (value);
3198 #ifdef WITH_AGENT
3199 if (use_agent)
3200 rc = set_agent_option (client->crypto->agent, "ttytype", value);
3201 #endif
3203 else if (strcasecmp (name, (char *) "display") == 0)
3205 xfree (pin_opts->display);
3206 pin_opts->display = NULL;
3207 if (value && *value)
3208 pin_opts->display = str_dup (value);
3209 #ifdef WITH_AGENT
3210 if (use_agent)
3211 rc = set_agent_option (client->crypto->agent, "display", value);
3212 #endif
3214 else if (strcasecmp (name, (char *) "pinentry-desc") == 0)
3216 xfree (pin_opts->desc);
3217 pin_opts->desc = NULL;
3218 if (value && *value)
3219 pin_opts->desc = str_dup (value);
3221 else if (strcasecmp (name, (char *) "pinentry-title") == 0)
3223 xfree (pin_opts->title);
3224 pin_opts->title = NULL;
3225 if (value && *value)
3226 pin_opts->title = str_dup (value);
3228 else if (strcasecmp (name, (char *) "pinentry-prompt") == 0)
3230 xfree (pin_opts->prompt);
3231 pin_opts->prompt = NULL;
3232 if (value && *value)
3233 pin_opts->prompt = str_dup (value);
3236 else if (strcasecmp (name, "pinentry-timeout") == 0)
3238 char *p = NULL;
3239 int n;
3241 if (!value)
3242 goto done;
3244 n = (int) strtol (value, &p, 10);
3246 if (*p || n < 0)
3247 return send_error (ctx, GPG_ERR_INV_VALUE);
3249 pin_opts->timeout = n;
3250 MUTEX_LOCK (&rcfile_mutex);
3251 config_set_int_param (&global_config,
3252 client->filename ? client->filename : "global",
3253 "pinentry_timeout", value);
3254 MUTEX_UNLOCK (&rcfile_mutex);
3255 goto done;
3257 else if (strcasecmp (name, "disable-pinentry") == 0)
3259 char *p = NULL;
3260 int n = 1;
3262 if (value && *value)
3264 n = (int) strtol (value, &p, 10);
3265 if (*p || n < 0 || n > 1)
3266 return send_error (ctx, GPG_ERR_INV_VALUE);
3269 if (n)
3270 client->flags |= FLAG_NO_PINENTRY;
3271 else
3272 client->flags &= ~FLAG_NO_PINENTRY;
3274 #ifdef WITH_AGENT
3275 if (use_agent)
3277 if (client->flags & FLAG_NO_PINENTRY)
3278 rc = set_agent_option (client->crypto->agent, "pinentry-mode",
3279 "loopback");
3280 else
3281 rc = set_agent_option (client->crypto->agent, "pinentry-mode",
3282 "ask");
3284 if (rc)
3285 return send_error (ctx, rc);
3287 #endif
3289 else
3290 return send_error (ctx, GPG_ERR_UNKNOWN_OPTION);
3292 done:
3293 #ifdef WITH_AGENT
3294 if (!rc && use_agent && agent)
3296 rc = pinentry_merge_options (&client->crypto->agent->pinentry_opts,
3297 pin_opts);
3299 #endif
3301 return send_error (ctx, rc);
3304 static gpg_error_t
3305 do_rename (assuan_context_t ctx, char *line)
3307 struct client_s *client = assuan_get_pointer (ctx);
3308 gpg_error_t rc;
3309 char **req, **src, *dst;
3310 xmlNodePtr n, ndst;
3312 req = str_split (line, " ", 0);
3314 if (!req || !req[0] || !req[1])
3316 strv_free (req);
3317 return GPG_ERR_SYNTAX;
3320 dst = req[1];
3321 is_literal_element (&dst);
3323 if (!valid_xml_element ((xmlChar *) dst))
3325 strv_free (req);
3326 return GPG_ERR_INV_VALUE;
3329 if (strchr (req[0], '\t'))
3330 src = str_split (req[0], "\t", 0);
3331 else
3332 src = str_split (req[0], " ", 0);
3334 if (!src || !*src)
3336 rc = GPG_ERR_SYNTAX;
3337 goto fail;
3340 n = find_root_element (client, client->doc, &src, &rc, NULL, 0, 0);
3341 if (src[1] && n)
3342 n = find_elements (client, client->doc, n->children, src + 1, &rc, NULL, NULL,
3343 NULL, 0, 0, NULL, 0);
3345 if (!n)
3346 goto fail;
3348 xmlChar *a = xmlGetProp (n, (xmlChar *) "_name");
3349 if (!a)
3351 rc = GPG_ERR_ENOMEM;
3352 goto fail;
3355 /* To prevent unwanted effects:
3357 * <root name="a"><b/></root>
3359 * RENAME a<TAB>b b
3361 if (xmlStrEqual (a, (xmlChar *) dst))
3363 xmlFree (a);
3364 rc = GPG_ERR_AMBIGUOUS_NAME;
3365 goto fail;
3368 xmlFree (a);
3369 char **tmp = NULL;
3370 if (src[1])
3372 char **p;
3374 for (p = src; *p; p++)
3376 if (!*(p + 1))
3377 break;
3378 strv_printf (&tmp, "%s", *p);
3382 strv_printf (&tmp, "!%s", dst);
3383 ndst = find_root_element (client, client->doc, &tmp, &rc, NULL, 0, 0);
3384 if (!ndst && rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
3386 strv_free (tmp);
3387 goto fail;
3390 if (tmp[1] && ndst)
3391 ndst = find_elements (client, client->doc, ndst->children, tmp + 1, &rc, NULL,
3392 NULL, NULL, 0, 0, NULL, 0);
3394 strv_free (tmp);
3395 if (!ndst && rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
3396 goto fail;
3398 rc = 0;
3400 /* Target may exist:
3402 * <root name="a"/>
3403 * <root name="b" target="a"/>
3405 * RENAME b a
3407 * Would need to do:
3408 * RENAME !b a
3410 if (ndst == n)
3412 rc = GPG_ERR_AMBIGUOUS_NAME;
3413 goto fail;
3416 if (ndst)
3418 unlink_node (ndst);
3419 xmlFreeNodeList (ndst);
3422 rc = add_attribute (n, "_name", dst);
3424 fail:
3425 strv_free (req);
3426 strv_free (src);
3427 return rc;
3430 static gpg_error_t
3431 rename_command (assuan_context_t ctx, char *line)
3433 struct client_s *client = assuan_get_pointer (ctx);
3434 gpg_error_t rc;
3435 struct argv_s *args[] = {
3436 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
3437 NULL
3440 rc = parse_options (&line, args, client);
3441 if (rc)
3442 return send_error (ctx, rc);
3444 if (client->opts & OPT_INQUIRE)
3446 unsigned char *result;
3447 size_t len;
3449 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
3450 if (rc)
3451 return send_error (ctx, rc);
3453 line = (char *) result;
3456 rc = do_rename (ctx, line);
3458 if (client->opts & OPT_INQUIRE)
3459 xfree (line);
3461 return send_error (ctx, rc);
3464 static gpg_error_t
3465 do_copy (assuan_context_t ctx, char *line)
3467 struct client_s *client = assuan_get_pointer (ctx);
3468 gpg_error_t rc;
3469 char **req, **src = NULL, **dst = NULL;
3470 xmlNodePtr nsrc, ndst, new = NULL;
3472 req = str_split (line, " ", 0);
3473 if (!req || !req[0] || !req[1])
3475 strv_free (req);
3476 return GPG_ERR_SYNTAX;
3479 if (strchr (req[0], '\t'))
3480 src = str_split (req[0], "\t", 0);
3481 else
3482 src = str_split (req[0], " ", 0);
3484 if (!src || !*src)
3486 rc = GPG_ERR_SYNTAX;
3487 goto fail;
3490 if (strchr (req[1], '\t'))
3491 dst = str_split (req[1], "\t", 0);
3492 else
3493 dst = str_split (req[1], " ", 0);
3495 if (!dst || !*dst)
3497 rc = GPG_ERR_SYNTAX;
3498 goto fail;
3501 if (!valid_element_path (dst, 0))
3503 rc = GPG_ERR_INV_VALUE;
3504 goto fail;
3507 nsrc = find_root_element (client, client->doc, &src, &rc, NULL, 0, 0);
3508 if (nsrc && src[1])
3509 nsrc = find_elements (client, client->doc, nsrc->children, src + 1, &rc, NULL,
3510 NULL, NULL, 0, 0, NULL, 0);
3512 if (!nsrc)
3513 goto fail;
3515 new = xmlCopyNodeList (nsrc);
3516 if (!new)
3518 rc = GPG_ERR_ENOMEM;
3519 goto fail;
3522 int create = 0;
3523 ndst = find_root_element (client, client->doc, &dst, &rc, NULL, 0, 0);
3524 if (ndst && dst[1])
3526 if (ndst->children)
3527 ndst = find_elements (client, client->doc, ndst->children, dst + 1, &rc, NULL,
3528 NULL, create_target_elements_cb, 0, 0, NULL, 0);
3529 else
3530 create = 1;
3532 else
3533 create = 1;
3535 if (!ndst && rc != GPG_ERR_ELEMENT_NOT_FOUND)
3536 goto fail;
3537 else if (!ndst || create)
3539 ndst = create_element_path (client, &dst, &rc, NULL);
3540 if (!ndst)
3541 goto fail;
3544 /* Merge any attributes from the src node to the initial dst node. */
3545 for (xmlAttrPtr attr = new->properties; attr; attr = attr->next)
3547 if (xmlStrEqual (attr->name, (xmlChar *) "_name"))
3548 continue;
3550 xmlAttrPtr a = xmlHasProp (ndst, attr->name);
3551 if (a)
3552 xmlRemoveProp (a);
3554 xmlChar *tmp = xmlNodeGetContent (attr->children);
3555 xmlNewProp (ndst, attr->name, tmp);
3556 xmlFree (tmp);
3557 rc = add_attribute (ndst, NULL, NULL);
3560 xmlNodePtr n = ndst->children;
3561 xmlUnlinkNode (n);
3562 xmlFreeNodeList (n);
3563 ndst->children = NULL;
3565 if (new->children)
3567 n = xmlCopyNodeList (new->children);
3568 if (!n)
3570 rc = GPG_ERR_ENOMEM;
3571 goto fail;
3574 n = xmlAddChildList (ndst, n);
3575 if (!n)
3577 rc = GPG_ERR_ENOMEM;
3578 goto fail;
3581 rc = update_element_mtime (xmlDocGetRootElement (client->doc) ==
3582 ndst->parent ? ndst : ndst->parent);
3585 fail:
3586 if (new)
3588 xmlUnlinkNode (new);
3589 xmlFreeNodeList (new);
3592 if (req)
3593 strv_free (req);
3595 if (src)
3596 strv_free (src);
3598 if (dst)
3599 strv_free (dst);
3601 return rc;
3604 static gpg_error_t
3605 copy_command (assuan_context_t ctx, char *line)
3607 struct client_s *client = assuan_get_pointer (ctx);
3608 gpg_error_t rc;
3609 struct argv_s *args[] = {
3610 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
3611 NULL
3614 rc = parse_options (&line, args, client);
3615 if (rc)
3616 return send_error (ctx, rc);
3618 if (client->opts & OPT_INQUIRE)
3620 unsigned char *result;
3621 size_t len;
3623 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
3624 if (rc)
3625 return send_error (ctx, rc);
3627 line = (char *) result;
3630 rc = do_copy (ctx, line);
3632 if (client->opts & OPT_INQUIRE)
3633 xfree (line);
3635 return send_error (ctx, rc);
3638 static gpg_error_t
3639 do_move (assuan_context_t ctx, char *line)
3641 struct client_s *client = assuan_get_pointer (ctx);
3642 gpg_error_t rc;
3643 char **req, **src = NULL, **dst = NULL;
3644 xmlNodePtr nsrc, ndst = NULL;
3646 req = str_split (line, " ", 0);
3648 if (!req || !req[0] || !req[1])
3650 strv_free (req);
3651 return GPG_ERR_SYNTAX;
3654 if (strchr (req[0], '\t'))
3655 src = str_split (req[0], "\t", 0);
3656 else
3657 src = str_split (req[0], " ", 0);
3659 if (!src || !*src)
3661 rc = GPG_ERR_SYNTAX;
3662 goto fail;
3665 if (strchr (req[1], '\t'))
3666 dst = str_split (req[1], "\t", 0);
3667 else
3668 dst = str_split (req[1], " ", 0);
3670 nsrc = find_root_element (client, client->doc, &src, &rc, NULL, 0, 0);
3671 if (nsrc && src[1])
3672 nsrc = find_elements (client, client->doc, nsrc->children, src + 1, &rc, NULL,
3673 NULL, NULL, 0, 0, NULL, 0);
3675 if (!nsrc)
3676 goto fail;
3678 if (dst)
3680 if (!valid_element_path (dst, 0))
3682 rc = GPG_ERR_INV_VALUE;
3683 goto fail;
3686 ndst = find_root_element (client, client->doc, &dst, &rc, NULL, 0, 0);
3687 if (ndst && dst[1])
3688 ndst = find_elements (client, client->doc, ndst->children, dst + 1, &rc, NULL,
3689 NULL, NULL, 0, 0, NULL, 0);
3691 else
3692 ndst = xmlDocGetRootElement (client->doc);
3694 for (xmlNodePtr n = ndst; n; n = n->parent)
3696 if (n == nsrc)
3698 rc = GPG_ERR_CONFLICT;
3699 goto fail;
3703 if (rc && rc != GPG_ERR_ELEMENT_NOT_FOUND)
3704 goto fail;
3706 rc = 0;
3708 if (ndst)
3710 xmlChar *a = node_has_attribute (nsrc, (xmlChar *) "_name");
3712 xmlNodePtr dup = find_element (client, ndst->children, (char *) a,
3713 NULL, &rc);
3714 xmlFree (a);
3716 if (rc)
3717 goto fail;
3719 if (dup)
3721 if (dup == nsrc)
3722 goto fail;
3724 if (ndst == xmlDocGetRootElement (client->doc))
3726 xmlNodePtr n = nsrc;
3727 int match = 0;
3729 while (n->parent && n->parent != ndst)
3730 n = n->parent;
3732 xmlChar *a = node_has_attribute (n, (xmlChar *) "_name");
3733 xmlChar *b = node_has_attribute (nsrc, (xmlChar *) "_name");
3735 if (xmlStrEqual (a, b))
3737 match = 1;
3738 xmlUnlinkNode (nsrc);
3739 xmlUnlinkNode (n);
3740 xmlFreeNodeList (n);
3743 xmlFree (a);
3744 xmlFree (b);
3746 if (!match)
3748 xmlUnlinkNode (dup);
3749 xmlFreeNodeList (dup);
3752 else
3753 xmlUnlinkNode (dup);
3757 if (!ndst && dst)
3759 xmlChar *name = node_has_attribute (nsrc, (xmlChar *) "_name");
3761 if (nsrc->parent == xmlDocGetRootElement (client->doc)
3762 && !strcmp ((char *) name, *dst))
3764 xmlFree (name);
3765 rc = GPG_ERR_CONFLICT;
3766 goto fail;
3769 xmlFree (name);
3770 ndst = create_element_path (client, &dst, &rc, nsrc);
3773 if (!ndst)
3774 goto fail;
3776 update_element_mtime (nsrc->parent);
3777 xmlUnlinkNode (nsrc);
3778 ndst = xmlAddChildList (ndst, nsrc);
3780 if (!ndst)
3781 rc = GPG_ERR_ENOMEM;
3782 else
3783 update_element_mtime (ndst->parent);
3785 fail:
3786 if (req)
3787 strv_free (req);
3789 if (src)
3790 strv_free (src);
3792 if (dst)
3793 strv_free (dst);
3795 return rc;
3798 static gpg_error_t
3799 move_command (assuan_context_t ctx, char *line)
3801 struct client_s *client = assuan_get_pointer (ctx);
3802 gpg_error_t rc;
3803 struct argv_s *args[] = {
3804 &(struct argv_s) {"inquire", OPTION_TYPE_NOARG, parse_opt_inquire},
3805 NULL
3808 rc = parse_options (&line, args, client);
3809 if (rc)
3810 return send_error (ctx, rc);
3812 if (client->opts & OPT_INQUIRE)
3814 unsigned char *result;
3815 size_t len;
3817 rc = assuan_inquire (ctx, "DATA", &result, &len, 0);
3818 if (rc)
3819 return send_error (ctx, rc);
3821 line = (char *) result;
3824 rc = do_move (ctx, line);
3826 if (client->opts & OPT_INQUIRE)
3827 xfree (line);
3829 return send_error (ctx, rc);
3832 static gpg_error_t
3833 ls_command (assuan_context_t ctx, char *line)
3835 gpg_error_t rc;
3836 char *tmp = str_asprintf ("%s/data", homedir);
3837 char *dir = expand_homedir (tmp);
3838 DIR *d = opendir (dir);
3840 rc = gpg_error_from_errno (errno);
3841 xfree (tmp);
3843 if (!d)
3845 xfree (dir);
3846 return send_error (ctx, rc);
3849 size_t len =
3850 offsetof (struct dirent, d_name) +pathconf (dir, _PC_NAME_MAX) + 1;
3851 struct dirent *p = xmalloc (len), *cur = NULL;
3852 char *list = NULL;
3854 xfree (dir);
3855 rc = 0;
3857 while (!readdir_r (d, p, &cur) && cur)
3859 if (cur->d_name[0] == '.' && cur->d_name[1] == '\0')
3860 continue;
3861 else if (cur->d_name[0] == '.' && cur->d_name[1] == '.'
3862 && cur->d_name[2] == '\0')
3863 continue;
3865 tmp = str_asprintf ("%s%s\n", list ? list : "", cur->d_name);
3867 if (!tmp)
3869 if (list)
3870 xfree (list);
3872 rc = GPG_ERR_ENOMEM;
3873 break;
3876 xfree (list);
3877 list = tmp;
3880 closedir (d);
3881 xfree (p);
3883 if (rc)
3884 return send_error (ctx, rc);
3886 if (!list)
3887 return send_error (ctx, GPG_ERR_NO_DATA);
3889 list[strlen (list) - 1] = 0;
3890 rc = xfer_data (ctx, list, strlen (list));
3891 xfree (list);
3892 return send_error (ctx, rc);
3895 static gpg_error_t
3896 bye_notify (assuan_context_t ctx, char *line)
3898 struct client_s *cl = assuan_get_pointer (ctx);
3900 #ifdef WITH_GNUTLS
3901 if (cl->thd->remote)
3903 int rc;
3907 struct timeval tv = { 0, 50000 };
3909 rc = gnutls_bye (cl->thd->tls->ses, GNUTLS_SHUT_RDWR);
3910 if (rc == GNUTLS_E_AGAIN)
3911 select (0, NULL, NULL, NULL, &tv);
3913 while (rc == GNUTLS_E_AGAIN);
3915 #endif
3917 /* This will let assuan_process_next() return. */
3918 fcntl (cl->thd->fd, F_SETFL, O_NONBLOCK);
3919 cl->last_rc = 0; // BYE command result
3920 return 0;
3923 static gpg_error_t
3924 reset_notify (assuan_context_t ctx, char *line)
3926 struct client_s *client = assuan_get_pointer (ctx);
3928 if (client)
3929 cleanup_client (client);
3931 return 0;
3935 * This is called before every Assuan command.
3937 static gpg_error_t
3938 command_startup (assuan_context_t ctx, const char *name)
3940 struct client_s *client = assuan_get_pointer (ctx);
3941 gpg_error_t rc;
3942 struct command_table_s *cmd = NULL;
3944 log_write1 ("command='%s'", name);
3945 client->last_rc = client->opts = 0;
3947 for (int i = 0; command_table[i]; i++)
3949 if (!strcasecmp (name, command_table[i]->name))
3951 if (command_table[i]->ignore_startup)
3952 return 0;
3953 cmd = command_table[i];
3954 break;
3958 client->last_rc = rc = gpg_error (file_modified (client, cmd));
3959 return rc;
3963 * This is called after every Assuan command.
3965 static void
3966 command_finalize (assuan_context_t ctx, gpg_error_t rc)
3968 struct client_s *client = assuan_get_pointer (ctx);
3970 if (!(client->flags & FLAG_LOCK_CMD))
3971 unlock_file_mutex (client, 0);
3973 log_write1 (_("command completed: rc=%u"), client->last_rc);
3974 client->last_rc = gpg_error (GPG_ERR_UNKNOWN_COMMAND);
3975 #ifdef WITH_GNUTLS
3976 client->thd->buffer_timeout = client->thd->last_buffer_size = 0;
3977 #endif
3980 static gpg_error_t
3981 help_command (assuan_context_t ctx, char *line)
3983 gpg_error_t rc;
3984 int i;
3986 if (!line || !*line)
3988 char *tmp;
3989 char *help = str_dup (_("Usage: HELP [<COMMAND>]\n"
3990 "For commands that take an element path as an argument, each element is "
3991 "separated with an ASCII @key{TAB} character (ASCII 0x09)."
3992 "\n" "COMMANDS:"));
3994 for (i = 0; command_table[i]; i++)
3996 if (!command_table[i]->help)
3997 continue;
3999 tmp = str_asprintf ("%s %s", help, command_table[i]->name);
4000 xfree (help);
4001 help = tmp;
4004 tmp = strip_texi_and_wrap (help);
4005 xfree (help);
4006 rc = xfer_data (ctx, tmp, strlen (tmp));
4007 xfree (tmp);
4008 return send_error (ctx, rc);
4011 for (i = 0; command_table[i]; i++)
4013 if (!strcasecmp (line, command_table[i]->name))
4015 char *help, *tmp;
4017 if (!command_table[i]->help)
4018 break;
4020 help = strip_texi_and_wrap (command_table[i]->help);
4021 tmp = str_asprintf (_("Usage: %s"), help);
4022 xfree (help);
4023 rc = xfer_data (ctx, tmp, strlen (tmp));
4024 xfree (tmp);
4025 return send_error (ctx, rc);
4029 return send_error (ctx, GPG_ERR_INV_NAME);
4032 static void
4033 new_command (const char *name, int ignore, int unlock,
4034 gpg_error_t (*handler) (assuan_context_t, char *),
4035 const char *help)
4037 int i = 0;
4039 if (command_table)
4040 for (i = 0; command_table[i]; i++);
4042 command_table =
4043 xrealloc (command_table, (i + 2) * sizeof (struct command_table_s *));
4044 command_table[i] = xcalloc (1, sizeof (struct command_table_s));
4045 command_table[i]->name = name;
4046 command_table[i]->handler = handler;
4047 command_table[i]->ignore_startup = ignore;
4048 command_table[i]->unlock = unlock;
4049 command_table[i++]->help = help;
4050 command_table[i] = NULL;
4053 void
4054 deinit_commands ()
4056 int i;
4058 for (i = 0; command_table[i]; i++)
4059 xfree (command_table[i]);
4061 xfree (command_table);
4064 static int
4065 sort_commands (const void *arg1, const void *arg2)
4067 struct command_table_s *const *a = arg1;
4068 struct command_table_s *const *b = arg2;
4070 if (!*a || !*b)
4071 return 0;
4072 else if (*a && !*b)
4073 return 1;
4074 else if (!*a && *b)
4075 return -1;
4077 return strcmp ((*a)->name, (*b)->name);
4080 static gpg_error_t
4081 passwd_command (assuan_context_t ctx, char *line)
4083 struct client_s *client = assuan_get_pointer (ctx);
4084 gpg_error_t rc;
4085 struct argv_s *args[] = {
4086 &(struct argv_s) {"reset", OPTION_TYPE_NOARG, parse_opt_reset},
4087 &(struct argv_s) {"s2k-count", OPTION_TYPE_ARG, parse_opt_s2k_count},
4088 &(struct argv_s) {"no-passphrase", OPTION_TYPE_NOARG, parse_opt_no_passphrase},
4089 NULL
4092 if (client->flags & FLAG_NEW)
4093 return send_error (ctx, GPG_ERR_INV_STATE);
4095 client->crypto->save.s2k_count =
4096 config_get_ulong (client->filename, "s2k_count");
4097 rc = parse_options (&line, args, client);
4098 if (rc)
4099 return send_error (ctx, rc);
4101 if (!rc && client->opts & OPT_RESET)
4103 rc = cache_clear (client->md5file);
4104 if (!rc)
4105 send_status_all (STATUS_CACHE, NULL);
4108 if (!rc)
4110 if (!IS_PKI (client->crypto))
4112 struct crypto_s *crypto;
4114 xfree (client->crypto->filename);
4115 client->crypto->filename = str_dup (client->filename);
4116 rc = change_passwd (ctx, client->filename,
4117 client->flags & FLAG_NO_PINENTRY, &crypto,
4118 (client->opts & OPT_NO_PASSPHRASE));
4119 if (!rc)
4121 cleanup_crypto (&client->crypto);
4122 client->crypto = crypto;
4123 update_checksum (client);
4124 cleanup_crypto_stage1 (client->crypto);
4127 #ifdef WITH_AGENT
4128 else
4130 if (client->crypto->save.s2k_count)
4131 rc = send_to_agent (client->crypto->agent, NULL, NULL,
4132 "OPTION s2k-count=%lu",
4133 client->crypto->save.s2k_count);
4135 if (!rc)
4136 rc = agent_passwd (client->crypto);
4138 #endif
4141 return send_error (ctx, rc);
4144 static gpg_error_t
4145 parse_keygrip_opt_sign (void *data, void *value)
4147 struct client_s *client = data;
4149 (void) value;
4150 client->opts |= OPT_SIGN;
4151 return 0;
4154 static gpg_error_t
4155 keygrip_command (assuan_context_t ctx, char *line)
4157 struct client_s *client = assuan_get_pointer (ctx);
4158 gpg_error_t rc;
4159 struct crypto_s *crypto = NULL;
4160 struct argv_s *args[] = {
4161 &(struct argv_s) {"sign", OPTION_TYPE_NOARG, parse_keygrip_opt_sign},
4162 NULL
4165 if (!line || !*line)
4166 return send_error (ctx, GPG_ERR_SYNTAX);
4168 rc = parse_options (&line, args, client);
4169 if (rc)
4170 return send_error (ctx, rc);
4172 if (!valid_filename (line))
4173 return send_error (ctx, GPG_ERR_INV_VALUE);
4175 rc = init_client_crypto (&crypto);
4176 if (rc)
4177 return send_error (ctx, rc);
4179 rc = read_data_file (line, crypto);
4180 if (!rc)
4182 char *hexgrip = NULL;
4184 if (!IS_PKI (crypto))
4186 cleanup_crypto (&crypto);
4187 return send_error (ctx, GPG_ERR_NOT_SUPPORTED);
4190 if (client->opts & OPT_SIGN)
4192 if (valid_keygrip (crypto->sign_grip, sizeof (crypto->sign_grip)))
4193 hexgrip = bin2hex (crypto->sign_grip, sizeof (crypto->sign_grip));
4196 if (!hexgrip)
4197 hexgrip = bin2hex (crypto->grip, sizeof (crypto->grip));
4199 if (!hexgrip)
4200 rc = GPG_ERR_ENOMEM;
4201 else
4202 rc = xfer_data (ctx, hexgrip, strlen (hexgrip));
4204 xfree (hexgrip);
4207 UPDATE_AGENT_CTX (client, crypto);
4208 cleanup_crypto (&crypto);
4209 return send_error (ctx, rc);
4212 static gpg_error_t
4213 parse_opt_data (void *data, void *value)
4215 struct client_s *client = data;
4217 (void) value;
4218 client->opts |= OPT_DATA;
4219 return 0;
4222 static gpg_error_t
4223 getinfo_command (assuan_context_t ctx, char *line)
4225 struct client_s *client = assuan_get_pointer (ctx);
4226 gpg_error_t rc;
4227 char buf[ASSUAN_LINELENGTH];
4228 struct argv_s *args[] = {
4229 &(struct argv_s) {"data", OPTION_TYPE_NOARG, parse_opt_data},
4230 NULL
4233 rc = parse_options (&line, args, client);
4234 if (rc)
4235 return send_error (ctx, rc);
4237 if (!strcasecmp (line, "clients"))
4239 if (client->opts & OPT_DATA)
4241 MUTEX_LOCK (&cn_mutex);
4242 snprintf (buf, sizeof (buf), "%i", slist_length (cn_thread_list));
4243 MUTEX_UNLOCK (&cn_mutex);
4244 rc = xfer_data (ctx, buf, strlen (buf));
4246 else
4247 rc = send_status (ctx, STATUS_CLIENTS, NULL);
4249 else if (!strcasecmp (line, "cache"))
4251 if (client->opts & OPT_DATA)
4253 snprintf (buf, sizeof (buf), "%u", cache_file_count ());
4254 rc = xfer_data (ctx, buf, strlen (buf));
4256 else
4257 rc = send_status (ctx, STATUS_CACHE, NULL);
4259 else if (!strcasecmp (line, "pid"))
4261 char buf[32];
4262 pid_t pid = getpid ();
4264 snprintf (buf, sizeof (buf), "%i", pid);
4265 rc = xfer_data (ctx, buf, strlen (buf));
4267 else if (!strcasecmp (line, "version"))
4269 char *buf = str_asprintf ("0x%06x %s%s", VERSION_HEX,
4270 #ifdef WITH_LIBACL
4271 "ACL "
4272 #endif
4273 #ifdef WITH_GNUTLS
4274 "GNUTLS "
4275 #endif
4276 #ifdef WITH_QUALITY
4277 "QUALITY "
4278 #endif
4279 "", use_agent ? "AGENT" : "");
4280 rc = xfer_data (ctx, buf, strlen (buf));
4281 xfree (buf);
4283 else if (!strcasecmp (line, "last_error"))
4285 if (client->last_error)
4286 rc = xfer_data (ctx, client->last_error, strlen (client->last_error));
4287 else
4288 rc = GPG_ERR_NO_DATA;
4290 else
4291 rc = gpg_error (GPG_ERR_SYNTAX);
4293 return send_error (ctx, rc);
4296 #ifdef WITH_AGENT
4297 static gpg_error_t
4298 send_data_cb (void *user, const void *buf, size_t len)
4300 assuan_context_t ctx = user;
4302 return assuan_send_data (ctx, buf, len);
4305 static gpg_error_t
4306 send_status_cb (void *user, const char *line)
4308 assuan_context_t ctx = user;
4309 char keyword[200], *k;
4310 const char *p;
4312 for (p = line, k = keyword; *p; p++)
4314 if (isspace (*p))
4315 break;
4317 *k++ = *p;
4320 *k = 0;
4321 if (*p == '#')
4322 p++;
4324 while (isspace (*p))
4325 p++;
4327 return assuan_write_status (ctx, keyword, *p ? p : NULL);
4329 #endif
4331 static gpg_error_t
4332 agent_command (assuan_context_t ctx, char *line)
4334 gpg_error_t rc = 0;
4336 if (!use_agent)
4337 return send_error (ctx, GPG_ERR_NOT_IMPLEMENTED);
4339 #ifdef WITH_AGENT
4340 struct client_s *client = assuan_get_pointer (ctx);
4342 if (!line || !*line)
4343 return send_error (ctx, GPG_ERR_SYNTAX);
4345 assuan_set_flag (client->crypto->agent->ctx, ASSUAN_CONVEY_COMMENTS, 1);
4346 rc = assuan_transact (client->crypto->agent->ctx, line, send_data_cb,
4347 client->ctx, agent_loopback_cb, client->crypto,
4348 send_status_cb, client->ctx);
4349 if (gpg_err_code (rc) == GPG_ERR_ASS_CANCELED)
4351 char *line;
4352 size_t len;
4354 rc = assuan_write_line (client->crypto->agent->ctx, "CAN");
4355 if (!rc)
4357 rc = assuan_read_line (client->crypto->agent->ctx, &line, &len);
4358 if (!rc)
4359 rc = gpg_error (GPG_ERR_ASS_CANCELED);
4363 assuan_set_flag (client->crypto->agent->ctx, ASSUAN_CONVEY_COMMENTS, 0);
4364 #endif
4365 return send_error (ctx, rc);
4368 void
4369 init_commands ()
4371 /* !BEGIN-HELP-TEXT!
4373 * This comment is used as a marker to generate the offline documentation
4374 * found in doc/pwmd.info. The indentation needs to be kept for the awk
4375 * script to determine where commands begin and end.
4377 new_command("HELP", 1, 1, help_command, _(
4378 "HELP [<COMMAND>]\n"
4379 "Show available commands or command specific help text."
4382 new_command("AGENT", 1, 1, agent_command, _(
4383 "AGENT <command>\n"
4384 "Send a @command{gpg-agent} protocol @var{command} directly to the "
4385 "@command{gpg-agent}."
4388 new_command("GETINFO", 1, 1, getinfo_command, _(
4389 "GETINFO [--data] CACHE | CLIENTS | PID | LAST_ERROR | VERSION\n"
4390 "Get server and other information: @var{cache} returns the number of cached "
4391 "documents via a status message. @var{clients} returns the number of "
4392 "connected clients via a status message. @var{pid} returns the process ID "
4393 "number of the server via a data response. @var{VERSION} returns the server "
4394 "version number and compile-time features with a data response with each "
4395 "being space delimited. @var{LAST_ERROR} returns a detailed description of "
4396 "the last failed command when available. @xref{Status Messages}. "
4397 "\n"
4398 "When the @option{--data} option is specified then the result will be sent "
4399 "via a data response rather than a status message."
4402 new_command("PASSWD", 0, 0, passwd_command, _(
4403 "PASSWD [--reset] [--s2k-count=N] [--no-passphrase]\n"
4404 "Changes the passphrase of the secret key required to open the current "
4405 "file or the passphrase of a symmetrically encrypted data file. When the "
4406 "@option{--reset} option is passed then the cache entry for the current "
4407 "file will be reset and the passphrase, if any, will be required during the "
4408 "next @code{OPEN} (@pxref{OPEN})."
4409 "\n"
4410 "The @option{--s2k-count} option sets or changes (@pxref{SAVE}) the number "
4411 "of hash iterations for a passphrase and must be either @code{0} to use "
4412 "the calibrated count of the machine (the default), or a value greater than "
4413 "or equal to @code{65536}. This option has no effect for symmetrically "
4414 "encrypted data files."
4415 "\n"
4416 "The @option{--no-passphrase} option will prevent requiring a passphrase for "
4417 "the data file, although a passphrase may be required when changing it."
4420 new_command("KEYGRIP", 1, 1, keygrip_command, _(
4421 "KEYGRIP [--sign] <filename>\n"
4422 "Returns the hex encoded keygrip of the specified @var{filename} with a "
4423 "data response."
4424 "\n"
4425 "When the @option{--sign} option is specified then the key used for signing "
4426 "of the specified @var{filename} will be returned."
4427 "\n"
4428 "For symmetrically encrypted data files this command returns the error "
4429 "GPG_ERR_NOT_SUPPORTED."
4432 new_command("OPEN", 1, 1, open_command, _(
4433 "OPEN [--lock] <filename> [<passphrase>]\n"
4434 "Opens @var{filename} using @var{passphrase}. When the filename is not "
4435 "found on the file-system then a new document will be created. If the file "
4436 "is found, it is looked for in the file cache. If cached and no "
4437 "@var{passphrase} was specified then the cached document is opened. When not "
4438 "cached, @cite{pinentry(1)} will be used to retrieve the passphrase to use "
4439 "for decryption unless @option{disable-pinentry} (@pxref{OPTION}) was "
4440 "specified."
4441 "\n"
4442 "When the @option{--lock} option is passed then the file mutex will be "
4443 "locked as if the @code{LOCK} command (@pxref{LOCK}) had been sent after the "
4444 "file has been opened."
4447 new_command("SAVE", 0, 0, save_command, _(
4448 "SAVE [--no-passphrase] [--reset] [--no-agent] [--s2k-count=N] [--cipher=<algo>] [--cipher-iterations=N] [--inquire-keyparam] [--keygrip=hexstring] [--sign-keygrip=hexstring]\n"
4449 "Writes the @abbr{XML} document to disk. The file written to is the file that "
4450 "was opened using the @code{OPEN} command (@pxref{OPEN}). If the file is a "
4451 "new one or the option @option{--inquire-keyparam} was passed, then a new "
4452 "keypair will be generated and a pinentry will be used to prompt for the "
4453 "passphrase to encrypt with unless the @option{--no-passphrase} option was "
4454 "passed in which case the data file will not be passphrase protected. "
4455 "\n"
4456 "The @option{--no-agent} option disables use of @command{gpg-agent} for "
4457 "passphrase retrieval and caching of new files when @command{gpg-agent} "
4458 "use is enabled. The datafile will be symmetrically encrypted and will not "
4459 "use or generate any keypair."
4460 "\n"
4461 "The @option{--reset} option will clear the cache entry for the current file "
4462 "and require a passphrase, if needed, before saving."
4463 "\n"
4464 "The @option{--cipher} option can be used to encrypt the @abbr{XML} data to "
4465 "an alternate cipher. The default is @code{aes256}. See the Configuration "
4466 "(@pxref{Configuration}) for available ciphers."
4467 "\n"
4468 "The @option{--cipher-iterations} option specifies the number of times to "
4469 "encrypt the XML data. The default is 0 although 1 iteration is still done."
4470 "\n"
4471 "The @option{--inquire-keyparam} option will send a server @emph{INQUIRE} to "
4472 "the client to obtain the key paramaters to use when generating a new "
4473 "keypair. The inquired data is expected to be an S-expression. If not "
4474 "specified then an @samp{RSA} key of @samp{2048} bits will be generated "
4475 "unless otherwise set in the configuration file (@pxref{Configuration}). Note "
4476 "that when this option is specified a new keypair will be generated "
4477 "reguardless if the file is a new one and that if the data file is protected "
4478 "the passphrase to open it will be required before generating the new keypair."
4479 "\n"
4480 "You can encrypt the data file to a public key other than the one that it "
4481 "was originally encrypted with by passing the @option{--keygrip} option with "
4482 "the hex encoded keygrip of the public key as its argument. The keygrip may "
4483 "be of any key that @command{gpg-agent} knows about. The "
4484 "@option{--sign-keygrip} option may also be used to sign with an alternate "
4485 "secret key. Use the @code{KEYGRIP} (@pxref{KEYGRIP}) command to obtain the "
4486 "keygrip of an existing data file. This option may be needed when using a "
4487 "smartcard. This option has no effect with symmetrically encrypted data files."
4488 "\n"
4489 "The @option{--s2k-count} option sets number of hash iterations for a "
4490 "passphrase. A value less-than @code{65536} will use the machine calibrated "
4491 "value and is the default. This setting only affects new files. To change "
4492 "the setting use the @code{PASSWD} command (@pxref{PASSWD}). This option "
4493 "has no effect with symmetrically encrypted data files."
4496 new_command("ISCACHED", 1, 0, iscached_command, _(
4497 "ISCACHED [--lock] <filename>\n"
4498 "An @emph{OK} response is returned if the specified @var{filename} is found "
4499 "in the file cache. If not found in the cache but exists on the filesystem "
4500 "then @var{GPG_ERR_NO_DATA} is returned. Otherwise a filesystem error is "
4501 "returned."
4502 "\n"
4503 "The @option{lock} option will lock the file mutex of @var{filename} when the "
4504 "file exists; it does not need to be opened nor cached. The lock will be "
4505 "released when the client exits or sends the @code{UNLOCK} (@pxref{UNLOCK}) "
4506 "command."
4509 new_command("CLEARCACHE", 1, 1, clearcache_command, _(
4510 "CLEARCACHE [<filename>]\n"
4511 "Clears a file cache entry for all or the specified @var{filename}."
4514 new_command("CACHETIMEOUT", 1, 1, cachetimeout_command, _(
4515 "CACHETIMEOUT <filename> <seconds>\n"
4516 "The time in @var{seconds} until @var{filename} will be removed from the "
4517 "cache. @code{-1} will keep the cache entry forever, @code{0} will require "
4518 "the passphrase for each @code{OPEN} or @code{SAVE} command (@pxref{OPEN}, "
4519 "@pxref{SAVE}). @xref{Configuration}, and the @code{cache_timeout} "
4520 "parameter."
4523 new_command("LIST", 0, 1, list_command, _(
4524 "LIST [--inquire] [--no-recurse] [--verbose] [--with-target] [--all] [[!]element[<TAB>[!]child[..]]]\n"
4525 "If no element path is given then a newline separated list of root elements "
4526 "is returned with a data response. If given, then all reachable elements "
4527 "of the specified element path are returned unless the @option{--no-recurse} "
4528 "option is specified. If specified, only the child elements of the element "
4529 "path are returned without recursing into grandchildren. Each resulting "
4530 "element is prefixed with the literal @code{!} character when the element "
4531 "contains no @code{target} attribute. @xref{Target Attribute}, for details."
4532 "\n"
4533 "When the @option{--verbose} option is passed then each element path "
4534 "returned will have zero or more flags appened to it. These flags are "
4535 "delimited from the element path by a single space character. A flag itself "
4536 "is a single character. Flag @code{+} indicates that there are child nodes of "
4537 "the current element path. Flag @code{E} indicates that an element of an "
4538 "element path contained in a @var{target} attribute could not be found. Flag "
4539 "@code{O} indicates that a @var{target} attribute recursion limit was reached "
4540 "(@pxref{Configuration}). Flag @code{T} will append the resolved element path "
4541 "of the @var{target} attribute contained in the current element (see below)."
4542 "\n"
4543 "The @option{--with-target} option implies @option{--verbose} and will append "
4544 "an additional flag @code{T} followed by a single space then an element path. "
4545 "The appended element path is the resolved path (@pxref{REALPATH}) of the "
4546 "current element when it contains a @var{target} attribute. When no "
4547 "@var{target} attribute is found then no flag will be appended."
4548 "\n"
4549 "The @option{--no-recurse} option limits the amount of data returned to only "
4550 "the listing of children of the specified element path and not any "
4551 "grandchildren."
4552 "\n"
4553 "The @option{--all} option lists the entire element tree for each root "
4554 "element. This option also implies option @option{--verbose}."
4555 "\n"
4556 "When the @option{--inquire} option is passed then all remaining non-option "
4557 "arguments are retrieved via a server @emph{INQUIRE}."
4560 new_command("REALPATH", 0, 1, realpath_command, _(
4561 "REALPATH [--inquire] [!]element[<TAB>[!]child[..]]\n"
4562 "Resolves all @code{target} attributes of the specified element path and "
4563 "returns the result with a data response. @xref{Target Attribute}, for details."
4564 "\n"
4565 "When the @option{--inquire} option is passed then all remaining non-option "
4566 "arguments are retrieved via a server @emph{INQUIRE}."
4569 new_command("STORE", 0, 1, store_command, _(
4570 "STORE [!]element[<TAB>[!]child[..]]<TAB>[content]\n"
4571 "This command uses a server @emph{INQUIRE} to retrieve data from the client."
4572 "\n"
4573 "Creates a new element path or modifies the @var{content} of an existing "
4574 "element. If only a single element is specified then a new root element is "
4575 "created. Otherwise, elements are @key{TAB} delimited and the content will be "
4576 "set to the final @key{TAB} delimited element. If no @var{content} is "
4577 "specified after the final @key{TAB}, then the content of an existing "
4578 "element will be removed; or empty when creating a new element."
4579 "\n"
4580 "The only restriction of an element name is that it not contain whitespace "
4581 "or begin with the literal element character @code{!} unless specifying a "
4582 "literal element (@pxref{Target Attribute}). There is no whitespace between "
4583 "the @key{TAB} delimited elements. It is recommended that the content of an "
4584 "element be base64 encoded when it contains control or @key{TAB} characters "
4585 "to prevent @abbr{XML} parsing and @command{pwmd} syntax errors."
4588 new_command("RENAME", 0, 1, rename_command, _(
4589 "RENAME [--inquire] [!]element[<TAB>[!]child[..]] <value>\n"
4590 "Renames the specified @var{element} to the new @var{value}. If an element of "
4591 "the same name as the @var{value} already exists it will be overwritten."
4592 "\n"
4593 "When the @option{--inquire} option is passed then all remaining non-option "
4594 "arguments are retrieved via a server @emph{INQUIRE}."
4597 new_command("COPY", 0, 1, copy_command, _(
4598 "COPY [--inquire] [!]source[<TAB>[!]child[..]] [!]dest[<TAB>[!]child[..]]\n"
4599 "Copies the entire element tree starting from the child node of the source "
4600 "element, to the destination element path. If the destination element path "
4601 "does not exist then it will be created; otherwise it is overwritten."
4602 "\n"
4603 "Note that attributes from the source element are merged into the "
4604 "destination element when the destination element path exists. When an "
4605 "attribute of the same name exists in both the source and destination "
4606 "elements then the destination attribute will be updated to the source "
4607 "attribute value."
4608 "\n"
4609 "When the @option{--inquire} option is passed then all remaining non-option "
4610 "arguments are retrieved via a server @emph{INQUIRE}."
4613 new_command("MOVE", 0, 1, move_command, _(
4614 "MOVE [--inquire] [!]source[<TAB>[!]child[..]] [[!]dest[<TAB>[!]child[..]]]\n"
4615 "Moves the source element path to the destination element path. If the "
4616 "destination is not specified then it will be moved to the root node of the "
4617 "document. If the destination is specified and exists then it will be "
4618 "overwritten; otherwise non-existing elements of the destination element "
4619 "path will be created."
4620 "\n"
4621 "When the @option{--inquire} option is passed then all remaining non-option "
4622 "arguments are retrieved via a server @emph{INQUIRE}."
4625 new_command("DELETE", 0, 1, delete_command, _(
4626 "DELETE [--inquire] [!]element[<TAB>[!]child[..]]\n"
4627 "Removes the specified element path and all of its children. This may break "
4628 "an element with a @code{target} attribute (@pxref{Target Attribute}) that "
4629 "refers to this element or any of its children."
4630 "\n"
4631 "When the @option{--inquire} option is passed then all remaining non-option "
4632 "arguments are retrieved via a server @emph{INQUIRE}."
4635 new_command("GET", 0, 1, get_command, _(
4636 "GET [--inquire] [!]element[<TAB>[!]child[..]]\n"
4637 "Retrieves the content of the specified element. The content is returned "
4638 "with a data response."
4639 "\n"
4640 "When the @option{--inquire} option is passed then all remaining non-option "
4641 "arguments are retrieved via a server @emph{INQUIRE}."
4644 new_command("ATTR", 0, 1, attr_command, _(
4645 "ATTR [--inquire] SET|GET|DELETE|LIST [<attribute>] [!]element[<TAB>[!]child[..]] ..\n"
4646 "@table @asis\n"
4647 "@item ATTR SET attribute [!]element[<TAB>[!]child[..]] [value]\n"
4648 "\n"
4649 " Stores or updates an @var{attribute} name and optional @var{value} of an "
4650 "element. When no @var{value} is specified any existing value will be removed."
4651 "\n"
4652 "@item ATTR DELETE attribute [!]element[<TAB>[!]child[..]]\n"
4653 "\n"
4654 " Removes an @var{attribute} from an element."
4655 "\n"
4656 "@item ATTR LIST [!]element[<TAB>[!]child[..]]\n"
4657 "\n"
4658 " Retrieves a newline separated list of attributes names and values "
4659 "from the specified element. Each attribute name and value is space delimited."
4660 "\n"
4661 "@item ATTR GET attribute [!]element[<TAB>[!]child[..]]\n"
4662 "\n"
4663 " Retrieves the value of an @var{attribute} from an element."
4664 "@end table\n"
4665 "\n"
4666 "The @code{_name} attribute (case sensitive) cannot be removed nor modified. "
4667 "Use the @code{DELETE} (@pxref{DELETE}) or @code{RENAME} (@pxref{RENAME}) "
4668 "commands instead."
4669 "\n"
4670 "The @code{_mtime} attribute is updated each time an element is modified by "
4671 "either storing content, editing attributes or by deleting a child element. "
4672 "The @code{_ctime} attribute is created for each new element in an element "
4673 "path."
4674 "\n"
4675 "When the @option{--inquire} option is passed then all remaining non-option "
4676 "arguments are retrieved via a server @emph{INQUIRE}."
4677 "\n"
4678 "@xref{Target Attribute}, for details about this special attribute."
4681 new_command("XPATH", 0, 1, xpath_command, _(
4682 "XPATH [--inquire] <expression>[<TAB>[value]]\n"
4683 "Evaluates an XPath @var{expression}. If no @var{value} argument is "
4684 "specified it is assumed the expression is a request to return a result. "
4685 "Otherwise, the result is set to the @var{value} argument and the document is "
4686 "updated. If there is no @var{value} after the @key{TAB} character, the value "
4687 "is assumed to be empty and the document is updated. For example:"
4688 "@sp 1\n"
4689 "@example\n"
4690 "XPATH //element[@@_name='password']@key{TAB}\n"
4691 "@end example\n"
4692 "@sp 1"
4693 "would clear the content of all @code{password} elements in the data file "
4694 "while leaving off the trailing @key{TAB} would return all @code{password} "
4695 "elements in @abbr{XML} format."
4696 "\n"
4697 "When the @option{--inquire} option is passed then all remaining non-option "
4698 "arguments are retrieved via a server @emph{INQUIRE}."
4699 "\n"
4700 "See @url{http://www.w3schools.com/xpath/xpath_syntax.asp} for @abbr{XPATH} "
4701 "expression syntax."
4704 new_command("XPATHATTR", 0, 1, xpathattr_command, _(
4705 "XPATHATTR [--inquire] SET|DELETE <name> <expression>[<TAB>[<value>]]\n"
4706 "Like the @code{XPATH} command (@pxref{XPATH}) but operates on element "
4707 "attributes and does not return a result. For the @var{SET} operation the "
4708 "@var{value} is optional but the field is required. If not specified then "
4709 "the attribute value will be empty. For example:"
4710 "@sp 1"
4711 "@example\n"
4712 "XPATHATTR SET password //element[@@_name='password']@key{TAB}\n"
4713 "@end example\n"
4714 "@sp 1"
4715 "would create an @code{password} attribute for each @code{password} element "
4716 "found in the document. The attribute value will be empty but still exist."
4717 "\n"
4718 "When the @option{--inquire} option is passed then all remaining non-option "
4719 "arguments are retrieved via a server @emph{INQUIRE}."
4720 "\n"
4721 "See @url{http://www.w3schools.com/xpath/xpath_syntax.asp} for @abbr{XPATH} "
4722 "expression syntax."
4725 new_command("IMPORT", 0, 1, import_command, _(
4726 "IMPORT [--root [!]element[<TAB>[!]child[..]]] <content>\n"
4727 "This command uses a server @emph{INQUIRE} to retrieve data from the client."
4728 "\n"
4729 "Like the @code{STORE} command (@pxref{STORE}), but the @var{content} "
4730 "argument is raw @abbr{XML} data. The content is created as a child of "
4731 "the element path specified with the @option{--root} option or at the "
4732 "document root when not specified. Existing elements of the same name will "
4733 "be overwritten."
4734 "\n"
4735 "The content must begin with an @abbr{XML} element node. @xref{Introduction}, "
4736 "for details."
4739 new_command("DUMP", 0, 1, dump_command, _(
4740 "DUMP\n"
4741 "Shows the in memory @abbr{XML} document with indenting. @xref{XPATH}, for "
4742 "dumping a specific node."
4745 new_command("LOCK", 0, 0, lock_command, _(
4746 "LOCK\n"
4747 "Locks the mutex associated with the opened file. This prevents other clients "
4748 "from sending commands to the same opened file until the client "
4749 "that sent this command either disconnects or sends the @code{UNLOCK} "
4750 "command. @xref{UNLOCK}."
4753 new_command("UNLOCK", 1, 0, unlock_command, _(
4754 "UNLOCK\n"
4755 "Unlocks the file mutex which was locked with the @code{LOCK} command or "
4756 "a commands' @option{--lock} option (@pxref{LOCK}, @pxref{OPEN}, "
4757 "@pxref{ISCACHED})."
4760 new_command("GETCONFIG", 1, 1, getconfig_command, _(
4761 "GETCONFIG [filename] <parameter>\n"
4762 "Returns the value of a @command{pwmd} configuration @var{parameter} with a "
4763 "data response. If no file has been opened then the value for @var{filename} "
4764 "or the default from the @samp{global} section will be returned. If a file "
4765 "has been opened and no @var{filename} is specified, a value previously "
4766 "set with the @code{OPTION} command (@pxref{OPTION}) will be returned."
4769 new_command("OPTION", 1, 1, option_command, _(
4770 "OPTION <NAME>=<VALUE>\n"
4771 "Sets a client option @var{name} to @var{value}. The value for an option is "
4772 "kept for the duration of the connection."
4773 "\n"
4774 "@table @asis\n"
4775 "@item DISABLE-PINENTRY\n"
4776 "Disable use of @command{pinentry} for passphrase retrieval. When set, a "
4777 "server inquire is sent to the client to obtain the passphrase. This option "
4778 "may be set as needed before the @code{OPEN} (@pxref{OPEN}), @code{PASSWD} "
4779 "(@pxref{PASSWD}) and @code{SAVE} (@pxref{SAVE}) commands."
4780 "\n"
4781 "@item PINENTRY-TIMEOUT\n"
4782 "Sets the number of seconds before a pinentry prompt will return an error "
4783 "while waiting for user input."
4784 "\n"
4785 "@item TTYNAME\n"
4786 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4787 "\n"
4788 "@item TTYTYPE\n"
4789 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4790 "\n"
4791 "@item DISPLAY\n"
4792 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4793 "\n"
4794 "@item PINENTRY-DESC\n"
4795 "Sets the description string of the @command{gpg-agent} and @command{pinentry} dialog."
4796 "\n"
4797 "@item PINENTRY-TITLE\n"
4798 "Sets the title string of the @command{gpg-agent} and @command{pinentry} dialog."
4799 "\n"
4800 "@item PINENTRY-PROMPT\n"
4801 "Sets the prompt string of the @command{gpg-agent} and @command{pinentry} dialog."
4802 "\n"
4803 "@item LC-CTYPE\n"
4804 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4805 "\n"
4806 "@item LC-MESSAGES\n"
4807 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4808 "\n"
4809 "@item NAME\n"
4810 "Associates the thread ID of the connection with the specified textual "
4811 "representation. Useful for debugging log messages."
4812 "\n"
4813 "@item LOCK-TIMEOUT\n"
4814 "When not @code{0}, the duration in tenths of a second to wait for the file "
4815 "mutex which has been locked by another thread to be released before returning "
4816 "an error. When @code{-1}, then an error will be returned immediately."
4817 "\n"
4818 "@item LOG-LEVEL\n"
4819 "An integer specifiying the logging level."
4820 "@end table\n"
4823 new_command("LS", 1, 1, ls_command, _(
4824 "LS\n"
4825 "Lists the available data files stored in the data directory "
4826 "(@file{~/.pwmd/data}). The result is a newline separated list of filenames."
4829 new_command("RESET", 1, 1, NULL, _(
4830 "RESET\n"
4831 "Closes the currently opened file but keeps any previously set client options."
4834 new_command("NOP", 1, 1, NULL, _(
4835 "NOP\n"
4836 "Does nothing. Always returns successfully."
4839 /* !END-HELP-TEXT! */
4840 new_command ("CANCEL", 1, 1, NULL, NULL);
4841 new_command ("END", 1, 1, NULL, NULL);
4842 new_command ("BYE", 1, 1, NULL, NULL);
4844 int i;
4845 for (i = 0; command_table[i]; i++);
4846 qsort (command_table, i - 1, sizeof (struct command_table_s *),
4847 sort_commands);
4850 gpg_error_t
4851 register_commands (assuan_context_t ctx)
4853 int i = 0, rc;
4855 for (; command_table[i]; i++)
4857 if (!command_table[i]->handler)
4858 continue;
4860 rc = assuan_register_command (ctx, command_table[i]->name,
4861 command_table[i]->handler,
4862 command_table[i]->help);
4863 if (rc)
4864 return rc;
4867 rc = assuan_register_bye_notify (ctx, bye_notify);
4868 if (rc)
4869 return rc;
4871 rc = assuan_register_reset_notify (ctx, reset_notify);
4872 if (rc)
4873 return rc;
4875 rc = assuan_register_pre_cmd_notify (ctx, command_startup);
4876 if (rc)
4877 return rc;
4879 return assuan_register_post_cmd_notify (ctx, command_finalize);