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/>.
29 #include <sys/types.h>
41 #include "pwmd-error.h"
46 #include "util-misc.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
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) \
86 client->crypto->agent->ctx = crypto->agent->ctx; \
87 crypto->agent->ctx = NULL; \
91 #define UPDATE_AGENT_CTX(client, crypto)
94 struct command_table_s
97 gpg_error_t (*handler
) (assuan_context_t
, char *line
);
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
);
111 unlock_file_mutex (struct client_s
*client
, int remove
)
115 // OPEN: keep the lock for the same file being reopened.
116 if (client
->flags
& FLAG_KEEP_LOCK
&& client
->flags
& FLAG_HAS_LOCK
)
119 if (!(client
->flags
& FLAG_HAS_LOCK
))
120 return GPG_ERR_NOT_LOCKED
;
122 rc
= cache_unlock_mutex (client
->md5file
, remove
);
124 rc
= GPG_ERR_INV_STATE
;
126 client
->flags
&= ~(FLAG_HAS_LOCK
| FLAG_LOCK_CMD
);
132 lock_file_mutex (struct client_s
*client
, int add
)
135 int timeout
= config_get_integer (client
->filename
, "cache_timeout");
137 if (client
->flags
& FLAG_HAS_LOCK
)
140 rc
= cache_lock_mutex (client
->ctx
, client
->md5file
,
141 client
->lock_timeout
, add
, timeout
);
143 client
->flags
|= FLAG_HAS_LOCK
;
149 file_modified (struct client_s
*client
, struct command_table_s
*cmd
)
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
))
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);
173 parse_xml (assuan_context_t ctx
, int new)
175 struct client_s
*client
= assuan_get_pointer (ctx
);
176 int cached
= client
->doc
!= NULL
;
181 client
->doc
= new_document ();
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
);
198 rc
= parse_doc ((char *) client
->crypto
->plaintext
,
199 client
->crypto
->plaintext_len
, (xmlDocPtr
*)&client
->doc
);
205 free_client (struct client_s
*client
)
208 xmlFreeDoc (client
->doc
);
211 xfree (client
->filename
);
212 xfree (client
->last_error
);
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
));
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
;
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
));
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
;
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;
257 if (crypto
&& crypto
->agent
)
258 memcpy (&crypto
->agent
->pinentry_opts
, &agent_pin_opts
,
259 sizeof(struct pinentry_option_s
));
264 open_finalize (assuan_context_t ctx
, char *key
, size_t keylen
)
266 struct client_s
*client
= assuan_get_pointer (ctx
);
268 struct cache_data_s
*cdata
= cache_get_data (client
->md5file
);
269 int cached
= 0, keyarg
= key
? 1 : 0;
271 unsigned char *salted_key
= NULL
;
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
);
287 cached
= cdata
!= NULL
;
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
,
303 client
->pinentry_opts
.timeout
= config_get_integer (client
->filename
,
306 rc
= getpin_common (client
->ctx
, client
->filename
, PINENTRY_OPEN
,
313 if (!IS_PKI (client
->crypto
))
315 if (client
->crypto
->hdr
.flags
& PWMD_FLAG_NO_PASSPHRASE
)
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
);
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
);
339 client
->pinentry_opts
.title
= str_asprintf (_ ("Bad passphrase (try %i of %i)"), pin_try
, pin_tries
);
344 if (client
->pinentry_opts
.title
!= pin_title
)
345 xfree (client
->pinentry_opts
.title
);
347 client
->pinentry_opts
.title
= pin_title
;
350 gcry_free (salted_key
);
354 cdata
= xcalloc (1, sizeof (struct cache_data_s
));
357 gcry_free (salted_key
);
358 return GPG_ERR_ENOMEM
;
361 cdata
->key
= salted_key
;
362 cdata
->keylen
= keysize
;
365 rc
= decrypt_data (client
->ctx
, client
->crypto
, NULL
, 0);
370 rc
= parse_xml (ctx
, client
->flags
& FLAG_NEW
);
372 free_cache_data_once (cdata
);
376 int timeout
= config_get_integer (client
->filename
,
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
);
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
)
407 : client
->crypto
->grip
, cdata
, timeout
))
411 free_cache_data_once (cdata
);
412 xmlFreeDoc (client
->doc
);
419 client
->flags
|= FLAG_OPEN
;
424 update_checksum (client
);
426 if (!rc
&& (client
->opts
& OPT_LOCK_ON_OPEN
))
427 rc
= do_lock (client
, 0);
433 req_cleanup (void *arg
)
438 strv_free ((char **) arg
);
442 parse_open_opt_lock (void *data
, void *value
)
444 struct client_s
*client
= data
;
446 client
->opts
|= OPT_LOCK_ON_OPEN
;
451 parse_opt_inquire (void *data
, void *value
)
453 struct client_s
*client
= data
;
456 client
->opts
|= OPT_INQUIRE
;
461 update_checksum (struct client_s
*client
)
465 struct cache_data_s
*cdata
;
466 gpg_error_t rc
= get_checksum (client
->filename
, &crc
, &len
);
473 cdata
= cache_get_data (client
->md5file
);
477 cdata
->crc
= xmalloc (len
);
478 memcpy (cdata
->crc
, crc
, len
);
485 validate_checksum (struct client_s
*client
, struct cache_data_s
*cdata
)
492 if (cdata
&& !cdata
->crc
)
493 return GPG_ERR_CHECKSUM
;
495 rc
= get_checksum (client
->filename
, &crc
, &len
);
500 n
= memcmp (cdata
->crc
, crc
, len
);
501 else if (client
->crc
)
502 n
= memcmp (client
->crc
, crc
, len
);
505 return n
? GPG_ERR_CHECKSUM
: 0;
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
;
516 if (!valid_filename (filename
))
517 return GPG_ERR_INV_VALUE
;
519 gcry_md_hash_buffer (GCRY_MD_MD5
, client
->md5file
, filename
,
521 client
->filename
= str_dup (filename
);
522 if (!client
->filename
)
523 return GPG_ERR_ENOMEM
;
526 cdata
= cache_get_data (client
->md5file
);
527 if (cdata
&& cdata
->doc
)
531 /* This will check that the key is cached in the agent which needs to
532 * be determined for files that share a keygrip. */
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
);
544 if (!rc
&& client
->thd
->remote
545 && config_get_boolean (client
->filename
, "tcp_require_key"))
546 rc
= GPG_ERR_KEY_EXPIRED
;
549 if (!rc
&& !password
)
551 rc
= read_data_header (client
->filename
, &client
->crypto
->hdr
,
555 if (IS_PKI (client
->crypto
))
557 gcry_sexp_build (&client
->crypto
->pkey_sexp
, NULL
, "%S",
559 gcry_pk_get_keygrip (client
->crypto
->pkey_sexp
,
560 client
->crypto
->grip
);
561 gcry_sexp_build (&client
->crypto
->sigpkey_sexp
, NULL
, "%S",
563 gcry_pk_get_keygrip (client
->crypto
->sigpkey_sexp
,
564 client
->crypto
->sign_grip
);
569 rc
= open_finalize (ctx
, NULL
, 0);
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. */
580 log_write ("%s: %s", filename
, pwmd_strerror (rc
));
581 rc
= cache_clear (client
->md5file
);
582 send_status_all (STATUS_CACHE
, NULL
);
589 rc
= read_data_file (client
->filename
, client
->crypto
);
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
));
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);
607 if (password
&& IS_PKI (client
->crypto
))
610 rc
= set_agent_passphrase (client
->crypto
, password
, strlen (password
));
616 rc
= open_finalize (ctx
, (char *)password
, password
? strlen (password
) : 0);
621 open_command (assuan_context_t ctx
, char *line
)
624 struct client_s
*client
= assuan_get_pointer (ctx
);
625 char **req
, *filename
;
626 unsigned char md5file
[16];
628 assuan_peercred_t peer
;
629 struct argv_s
*args
[] = {
630 &(struct argv_s
) {"lock", OPTION_TYPE_NOARG
, parse_open_opt_lock
},
634 rc
= parse_options (&line
, args
, client
);
636 return send_error (ctx
, rc
);
638 req
= str_split (line
, " ", 2);
640 return send_error (ctx
, GPG_ERR_SYNTAX
);
642 rc
= do_validate_peer (ctx
, req
[0], &peer
);
646 return send_error (ctx
, rc
);
649 pthread_cleanup_push (req_cleanup
, req
);
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
;
662 client
->flags
|= FLAG_KEEP_LOCK
;
664 cleanup_client (client
);
666 client
->flags
|= flags
;
667 client
->flags
&= ~(FLAG_LOCK_CMD
);
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);
678 char *password
= req
[1] && *req
[1] ? req
[1] : NULL
;
681 if (IS_PKI (client
->crypto
))
682 rc
= set_pinentry_mode (client
->crypto
->agent
,
683 (client
->flags
& FLAG_NO_PINENTRY
) ? "loopback"
688 rc
= do_open (ctx
, filename
, password
);
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
);
702 (void) kill_scd (client
->crypto
->agent
);
704 return send_error (ctx
, rc
);
708 parse_opt_no_passphrase (void *data
, void *value
)
710 struct client_s
*client
= data
;
713 client
->opts
|= OPT_NO_PASSPHRASE
;
718 parse_save_opt_no_agent (void *data
, void *value
)
720 struct client_s
*client
= data
;
722 client
->opts
|= OPT_NO_AGENT
;
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
;
734 return GPG_ERR_INV_VALUE
;
736 hdr
->flags
= set_cipher_flag (hdr
->flags
, algo
);
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
;
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
);
755 return GPG_ERR_INV_ARG
;
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
;
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
);
774 return GPG_ERR_INV_ARG
;
779 parse_opt_s2k_count (void *data
, void *value
)
781 struct client_s
*client
= data
;
785 return GPG_ERR_INV_VALUE
;
787 client
->crypto
->save
.s2k_count
= strtoul (v
, NULL
, 10);
792 parse_save_opt_iterations (void *data
, void *value
)
794 struct client_s
*client
= data
;
799 return GPG_ERR_INV_VALUE
;
802 n
= strtoull (v
, &p
, 10);
803 if (n
== UINT64_MAX
&& errno
)
804 return gpg_error_from_errno (errno
);
806 return GPG_ERR_INV_VALUE
;
808 client
->crypto
->save
.hdr
.iterations
= n
;
813 save_finalize (assuan_context_t ctx
)
815 struct client_s
*client
= assuan_get_pointer (ctx
);
817 xmlChar
*xmlbuf
= NULL
;
822 xmlDocDumpFormatMemory (client
->doc
, &xmlbuf
, &xmlbuflen
, 0);
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
));
840 gcry_sexp_t pubkey
= client
->crypto
->save
.pkey
;
841 gcry_sexp_t sigkey
= client
->crypto
->save
.sigpkey
;
844 pubkey
= client
->crypto
->pkey_sexp
;
848 sigkey
= client
->crypto
->sigpkey_sexp
;
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
)
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
);
868 gcry_sexp_release (pubkey
);
870 client
->crypto
->save
.pkey
= NULL
;
874 gcry_pk_get_keygrip (sigkey
, client
->crypto
->sign_grip
);
876 if (sigkey
== client
->crypto
->save
.sigpkey
)
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
);
888 gcry_sexp_release (sigkey
);
890 client
->crypto
->save
.sigpkey
= NULL
;
899 rc
= save_common (client
->filename
, client
->crypto
, xmlbuf
, xmlbuflen
,
900 key
, keylen
, &cached
, client
->opts
& OPT_NO_AGENT
);
904 if (!rc
&& (!cached
|| (client
->flags
& FLAG_NEW
)))
905 send_status_all (STATUS_CACHE
, NULL
);
909 rc
= update_checksum (client
);
910 client
->flags
&= ~(FLAG_NEW
);
914 pthread_cleanup_pop (1); // xmlFree
919 parse_opt_reset (void *data
, void *value
)
921 struct client_s
*client
= data
;
924 client
->opts
|= OPT_RESET
;
929 save_command (assuan_context_t ctx
, char *line
)
931 struct client_s
*client
= assuan_get_pointer (ctx
);
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
,
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
},
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
);
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
);
988 rc
= cache_iscached (client
->filename
, &defer
);
989 if (gpg_err_code (rc
) == GPG_ERR_ENOENT
&& client
->flags
& FLAG_NEW
)
991 else if (gpg_err_code (rc
) == GPG_ERR_NO_DATA
)
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
);
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
);
1009 rc
= update_element_mtime (xmlDocGetRootElement (client
->doc
));
1012 return send_error (ctx
, rc
);
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"
1023 if (!(client
->flags
& FLAG_NEW
))
1025 struct crypto_s
*crypto
;
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
);
1035 rc
= init_client_crypto (&crypto
);
1037 crypto
->client_ctx
= client
->ctx
;
1041 rc
= decrypt_common (client
->ctx
, client
->opts
&OPT_INQUIRE
, crypto
,
1042 client
->filename
, &key
, &keylen
);
1045 cleanup_crypto (&crypto
);
1049 rc
= send_status (client
->ctx
, STATUS_GENKEY
, NULL
);
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
;
1062 idata
.line
= params
;
1063 idata
.len
= strlen (params
);
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);
1078 rc
= save_finalize (ctx
);
1080 cleanup_crypto_stage1 (client
->crypto
);
1082 (void) kill_scd (client
->crypto
->agent
);
1084 return send_error (ctx
, rc
);
1088 do_delete (assuan_context_t ctx
, char *line
)
1090 struct client_s
*client
= assuan_get_pointer (ctx
);
1095 if (strchr (line
, '\t'))
1096 req
= str_split (line
, "\t", 0);
1098 req
= str_split (line
, " ", 0);
1101 return GPG_ERR_SYNTAX
;
1103 n
= find_root_element (client
, client
->doc
, &req
, &rc
, NULL
, 0, 0);
1111 * No sub-node defined. Remove the entire node (root element).
1117 rc
= unlink_node (n
);
1126 find_elements (client
, client
->doc
, n
->children
, req
+ 1, &rc
, NULL
, NULL
, NULL
,
1134 rc
= unlink_node (n
);
1142 delete_command (assuan_context_t ctx
, char *line
)
1144 struct client_s
*client
= assuan_get_pointer (ctx
);
1146 struct argv_s
*args
[] = {
1147 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
1151 rc
= parse_options (&line
, args
, client
);
1153 return send_error (ctx
, rc
);
1155 if (client
->opts
& OPT_INQUIRE
)
1157 unsigned char *result
;
1160 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1162 return send_error (ctx
, rc
);
1164 line
= (char *) result
;
1167 rc
= do_delete (ctx
, line
);
1169 if (client
->opts
& OPT_INQUIRE
)
1172 return send_error (ctx
, rc
);
1176 store_command (assuan_context_t ctx
, char *line
)
1178 struct client_s
*client
= assuan_get_pointer (ctx
);
1181 unsigned char *result
;
1183 xmlNodePtr n
, parent
;
1185 char *content
= NULL
;
1187 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1189 return send_error (ctx
, rc
);
1191 req
= str_split ((char *) result
, "\t", 0);
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
))
1202 return send_error (ctx
, GPG_ERR_INV_VALUE
);
1205 if (has_content
|| !*req
[len
- 1])
1208 content
= req
[len
- 1];
1209 req
[len
- 1] = NULL
;
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
);
1220 return send_error (ctx
, rc
);
1229 return send_error (ctx
, rc
);
1234 if (req
[1] && *req
[1])
1237 parent
= create_elements_cb (client
, n
, req
+ 1, &rc
, NULL
);
1239 parent
= find_elements (client
, client
->doc
, n
->children
, req
+ 1, &rc
,
1240 NULL
, NULL
, create_elements_cb
, 0, 0, NULL
,
1246 n
= find_text_node (parent
->children
);
1248 xmlNodeSetContent (n
, (xmlChar
*) content
);
1250 xmlNodeAddContent (parent
, (xmlChar
*) content
);
1252 update_element_mtime (parent
);
1257 return send_error (ctx
, rc
);
1261 xfer_data (assuan_context_t ctx
, const char *line
, int total
)
1266 int progress
= config_get_integer ("global", "xfer_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
);
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
);
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
)
1300 while (!rc
&& sent
< total
);
1306 do_get (assuan_context_t ctx
, char *line
)
1308 struct client_s
*client
= assuan_get_pointer (ctx
);
1313 req
= str_split (line
, "\t", 0);
1318 return GPG_ERR_SYNTAX
;
1321 n
= find_root_element (client
, client
->doc
, &req
, &rc
, NULL
, 0, 0);
1330 find_elements (client
, client
->doc
, n
->children
, req
+ 1, &rc
, NULL
, NULL
, NULL
,
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
));
1349 get_command (assuan_context_t ctx
, char *line
)
1351 struct client_s
*client
= assuan_get_pointer (ctx
);
1353 struct argv_s
*args
[] = {
1354 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
1358 rc
= parse_options (&line
, args
, client
);
1360 return send_error (ctx
, rc
);
1362 if (client
->opts
& OPT_INQUIRE
)
1364 unsigned char *result
;
1367 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1369 return send_error (ctx
, rc
);
1371 line
= (char *) result
;
1374 rc
= do_get (ctx
, line
);
1376 if (client
->opts
& OPT_INQUIRE
)
1379 return send_error (ctx
, rc
);
1382 static void list_command_cleanup1 (void *arg
);
1384 realpath_command (assuan_context_t ctx
, char *line
)
1386 struct string_s
*string
= NULL
;
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
},
1394 rc
= parse_options (&line
, args
, client
);
1396 return send_error (ctx
, rc
);
1398 if (client
->opts
& OPT_INQUIRE
)
1400 unsigned char *result
;
1403 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1405 return send_error (ctx
, rc
);
1407 line
= (char *) result
;
1410 rc
= build_realpath (client
, client
->doc
, line
, &string
);
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
)
1421 return send_error (ctx
, rc
);
1425 list_command_cleanup1 (void *arg
)
1428 string_free ((struct string_s
*) arg
, 1);
1432 list_command_cleanup2 (void *arg
)
1434 struct element_list_s
*elements
= arg
;
1440 int total
= slist_length (elements
->list
);
1443 for (i
= 0; i
< total
; i
++)
1445 char *tmp
= slist_nth_data (elements
->list
, i
);
1449 slist_free (elements
->list
);
1452 if (elements
->prefix
)
1453 xfree (elements
->prefix
);
1456 strv_free (elements
->req
);
1463 parse_list_opt_norecurse (void *data
, void *value
)
1465 struct client_s
*client
= data
;
1467 client
->opts
&= ~(OPT_LIST_RECURSE
);
1472 parse_list_opt_verbose (void *data
, void *value
)
1474 struct client_s
*client
= data
;
1476 client
->opts
|= OPT_LIST_VERBOSE
;
1481 parse_list_opt_target (void *data
, void *value
)
1483 struct client_s
*client
= data
;
1485 client
->opts
|= OPT_LIST_WITH_TARGET
;
1490 parse_list_opt_all (void *data
, void *value
)
1492 struct client_s
*client
= data
;
1494 client
->opts
|= OPT_LIST_ALL
;
1499 list_path_once (struct client_s
*client
, char *line
,
1500 struct element_list_s
*elements
, struct string_s
*result
)
1504 elements
->req
= str_split (line
, " ", 0);
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
)
1514 int total
= slist_length (elements
->list
);
1517 rc
= GPG_ERR_NO_DATA
;
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");
1535 rc
= GPG_ERR_NO_DATA
;
1542 has_list_flag (char *path
, char *flags
)
1546 while (*p
&& *++p
!= ' ');
1555 for (f
= flags
; *f
&& *f
!= ' '; f
++)
1566 do_list (assuan_context_t ctx
, char *line
)
1568 struct client_s
*client
= assuan_get_pointer (ctx
);
1570 struct element_list_s
*elements
= NULL
;
1572 elements
= xcalloc (1, sizeof (struct element_list_s
));
1574 return GPG_ERR_ENOMEM
;
1576 elements
->recurse
= client
->opts
& OPT_LIST_RECURSE
;
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
);
1593 if (client
->opts
& OPT_LIST_ALL
)
1595 char **roots
= str_split (str
->str
, "\n", 0);
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" : "");
1613 elements
= xcalloc (1, sizeof (struct element_list_s
));
1616 rc
= GPG_ERR_ENOMEM
;
1620 elements
->recurse
= client
->opts
& OPT_LIST_RECURSE
;
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);
1632 string_append (str
, "\n");
1635 pthread_cleanup_pop (1);
1639 rc
= xfer_data (ctx
, str
->str
, str
->len
);
1642 pthread_cleanup_pop (1);
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
);
1651 rc
= xfer_data (ctx
, str
->str
, str
->len
);
1653 pthread_cleanup_pop (1);
1654 pthread_cleanup_pop (1);
1659 list_command (assuan_context_t ctx
, char *line
)
1661 struct client_s
*client
= assuan_get_pointer (ctx
);
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
},
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
);
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
;
1690 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1692 return send_error (ctx
, rc
);
1694 line
= (char *) result
;
1697 rc
= do_list (ctx
, line
);
1699 if (client
->opts
& OPT_INQUIRE
)
1702 return send_error (ctx
, rc
);
1706 * req[0] - element path
1709 attribute_list (assuan_context_t ctx
, char **req
)
1711 struct client_s
*client
= assuan_get_pointer (ctx
);
1712 char **attrlist
= NULL
;
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);
1742 n
= find_elements (client
, client
->doc
, n
->children
, path
+ 1, &rc
,
1743 NULL
, NULL
, NULL
, 0, 0, NULL
, 0);
1754 for (a
= n
->properties
; a
; a
= a
->next
)
1758 if ((pa
= xrealloc (attrlist
, (i
+ 2) * sizeof (char *))) == NULL
)
1761 strv_free (attrlist
);
1763 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1764 pwmd_strerror (GPG_ERR_ENOMEM
));
1765 return GPG_ERR_ENOMEM
;
1770 attrlist
[i
] = str_asprintf ("%s %s", (char *) a
->name
,
1772 && an
->content
? (char *) an
->content
: "");
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
;
1786 return GPG_ERR_NO_DATA
;
1788 line
= strv_join ("\n", attrlist
);
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);
1807 * req[0] - attribute
1808 * req[1] - element path
1811 attribute_delete (struct client_s
*client
, char **req
)
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);
1838 n
= find_elements (client
, client
->doc
, n
->children
, path
+ 1, &rc
,
1839 NULL
, NULL
, NULL
, 0, 0, NULL
, 0);
1844 rc
= delete_attribute (n
, (xmlChar
*) req
[0]);
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
;
1863 *rc
= GPG_ERR_ENOMEM
;
1864 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1865 pwmd_strerror (GPG_ERR_ENOMEM
));
1870 n
= find_root_element (client
, client
->doc
, &req
, rc
, NULL
, 0, 0);
1873 if (*rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
1876 *rc
= new_root_element (client
, client
->doc
, req
[0]);
1882 else if (n
== parent
)
1884 *rc
= GPG_ERR_CONFLICT
;
1891 n
= create_target_elements_cb (client
, n
, req
+ 1, rc
, NULL
);
1893 n
= find_elements (client
, client
->doc
, n
->children
, req
+ 1, rc
,
1894 NULL
, NULL
, create_target_elements_cb
, 0, 0,
1901 * Reset the position of the element tree now that the elements
1902 * have been created.
1907 n
= find_root_element (client
, client
->doc
, &req
, rc
, NULL
, 0, 0);
1911 n
= find_elements (client
, client
->doc
, n
->children
, req
+ 1, rc
,
1912 NULL
, NULL
, NULL
, 0, 0, NULL
, 0);
1919 strv_free (req_orig
);
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
1935 target_attribute (struct client_s
*client
, char **req
)
1937 char **src
, **dst
, *line
= NULL
, **odst
= NULL
;
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
;
1968 odst
= strv_dup (dst
);
1971 rc
= GPG_ERR_ENOMEM
;
1975 n
= find_root_element (client
, client
->doc
, &dst
, &rc
, NULL
, 0, 0);
1977 * Make sure the destination element path exists.
1984 n
= find_elements (client
, client
->doc
, n
->children
, dst
+ 1, &rc
,
1985 NULL
, NULL
, NULL
, 0, 0, NULL
, 0);
1990 rc
= validate_target_attribute (client
, client
->doc
, req
[0], n
);
1991 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
1994 n
= create_element_path (client
, &src
, &rc
, NULL
);
1998 line
= strv_join ("\t", odst
);
2001 rc
= GPG_ERR_ENOMEM
;
2005 rc
= add_attribute (n
, "target", line
);
2016 * req[0] - attribute
2017 * req[1] - element path
2020 attribute_get (assuan_context_t ctx
, char **req
)
2022 struct client_s
*client
= assuan_get_pointer (ctx
);
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
;
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);
2049 n
= find_elements (client
, client
->doc
, n
->children
, path
+ 1, &rc
,
2050 NULL
, NULL
, NULL
, 0, 0, NULL
, 0);
2058 if ((a
= xmlGetProp (n
, (xmlChar
*) req
[0])) == NULL
)
2059 return GPG_ERR_NOT_FOUND
;
2061 pthread_cleanup_push (xmlFree
, a
);
2064 rc
= xfer_data (ctx
, (char *) a
, xmlStrlen (a
));
2066 rc
= GPG_ERR_NO_DATA
;
2068 pthread_cleanup_pop (1);
2077 * req[0] - attribute
2078 * req[1] - element path
2082 attribute_set (struct client_s
*client
, char **req
)
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);
2117 n
= find_elements (client
, client
->doc
, n
->children
, path
+ 1, &rc
,
2118 NULL
, NULL
, NULL
, 0, 0, NULL
, 0);
2124 rc
= add_attribute (n
, req
[0], req
[2]);
2133 * req[1] - attribute name or element path if command is LIST
2134 * req[2] - element path
2135 * req[2] - element path or value
2139 do_attr (assuan_context_t ctx
, char *line
)
2141 struct client_s
*client
= assuan_get_pointer (ctx
);
2145 req
= str_split (line
, " ", 4);
2146 if (!req
|| !req
[0] || !req
[1])
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);
2163 rc
= GPG_ERR_SYNTAX
;
2165 pthread_cleanup_pop (1);
2170 attr_command (assuan_context_t ctx
, char *line
)
2172 struct client_s
*client
= assuan_get_pointer (ctx
);
2174 struct argv_s
*args
[] = {
2175 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
2179 rc
= parse_options (&line
, args
, client
);
2181 return send_error (ctx
, rc
);
2183 if (client
->opts
& OPT_INQUIRE
)
2185 unsigned char *result
;
2188 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2190 return send_error (ctx
, rc
);
2192 line
= (char *) result
;
2195 rc
= do_attr (ctx
, line
);
2197 if (client
->opts
& OPT_INQUIRE
)
2200 return send_error (ctx
, rc
);
2204 parse_iscached_opt_lock (void *data
, void *value
)
2206 struct client_s
*client
= data
;
2209 client
->opts
|= OPT_LOCK
;
2214 iscached_command (assuan_context_t ctx
, char *line
)
2216 struct client_s
*client
= assuan_get_pointer (ctx
);
2218 struct argv_s
*args
[] = {
2219 &(struct argv_s
) {"lock", OPTION_TYPE_NOARG
, parse_iscached_opt_lock
},
2223 if (!line
|| !*line
)
2224 return send_error (ctx
, GPG_ERR_SYNTAX
);
2226 rc
= parse_options (&line
, args
, client
);
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);
2249 return send_error (ctx
, rc
);
2253 clearcache_command (assuan_context_t ctx
, char *line
)
2255 gpg_error_t rc
= 0, all_rc
= 0;
2256 unsigned char md5file
[16];
2260 struct client_thread_s
*once
= NULL
;
2263 MUTEX_LOCK (&cn_mutex
);
2264 pthread_cleanup_push (cleanup_mutex_cb
, &cn_mutex
);
2266 if (!line
|| !*line
)
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
;
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
2287 if (thd
->cl
->filename
)
2289 rc
= do_validate_peer (ctx
, thd
->cl
->filename
, &peer
);
2290 all_rc
= !all_rc
? rc
: all_rc
;
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
))
2305 if (!thd
->cl
->filename
||
2306 cache_iscached (thd
->cl
->filename
,
2307 NULL
) == GPG_ERR_NO_DATA
)
2313 cache_defer_clear (thd
->cl
->md5file
);
2316 else if (gpg_err_code (rc
) == GPG_ERR_NO_DATA
)
2324 rc
= cache_clear (thd
->cl
->md5file
);
2325 cache_unlock_mutex (thd
->cl
->md5file
, 0);
2333 /* A single data filename was specified. Lock only this data file
2334 * mutex and free the cache entry. */
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,
2344 if (gpg_err_code (rc
) == GPG_ERR_LOCKED
)
2346 if (pthread_equal (pthread_self (), thd
->tid
))
2353 rc
= cache_clear (thd
->cl
->md5file
);
2354 cache_unlock_mutex (thd
->cl
->md5file
, 0);
2358 cache_defer_clear (thd
->cl
->md5file
);
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. */
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);
2387 send_status_all (STATUS_CACHE
, NULL
);
2389 /* One or more files were locked while clearing all cache entries. */
2393 return send_error (ctx
, rc
);
2397 cachetimeout_command (assuan_context_t ctx
, char *line
)
2400 char **req
= str_split (line
, " ", 0);
2403 assuan_peercred_t peer
;
2405 if (!req
|| !*req
|| !req
[1])
2408 return send_error (ctx
, GPG_ERR_SYNTAX
);
2412 timeout
= (int) strtol (req
[1], &p
, 10);
2413 if (errno
!= 0 || *p
|| timeout
< -1)
2416 return send_error (ctx
, GPG_ERR_SYNTAX
);
2419 rc
= do_validate_peer (ctx
, req
[0], &peer
);
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
)
2429 MUTEX_LOCK (&rcfile_mutex
);
2430 config_set_int_param (&global_config
, req
[0], "cache_timeout",
2432 MUTEX_UNLOCK (&rcfile_mutex
);
2437 return send_error (ctx
, rc
);
2441 dump_command (assuan_context_t ctx
, char *line
)
2445 struct client_s
*client
= assuan_get_pointer (ctx
);
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);
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
);
2469 getconfig_command (assuan_context_t ctx
, char *line
)
2471 struct client_s
*client
= assuan_get_pointer (ctx
);
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
);
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
);
2497 rc
= read_data_header (fp
, &crypto
->hdr
, NULL
, NULL
);
2501 gcry_cipher_algo_name (cipher_to_gcrypt (crypto
->hdr
.flags
));
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
);
2519 else if (!strcmp (paramp
, "cipher_iterations") && fp
)
2521 struct crypto_s
*crypto
= NULL
;
2523 rc
= init_client_crypto (&crypto
);
2526 rc
= read_data_header (fp
, &crypto
->hdr
, NULL
, NULL
);
2529 tmp
= str_asprintf ("%llu",
2530 (unsigned long long) crypto
->hdr
.
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
);
2545 else if (!strcmp (paramp
, "passphrase"))
2546 return send_error (ctx
, GPG_ERR_UNKNOWN_OPTION
);
2548 p
= config_get_value (fp
? fp
: "global", paramp
);
2550 return send_error (ctx
, GPG_ERR_UNKNOWN_OPTION
);
2552 tmp
= expand_homedir (p
);
2556 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
2557 pwmd_strerror (GPG_ERR_ENOMEM
));
2558 return send_error (ctx
, GPG_ERR_ENOMEM
);
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
);
2571 xmlXPathContextPtr xp
;
2572 xmlXPathObjectPtr result
;
2578 xpath_command_cleanup (void *arg
)
2580 struct xpath_s
*xpath
= arg
;
2585 req_cleanup (xpath
->req
);
2588 xmlBufferFree (xpath
->buf
);
2591 xmlXPathFreeObject (xpath
->result
);
2594 xmlXPathFreeContext (xpath
->xp
);
2598 do_xpath (assuan_context_t ctx
, char *line
)
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
);
2614 rc
= GPG_ERR_BAD_DATA
;
2619 xmlXPathEvalExpression ((xmlChar
*) xpath
->req
[0], xpath
->xp
);
2622 rc
= GPG_ERR_BAD_DATA
;
2626 if (xmlXPathNodeSetIsEmpty (xpath
->result
->nodesetval
))
2628 rc
= GPG_ERR_ELEMENT_NOT_FOUND
;
2632 rc
= recurse_xpath_nodeset (client
->doc
, xpath
->result
->nodesetval
,
2633 (xmlChar
*) xpath
->req
[1], &xpath
->buf
, 0,
2637 else if (!xpath
->req
[1] && !xmlBufferLength (xpath
->buf
))
2639 rc
= GPG_ERR_NO_DATA
;
2642 else if (xpath
->req
[1])
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);
2653 xpath_command_cleanup (xpath
);
2658 xpath_command (assuan_context_t ctx
, char *line
)
2660 struct client_s
*client
= assuan_get_pointer (ctx
);
2662 struct argv_s
*args
[] = {
2663 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
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
);
2674 return send_error (ctx
, rc
);
2676 if (client
->opts
& OPT_INQUIRE
)
2678 unsigned char *result
;
2681 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2683 return send_error (ctx
, rc
);
2685 line
= (char *) result
;
2688 if (!line
|| !*line
)
2689 rc
= GPG_ERR_SYNTAX
;
2692 rc
= do_xpath (ctx
, line
);
2694 if (client
->opts
& OPT_INQUIRE
)
2697 return send_error (ctx
, rc
);
2701 do_xpathattr (assuan_context_t ctx
, char *line
)
2703 struct client_s
*client
= assuan_get_pointer (ctx
);
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
;
2715 rc
= GPG_ERR_SYNTAX
;
2719 if (!strcasecmp (req
[0], "SET"))
2721 else if (!strcasecmp (req
[0], "DELETE"))
2725 rc
= GPG_ERR_SYNTAX
;
2729 if (!req
[1] || !req
[2])
2731 rc
= GPG_ERR_SYNTAX
;
2735 if ((xpath
->req
= str_split (req
[2], "\t", 3)) == NULL
)
2737 rc
= GPG_ERR_ENOMEM
;
2741 if (!xpath
->req
[0] || (!xpath
->req
[1] && !cmd
) || (xpath
->req
[1] && cmd
))
2743 rc
= GPG_ERR_SYNTAX
;
2747 xpath
->xp
= xmlXPathNewContext (client
->doc
);
2750 rc
= GPG_ERR_BAD_DATA
;
2754 xpath
->result
= xmlXPathEvalExpression ((xmlChar
*) xpath
->req
[0], xpath
->xp
);
2757 rc
= GPG_ERR_BAD_DATA
;
2761 if (xmlXPathNodeSetIsEmpty (xpath
->result
->nodesetval
))
2763 rc
= GPG_ERR_ELEMENT_NOT_FOUND
;
2767 rc
= recurse_xpath_nodeset (client
->doc
, xpath
->result
->nodesetval
,
2768 (xmlChar
*) xpath
->req
[1], &xpath
->buf
, cmd
,
2769 (xmlChar
*) req
[1]);
2772 xpath_command_cleanup (xpath
);
2777 /* XPATHATTR SET|DELETE <name> <expression>[<TAB>[value]] */
2779 xpathattr_command (assuan_context_t ctx
, char *line
)
2781 struct client_s
*client
= assuan_get_pointer (ctx
);
2783 struct argv_s
*args
[] = {
2784 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
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
);
2795 return send_error (ctx
, rc
);
2797 if (client
->opts
& OPT_INQUIRE
)
2799 unsigned char *result
;
2802 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2804 return send_error (ctx
, rc
);
2806 line
= (char *) result
;
2809 if (!line
|| !*line
)
2810 rc
= GPG_ERR_SYNTAX
;
2813 rc
= do_xpathattr (ctx
, line
);
2815 if (client
->opts
& OPT_INQUIRE
)
2818 return send_error (ctx
, rc
);
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
;
2830 if (!content
|| !*content
)
2833 return GPG_ERR_SYNTAX
;
2837 dst_path
= str_split (root_element
, "\t", 0);
2839 if (dst_path
&& !valid_element_path (dst_path
, 0))
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);
2854 rc
= GPG_ERR_BAD_DATA
;
2858 root
= xmlDocGetRootElement (doc
);
2859 xmlNodePtr root_orig
= root
->children
;
2860 root
= root
->children
;
2861 rc
= validate_import (root
);
2870 char **path
= strv_dup (dst_path
);
2873 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
2874 pwmd_strerror (GPG_ERR_ENOMEM
));
2875 rc
= GPG_ERR_ENOMEM
;
2879 xmlChar
*a
= xmlGetProp (root
, (xmlChar
*) "_name");
2883 rc
= GPG_ERR_ENOMEM
;
2887 if (strv_printf (&path
, "%s", (char *) a
) == 0)
2890 rc
= GPG_ERR_ENOMEM
;
2895 n
= find_root_element (client
, client
->doc
, &path
, &rc
, NULL
, 0, 0);
2896 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
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
)
2921 if (rc
== GPG_ERR_ELEMENT_NOT_FOUND
)
2923 n
= create_element_path (client
, &path
, &rc
, NULL
);
2930 copy
= xmlCopyNodeList (root
->children
);
2931 n
= xmlAddChildList (n
, copy
);
2933 rc
= GPG_ERR_ENOMEM
;
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
;
2951 if ((a
= xmlGetProp (root
, (xmlChar
*) "_name")) == NULL
)
2953 rc
= GPG_ERR_SYNTAX
;
2957 char *tmp
= str_dup ((char *) a
);
2959 int literal
= is_literal_element (&tmp
);
2961 if (!valid_xml_element ((xmlChar
*) tmp
) || literal
)
2964 rc
= GPG_ERR_INV_VALUE
;
2968 if (strv_printf (&path
, "%s", tmp
) == 0)
2971 rc
= GPG_ERR_ENOMEM
;
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
;
2983 /* Overwriting the existing tree. */
2987 xmlFreeNodeList (n
);
2991 xmlSetProp (root
, (xmlChar
*) "_name", (xmlChar
*) path
[0]);
2992 n
= xmlCopyNode (root
, 1);
2993 n
= xmlAddChildList (xmlDocGetRootElement (client
->doc
), n
);
2998 rc
= update_element_mtime (n
->parent
);
3000 for (root
= root_orig
->next
; root
; root
= root
->next
)
3002 if (root
->type
== XML_ELEMENT_NODE
)
3015 strv_free (dst_path
);
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
;
3030 import_command (assuan_context_t ctx
, char *line
)
3033 struct client_s
*client
= assuan_get_pointer (ctx
);
3034 unsigned char *result
;
3036 struct argv_s
*args
[] = {
3037 &(struct argv_s
) {"root", OPTION_TYPE_ARG
, parse_import_opt_root
},
3041 xfree (client
->import_root
);
3042 client
->import_root
= NULL
;
3043 rc
= parse_options (&line
, args
, client
);
3045 return send_error (ctx
, rc
);
3047 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
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
);
3058 do_lock (struct client_s
*client
, int add
)
3060 gpg_error_t rc
= lock_file_mutex (client
, add
);
3063 client
->flags
|= FLAG_LOCK_CMD
;
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
);
3078 unlock_command (assuan_context_t ctx
, char *line
)
3080 struct client_s
*client
= assuan_get_pointer (ctx
);
3083 rc
= unlock_file_mutex (client
, 0);
3084 return send_error (ctx
, rc
);
3088 option_command (assuan_context_t ctx
, char *line
)
3090 struct client_s
*client
= assuan_get_pointer (ctx
);
3092 struct pinentry_option_s
*pin_opts
= &client
->pinentry_opts
;
3094 struct agent_s
*agent
= client
->crypto
->agent
;
3096 char namebuf
[255] = { 0 };
3097 char *name
= namebuf
;
3098 char *value
= NULL
, *p
;
3100 p
= strchr (line
, '=');
3102 strncpy (namebuf
, line
, sizeof(namebuf
));
3105 strncpy (namebuf
, line
, strlen (line
)-strlen (p
));
3109 log_write1 ("OPTION name='%s' value='%s'", name
, value
);
3111 if (strcasecmp (name
, (char *) "log_level") == 0)
3117 l
= strtol (value
, NULL
, 10);
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
);
3128 else if (strcasecmp (name
, (char *) "lock-timeout") == 0)
3135 n
= strtol (value
, &p
, 10);
3137 return send_error (ctx
, GPG_ERR_INV_VALUE
);
3140 client
->lock_timeout
= n
;
3143 else if (strcasecmp (name
, (char *) "NAME") == 0)
3145 char *tmp
= pthread_getspecific (thread_name_key
);
3150 if (!value
|| !*value
)
3152 pthread_setspecific (thread_name_key
, str_dup (""));
3156 pthread_setspecific (thread_name_key
, str_dup (value
));
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
);
3167 rc
= set_agent_option (client
->crypto
->agent
, "lc-messages", value
);
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
);
3178 rc
= set_agent_option (client
->crypto
->agent
, "lc-ctype", value
);
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
);
3189 rc
= set_agent_option (client
->crypto
->agent
, "ttyname", value
);
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
);
3200 rc
= set_agent_option (client
->crypto
->agent
, "ttytype", value
);
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
);
3211 rc
= set_agent_option (client
->crypto
->agent
, "display", value
);
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)
3244 n
= (int) strtol (value
, &p
, 10);
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
);
3257 else if (strcasecmp (name
, "disable-pinentry") == 0)
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
);
3270 client
->flags
|= FLAG_NO_PINENTRY
;
3272 client
->flags
&= ~FLAG_NO_PINENTRY
;
3277 if (client
->flags
& FLAG_NO_PINENTRY
)
3278 rc
= set_agent_option (client
->crypto
->agent
, "pinentry-mode",
3281 rc
= set_agent_option (client
->crypto
->agent
, "pinentry-mode",
3285 return send_error (ctx
, rc
);
3290 return send_error (ctx
, GPG_ERR_UNKNOWN_OPTION
);
3294 if (!rc
&& use_agent
&& agent
)
3296 rc
= pinentry_merge_options (&client
->crypto
->agent
->pinentry_opts
,
3301 return send_error (ctx
, rc
);
3305 do_rename (assuan_context_t ctx
, char *line
)
3307 struct client_s
*client
= assuan_get_pointer (ctx
);
3309 char **req
, **src
, *dst
;
3312 req
= str_split (line
, " ", 0);
3314 if (!req
|| !req
[0] || !req
[1])
3317 return GPG_ERR_SYNTAX
;
3321 is_literal_element (&dst
);
3323 if (!valid_xml_element ((xmlChar
*) dst
))
3326 return GPG_ERR_INV_VALUE
;
3329 if (strchr (req
[0], '\t'))
3330 src
= str_split (req
[0], "\t", 0);
3332 src
= str_split (req
[0], " ", 0);
3336 rc
= GPG_ERR_SYNTAX
;
3340 n
= find_root_element (client
, client
->doc
, &src
, &rc
, NULL
, 0, 0);
3342 n
= find_elements (client
, client
->doc
, n
->children
, src
+ 1, &rc
, NULL
, NULL
,
3343 NULL
, 0, 0, NULL
, 0);
3348 xmlChar
*a
= xmlGetProp (n
, (xmlChar
*) "_name");
3351 rc
= GPG_ERR_ENOMEM
;
3355 /* To prevent unwanted effects:
3357 * <root name="a"><b/></root>
3361 if (xmlStrEqual (a
, (xmlChar
*) dst
))
3364 rc
= GPG_ERR_AMBIGUOUS_NAME
;
3374 for (p
= src
; *p
; p
++)
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
)
3391 ndst
= find_elements (client
, client
->doc
, ndst
->children
, tmp
+ 1, &rc
, NULL
,
3392 NULL
, NULL
, 0, 0, NULL
, 0);
3395 if (!ndst
&& rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
3400 /* Target may exist:
3403 * <root name="b" target="a"/>
3412 rc
= GPG_ERR_AMBIGUOUS_NAME
;
3419 xmlFreeNodeList (ndst
);
3422 rc
= add_attribute (n
, "_name", dst
);
3431 rename_command (assuan_context_t ctx
, char *line
)
3433 struct client_s
*client
= assuan_get_pointer (ctx
);
3435 struct argv_s
*args
[] = {
3436 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
3440 rc
= parse_options (&line
, args
, client
);
3442 return send_error (ctx
, rc
);
3444 if (client
->opts
& OPT_INQUIRE
)
3446 unsigned char *result
;
3449 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
3451 return send_error (ctx
, rc
);
3453 line
= (char *) result
;
3456 rc
= do_rename (ctx
, line
);
3458 if (client
->opts
& OPT_INQUIRE
)
3461 return send_error (ctx
, rc
);
3465 do_copy (assuan_context_t ctx
, char *line
)
3467 struct client_s
*client
= assuan_get_pointer (ctx
);
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])
3476 return GPG_ERR_SYNTAX
;
3479 if (strchr (req
[0], '\t'))
3480 src
= str_split (req
[0], "\t", 0);
3482 src
= str_split (req
[0], " ", 0);
3486 rc
= GPG_ERR_SYNTAX
;
3490 if (strchr (req
[1], '\t'))
3491 dst
= str_split (req
[1], "\t", 0);
3493 dst
= str_split (req
[1], " ", 0);
3497 rc
= GPG_ERR_SYNTAX
;
3501 if (!valid_element_path (dst
, 0))
3503 rc
= GPG_ERR_INV_VALUE
;
3507 nsrc
= find_root_element (client
, client
->doc
, &src
, &rc
, NULL
, 0, 0);
3509 nsrc
= find_elements (client
, client
->doc
, nsrc
->children
, src
+ 1, &rc
, NULL
,
3510 NULL
, NULL
, 0, 0, NULL
, 0);
3515 new = xmlCopyNodeList (nsrc
);
3518 rc
= GPG_ERR_ENOMEM
;
3523 ndst
= find_root_element (client
, client
->doc
, &dst
, &rc
, NULL
, 0, 0);
3527 ndst
= find_elements (client
, client
->doc
, ndst
->children
, dst
+ 1, &rc
, NULL
,
3528 NULL
, create_target_elements_cb
, 0, 0, NULL
, 0);
3535 if (!ndst
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
3537 else if (!ndst
|| create
)
3539 ndst
= create_element_path (client
, &dst
, &rc
, NULL
);
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"))
3550 xmlAttrPtr a
= xmlHasProp (ndst
, attr
->name
);
3554 xmlChar
*tmp
= xmlNodeGetContent (attr
->children
);
3555 xmlNewProp (ndst
, attr
->name
, tmp
);
3557 rc
= add_attribute (ndst
, NULL
, NULL
);
3560 xmlNodePtr n
= ndst
->children
;
3562 xmlFreeNodeList (n
);
3563 ndst
->children
= NULL
;
3567 n
= xmlCopyNodeList (new->children
);
3570 rc
= GPG_ERR_ENOMEM
;
3574 n
= xmlAddChildList (ndst
, n
);
3577 rc
= GPG_ERR_ENOMEM
;
3581 rc
= update_element_mtime (xmlDocGetRootElement (client
->doc
) ==
3582 ndst
->parent
? ndst
: ndst
->parent
);
3588 xmlUnlinkNode (new);
3589 xmlFreeNodeList (new);
3605 copy_command (assuan_context_t ctx
, char *line
)
3607 struct client_s
*client
= assuan_get_pointer (ctx
);
3609 struct argv_s
*args
[] = {
3610 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
3614 rc
= parse_options (&line
, args
, client
);
3616 return send_error (ctx
, rc
);
3618 if (client
->opts
& OPT_INQUIRE
)
3620 unsigned char *result
;
3623 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
3625 return send_error (ctx
, rc
);
3627 line
= (char *) result
;
3630 rc
= do_copy (ctx
, line
);
3632 if (client
->opts
& OPT_INQUIRE
)
3635 return send_error (ctx
, rc
);
3639 do_move (assuan_context_t ctx
, char *line
)
3641 struct client_s
*client
= assuan_get_pointer (ctx
);
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])
3651 return GPG_ERR_SYNTAX
;
3654 if (strchr (req
[0], '\t'))
3655 src
= str_split (req
[0], "\t", 0);
3657 src
= str_split (req
[0], " ", 0);
3661 rc
= GPG_ERR_SYNTAX
;
3665 if (strchr (req
[1], '\t'))
3666 dst
= str_split (req
[1], "\t", 0);
3668 dst
= str_split (req
[1], " ", 0);
3670 nsrc
= find_root_element (client
, client
->doc
, &src
, &rc
, NULL
, 0, 0);
3672 nsrc
= find_elements (client
, client
->doc
, nsrc
->children
, src
+ 1, &rc
, NULL
,
3673 NULL
, NULL
, 0, 0, NULL
, 0);
3680 if (!valid_element_path (dst
, 0))
3682 rc
= GPG_ERR_INV_VALUE
;
3686 ndst
= find_root_element (client
, client
->doc
, &dst
, &rc
, NULL
, 0, 0);
3688 ndst
= find_elements (client
, client
->doc
, ndst
->children
, dst
+ 1, &rc
, NULL
,
3689 NULL
, NULL
, 0, 0, NULL
, 0);
3692 ndst
= xmlDocGetRootElement (client
->doc
);
3694 for (xmlNodePtr n
= ndst
; n
; n
= n
->parent
)
3698 rc
= GPG_ERR_CONFLICT
;
3703 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
3710 xmlChar
*a
= node_has_attribute (nsrc
, (xmlChar
*) "_name");
3712 xmlNodePtr dup
= find_element (client
, ndst
->children
, (char *) a
,
3724 if (ndst
== xmlDocGetRootElement (client
->doc
))
3726 xmlNodePtr n
= nsrc
;
3729 while (n
->parent
&& n
->parent
!= ndst
)
3732 xmlChar
*a
= node_has_attribute (n
, (xmlChar
*) "_name");
3733 xmlChar
*b
= node_has_attribute (nsrc
, (xmlChar
*) "_name");
3735 if (xmlStrEqual (a
, b
))
3738 xmlUnlinkNode (nsrc
);
3740 xmlFreeNodeList (n
);
3748 xmlUnlinkNode (dup
);
3749 xmlFreeNodeList (dup
);
3753 xmlUnlinkNode (dup
);
3759 xmlChar
*name
= node_has_attribute (nsrc
, (xmlChar
*) "_name");
3761 if (nsrc
->parent
== xmlDocGetRootElement (client
->doc
)
3762 && !strcmp ((char *) name
, *dst
))
3765 rc
= GPG_ERR_CONFLICT
;
3770 ndst
= create_element_path (client
, &dst
, &rc
, nsrc
);
3776 update_element_mtime (nsrc
->parent
);
3777 xmlUnlinkNode (nsrc
);
3778 ndst
= xmlAddChildList (ndst
, nsrc
);
3781 rc
= GPG_ERR_ENOMEM
;
3783 update_element_mtime (ndst
->parent
);
3799 move_command (assuan_context_t ctx
, char *line
)
3801 struct client_s
*client
= assuan_get_pointer (ctx
);
3803 struct argv_s
*args
[] = {
3804 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
3808 rc
= parse_options (&line
, args
, client
);
3810 return send_error (ctx
, rc
);
3812 if (client
->opts
& OPT_INQUIRE
)
3814 unsigned char *result
;
3817 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
3819 return send_error (ctx
, rc
);
3821 line
= (char *) result
;
3824 rc
= do_move (ctx
, line
);
3826 if (client
->opts
& OPT_INQUIRE
)
3829 return send_error (ctx
, rc
);
3833 ls_command (assuan_context_t ctx
, char *line
)
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
);
3846 return send_error (ctx
, rc
);
3850 offsetof (struct dirent
, d_name
) +pathconf (dir
, _PC_NAME_MAX
) + 1;
3851 struct dirent
*p
= xmalloc (len
), *cur
= NULL
;
3857 while (!readdir_r (d
, p
, &cur
) && cur
)
3859 if (cur
->d_name
[0] == '.' && cur
->d_name
[1] == '\0')
3861 else if (cur
->d_name
[0] == '.' && cur
->d_name
[1] == '.'
3862 && cur
->d_name
[2] == '\0')
3865 tmp
= str_asprintf ("%s%s\n", list
? list
: "", cur
->d_name
);
3872 rc
= GPG_ERR_ENOMEM
;
3884 return send_error (ctx
, rc
);
3887 return send_error (ctx
, GPG_ERR_NO_DATA
);
3889 list
[strlen (list
) - 1] = 0;
3890 rc
= xfer_data (ctx
, list
, strlen (list
));
3892 return send_error (ctx
, rc
);
3896 bye_notify (assuan_context_t ctx
, char *line
)
3898 struct client_s
*cl
= assuan_get_pointer (ctx
);
3901 if (cl
->thd
->remote
)
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
);
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
3924 reset_notify (assuan_context_t ctx
, char *line
)
3926 struct client_s
*client
= assuan_get_pointer (ctx
);
3929 cleanup_client (client
);
3935 * This is called before every Assuan command.
3938 command_startup (assuan_context_t ctx
, const char *name
)
3940 struct client_s
*client
= assuan_get_pointer (ctx
);
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
)
3953 cmd
= command_table
[i
];
3958 client
->last_rc
= rc
= gpg_error (file_modified (client
, cmd
));
3963 * This is called after every Assuan command.
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
);
3976 client
->thd
->buffer_timeout
= client
->thd
->last_buffer_size
= 0;
3981 help_command (assuan_context_t ctx
, char *line
)
3986 if (!line
|| !*line
)
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)."
3994 for (i
= 0; command_table
[i
]; i
++)
3996 if (!command_table
[i
]->help
)
3999 tmp
= str_asprintf ("%s %s", help
, command_table
[i
]->name
);
4004 tmp
= strip_texi_and_wrap (help
);
4006 rc
= xfer_data (ctx
, tmp
, strlen (tmp
));
4008 return send_error (ctx
, rc
);
4011 for (i
= 0; command_table
[i
]; i
++)
4013 if (!strcasecmp (line
, command_table
[i
]->name
))
4017 if (!command_table
[i
]->help
)
4020 help
= strip_texi_and_wrap (command_table
[i
]->help
);
4021 tmp
= str_asprintf (_("Usage: %s"), help
);
4023 rc
= xfer_data (ctx
, tmp
, strlen (tmp
));
4025 return send_error (ctx
, rc
);
4029 return send_error (ctx
, GPG_ERR_INV_NAME
);
4033 new_command (const char *name
, int ignore
, int unlock
,
4034 gpg_error_t (*handler
) (assuan_context_t
, char *),
4040 for (i
= 0; command_table
[i
]; i
++);
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
;
4058 for (i
= 0; command_table
[i
]; i
++)
4059 xfree (command_table
[i
]);
4061 xfree (command_table
);
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
;
4077 return strcmp ((*a
)->name
, (*b
)->name
);
4081 passwd_command (assuan_context_t ctx
, char *line
)
4083 struct client_s
*client
= assuan_get_pointer (ctx
);
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
},
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
);
4099 return send_error (ctx
, rc
);
4101 if (!rc
&& client
->opts
& OPT_RESET
)
4103 rc
= cache_clear (client
->md5file
);
4105 send_status_all (STATUS_CACHE
, NULL
);
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
));
4121 cleanup_crypto (&client
->crypto
);
4122 client
->crypto
= crypto
;
4123 update_checksum (client
);
4124 cleanup_crypto_stage1 (client
->crypto
);
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
);
4136 rc
= agent_passwd (client
->crypto
);
4141 return send_error (ctx
, rc
);
4145 parse_keygrip_opt_sign (void *data
, void *value
)
4147 struct client_s
*client
= data
;
4150 client
->opts
|= OPT_SIGN
;
4155 keygrip_command (assuan_context_t ctx
, char *line
)
4157 struct client_s
*client
= assuan_get_pointer (ctx
);
4159 struct crypto_s
*crypto
= NULL
;
4160 struct argv_s
*args
[] = {
4161 &(struct argv_s
) {"sign", OPTION_TYPE_NOARG
, parse_keygrip_opt_sign
},
4165 if (!line
|| !*line
)
4166 return send_error (ctx
, GPG_ERR_SYNTAX
);
4168 rc
= parse_options (&line
, args
, client
);
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
);
4177 return send_error (ctx
, rc
);
4179 rc
= read_data_file (line
, crypto
);
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
));
4197 hexgrip
= bin2hex (crypto
->grip
, sizeof (crypto
->grip
));
4200 rc
= GPG_ERR_ENOMEM
;
4202 rc
= xfer_data (ctx
, hexgrip
, strlen (hexgrip
));
4207 UPDATE_AGENT_CTX (client
, crypto
);
4208 cleanup_crypto (&crypto
);
4209 return send_error (ctx
, rc
);
4213 parse_opt_data (void *data
, void *value
)
4215 struct client_s
*client
= data
;
4218 client
->opts
|= OPT_DATA
;
4223 getinfo_command (assuan_context_t ctx
, char *line
)
4225 struct client_s
*client
= assuan_get_pointer (ctx
);
4227 char buf
[ASSUAN_LINELENGTH
];
4228 struct argv_s
*args
[] = {
4229 &(struct argv_s
) {"data", OPTION_TYPE_NOARG
, parse_opt_data
},
4233 rc
= parse_options (&line
, args
, client
);
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
));
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
));
4257 rc
= send_status (ctx
, STATUS_CACHE
, NULL
);
4259 else if (!strcasecmp (line
, "pid"))
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
,
4279 "", use_agent
? "AGENT" : "");
4280 rc
= xfer_data (ctx
, buf
, strlen (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
));
4288 rc
= GPG_ERR_NO_DATA
;
4291 rc
= gpg_error (GPG_ERR_SYNTAX
);
4293 return send_error (ctx
, rc
);
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
);
4306 send_status_cb (void *user
, const char *line
)
4308 assuan_context_t ctx
= user
;
4309 char keyword
[200], *k
;
4312 for (p
= line
, k
= keyword
; *p
; p
++)
4324 while (isspace (*p
))
4327 return assuan_write_status (ctx
, keyword
, *p
? p
: NULL
);
4332 agent_command (assuan_context_t ctx
, char *line
)
4337 return send_error (ctx
, GPG_ERR_NOT_IMPLEMENTED
);
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
)
4354 rc
= assuan_write_line (client
->crypto
->agent
->ctx
, "CAN");
4357 rc
= assuan_read_line (client
->crypto
->agent
->ctx
, &line
, &len
);
4359 rc
= gpg_error (GPG_ERR_ASS_CANCELED
);
4363 assuan_set_flag (client
->crypto
->agent
->ctx
, ASSUAN_CONVEY_COMMENTS
, 0);
4365 return send_error (ctx
, rc
);
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
, _(
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}. "
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})."
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."
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 "
4425 "When the @option{--sign} option is specified then the key used for signing "
4426 "of the specified @var{filename} will be returned."
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 "
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. "
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."
4461 "The @option{--reset} option will clear the cache entry for the current file "
4462 "and require a passphrase, if needed, before saving."
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."
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."
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."
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."
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 "
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}) "
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} "
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."
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)."
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."
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 "
4553 "The @option{--all} option lists the entire element tree for each root "
4554 "element. This option also implies option @option{--verbose}."
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."
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."
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."
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."
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."
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 "
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."
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."
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."
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"
4647 "@item ATTR SET attribute [!]element[<TAB>[!]child[..]] [value]\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."
4652 "@item ATTR DELETE attribute [!]element[<TAB>[!]child[..]]\n"
4654 " Removes an @var{attribute} from an element."
4656 "@item ATTR LIST [!]element[<TAB>[!]child[..]]\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."
4661 "@item ATTR GET attribute [!]element[<TAB>[!]child[..]]\n"
4663 " Retrieves the value of an @var{attribute} from an element."
4666 "The @code{_name} attribute (case sensitive) cannot be removed nor modified. "
4667 "Use the @code{DELETE} (@pxref{DELETE}) or @code{RENAME} (@pxref{RENAME}) "
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 "
4675 "When the @option{--inquire} option is passed then all remaining non-option "
4676 "arguments are retrieved via a server @emph{INQUIRE}."
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:"
4690 "XPATH //element[@@_name='password']@key{TAB}\n"
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."
4697 "When the @option{--inquire} option is passed then all remaining non-option "
4698 "arguments are retrieved via a server @emph{INQUIRE}."
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:"
4712 "XPATHATTR SET password //element[@@_name='password']@key{TAB}\n"
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."
4718 "When the @option{--inquire} option is passed then all remaining non-option "
4719 "arguments are retrieved via a server @emph{INQUIRE}."
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."
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 "
4735 "The content must begin with an @abbr{XML} element node. @xref{Introduction}, "
4739 new_command("DUMP", 0, 1, dump_command
, _(
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
, _(
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
, _(
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."
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."
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."
4786 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4789 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4792 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4794 "@item PINENTRY-DESC\n"
4795 "Sets the description string of the @command{gpg-agent} and @command{pinentry} dialog."
4797 "@item PINENTRY-TITLE\n"
4798 "Sets the title string of the @command{gpg-agent} and @command{pinentry} dialog."
4800 "@item PINENTRY-PROMPT\n"
4801 "Sets the prompt string of the @command{gpg-agent} and @command{pinentry} dialog."
4804 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4806 "@item LC-MESSAGES\n"
4807 "Passed to the @command{gpg-agent} and used for the @command{pinentry} dialog."
4810 "Associates the thread ID of the connection with the specified textual "
4811 "representation. Useful for debugging log messages."
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."
4819 "An integer specifiying the logging level."
4823 new_command("LS", 1, 1, ls_command
, _(
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
, _(
4831 "Closes the currently opened file but keeps any previously set client options."
4834 new_command("NOP", 1, 1, NULL
, _(
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
);
4845 for (i
= 0; command_table
[i
]; i
++);
4846 qsort (command_table
, i
- 1, sizeof (struct command_table_s
*),
4851 register_commands (assuan_context_t ctx
)
4855 for (; command_table
[i
]; i
++)
4857 if (!command_table
[i
]->handler
)
4860 rc
= assuan_register_command (ctx
, command_table
[i
]->name
,
4861 command_table
[i
]->handler
,
4862 command_table
[i
]->help
);
4867 rc
= assuan_register_bye_notify (ctx
, bye_notify
);
4871 rc
= assuan_register_reset_notify (ctx
, reset_notify
);
4875 rc
= assuan_register_pre_cmd_notify (ctx
, command_startup
);
4879 return assuan_register_post_cmd_notify (ctx
, command_finalize
);