2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015,
4 Ben Kibbey <bjk@luxsci.net>
6 This file is part of pwmd.
8 Pwmd is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
13 Pwmd is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Pwmd. If not, see <http://www.gnu.org/licenses/>.
30 #include <sys/types.h>
39 #include "pwmd-error.h"
44 #include "util-misc.h"
52 /* These are command option flags. */
53 #define OPT_INQUIRE 0x0001
54 #define OPT_NO_PASSPHRASE 0x0002
55 #define OPT_ASK 0x0004
56 #define OPT_LIST_RECURSE 0x0008
57 #define OPT_VERBOSE 0x0010
58 #define OPT_LOCK 0x0020
59 #define OPT_LOCK_ON_OPEN 0x0040
60 #define OPT_SIGN 0x0080
61 #define OPT_LIST_ALL 0x0100
62 #define OPT_DATA 0x0200
63 #define OPT_NO_AGENT 0x0400
64 #define OPT_SECRET_ONLY 0x0800
65 #define OPT_INQUIRE_KEYID 0x1000
66 #define OPT_INQUIRE_SIGN_KEYID 0x2000
67 #define OPT_SYMMETRIC 0x4000
68 #define OPT_NO_SIGNER 0x8000
69 #define OPT_HTML 0x10000
71 #define FLOCK_TYPE_NONE 0
72 #define FLOCK_TYPE_SH 0x0001
73 #define FLOCK_TYPE_EX 0x0002
74 #define FLOCK_TYPE_KEEP 0x0004
76 struct command_table_s
79 gpg_error_t (*handler
) (assuan_context_t
, char *line
);
82 int unlock
; // unlock the file mutex after validating the checksum
86 static struct command_table_s
**command_table
;
88 static gpg_error_t
do_lock (struct client_s
*client
, int add
);
89 static gpg_error_t
validate_checksum (struct client_s
*,
90 struct cache_data_s
*, unsigned char **,
92 static gpg_error_t
update_checksum (struct client_s
*client
);
94 /* When 'status' is true the 'self' field of the status line will be false
95 * because we never send the STATE status message to the same client that
98 build_client_info_line (struct client_thread_s
*thd
, int status
)
100 int with_state
= config_get_boolean ("global", "send_state");
101 char *uid
, *username
= NULL
;
106 uid
= str_asprintf("#%s", thd
->tls
->fp
);
109 uid
= str_asprintf("%u", thd
->peer
->uid
);
110 username
= get_username (thd
->peer
->uid
);
113 uid
= str_asprintf("%u", thd
->peer
->uid
);
114 username
= get_username (thd
->peer
->uid
);
116 line
= str_asprintf ("%p %s %s %s %u %u %u %s %s %u",
118 thd
->name
? thd
->name
: "-",
119 thd
->cl
&& thd
->cl
->filename
120 && (thd
->cl
->flags
& FLAG_OPEN
)
121 ? thd
->cl
->filename
: "/",
123 thd
->remote
? thd
->peeraddr
: "-",
127 thd
->cl
&& thd
->cl
->flags
& FLAG_HAS_LOCK
? 1 : 0,
128 !status
&& pthread_equal (pthread_self (), thd
->tid
) ? 1 : 0,
129 with_state
? thd
->state
: CLIENT_STATE_UNKNOWN
, uid
,
131 thd
->remote
? "-" : username
,
144 update_client_state (struct client_s
*client
, unsigned s
)
146 MUTEX_LOCK (&cn_mutex
);
147 client
->thd
->state
= s
;
148 MUTEX_UNLOCK (&cn_mutex
);
149 int n
= config_get_boolean ("global", "send_state");
151 if (n
&& client
->thd
->state
!= CLIENT_STATE_UNKNOWN
)
153 char *line
= build_client_info_line (client
->thd
, 1);
156 send_status_all_not_self (n
== 2, STATUS_STATE
, "%s", line
);
163 unlock_file_mutex (struct client_s
*client
, int remove
)
167 // OPEN: keep the lock for the same file being reopened.
168 if (client
->flags
& FLAG_KEEP_LOCK
&& client
->flags
& FLAG_HAS_LOCK
)
171 if (!(client
->flags
& FLAG_HAS_LOCK
))
172 return GPG_ERR_NOT_LOCKED
;
174 rc
= cache_unlock_mutex (client
->md5file
, remove
);
176 rc
= GPG_ERR_INV_STATE
;
178 client
->flags
&= ~(FLAG_HAS_LOCK
| FLAG_LOCK_CMD
);
184 lock_file_mutex (struct client_s
*client
, int add
)
187 int timeout
= config_get_integer (client
->filename
, "cache_timeout");
189 if (client
->flags
& FLAG_HAS_LOCK
)
192 rc
= cache_lock_mutex (client
->ctx
, client
->md5file
,
193 client
->lock_timeout
, add
, timeout
);
195 client
->flags
|= FLAG_HAS_LOCK
;
201 file_modified (struct client_s
*client
, struct command_table_s
*cmd
)
204 int type
= !cmd
->flock_type
|| (cmd
->flock_type
& FLOCK_TYPE_SH
)
207 if (!(client
->flags
& FLAG_OPEN
))
208 return GPG_ERR_INV_STATE
;
210 rc
= lock_file_mutex (client
, 0);
211 if (rc
&& rc
!= GPG_ERR_NO_DATA
)
214 rc
= lock_flock (client
->ctx
, client
->filename
, type
, &client
->flock_fd
);
217 rc
= validate_checksum (client
, NULL
, NULL
, NULL
);
218 if (gpg_err_code (rc
) == GPG_ERR_ENOENT
&& (client
->flags
& FLAG_NEW
))
221 log_write ("%s: %s", client
->filename
, pwmd_strerror (rc
));
223 else if (gpg_err_code (rc
) == GPG_ERR_ENOENT
)
226 /* FLAG_HAS_LOCK may have been set by the LOCK command or OPEN --lock. */
227 if ((cmd
->unlock
&& !(client
->flags
& FLAG_HAS_LOCK
)) || rc
)
228 unlock_file_mutex (client
, 0);
230 if (rc
|| !(cmd
->flock_type
& FLOCK_TYPE_KEEP
))
231 unlock_flock (&client
->flock_fd
);
237 parse_xml (assuan_context_t ctx
, int new)
239 struct client_s
*client
= assuan_get_pointer (ctx
);
240 int cached
= client
->doc
!= NULL
;
245 client
->doc
= xml_new_document ();
251 xmlDocDumpFormatMemory (client
->doc
, &result
, &len
, 0);
252 client
->crypto
->plaintext
= result
;
253 client
->crypto
->plaintext_size
= len
;
254 if (!client
->crypto
->plaintext
)
256 xmlFreeDoc (client
->doc
);
265 rc
= xml_parse_doc ((char *) client
->crypto
->plaintext
,
266 client
->crypto
->plaintext_size
,
267 (xmlDocPtr
*)&client
->doc
);
273 free_client (struct client_s
*client
)
276 xmlFreeDoc (client
->doc
);
279 xfree (client
->filename
);
280 xfree (client
->last_error
);
281 crypto_cleanup (client
->crypto
);
282 client
->crypto
= NULL
;
286 cleanup_client (struct client_s
*client
)
288 assuan_context_t ctx
= client
->ctx
;
289 struct client_thread_s
*thd
= client
->thd
;
290 long lock_timeout
= client
->lock_timeout
;
291 xmlErrorPtr xml_error
= client
->xml_error
;
292 int no_pinentry
= (client
->flags
& FLAG_NO_PINENTRY
);
293 int flock_fd
= client
->flock_fd
;
295 unlock_file_mutex (client
, client
->flags
& FLAG_NEW
);
296 free_client (client
);
297 memset (client
, 0, sizeof (struct client_s
));
298 client
->flock_fd
= flock_fd
;
299 client
->xml_error
= xml_error
;
302 client
->lock_timeout
= lock_timeout
;
303 client
->flags
|= no_pinentry
? FLAG_NO_PINENTRY
: 0;
307 req_cleanup (void *arg
)
312 strv_free ((char **) arg
);
316 parse_open_opt_lock (void *data
, void *value
)
318 struct client_s
*client
= data
;
320 client
->opts
|= OPT_LOCK_ON_OPEN
;
325 parse_opt_inquire (void *data
, void *value
)
327 struct client_s
*client
= data
;
330 client
->opts
|= OPT_INQUIRE
;
335 update_checksum (struct client_s
*client
)
339 struct cache_data_s
*cdata
;
340 gpg_error_t rc
= get_checksum (client
->filename
, &crc
, &len
);
347 cdata
= cache_get_data (client
->md5file
);
351 cdata
->crc
= xmalloc (len
);
352 memcpy (cdata
->crc
, crc
, len
);
359 validate_checksum (struct client_s
*client
, struct cache_data_s
*cdata
,
360 unsigned char **r_crc
, size_t *r_crclen
)
367 if (cdata
&& !cdata
->crc
)
368 return GPG_ERR_CHECKSUM
;
370 rc
= get_checksum (client
->filename
, &crc
, &len
);
375 n
= memcmp (cdata
->crc
, crc
, len
);
376 else if (client
->crc
)
377 n
= memcmp (client
->crc
, crc
, len
);
387 return n
? GPG_ERR_CHECKSUM
: 0;
391 open_command (assuan_context_t ctx
, char *line
)
394 struct client_s
*client
= assuan_get_pointer (ctx
);
395 char **req
, *filename
;
396 unsigned char md5file
[16];
398 assuan_peercred_t peer
;
399 struct cache_data_s
*cdata
= NULL
;
401 unsigned char *crc
= NULL
;
403 struct argv_s
*args
[] = {
404 &(struct argv_s
) {"lock", OPTION_TYPE_NOARG
, parse_open_opt_lock
},
408 rc
= parse_options (&line
, args
, client
, 1);
410 return send_error (ctx
, rc
);
412 req
= str_split (line
, " ", 2);
414 return send_error (ctx
, GPG_ERR_SYNTAX
);
416 rc
= do_validate_peer (ctx
, req
[0], &peer
);
420 return send_error (ctx
, rc
);
424 if (!valid_filename (filename
))
427 return send_error (ctx
, GPG_ERR_INV_VALUE
);
430 pthread_cleanup_push ((void *)req_cleanup
, req
);
431 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, filename
, strlen (filename
));
432 /* This client may have locked a different file with ISCACHED --lock than
433 * the current filename. This will remove that lock. */
434 same_file
= !memcmp (md5file
, client
->md5file
, 16) ? 1 : 0;
435 if (client
->flags
& FLAG_OPEN
||
436 (client
->flags
& FLAG_HAS_LOCK
&& !same_file
))
438 uint32_t opts
= client
->opts
;
439 uint32_t flags
= client
->flags
;
442 client
->flags
|= FLAG_KEEP_LOCK
;
443 else if (client
->flags
& FLAG_NEW
)
444 cache_clear (client
->md5file
);
446 cleanup_client (client
);
448 client
->flags
|= flags
;
449 client
->flags
&= ~(FLAG_LOCK_CMD
);
451 client
->flags
&= ~(FLAG_HAS_LOCK
| FLAG_NEW
);
454 memcpy (client
->md5file
, md5file
, 16);
455 client
->filename
= str_dup (filename
);
456 if (!client
->filename
)
459 return send_error(ctx
, GPG_ERR_ENOMEM
);
462 /* Need to lock the mutex here because file_modified() cannot without
463 * knowing the filename. */
464 rc
= lock_file_mutex (client
, 1);
466 client
->flags
&= ~FLAG_OPEN
;
470 rc
= lock_flock (ctx
, filename
, LOCK_SH
, &client
->flock_fd
);
471 if (gpg_err_code (rc
) == GPG_ERR_ENOENT
)
479 rc
= crypto_init (&client
->crypto
, client
->ctx
, client
->filename
,
480 client
->flags
& FLAG_NO_PINENTRY
);
481 if (!rc
&& stat (client
->filename
, &st
) == -1)
482 rc
= gpg_error_from_errno (errno
);
483 else if (!rc
&& !S_ISREG (st
.st_mode
)) // to match LS output
484 rc
= gpg_error_from_errno (ENOANO
);
487 if (!rc
|| gpg_err_code (rc
) == GPG_ERR_ENOENT
)
489 cdata
= cache_get_data (client
->md5file
);
494 client
->flags
|= FLAG_NEW
;
495 // data file disappeared. clear the cache entry.
496 cache_clear (client
->md5file
);
499 else if (cdata
&& cdata
->doc
) // cached document
504 if (!rc
&& !(client
->flags
& FLAG_NEW
))
506 rc
= validate_checksum (client
, cdata
, &crc
, &crclen
);
507 if (rc
== GPG_ERR_CHECKSUM
)
516 rc
= cache_iscached (client
->filename
, &defer
);
517 if ((!rc
|| rc
== GPG_ERR_ENOENT
) && defer
)
527 log_write ("%s: %s", client
->filename
,
528 pwmd_strerror (GPG_ERR_CHECKSUM
));
529 cache_clear (client
->md5file
);
531 rc
= crypto_decrypt (client
, client
->crypto
);
536 if (client
->thd
->remote
537 && config_get_boolean (client
->filename
, "tcp_require_key")
538 && !(client
->flags
& FLAG_NEW
))
539 rc
= crypto_try_decrypt (client
,
540 (client
->flags
& FLAG_NO_PINENTRY
));
546 client
->crypto
->plaintext
= cdata
->doc
;
547 client
->crypto
->plaintext_size
= cdata
->size
;
548 rc
= cache_decrypt (client
->crypto
);
553 strv_free (client
->crypto
->pubkey
);
554 strv_free (client
->crypto
->sigkey
);
555 client
->crypto
->pubkey
= strv_dup (cdata
->pubkey
);
556 client
->crypto
->sigkey
= strv_dup (cdata
->sigkey
);
561 client
->crypto
->plaintext
= NULL
;
562 client
->crypto
->plaintext_size
= 0;
566 else // existing file
568 cached
= cdata
!= NULL
;
569 rc
= crypto_decrypt (client
, client
->crypto
);
575 rc
= parse_xml (ctx
, client
->flags
& FLAG_NEW
);
578 rc
= cache_encrypt (client
->crypto
);
580 cache_clear (client
->md5file
);
583 int timeout
= config_get_integer (client
->filename
,
586 free_cache_data_once (cdata
);
587 cdata
= xcalloc (1, sizeof (struct cache_data_s
));
588 cdata
->doc
= client
->crypto
->plaintext
;
589 cdata
->size
= client
->crypto
->plaintext_size
;
590 cdata
->pubkey
= strv_dup(client
->crypto
->pubkey
);
591 cdata
->sigkey
= strv_dup(client
->crypto
->sigkey
);
592 client
->crypto
->plaintext
= NULL
;
593 client
->crypto
->plaintext_size
= 0;
595 if (cached
) // wont increment the refcount
597 /* Prevent using another FD to update the checksum for a
598 * cached data file. The validity has already been
601 client
->crc
= xmalloc (crclen
);
602 memcpy (client
->crc
, crc
, crclen
);
604 cdata
->crc
= xmalloc (crclen
);
605 memcpy (cdata
->crc
, crc
, crclen
);
607 rc
= cache_set_data (client
->md5file
, cdata
);
608 /* The cache entry may have been removed and cache_set_data()
609 * already sent STATUS_CACHE. */
610 if (!cache_iscached (client
->filename
, NULL
))
611 rc
= send_status (ctx
, STATUS_CACHE
, NULL
);
614 rc
= cache_add_file (client
->md5file
, cdata
, timeout
);
619 pthread_cleanup_pop (1);
622 if (!rc
&& !(client
->flags
& FLAG_NEW
) && !cached
)
623 rc
= update_checksum (client
);
627 client
->flags
|= FLAG_OPEN
;
629 if (client
->flags
& FLAG_NEW
)
630 rc
= send_status (ctx
, STATUS_NEWFILE
, NULL
);
632 if (!rc
&& (client
->opts
& OPT_LOCK_ON_OPEN
))
633 rc
= do_lock (client
, 0);
638 log_write ("%s: %s", client
->filename
, pwmd_strerror (rc
));
640 if (client
->flags
& FLAG_NEW
)
641 cache_clear (client
->md5file
);
643 crypto_cleanup (client
->crypto
);
644 client
->crypto
= NULL
;
645 client
->flags
&= ~FLAG_OPEN
;
648 crypto_cleanup_non_keys (client
->crypto
);
649 return send_error (ctx
, rc
);
652 /* If not the invoking_user or is an existing file, check that the list of user
653 * supplied key ID's are in the list of current key ID's obtained when
654 * decrypting the data file. Both short and long form keyid fingerprints are
657 * 8 byte with optional "0x" prefix
661 * Although, the key ID's are converted to the 8 byte form before calling this
662 * function in parse_save_opt_keyid_common() to keep consistancy with KEYINFO
666 permitted_to_save (struct client_s
*client
, const char **keys
,
672 if ((client
->flags
& FLAG_NEW
) || (client
->opts
& OPT_SYMMETRIC
))
675 rc
= peer_is_invoker (client
);
680 if ((!value
&& !keys
) || ((value
&& !*value
) && (keys
&& !*keys
)))
683 for (v
= value
; v
&& *v
; v
++)
685 const char **k
, *pv
= *v
;
688 if (*pv
== '0' && *(pv
+1) == 'x')
691 for (k
= keys
; k
&& *k
; k
++)
695 if (*pk
== '0' && *(pk
+1) == 'x')
698 rc
= !strcmp (pv
, pk
) ? 0 : GPG_ERR_FORBIDDEN
;
700 rc
= !strcmp (pv
, *k
) ? 0 : GPG_ERR_FORBIDDEN
;
710 return GPG_ERR_FORBIDDEN
;
717 parse_save_opt_keyid_common (struct client_s
*client
, const char **list
,
718 const char *value
, char ***dst
)
725 p
= str_split (value
, ",", 0);
727 return GPG_ERR_ENOMEM
;
730 crypto_keyid_to_8b (p
);
731 rc
= permitted_to_save (client
, list
, (const char **)p
);
741 parse_save_opt_keyid (void *data
, void *value
)
743 struct client_s
*client
= data
;
744 const char *str
= value
;
748 rc
= parse_save_opt_keyid_common (client
,
749 (const char **)client
->crypto
->pubkey
,
754 client
->crypto
->save
.pubkey
= dst
;
759 parse_save_opt_sign_keyid (void *data
, void *value
)
761 struct client_s
*client
= data
;
762 const char *str
= value
;
766 rc
= parse_save_opt_keyid_common (client
,
767 (const char **)client
->crypto
->sigkey
,
773 client
->opts
|= OPT_NO_SIGNER
;
775 client
->crypto
->save
.sigkey
= dst
;
780 parse_save_opt_inquire (struct client_s
*client
, uint32_t opt
)
782 if (opt
== OPT_INQUIRE
&& !(client
->flags
& FLAG_NEW
))
784 gpg_error_t rc
= peer_is_invoker (client
);
795 parse_save_opt_inquire_keyparam (void *data
, void *value
)
797 return parse_save_opt_inquire (data
, OPT_INQUIRE
);
801 parse_save_opt_inquire_keyid (void *data
, void *value
)
803 return parse_save_opt_inquire (data
, OPT_INQUIRE_KEYID
);
807 parse_save_opt_inquire_sign_keyid (void *data
, void *value
)
809 return parse_save_opt_inquire (data
, OPT_INQUIRE_SIGN_KEYID
);
813 parse_save_opt_symmetric (void *data
, void *value
)
815 struct client_s
*client
= data
;
817 client
->opts
|= OPT_SYMMETRIC
;
821 /* Tests that the keys in new_keys are also in old_keys. */
823 compare_keys (char **new_keys
, char **old_keys
)
827 if (!old_keys
|| !*old_keys
)
830 crypto_keyid_to_8b (new_keys
);
832 for (o
= old_keys
; *o
; o
++)
836 for (n
= new_keys
; *n
; n
++)
838 if (!strcmp (*n
, *o
))
843 return GPG_ERR_NOT_FOUND
;
850 inquire_keyid (struct client_s
*client
, uint32_t opt
)
853 unsigned char *result
= NULL
;
859 if (opt
== OPT_INQUIRE_KEYID
)
862 orig
= &client
->crypto
->pubkey
;
863 save
= &client
->crypto
->save
.pubkey
;
867 s
= "INQUIRE_SIGN_KEYID";
868 orig
= &client
->crypto
->sigkey
;
869 save
= &client
->crypto
->save
.sigkey
;
872 rc
= assuan_inquire (client
->ctx
, s
, &result
, &len
, 0);
877 rc
= parse_save_opt_keyid_common (client
, (const char **)*orig
,
878 (char *)result
, &dst
);
881 if (!dst
&& opt
== OPT_INQUIRE_SIGN_KEYID
882 && client
->opts
& OPT_SYMMETRIC
)
883 client
->opts
|= OPT_NO_SIGNER
;
894 save_command (assuan_context_t ctx
, char *line
)
896 struct client_s
*client
= assuan_get_pointer (ctx
);
897 struct cache_data_s
*cdata
= NULL
;
898 gpg_error_t rc
= 0, cached
= 0;
901 struct argv_s
*args
[] = {
902 &(struct argv_s
) {"keyid", OPTION_TYPE_ARG
, parse_save_opt_keyid
},
903 &(struct argv_s
) {"sign-keyid", OPTION_TYPE_OPTARG
,
904 parse_save_opt_sign_keyid
},
905 &(struct argv_s
) {"inquire-keyparam", OPTION_TYPE_NOARG
,
906 parse_save_opt_inquire_keyparam
},
907 &(struct argv_s
) {"inquire-keyid", OPTION_TYPE_NOARG
,
908 parse_save_opt_inquire_keyid
},
909 &(struct argv_s
) {"inquire-sign-keyid", OPTION_TYPE_NOARG
,
910 parse_save_opt_inquire_sign_keyid
},
911 &(struct argv_s
) {"symmetric", OPTION_TYPE_NOARG
,
912 parse_save_opt_symmetric
},
916 crypto_cleanup_save (&client
->crypto
->save
);
918 if (!(client
->flags
& FLAG_NEW
))
920 rc
= crypto_is_symmetric (client
->filename
);
921 if (!rc
|| rc
== GPG_ERR_BAD_DATA
)
924 client
->opts
|= OPT_SYMMETRIC
;
931 return send_error (ctx
, rc
);
933 rc
= parse_options (&line
, args
, client
, 0);
935 return send_error (ctx
, rc
);
937 if (config_get_boolean (client
->filename
, "require_save_key"))
938 client
->opts
|= OPT_ASK
;
940 if (lstat (client
->filename
, &st
) == -1 && errno
!= ENOENT
)
941 return send_error (ctx
, gpg_error_from_errno (errno
));
943 if (errno
!= ENOENT
&& !S_ISREG (st
.st_mode
))
945 log_write ("%s: %s", client
->filename
, pwmd_strerror (GPG_ERR_ENOANO
));
946 return send_error (ctx
, GPG_ERR_ENOANO
);
950 cached
= rc
= cache_iscached (client
->filename
, &defer
);
952 if (gpg_err_code (rc
) == GPG_ERR_ENOENT
&& (client
->flags
& FLAG_NEW
))
954 else if (gpg_err_code (rc
) == GPG_ERR_NO_DATA
)
958 return send_error (ctx
, rc
);
960 /* Specifying both a recipient and symmetric encryption is an error. */
961 if (client
->opts
& OPT_INQUIRE_KEYID
&& client
->opts
& OPT_SYMMETRIC
)
963 return send_error (ctx
, GPG_ERR_CONFLICT
);
965 else if (client
->opts
& OPT_INQUIRE
&& client
->opts
& OPT_SYMMETRIC
)
967 return send_error (ctx
, GPG_ERR_CONFLICT
);
969 /* Existing file with a recipient and wanting symmetric is an error. */
970 else if (client
->opts
& OPT_SYMMETRIC
&& client
->crypto
->save
.pubkey
)
972 return send_error (ctx
, GPG_ERR_CONFLICT
);
974 else if (((client
->opts
& OPT_INQUIRE_KEYID
)
975 || (client
->opts
& OPT_INQUIRE_SIGN_KEYID
)))
977 if (client
->opts
& OPT_INQUIRE
)
978 return send_error (ctx
, GPG_ERR_CONFLICT
);
980 if (client
->opts
& OPT_INQUIRE_KEYID
)
981 rc
= inquire_keyid (client
, OPT_INQUIRE_KEYID
);
983 if (!rc
&& (client
->opts
& OPT_INQUIRE_SIGN_KEYID
))
984 rc
= inquire_keyid (client
, OPT_INQUIRE_SIGN_KEYID
);
986 else if ((client
->crypto
->save
.pubkey
|| client
->crypto
->save
.sigkey
)
987 && client
->opts
& OPT_INQUIRE
)
988 return send_error (ctx
, GPG_ERR_CONFLICT
);
991 rc
= crypto_init_ctx (client
->crypto
, client
->flags
& FLAG_NO_PINENTRY
);
993 if (!rc
&& (client
->opts
& OPT_INQUIRE
))
995 /* Require a passphrase when generating a new key pair for an existing
998 if (!(client
->flags
& FLAG_NEW
))
1000 rc
= crypto_try_decrypt (client
, client
->flags
& FLAG_NO_PINENTRY
);
1001 client
->opts
&= ~OPT_ASK
;
1006 unsigned char *params
= NULL
;
1009 rc
= assuan_inquire (client
->ctx
, "KEYPARAM", ¶ms
, &len
, 0);
1012 client
->crypto
->flags
|= CRYPTO_FLAG_NEWFILE
;
1013 pthread_cleanup_push ((void *)xfree
, params
);
1014 rc
= crypto_genkey (client
, client
->crypto
, params
);
1015 pthread_cleanup_pop (1);
1019 else if (!rc
&& (client
->flags
& FLAG_NEW
))
1021 if (!client
->crypto
->save
.pubkey
&& !client
->crypto
->save
.sigkey
1022 && !(client
->opts
& OPT_SYMMETRIC
))
1024 char *params
= crypto_default_key_params ();
1027 rc
= GPG_ERR_ENOMEM
;
1031 client
->crypto
->flags
|= CRYPTO_FLAG_NEWFILE
;
1032 pthread_cleanup_push ((void *)xfree
, params
);
1033 rc
= crypto_genkey (client
, client
->crypto
,
1034 (unsigned char *)params
);
1035 pthread_cleanup_pop (1);
1040 if (!client
->crypto
->save
.pubkey
&& client
->crypto
->save
.sigkey
1041 && !(client
->opts
& OPT_SYMMETRIC
))
1042 client
->crypto
->save
.pubkey
= strv_dup (client
->crypto
->save
.sigkey
);
1044 if (client
->crypto
->save
.pubkey
&& !client
->crypto
->save
.sigkey
)
1045 client
->crypto
->save
.sigkey
= strv_dup (client
->crypto
->save
.pubkey
);
1050 cdata
= cache_get_data (client
->md5file
);
1053 if (client
->crypto
->save
.pubkey
)
1054 rc
= compare_keys (client
->crypto
->save
.pubkey
, cdata
->pubkey
);
1056 /* Always allow a signer for symmetric data files. */
1057 if (!rc
&& client
->crypto
->save
.sigkey
1058 && !(client
->opts
& OPT_SYMMETRIC
))
1059 rc
= compare_keys (client
->crypto
->save
.sigkey
, cdata
->sigkey
);
1061 /* Prevent saving to a recipient who is not in the original recipient
1062 * list without a passphrase. */
1063 if (rc
|| (client
->crypto
->sigkey
&& client
->opts
& OPT_NO_SIGNER
))
1064 client
->opts
|= OPT_ASK
;
1066 if (rc
== GPG_ERR_NOT_FOUND
)
1068 rc
= peer_is_invoker (client
);
1069 if (rc
== GPG_ERR_EACCES
)
1070 rc
= GPG_ERR_FORBIDDEN
;
1073 if (!client
->crypto
->save
.pubkey
1074 && !(client
->opts
& OPT_SYMMETRIC
))
1075 client
->crypto
->save
.pubkey
= strv_dup (cdata
->pubkey
);
1077 if (!client
->crypto
->save
.sigkey
&& cdata
->sigkey
1078 && !(client
->opts
& OPT_NO_SIGNER
))
1079 client
->crypto
->save
.sigkey
= strv_dup (cdata
->sigkey
);
1080 else if (!client
->crypto
->save
.sigkey
1081 && (client
->opts
& OPT_NO_SIGNER
)
1082 && !(client
->opts
& OPT_SYMMETRIC
))
1083 rc
= GPG_ERR_NO_SIGNATURE_SCHEME
;
1087 client
->crypto
->save
.pubkey
= strv_dup (client
->crypto
->pubkey
);
1088 client
->crypto
->save
.sigkey
= strv_dup (client
->crypto
->sigkey
);
1092 if (!rc
&& !(client
->flags
& FLAG_NEW
))
1094 /* Fixes {NEW_,SIGN_}PASSPHRASE inquire keywords. See passphrase_cb(). */
1095 if (client
->opts
& OPT_SYMMETRIC
)
1096 client
->crypto
->flags
|= CRYPTO_FLAG_PASSWD
;
1098 if (client
->opts
& OPT_ASK
)
1099 rc
= crypto_try_decrypt (client
, client
->flags
& FLAG_NO_PINENTRY
);
1102 if (!rc
&& client
->opts
& OPT_SYMMETRIC
)
1103 client
->crypto
->flags
|= CRYPTO_FLAG_PASSWD_NEW
;
1106 rc
= xml_update_element_mtime (client
, xmlDocGetRootElement (client
->doc
));
1112 xmlDocDumpFormatMemory (client
->doc
, &client
->crypto
->plaintext
, &size
,
1115 client
->crypto
->plaintext_size
= (size_t) size
;
1117 rc
= GPG_ERR_ENOMEM
;
1121 client
->crypto
->flags
|= (client
->opts
& OPT_SYMMETRIC
) ? CRYPTO_FLAG_SYMMETRIC
: 0;
1122 client
->crypto
->flags
|= (client
->flags
& FLAG_NEW
) ? CRYPTO_FLAG_NEWFILE
: 0;
1123 rc
= crypto_encrypt (client
, client
->crypto
);
1124 client
->crypto
->flags
&= ~CRYPTO_FLAG_SYMMETRIC
;
1129 rc
= crypto_write_file (client
->crypto
);
1132 if (!cached
) // no error
1133 cdata
= cache_get_data (client
->md5file
);
1138 rc
= cache_encrypt (client
->crypto
);
1141 cache_clear (client
->md5file
);
1142 strv_free (client
->crypto
->pubkey
);
1143 client
->crypto
->pubkey
= strv_dup (client
->crypto
->save
.pubkey
);
1144 strv_free (client
->crypto
->sigkey
);
1145 client
->crypto
->sigkey
= strv_dup (client
->crypto
->save
.sigkey
);
1146 client
->flags
&= ~(FLAG_NEW
);
1152 int timeout
= config_get_integer (client
->filename
,
1155 free_cache_data_once (cdata
);
1156 cdata
= xcalloc (1, sizeof (struct cache_data_s
));
1157 cdata
->doc
= client
->crypto
->plaintext
;
1158 client
->crypto
->plaintext
= NULL
;
1159 cdata
->size
= client
->crypto
->plaintext_size
;
1160 client
->crypto
->plaintext_size
= 0;
1161 cdata
->pubkey
= client
->crypto
->save
.pubkey
;
1162 client
->crypto
->save
.pubkey
= NULL
;
1163 cdata
->sigkey
= client
->crypto
->save
.sigkey
;
1164 client
->crypto
->save
.sigkey
= NULL
;
1166 /* Update in case the cache entry expires the next SAVE may not
1167 * have any known keys. */
1168 strv_free (client
->crypto
->pubkey
);
1169 client
->crypto
->pubkey
= strv_dup (cdata
->pubkey
);
1170 strv_free (client
->crypto
->sigkey
);
1171 client
->crypto
->sigkey
= strv_dup (cdata
->sigkey
);
1173 if (!cached
) // no error and wont increment refcount
1174 rc
= cache_set_data (client
->md5file
, cdata
);
1176 rc
= cache_add_file (client
->md5file
, cdata
, timeout
);
1178 if (!rc
&& (cached
|| (client
->flags
& FLAG_NEW
)))
1179 send_status_all (STATUS_CACHE
, NULL
);
1183 rc
= update_checksum (client
);
1184 client
->flags
&= ~(FLAG_NEW
);
1190 crypto_cleanup_non_keys (client
->crypto
);
1191 return send_error (ctx
, rc
);
1195 do_delete (assuan_context_t ctx
, char *line
)
1197 struct client_s
*client
= assuan_get_pointer (ctx
);
1198 struct xml_request_s
*req
;
1202 rc
= xml_new_request (client
, line
, XML_CMD_DELETE
, &req
);
1206 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1207 xml_free_request (req
);
1211 rc
= xml_is_element_owner (client
, n
);
1213 rc
= xml_unlink_node (client
, n
);
1219 delete_command (assuan_context_t ctx
, char *line
)
1221 struct client_s
*client
= assuan_get_pointer (ctx
);
1223 struct argv_s
*args
[] = {
1224 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
1228 rc
= parse_options (&line
, args
, client
, 1);
1229 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
1230 rc
= GPG_ERR_SYNTAX
;
1232 return send_error (ctx
, rc
);
1234 if (client
->opts
& OPT_INQUIRE
)
1236 unsigned char *result
;
1239 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1241 return send_error (ctx
, rc
);
1243 pthread_cleanup_push ((void *)xfree
, result
);
1244 rc
= do_delete (ctx
, (char *)result
);
1245 pthread_cleanup_pop (1);
1248 rc
= do_delete (ctx
, line
);
1250 return send_error (ctx
, rc
);
1254 update_element_expirey (struct client_s
*client
, xmlNodePtr n
)
1257 xmlChar
*expire
, *incr
;
1259 time_t e
, e_orig
, i
;
1260 time_t now
= time (NULL
);
1262 expire
= xml_attribute_value (n
, (xmlChar
*)"expire");
1267 e
= strtoul ((char *)expire
, &p
, 10);
1268 if (errno
|| *p
|| e
== ULONG_MAX
|| *expire
== '-')
1271 rc
= GPG_ERR_ERANGE
;
1276 incr
= xml_attribute_value (n
, (xmlChar
*)"expire_increment");
1280 i
= strtoul ((char *)incr
, &p
, 10);
1281 if (errno
|| *p
|| i
== ULONG_MAX
|| *incr
== '-')
1284 rc
= GPG_ERR_ERANGE
;
1291 p
= str_asprintf ("%lu", e
);
1294 rc
= GPG_ERR_ENOMEM
;
1298 rc
= xml_add_attribute (client
, n
, "expire", p
);
1301 rc
= send_status (client
->ctx
, STATUS_EXPIRE
, "%lu %lu", e_orig
, e
);
1308 store_command (assuan_context_t ctx
, char *line
)
1310 struct client_s
*client
= assuan_get_pointer (ctx
);
1313 unsigned char *result
;
1314 xmlNodePtr n
, parent
;
1316 char *content
= NULL
;
1317 struct xml_request_s
*req
;
1320 return send_error (ctx
, GPG_ERR_SYNTAX
);
1322 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1324 return send_error (ctx
, rc
);
1326 rc
= xml_new_request (client
, (char *)result
, XML_CMD_STORE
, &req
);
1329 return send_error (ctx
, rc
);
1331 /* Prevent passing the element content around to save some memory. */
1332 len
= strv_length (req
->args
);
1333 has_content
= line
[strlen (line
) - 1] != '\t' && len
> 1;
1334 if (*(req
->args
+1) && !xml_valid_element_path (req
->args
, has_content
))
1336 xml_free_request (req
);
1337 return send_error (ctx
, GPG_ERR_INV_VALUE
);
1340 if (has_content
|| !*req
->args
[len
-1])
1343 content
= req
->args
[len
-1];
1344 req
->args
[len
-1] = NULL
;
1347 if (strv_length (req
->args
) > 1)
1349 rc
= xml_check_recursion (client
, req
);
1350 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
1354 parent
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1358 rc
= xml_is_element_owner (client
, parent
);
1361 n
= xml_find_text_node (parent
->children
);
1363 xmlNodeSetContent (n
, (xmlChar
*) content
);
1365 xmlNodeAddContent (parent
, (xmlChar
*) content
);
1367 (void)xml_update_element_mtime (client
, parent
);
1368 (void)update_element_expirey (client
, parent
);
1374 xml_free_request (req
);
1375 return send_error (ctx
, rc
);
1379 xfer_data (assuan_context_t ctx
, const char *line
, int total
)
1381 struct client_s
*client
= assuan_get_pointer (ctx
);
1385 int progress
= config_get_integer ("global", "xfer_progress");
1388 if (!(client
->flags
& FLAG_LOCK_CMD
))
1389 rc
= unlock_file_mutex (client
, 0);
1390 if (rc
&& rc
!= GPG_ERR_NOT_LOCKED
)
1394 progress
> 0 ? (progress
/ ASSUAN_LINELENGTH
) * ASSUAN_LINELENGTH
: 0;
1395 to_send
= total
< ASSUAN_LINELENGTH
? total
: ASSUAN_LINELENGTH
;
1396 rc
= send_status (ctx
, STATUS_XFER
, "%li %li", sent
, total
);
1404 if (sent
+ to_send
> total
)
1405 to_send
= total
- sent
;
1407 rc
= assuan_send_data (ctx
, flush
? NULL
: (char *) line
+ sent
,
1408 flush
? 0 : to_send
);
1411 sent
+= flush
? 0 : to_send
;
1413 if ((progress
&& !(sent
% progress
) && sent
!= total
) ||
1414 (sent
== total
&& flush
))
1415 rc
= send_status (ctx
, STATUS_XFER
, "%li %li", sent
, total
);
1417 if (!flush
&& !rc
&& sent
== total
)
1424 while (!rc
&& sent
< total
);
1430 do_get (assuan_context_t ctx
, char *line
)
1432 struct client_s
*client
= assuan_get_pointer (ctx
);
1434 struct xml_request_s
*req
;
1437 rc
= xml_new_request (client
, line
, XML_CMD_NONE
, &req
);
1441 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1444 if (n
&& n
->children
)
1448 n
= xml_find_text_node (n
->children
);
1449 if (!n
|| !n
->content
|| !*n
->content
)
1450 rc
= GPG_ERR_NO_DATA
;
1453 rc
= xfer_data (ctx
, (char *) n
->content
, xmlStrlen (n
->content
));
1456 xmlChar
*expire
= xml_attribute_value (tmp
,
1457 (xmlChar
*)"expire");
1460 time_t now
= time (NULL
);
1465 e
= strtoul ((char *)expire
, &p
, 10);
1466 if (errno
|| *p
|| e
== ULONG_MAX
|| *expire
== '-')
1467 log_write (_("invalid expire attribute value: %s"),
1470 rc
= send_status (ctx
, STATUS_EXPIRE
, "%lu 0", e
);
1478 rc
= GPG_ERR_NO_DATA
;
1481 xml_free_request (req
);
1486 get_command (assuan_context_t ctx
, char *line
)
1488 struct client_s
*client
= assuan_get_pointer (ctx
);
1490 struct argv_s
*args
[] = {
1491 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
1495 rc
= parse_options (&line
, args
, client
, 1);
1496 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
1497 rc
= GPG_ERR_SYNTAX
;
1499 return send_error (ctx
, rc
);
1501 if (client
->opts
& OPT_INQUIRE
)
1503 unsigned char *result
;
1506 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1508 return send_error (ctx
, rc
);
1510 pthread_cleanup_push ((void *)xfree
, result
);
1511 rc
= do_get (ctx
, (char *)result
);
1512 pthread_cleanup_pop (1);
1515 rc
= do_get (ctx
, line
);
1517 return send_error (ctx
, rc
);
1520 static void list_command_cleanup1 (void *arg
);
1522 realpath_command (assuan_context_t ctx
, char *line
)
1525 char **realpath
= NULL
;
1526 struct client_s
*client
= assuan_get_pointer (ctx
);
1527 struct argv_s
*args
[] = {
1528 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
1532 rc
= parse_options (&line
, args
, client
, 1);
1533 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
1534 rc
= GPG_ERR_SYNTAX
;
1536 return send_error (ctx
, rc
);
1538 if (client
->opts
& OPT_INQUIRE
)
1540 unsigned char *result
;
1543 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1545 return send_error (ctx
, rc
);
1547 pthread_cleanup_push ((void *)xfree
, result
);
1548 (void)xml_resolve_path (client
, client
->doc
, result
, &realpath
, &rc
);
1549 pthread_cleanup_pop (1);
1552 (void)xml_resolve_path (client
, client
->doc
, (unsigned char *)line
,
1557 char *tmp
= strv_join ("\t", realpath
);
1559 strv_free (realpath
);
1561 return send_error (ctx
, GPG_ERR_ENOMEM
);
1563 pthread_cleanup_push ((void *)xfree
, tmp
);
1564 rc
= xfer_data (ctx
, tmp
, strlen (tmp
));
1565 pthread_cleanup_pop (1);
1568 return send_error (ctx
, rc
);
1572 list_command_cleanup1 (void *arg
)
1575 string_free ((struct string_s
*) arg
, 1);
1579 parse_list_opt_recurse (void *data
, void *value
)
1581 struct client_s
*client
= data
;
1583 client
->opts
|= OPT_LIST_RECURSE
;
1588 parse_opt_verbose (void *data
, void *value
)
1590 struct client_s
*client
= data
;
1592 client
->opts
|= OPT_VERBOSE
;
1597 list_path_once (struct client_s
*client
, char *line
,
1598 struct element_list_s
*elements
, struct string_s
*result
)
1602 rc
= xml_create_path_list (client
, client
->doc
, NULL
, elements
, line
, 0);
1603 if (rc
== GPG_ERR_ELOOP
|| rc
== GPG_ERR_EACCES
)
1608 int total
= slist_length (elements
->list
);
1614 for (i
= 0; i
< total
; i
++)
1616 char *tmp
= slist_nth_data (elements
->list
, i
);
1618 string_append_printf (result
, "%s%s", tmp
,
1619 i
+ 1 == total
? "" : "\n");
1623 rc
= GPG_ERR_NO_DATA
;
1630 do_list (assuan_context_t ctx
, char *line
)
1632 struct client_s
*client
= assuan_get_pointer (ctx
);
1633 gpg_error_t rc
= GPG_ERR_NO_DATA
;
1634 struct element_list_s
*elements
= NULL
;
1636 if (!line
|| !*line
)
1638 struct string_s
*str
= string_new (NULL
);
1642 return GPG_ERR_ENOMEM
;
1644 pthread_cleanup_push ((void *)list_command_cleanup1
, str
);
1645 n
= xmlDocGetRootElement (client
->doc
);
1646 for (n
= n
->children
; n
; n
= n
->next
)
1650 if (n
->type
!= XML_ELEMENT_NODE
)
1653 name
= xmlGetProp (n
, (xmlChar
*)"_name");
1656 rc
= GPG_ERR_ENOMEM
;
1660 elements
= xcalloc (1, sizeof (struct element_list_s
));
1664 rc
= GPG_ERR_ENOMEM
;
1668 elements
->prefix
= string_new (NULL
);
1669 if (!elements
->prefix
)
1672 xml_free_element_list (elements
);
1673 rc
= GPG_ERR_ENOMEM
;
1677 elements
->recurse
= client
->opts
& OPT_LIST_RECURSE
;
1678 elements
->root_only
= !elements
->recurse
;
1679 pthread_cleanup_push ((void *)xml_free_element_list
, elements
);
1680 rc
= list_path_once (client
, (char *)name
, elements
, str
);
1682 pthread_cleanup_pop (1);
1687 string_append (str
, "\n");
1691 rc
= xfer_data (ctx
, str
->str
, str
->len
);
1693 pthread_cleanup_pop (1);
1697 elements
= xcalloc (1, sizeof (struct element_list_s
));
1699 return GPG_ERR_ENOMEM
;
1701 elements
->prefix
= string_new (NULL
);
1702 if (!elements
->prefix
)
1704 xml_free_element_list (elements
);
1705 return GPG_ERR_ENOMEM
;
1708 elements
->recurse
= client
->opts
& OPT_LIST_RECURSE
;
1709 pthread_cleanup_push ((void *)xml_free_element_list
, elements
);
1710 struct string_s
*str
= string_new (NULL
);
1711 pthread_cleanup_push ((void *)list_command_cleanup1
, str
);
1712 rc
= list_path_once (client
, line
, elements
, str
);
1714 rc
= xfer_data (ctx
, str
->str
, str
->len
);
1716 pthread_cleanup_pop (1);
1717 pthread_cleanup_pop (1);
1722 list_command (assuan_context_t ctx
, char *line
)
1724 struct client_s
*client
= assuan_get_pointer (ctx
);
1726 struct argv_s
*args
[] = {
1727 &(struct argv_s
) {"recurse", OPTION_TYPE_NOARG
, parse_list_opt_recurse
},
1728 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
1729 /* These are deprecated but kept for backward compatibility with older
1731 &(struct argv_s
) {"verbose", OPTION_TYPE_NOARG
, NULL
},
1732 &(struct argv_s
) {"with-target", OPTION_TYPE_NOARG
, NULL
},
1733 &(struct argv_s
) {"all", OPTION_TYPE_NOARG
, parse_list_opt_recurse
},
1734 &(struct argv_s
) {"no-recurse", OPTION_TYPE_NOARG
, NULL
},
1738 if (disable_list_and_dump
== 1)
1739 return send_error (ctx
, GPG_ERR_NOT_IMPLEMENTED
);
1741 rc
= parse_options (&line
, args
, client
, 1);
1742 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
1743 rc
= GPG_ERR_SYNTAX
;
1745 return send_error (ctx
, rc
);
1747 if (client
->opts
& OPT_INQUIRE
)
1749 unsigned char *result
;
1752 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
1754 return send_error (ctx
, rc
);
1756 pthread_cleanup_push ((void *)xfree
, result
);
1757 rc
= do_list (ctx
, (char *)result
);
1758 pthread_cleanup_pop (1);
1761 rc
= do_list (ctx
, line
);
1763 return send_error (ctx
, rc
);
1766 #define RESUMABLE_ERROR(rc) (rc == GPG_ERR_ELOOP || rc == GPG_ERR_EACCES \
1767 || rc == GPG_ERR_ELEMENT_NOT_FOUND || !rc)
1769 * args[0] - element path
1772 attribute_list (assuan_context_t ctx
, char **args
)
1774 struct client_s
*client
= assuan_get_pointer (ctx
);
1775 char **attrlist
= NULL
;
1779 xmlNodePtr n
, an
, r
;
1782 struct xml_request_s
*req
;
1784 if (!args
|| !args
[0] || !*args
[0])
1785 return GPG_ERR_SYNTAX
;
1787 rc
= xml_new_request (client
, args
[0], XML_CMD_ATTR_LIST
, &req
);
1791 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1792 xml_free_request (req
);
1797 for (a
= n
->properties
; a
; a
= a
->next
)
1801 if (target
&& xml_reserved_attribute ((char *)a
->name
))
1804 pa
= xrealloc (attrlist
, (i
+ 2) * sizeof (char *));
1808 strv_free (attrlist
);
1810 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1811 pwmd_strerror (GPG_ERR_ENOMEM
));
1812 return GPG_ERR_ENOMEM
;
1817 attrlist
[i
] = str_asprintf ("%s %s", (char *) a
->name
, an
&& an
->content
1818 ? (char *)an
->content
: "");
1822 strv_free (attrlist
);
1823 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1824 pwmd_strerror (GPG_ERR_ENOMEM
));
1825 return GPG_ERR_ENOMEM
;
1828 attrlist
[++i
] = NULL
;
1832 return GPG_ERR_NO_DATA
;
1836 r
= xml_resolve_path (client
, client
->doc
, (xmlChar
*)args
[0], NULL
, &rc
);
1837 if (!RESUMABLE_ERROR (rc
))
1839 strv_free (attrlist
);
1842 else if (!rc
&& r
!= n
)
1852 line
= strv_join ("\n", attrlist
);
1855 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
1856 pwmd_strerror (GPG_ERR_ENOMEM
));
1857 strv_free (attrlist
);
1858 return GPG_ERR_ENOMEM
;
1861 pthread_cleanup_push ((void *)xfree
, line
);
1862 pthread_cleanup_push ((void *)req_cleanup
, attrlist
);
1863 rc
= xfer_data (ctx
, line
, strlen (line
));
1864 pthread_cleanup_pop (1);
1865 pthread_cleanup_pop (1);
1870 * args[0] - attribute
1871 * args[1] - element path
1874 attribute_delete (struct client_s
*client
, char **args
)
1879 if (!args
|| !args
[0] || !*args
[0] || !args
[1] || !*args
[1])
1880 return GPG_ERR_SYNTAX
;
1882 if (!strcmp (args
[0], "_name") || !strcmp (args
[0], "target"))
1883 return GPG_ERR_INV_ATTR
;
1885 if (!xml_reserved_attribute (args
[0]))
1886 n
= xml_resolve_path (client
, client
->doc
, (xmlChar
*)args
[1], NULL
, &rc
);
1889 struct xml_request_s
*req
;
1891 rc
= xml_new_request (client
, args
[1], XML_CMD_ATTR
, &req
);
1895 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1896 xml_free_request (req
);
1900 rc
= xml_is_element_owner (client
, n
);
1903 rc
= xml_delete_attribute (client
, n
, (xmlChar
*) args
[0]);
1909 * Creates the "target" attribute. When other commands encounter an element
1910 * with this attribute they follow the "target" after appending remaining
1911 * elements from the original element path to the target. The exception is the
1912 * ATTR command that operates on the element itself (for reserved attribute
1913 * names) and not the target.
1915 * If the source element path doesn't exist when using 'ATTR SET target', it is
1916 * created, but the destination element path must exist. This is simliar to the
1917 * ls(1) command: ln -s src dst.
1919 * args[0] - source element path
1920 * args[1] - destination element path
1923 set_target_attribute (struct client_s
*client
, char **args
)
1925 struct xml_request_s
*req
= NULL
;
1930 if (!args
|| !args
[0] || !args
[1])
1931 return GPG_ERR_SYNTAX
;
1933 src
= str_split (args
[0], "\t", 0);
1935 return GPG_ERR_SYNTAX
;
1937 if (!xml_valid_element_path (src
, 0))
1940 return GPG_ERR_INV_VALUE
;
1943 dst
= str_split (args
[1], "\t", 0);
1947 return GPG_ERR_SYNTAX
;
1950 // Be sure the destination element path exists. */
1951 rc
= xml_new_request (client
, args
[1], XML_CMD_NONE
, &req
);
1955 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1956 if (rc
&& rc
!= GPG_ERR_EACCES
)
1959 xml_free_request (req
);
1962 if (!strcmp (args
[0], args
[1]))
1964 rc
= GPG_ERR_EEXIST
;
1968 rc
= xml_new_request (client
, args
[0], XML_CMD_ATTR_TARGET
, &req
);
1972 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
1973 if (rc
&& rc
!= GPG_ERR_EACCES
)
1978 rc
= xml_add_attribute (client
, n
, "target", args
[1]);
1980 rc
= xml_unlink_node (client
, n
->children
);
1986 xml_free_request (req
);
1991 * args[0] - attribute
1992 * args[1] - element path
1995 attribute_get (assuan_context_t ctx
, char **args
)
1997 struct client_s
*client
= assuan_get_pointer (ctx
);
2001 struct xml_request_s
*req
;
2003 if (!args
|| !args
[0] || !*args
[0] || !args
[1] || !*args
[1])
2004 return GPG_ERR_SYNTAX
;
2006 if (!xml_reserved_attribute (args
[0]))
2007 n
= xml_resolve_path (client
, client
->doc
, (xmlChar
*)args
[1], NULL
, &rc
);
2010 rc
= xml_new_request (client
, args
[1], XML_CMD_ATTR
, &req
);
2014 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
2015 xml_free_request (req
);
2021 a
= xmlGetProp (n
, (xmlChar
*) args
[0]);
2023 return GPG_ERR_NOT_FOUND
;
2025 pthread_cleanup_push ((void *)xmlFree
, a
);
2028 rc
= xfer_data (ctx
, (char *) a
, xmlStrlen (a
));
2030 rc
= GPG_ERR_NO_DATA
;
2032 pthread_cleanup_pop (1);
2037 * args[0] - attribute
2038 * args[1] - element path
2042 attribute_set (struct client_s
*client
, char **args
)
2044 struct xml_request_s
*req
;
2048 if (!args
|| !args
[0] || !args
[1])
2049 return GPG_ERR_SYNTAX
;
2052 * Reserved attribute names.
2054 if (!strcmp (args
[0], "_name")) // Use the RENAME command instead
2055 return GPG_ERR_INV_ATTR
;
2056 else if (!strcmp (args
[0], "target"))
2057 return set_target_attribute (client
, args
+ 1);
2058 else if (!xml_valid_attribute (args
[0]))
2059 return GPG_ERR_INV_VALUE
;
2061 if (!xml_valid_attribute_value (args
[2]))
2062 return GPG_ERR_INV_VALUE
;
2064 if (!xml_reserved_attribute (args
[0]))
2066 n
= xml_resolve_path (client
, client
->doc
, (xmlChar
*)args
[1], NULL
, &rc
);
2069 rc
= xml_new_request (client
, args
[1], XML_CMD_NONE
, &req
);
2072 rc
= xml_check_recursion (client
, req
);
2073 xml_free_request (req
);
2079 rc
= xml_new_request (client
, args
[1], XML_CMD_ATTR
, &req
);
2083 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
2084 xml_free_request (req
);
2088 rc
= xml_is_element_owner (client
, n
);
2091 rc
= xml_add_attribute (client
, n
, args
[0], args
[2]);
2098 * req[1] - attribute name or element path if command is LIST
2099 * req[2] - element path
2100 * req[2] - element path or value
2104 do_attr (assuan_context_t ctx
, char *line
)
2106 struct client_s
*client
= assuan_get_pointer (ctx
);
2110 req
= str_split (line
, " ", 4);
2111 if (!req
|| !req
[0] || !req
[1])
2114 return GPG_ERR_SYNTAX
;
2117 pthread_cleanup_push ((void *)req_cleanup
, req
);
2119 if (strcasecmp (req
[0], "SET") == 0)
2120 rc
= attribute_set (client
, req
+ 1);
2121 else if (strcasecmp (req
[0], "GET") == 0)
2122 rc
= attribute_get (ctx
, req
+ 1);
2123 else if (strcasecmp (req
[0], "DELETE") == 0)
2124 rc
= attribute_delete (client
, req
+ 1);
2125 else if (strcasecmp (req
[0], "LIST") == 0)
2126 rc
= attribute_list (ctx
, req
+ 1);
2128 rc
= GPG_ERR_SYNTAX
;
2130 client
->flags
&= ~(FLAG_ACL_IGNORE
|FLAG_ACL_ERROR
);
2131 pthread_cleanup_pop (1);
2136 attr_command (assuan_context_t ctx
, char *line
)
2138 struct client_s
*client
= assuan_get_pointer (ctx
);
2140 struct argv_s
*args
[] = {
2141 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
2145 rc
= parse_options (&line
, args
, client
, 1);
2146 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
2147 rc
= GPG_ERR_SYNTAX
;
2149 return send_error (ctx
, rc
);
2151 if (client
->opts
& OPT_INQUIRE
)
2153 unsigned char *result
;
2156 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2158 return send_error (ctx
, rc
);
2160 pthread_cleanup_push ((void *)xfree
, result
);
2161 rc
= do_attr (ctx
, (char *)result
);
2162 pthread_cleanup_pop (1);
2165 rc
= do_attr (ctx
, line
);
2167 return send_error (ctx
, rc
);
2171 parse_iscached_opt_lock (void *data
, void *value
)
2173 struct client_s
*client
= data
;
2176 client
->opts
|= OPT_LOCK
;
2181 iscached_command (assuan_context_t ctx
, char *line
)
2183 struct client_s
*client
= assuan_get_pointer (ctx
);
2185 struct argv_s
*args
[] = {
2186 &(struct argv_s
) {"lock", OPTION_TYPE_NOARG
, parse_iscached_opt_lock
},
2190 if (!line
|| !*line
)
2191 return send_error (ctx
, GPG_ERR_SYNTAX
);
2193 rc
= parse_options (&line
, args
, client
, 1);
2195 return send_error (ctx
, rc
);
2196 else if (!valid_filename (line
))
2197 return send_error (ctx
, GPG_ERR_INV_VALUE
);
2199 rc
= cache_iscached (line
, NULL
);
2200 if (client
->opts
& OPT_LOCK
2201 && (!rc
|| gpg_err_code (rc
) == GPG_ERR_NO_DATA
))
2203 unsigned char md5file
[16];
2204 gpg_error_t trc
= rc
;
2206 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, line
, strlen (line
));
2207 if (memcmp (md5file
, client
->md5file
, 16))
2208 cleanup_client (client
);
2210 memcpy (client
->md5file
, md5file
, 16);
2211 rc
= do_lock (client
, 1);
2216 return send_error (ctx
, rc
);
2220 clearcache_command (assuan_context_t ctx
, char *line
)
2222 gpg_error_t rc
= 0, all_rc
= 0;
2223 unsigned char md5file
[16];
2227 struct client_thread_s
*once
= NULL
;
2230 MUTEX_LOCK (&cn_mutex
);
2231 pthread_cleanup_push ((void *)cleanup_mutex_cb
, &cn_mutex
);
2233 if (!line
|| !*line
)
2236 t
= slist_length (cn_thread_list
);
2238 for (i
= 0; i
< t
; i
++)
2240 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, i
);
2241 assuan_peercred_t peer
;
2246 /* Lock each connected clients' file mutex to prevent any other client
2247 * from accessing the cache entry (the file mutex is locked upon
2248 * command startup). The cache for the entry is not cleared if the
2249 * file mutex is locked by another client to prevent this function
2254 if (thd
->cl
->filename
)
2256 rc
= do_validate_peer (ctx
, thd
->cl
->filename
, &peer
);
2257 all_rc
= !all_rc
? rc
: all_rc
;
2265 rc
= cache_lock_mutex (thd
->cl
->ctx
, thd
->cl
->md5file
, -1, 0, -1);
2266 if (gpg_err_code (rc
) == GPG_ERR_LOCKED
)
2268 if (pthread_equal (pthread_self (), thd
->tid
))
2272 if (!thd
->cl
->filename
||
2273 cache_iscached (thd
->cl
->filename
,
2274 NULL
) == GPG_ERR_NO_DATA
)
2280 cache_defer_clear (thd
->cl
->md5file
);
2283 else if (gpg_err_code (rc
) == GPG_ERR_NO_DATA
)
2291 rc
= cache_clear (thd
->cl
->md5file
);
2292 cache_unlock_mutex (thd
->cl
->md5file
, 0);
2300 /* A single data filename was specified. Lock only this data file
2301 * mutex and free the cache entry. */
2304 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, line
, strlen (line
));
2305 rc
= do_validate_peer (ctx
, line
, &peer
);
2307 if (!rc
&& !memcmp (thd
->cl
->md5file
, md5file
, sizeof (md5file
)))
2309 rc
= cache_lock_mutex (thd
->cl
->ctx
, thd
->cl
->md5file
, -1, 0,
2311 if (gpg_err_code (rc
) == GPG_ERR_LOCKED
)
2313 if (pthread_equal (pthread_self (), thd
->tid
))
2320 rc
= cache_clear (thd
->cl
->md5file
);
2321 cache_unlock_mutex (thd
->cl
->md5file
, 0);
2325 cache_defer_clear (thd
->cl
->md5file
);
2333 /* Only connected clients' cache entries have been cleared. Now clear any
2334 * remaining cache entries without clients but only if there wasn't an
2335 * error from above since this would defeat the locking check of the
2336 * remaining entries. */
2342 /* No clients are using the specified file. */
2343 else if (!all_rc
&& !rc
&& !once
)
2345 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, line
, strlen (line
));
2346 rc
= cache_clear (md5file
);
2349 /* Release the connection mutex. */
2350 pthread_cleanup_pop (1);
2354 send_status_all (STATUS_CACHE
, NULL
);
2356 /* One or more files were locked while clearing all cache entries. */
2360 return send_error (ctx
, rc
);
2364 cachetimeout_command (assuan_context_t ctx
, char *line
)
2367 char **req
= str_split (line
, " ", 0);
2370 assuan_peercred_t peer
;
2372 if (!req
|| !*req
|| !req
[1])
2375 return send_error (ctx
, GPG_ERR_SYNTAX
);
2379 timeout
= (int) strtol (req
[1], &p
, 10);
2380 if (errno
!= 0 || *p
|| timeout
< -1)
2383 return send_error (ctx
, GPG_ERR_SYNTAX
);
2386 rc
= do_validate_peer (ctx
, req
[0], &peer
);
2389 unsigned char md5file
[16];
2391 gcry_md_hash_buffer (GCRY_MD_MD5
, md5file
, req
[0], strlen (req
[0]));
2392 rc
= cache_set_timeout (md5file
, timeout
);
2393 if (!rc
|| gpg_err_code (rc
) == GPG_ERR_NOT_FOUND
)
2396 MUTEX_LOCK (&rcfile_mutex
);
2397 config_set_int_param (&global_config
, req
[0], "cache_timeout",
2399 MUTEX_UNLOCK (&rcfile_mutex
);
2404 return send_error (ctx
, rc
);
2408 dump_command (assuan_context_t ctx
, char *line
)
2412 struct client_s
*client
= assuan_get_pointer (ctx
);
2415 if (disable_list_and_dump
== 1)
2416 return send_error (ctx
, GPG_ERR_NOT_IMPLEMENTED
);
2419 return send_error (ctx
, GPG_ERR_SYNTAX
);
2421 rc
= peer_is_invoker(client
);
2423 return send_error (ctx
, rc
);
2425 xmlDocDumpFormatMemory (client
->doc
, &xml
, &len
, 1);
2429 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
2430 pwmd_strerror (GPG_ERR_ENOMEM
));
2431 return send_error (ctx
, GPG_ERR_ENOMEM
);
2434 pthread_cleanup_push ((void *)xmlFree
, xml
);
2435 rc
= xfer_data (ctx
, (char *) xml
, len
);
2436 pthread_cleanup_pop (1);
2437 return send_error (ctx
, rc
);
2441 getconfig_command (assuan_context_t ctx
, char *line
)
2443 struct client_s
*client
= assuan_get_pointer (ctx
);
2445 char filename
[255] = { 0 }, param
[747] = { 0 };
2446 char *p
, *tmp
= NULL
, *fp
= client
->filename
, *paramp
= line
;
2448 if (!line
|| !*line
)
2449 return send_error (ctx
, GPG_ERR_SYNTAX
);
2451 if (strchr (line
, ' '))
2453 sscanf (line
, " %254[^ ] %746c", filename
, param
);
2458 if (fp
&& !valid_filename (fp
))
2459 return send_error (ctx
, GPG_ERR_INV_VALUE
);
2461 paramp
= str_down (paramp
);
2462 if (!strcmp (paramp
, "passphrase"))
2463 return send_error (ctx
, GPG_ERR_UNKNOWN_OPTION
);
2465 p
= config_get_value (fp
? fp
: "global", paramp
);
2467 return send_error (ctx
, GPG_ERR_UNKNOWN_OPTION
);
2469 tmp
= expand_homedir (p
);
2473 log_write ("%s(%i): %s", __FILE__
, __LINE__
,
2474 pwmd_strerror (GPG_ERR_ENOMEM
));
2475 return send_error (ctx
, GPG_ERR_ENOMEM
);
2479 pthread_cleanup_push ((void *)xfree
, p
);
2480 rc
= xfer_data (ctx
, p
, strlen (p
));
2481 pthread_cleanup_pop (1);
2482 return send_error (ctx
, rc
);
2487 xmlXPathContextPtr xp
;
2488 xmlXPathObjectPtr result
;
2494 xpath_command_cleanup (void *arg
)
2496 struct xpath_s
*xpath
= arg
;
2501 req_cleanup (xpath
->req
);
2504 xmlBufferFree (xpath
->buf
);
2507 xmlXPathFreeObject (xpath
->result
);
2510 xmlXPathFreeContext (xpath
->xp
);
2514 do_xpath (assuan_context_t ctx
, char *line
)
2517 struct client_s
*client
= assuan_get_pointer (ctx
);
2518 struct xpath_s _x
= { 0 };
2519 struct xpath_s
*xpath
= &_x
;
2521 if (!line
|| !*line
)
2522 return GPG_ERR_SYNTAX
;
2524 if ((xpath
->req
= str_split (line
, "\t", 2)) == NULL
)
2526 if (strv_printf (&xpath
->req
, "%s", line
) == 0)
2527 return GPG_ERR_ENOMEM
;
2530 xpath
->xp
= xmlXPathNewContext (client
->doc
);
2533 rc
= GPG_ERR_BAD_DATA
;
2538 xmlXPathEvalExpression ((xmlChar
*) xpath
->req
[0], xpath
->xp
);
2541 rc
= GPG_ERR_BAD_DATA
;
2545 if (xmlXPathNodeSetIsEmpty (xpath
->result
->nodesetval
))
2547 rc
= GPG_ERR_ELEMENT_NOT_FOUND
;
2551 rc
= xml_recurse_xpath_nodeset (client
, client
->doc
,
2552 xpath
->result
->nodesetval
,
2553 (xmlChar
*) xpath
->req
[1], &xpath
->buf
, 0,
2557 else if (!xpath
->req
[1] && !xmlBufferLength (xpath
->buf
))
2559 rc
= GPG_ERR_NO_DATA
;
2562 else if (xpath
->req
[1])
2568 pthread_cleanup_push ((void *)xpath_command_cleanup
, &xpath
);
2569 rc
= xfer_data (ctx
, (char *) xmlBufferContent (xpath
->buf
),
2570 xmlBufferLength (xpath
->buf
));
2571 pthread_cleanup_pop (0);
2573 xpath_command_cleanup (xpath
);
2578 xpath_command (assuan_context_t ctx
, char *line
)
2580 struct client_s
*client
= assuan_get_pointer (ctx
);
2582 struct argv_s
*args
[] = {
2583 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
2587 if (disable_list_and_dump
== 1)
2588 return send_error (ctx
, GPG_ERR_NOT_IMPLEMENTED
);
2590 rc
= peer_is_invoker(client
);
2592 return send_error (ctx
, rc
);
2594 rc
= parse_options (&line
, args
, client
, 1);
2595 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
2596 rc
= GPG_ERR_SYNTAX
;
2598 return send_error (ctx
, rc
);
2600 if (client
->opts
& OPT_INQUIRE
)
2602 unsigned char *result
;
2605 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2607 return send_error (ctx
, rc
);
2609 pthread_cleanup_push ((void *)xfree
, result
);
2610 rc
= do_xpath (ctx
, (char *)result
);
2611 pthread_cleanup_pop (1);
2614 rc
= do_xpath (ctx
, line
);
2616 return send_error (ctx
, rc
);
2620 do_xpathattr (assuan_context_t ctx
, char *line
)
2622 struct client_s
*client
= assuan_get_pointer (ctx
);
2626 struct xpath_s _x
= { 0 };
2627 struct xpath_s
*xpath
= &_x
;
2629 if (!line
|| !*line
)
2630 return GPG_ERR_SYNTAX
;
2632 if ((req
= str_split (line
, " ", 3)) == NULL
)
2633 return GPG_ERR_ENOMEM
;
2637 rc
= GPG_ERR_SYNTAX
;
2641 if (!strcasecmp (req
[0], "SET"))
2643 else if (!strcasecmp (req
[0], "DELETE"))
2647 rc
= GPG_ERR_SYNTAX
;
2651 if (!req
[1] || !req
[2])
2653 rc
= GPG_ERR_SYNTAX
;
2657 if ((xpath
->req
= str_split (req
[2], "\t", 3)) == NULL
)
2659 rc
= GPG_ERR_ENOMEM
;
2663 if (!xpath
->req
[0] || (!xpath
->req
[1] && !cmd
) || (xpath
->req
[1] && cmd
))
2665 rc
= GPG_ERR_SYNTAX
;
2669 xpath
->xp
= xmlXPathNewContext (client
->doc
);
2672 rc
= GPG_ERR_BAD_DATA
;
2676 xpath
->result
= xmlXPathEvalExpression ((xmlChar
*) xpath
->req
[0], xpath
->xp
);
2679 rc
= GPG_ERR_BAD_DATA
;
2683 if (xmlXPathNodeSetIsEmpty (xpath
->result
->nodesetval
))
2685 rc
= GPG_ERR_ELEMENT_NOT_FOUND
;
2689 rc
= xml_recurse_xpath_nodeset (client
, client
->doc
,
2690 xpath
->result
->nodesetval
,
2691 (xmlChar
*) xpath
->req
[1], &xpath
->buf
, cmd
,
2692 (xmlChar
*) req
[1]);
2695 xpath_command_cleanup (xpath
);
2700 /* XPATHATTR SET|DELETE <name> <expression>[<TAB>[value]] */
2702 xpathattr_command (assuan_context_t ctx
, char *line
)
2704 struct client_s
*client
= assuan_get_pointer (ctx
);
2706 struct argv_s
*args
[] = {
2707 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
2711 if (disable_list_and_dump
== 1)
2712 return send_error (ctx
, GPG_ERR_NOT_IMPLEMENTED
);
2714 rc
= peer_is_invoker(client
);
2716 return send_error (ctx
, rc
);
2718 rc
= parse_options (&line
, args
, client
, 1);
2719 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
2720 rc
= GPG_ERR_SYNTAX
;
2722 return send_error (ctx
, rc
);
2724 if (client
->opts
& OPT_INQUIRE
)
2726 unsigned char *result
;
2729 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2731 return send_error (ctx
, rc
);
2733 pthread_cleanup_push ((void *)xfree
, result
);
2734 rc
= do_xpathattr (ctx
, (char *)result
);
2735 pthread_cleanup_pop (1);
2738 rc
= do_xpathattr (ctx
, line
);
2740 return send_error (ctx
, rc
);
2744 do_import (struct client_s
*client
, const char *root_element
,
2745 unsigned char *content
)
2747 xmlDocPtr doc
= NULL
;
2748 xmlNodePtr n
= NULL
, root
;
2750 struct string_s
*str
= NULL
;
2751 struct xml_request_s
*req
= NULL
;
2753 if (!content
|| !*content
)
2754 return GPG_ERR_SYNTAX
;
2758 rc
= xml_new_request (client
, root_element
, XML_CMD_STORE
, &req
);
2765 if (!xml_valid_element_path (req
->args
, 0))
2767 xml_free_request (req
);
2769 return GPG_ERR_INV_VALUE
;
2773 str
= string_new_content ((char *)content
);
2774 str
= string_prepend (str
, "<pwmd>");
2775 str
= string_append (str
, "</pwmd>");
2776 doc
= xmlReadDoc ((xmlChar
*) str
->str
, NULL
, "UTF-8", XML_PARSE_NOBLANKS
);
2777 string_free (str
, 1);
2780 rc
= GPG_ERR_BAD_DATA
;
2784 root
= xmlDocGetRootElement (doc
);
2785 root
= root
->children
;
2786 if (root
->type
!= XML_ELEMENT_NODE
)
2788 rc
= GPG_ERR_BAD_DATA
;
2792 rc
= xml_validate_import (client
, root
);
2798 /* Create the new specified root element path, if needed. */
2799 n
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
),
2804 /* Overwrite the children of the specified root element path. */
2805 xmlUnlinkNode (n
->children
);
2806 xmlFreeNodeList (n
->children
);
2810 n
= xmlDocGetRootElement (client
->doc
);
2815 xmlChar
*name
= xml_attribute_value (root
, (xmlChar
*)"_name");
2818 rc
= GPG_ERR_BAD_DATA
;
2821 /* No --root argument passed. Overwrite the current documents' root
2822 * element matching the root element of the imported data. */
2823 xml_free_request (req
);
2825 rc
= xml_new_request (client
, (char *)name
, XML_CMD_DELETE
, &req
);
2831 tmp
= xml_find_elements (client
, req
,
2832 xmlDocGetRootElement (req
->doc
), &rc
);
2833 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
2838 xmlUnlinkNode (tmp
);
2839 xmlFreeNodeList (tmp
);
2848 copy
= xmlCopyNodeList (root
);
2850 rc
= GPG_ERR_ENOMEM
;
2853 n
= xmlAddChildList (n
, copy
);
2855 rc
= GPG_ERR_ENOMEM
;
2860 if (!rc
&& n
&& n
->parent
)
2861 rc
= xml_update_element_mtime (client
, n
->parent
);
2864 xml_free_request (req
);
2873 parse_import_opt_root (void *data
, void *value
)
2875 struct client_s
*client
= data
;
2877 client
->import_root
= str_dup (value
);
2878 return client
->import_root
? 0 : GPG_ERR_ENOMEM
;
2882 import_command (assuan_context_t ctx
, char *line
)
2885 struct client_s
*client
= assuan_get_pointer (ctx
);
2886 unsigned char *result
;
2888 struct argv_s
*args
[] = {
2889 &(struct argv_s
) {"root", OPTION_TYPE_ARG
, parse_import_opt_root
},
2893 xfree (client
->import_root
);
2894 client
->import_root
= NULL
;
2895 rc
= parse_options (&line
, args
, client
, 0);
2897 return send_error (ctx
, rc
);
2899 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
2902 xfree (client
->import_root
);
2903 client
->import_root
= NULL
;
2904 return send_error (ctx
, rc
);
2907 rc
= do_import (client
, client
->import_root
, result
);
2908 xfree (client
->import_root
);
2909 client
->import_root
= NULL
;
2910 return send_error (ctx
, rc
);
2914 do_lock (struct client_s
*client
, int add
)
2916 gpg_error_t rc
= lock_file_mutex (client
, add
);
2919 client
->flags
|= FLAG_LOCK_CMD
;
2925 lock_command (assuan_context_t ctx
, char *line
)
2927 struct client_s
*client
= assuan_get_pointer (ctx
);
2931 return send_error (ctx
, GPG_ERR_SYNTAX
);
2933 rc
= do_lock (client
, 0);
2934 return send_error (ctx
, rc
);
2938 unlock_command (assuan_context_t ctx
, char *line
)
2940 struct client_s
*client
= assuan_get_pointer (ctx
);
2944 return send_error (ctx
, GPG_ERR_SYNTAX
);
2946 rc
= unlock_file_mutex (client
, 0);
2947 return send_error (ctx
, rc
);
2951 get_set_env (const char *name
, const char *value
)
2953 if (value
&& *value
)
2954 setenv (name
, value
, 1);
2960 option_command (assuan_context_t ctx
, char *line
)
2962 struct client_s
*client
= assuan_get_pointer (ctx
);
2964 char namebuf
[255] = { 0 };
2965 char *name
= namebuf
;
2966 char *value
= NULL
, *p
, *tmp
= NULL
;
2968 p
= strchr (line
, '=');
2971 strncpy (namebuf
, line
, sizeof(namebuf
));
2972 namebuf
[sizeof(namebuf
)-1] = 0;
2976 strncpy (namebuf
, line
, strlen (line
)-strlen (p
));
2977 namebuf
[sizeof(namebuf
)-1] = 0;
2981 log_write2 ("OPTION name='%s' value='%s'", name
, value
);
2983 if (strcasecmp (name
, (char *) "lock-timeout") == 0)
2989 n
= strtol (value
, &tmp
, 10);
2991 return send_error (ctx
, GPG_ERR_INV_VALUE
);
2994 client
->lock_timeout
= n
;
2996 else if (strcasecmp (name
, (char *) "NAME") == 0)
2998 if (value
&& strchr (value
, ' '))
2999 rc
= GPG_ERR_INV_VALUE
;
3002 tmp
= pthread_getspecific (thread_name_key
);
3004 MUTEX_LOCK (&cn_mutex
);
3005 xfree (client
->thd
->name
);
3006 client
->thd
->name
= NULL
;
3008 if (!value
|| !*value
)
3009 pthread_setspecific (thread_name_key
, str_dup (""));
3012 client
->thd
->name
= str_dup (value
);
3013 pthread_setspecific (thread_name_key
, str_dup (value
));
3016 MUTEX_UNLOCK (&cn_mutex
);
3019 else if (strcasecmp (name
, "disable-pinentry") == 0)
3023 if (value
&& *value
)
3025 n
= (int) strtol (value
, &tmp
, 10);
3026 if (*tmp
|| n
< 0 || n
> 1)
3027 return send_error (ctx
, GPG_ERR_INV_VALUE
);
3031 client
->flags
|= FLAG_NO_PINENTRY
;
3033 client
->flags
&= ~FLAG_NO_PINENTRY
;
3035 else if (strcasecmp (name
, "ttyname") == 0)
3037 get_set_env ("GPG_TTY", value
);
3039 else if (strcasecmp (name
, "ttytype") == 0)
3041 get_set_env ("TERM", value
);
3043 else if (strcasecmp (name
, "display") == 0)
3045 get_set_env ("DISPLAY", value
);
3047 else if (strcasecmp (name
, "lc_messages") == 0)
3050 else if (strcasecmp (name
, "lc_ctype") == 0)
3053 else if (strcasecmp (name
, "desc") == 0)
3056 else if (strcasecmp (name
, "pinentry-timeout") == 0)
3060 rc
= GPG_ERR_UNKNOWN_OPTION
;
3062 return send_error (ctx
, rc
);
3066 do_rename (assuan_context_t ctx
, char *line
)
3068 struct client_s
*client
= assuan_get_pointer (ctx
);
3070 xmlNodePtr src
, dst
;
3071 struct string_s
*str
= NULL
, *tstr
;
3072 struct xml_request_s
*req
;
3075 args
= str_split (line
, " ", 0);
3076 if (!args
|| strv_length (args
) != 2)
3079 return GPG_ERR_SYNTAX
;
3082 if (!xml_valid_element ((xmlChar
*) args
[1]))
3085 return GPG_ERR_INV_VALUE
;
3088 rc
= xml_new_request (client
, args
[0], XML_CMD_RENAME
, &req
);
3095 src
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
3099 rc
= xml_is_element_owner (client
, src
);
3103 xmlChar
*a
= xmlGetProp (src
, (xmlChar
*) "_name");
3106 rc
= GPG_ERR_ENOMEM
;
3110 /* To prevent unwanted effects:
3112 * <element _name="a"><element _name="b"/></element>
3116 if (xmlStrEqual (a
, (xmlChar
*) args
[1]))
3119 rc
= GPG_ERR_CONFLICT
;
3124 str
= string_new (args
[0]);
3127 rc
= GPG_ERR_ENOMEM
;
3131 p
= strrchr (str
->str
, '\t');
3133 tstr
= string_truncate (str
, strlen (str
->str
)-strlen (p
));
3135 tstr
= string_truncate (str
, 0);
3139 string_free (str
, 1);
3140 rc
= GPG_ERR_ENOMEM
;
3145 tstr
= string_append_printf (str
, "%s%s", str
->len
? "\t" : "", args
[1]);
3148 string_free (str
, 1);
3149 rc
= GPG_ERR_ENOMEM
;
3154 xml_free_request (req
);
3155 rc
= xml_new_request (client
, str
->str
, XML_CMD_RENAME
, &req
);
3156 string_free (str
, 1);
3163 dst
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
3164 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
3169 /* Target may exist:
3171 * <element _name="a"/>
3172 * <element _name="b" target="a"/>
3178 rc
= GPG_ERR_CONFLICT
;
3184 rc
= xml_is_element_owner (client
, dst
);
3188 rc
= xml_add_attribute (client
, src
, "_name", args
[1]);
3190 xml_unlink_node (client
, dst
);
3193 rc
= xml_add_attribute (client
, src
, "_name", args
[1]);
3196 xml_free_request (req
);
3202 rename_command (assuan_context_t ctx
, char *line
)
3204 struct client_s
*client
= assuan_get_pointer (ctx
);
3206 struct argv_s
*args
[] = {
3207 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
3211 rc
= parse_options (&line
, args
, client
, 1);
3212 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
3213 rc
= GPG_ERR_SYNTAX
;
3215 return send_error (ctx
, rc
);
3217 if (client
->opts
& OPT_INQUIRE
)
3219 unsigned char *result
;
3222 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
3224 return send_error (ctx
, rc
);
3226 pthread_cleanup_push ((void *)xfree
, result
);
3227 rc
= do_rename (ctx
, (char *)result
);
3228 pthread_cleanup_pop (1);
3231 rc
= do_rename (ctx
, line
);
3233 return send_error (ctx
, rc
);
3237 do_copy (assuan_context_t ctx
, char *line
)
3239 struct client_s
*client
= assuan_get_pointer (ctx
);
3240 char **args
, **targs
;
3241 xmlNodePtr src
, dst
, tree
= NULL
;
3242 struct xml_request_s
*req
;
3245 args
= str_split (line
, " ", 0);
3246 if (!args
|| strv_length (args
) != 2)
3249 return GPG_ERR_SYNTAX
;
3252 targs
= str_split (args
[1], "\t", 0);
3256 return GPG_ERR_ENOMEM
;
3259 if (!xml_valid_element_path (targs
, 0))
3263 return GPG_ERR_INV_VALUE
;
3267 rc
= xml_new_request (client
, args
[0], XML_CMD_NONE
, &req
);
3274 src
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
3278 tree
= xmlCopyNodeList (src
);
3281 rc
= GPG_ERR_ENOMEM
;
3285 xml_free_request (req
);
3286 /* Create the destination element path if it does not exist. */
3287 rc
= xml_new_request (client
, args
[1], XML_CMD_STORE
, &req
);
3294 dst
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
3298 rc
= xml_is_element_owner (client
, dst
);
3302 rc
= xml_validate_target (client
, req
->doc
, args
[1], src
);
3303 if (rc
|| src
== dst
)
3305 rc
= GPG_ERR_CONFLICT
;
3309 /* Merge any attributes from the src node to the initial dst node. */
3310 for (xmlAttrPtr attr
= tree
->properties
; attr
; attr
= attr
->next
)
3312 if (xmlStrEqual (attr
->name
, (xmlChar
*) "_name"))
3315 xmlAttrPtr a
= xmlHasProp (dst
, attr
->name
);
3319 xmlChar
*tmp
= xmlNodeGetContent (attr
->children
);
3320 xmlNewProp (dst
, attr
->name
, tmp
);
3322 /* Create the default attributes. */
3323 rc
= xml_add_attribute (client
, dst
, NULL
, NULL
);
3326 xmlNodePtr n
= dst
->children
;
3328 xmlFreeNodeList (n
);
3329 dst
->children
= NULL
;
3333 n
= xmlCopyNodeList (tree
->children
);
3336 rc
= GPG_ERR_ENOMEM
;
3340 n
= xmlAddChildList (dst
, n
);
3343 rc
= GPG_ERR_ENOMEM
;
3347 rc
= xml_update_element_mtime (client
, xmlDocGetRootElement (client
->doc
)
3348 == dst
->parent
? dst
: dst
->parent
);
3354 xmlUnlinkNode (tree
);
3355 xmlFreeNodeList (tree
);
3358 xml_free_request (req
);
3364 copy_command (assuan_context_t ctx
, char *line
)
3366 struct client_s
*client
= assuan_get_pointer (ctx
);
3368 struct argv_s
*args
[] = {
3369 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
3373 rc
= parse_options (&line
, args
, client
, 1);
3374 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
3375 rc
= GPG_ERR_SYNTAX
;
3377 return send_error (ctx
, rc
);
3379 if (client
->opts
& OPT_INQUIRE
)
3381 unsigned char *result
;
3384 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
3386 return send_error (ctx
, rc
);
3388 pthread_cleanup_push ((void *)xfree
, result
);
3389 rc
= do_copy (ctx
, (char *)result
);
3390 pthread_cleanup_pop (1);
3393 rc
= do_copy (ctx
, line
);
3395 return send_error (ctx
, rc
);
3399 do_move (assuan_context_t ctx
, char *line
)
3401 struct client_s
*client
= assuan_get_pointer (ctx
);
3403 xmlNodePtr src
, dst
;
3404 struct xml_request_s
*req
;
3407 args
= str_split (line
, " ", 0);
3408 if (!args
|| strv_length (args
) != 2)
3411 return GPG_ERR_SYNTAX
;
3416 char **targs
= str_split (args
[1], "\t", 0);
3420 return GPG_ERR_ENOMEM
;
3423 if (!xml_valid_element_path (targs
, 0))
3427 return GPG_ERR_INV_VALUE
;
3433 rc
= xml_new_request (client
, args
[0], XML_CMD_MOVE
, &req
);
3440 src
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
), &rc
);
3444 rc
= xml_is_element_owner (client
, src
);
3448 xml_free_request (req
);
3452 rc
= xml_new_request (client
, args
[1], XML_CMD_NONE
, &req
);
3456 dst
= xml_find_elements (client
, req
, xmlDocGetRootElement (req
->doc
),
3460 dst
= xmlDocGetRootElement (client
->doc
);
3462 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
3467 for (xmlNodePtr n
= dst
; n
; n
= n
->parent
)
3471 rc
= GPG_ERR_CONFLICT
;
3478 xmlChar
*a
= xml_attribute_value (src
, (xmlChar
*) "_name");
3479 xmlNodePtr dup
= xml_find_element (client
, dst
->children
, (char *) a
, &rc
);
3482 if (rc
&& rc
!= GPG_ERR_ELEMENT_NOT_FOUND
)
3491 rc
= GPG_ERR_CONFLICT
;
3495 if (dst
== xmlDocGetRootElement (client
->doc
))
3500 while (n
->parent
&& n
->parent
!= dst
)
3503 xmlChar
*a
= xml_attribute_value (n
, (xmlChar
*) "_name");
3504 xmlChar
*b
= xml_attribute_value (src
, (xmlChar
*) "_name");
3506 if (xmlStrEqual (a
, b
))
3509 xmlUnlinkNode (src
);
3511 xmlFreeNodeList (n
);
3519 xmlUnlinkNode (dup
);
3520 xmlFreeNodeList (dup
);
3524 xmlUnlinkNode (dup
);
3528 if (!dst
&& *req
->args
)
3530 struct xml_request_s
*nreq
= NULL
;
3531 xmlChar
*name
= xml_attribute_value (src
, (xmlChar
*) "_name");
3533 if (src
->parent
== xmlDocGetRootElement (client
->doc
)
3534 && !strcmp ((char *) name
, *req
->args
))
3537 rc
= GPG_ERR_CONFLICT
;
3542 rc
= xml_new_request (client
, args
[1], XML_CMD_STORE
, &nreq
);
3545 dst
= xml_find_elements (client
, nreq
,
3546 xmlDocGetRootElement (nreq
->doc
), &rc
);
3547 xml_free_request (nreq
);
3554 xml_update_element_mtime (client
, src
->parent
);
3555 xmlUnlinkNode (src
);
3557 dst
= xmlAddChildList (dst
, src
);
3559 rc
= GPG_ERR_ENOMEM
;
3561 xml_update_element_mtime (client
, dst
->parent
);
3564 xml_free_request (req
);
3570 move_command (assuan_context_t ctx
, char *line
)
3572 struct client_s
*client
= assuan_get_pointer (ctx
);
3574 struct argv_s
*args
[] = {
3575 &(struct argv_s
) {"inquire", OPTION_TYPE_NOARG
, parse_opt_inquire
},
3579 rc
= parse_options (&line
, args
, client
, 1);
3580 if (!rc
&& (client
->opts
& OPT_INQUIRE
) && line
&& *line
)
3581 rc
= GPG_ERR_SYNTAX
;
3583 return send_error (ctx
, rc
);
3585 if (client
->opts
& OPT_INQUIRE
)
3587 unsigned char *result
;
3590 rc
= assuan_inquire (ctx
, "DATA", &result
, &len
, 0);
3592 return send_error (ctx
, rc
);
3594 pthread_cleanup_push ((void *)xfree
, result
);
3595 rc
= do_move (ctx
, (char *)result
);
3596 pthread_cleanup_pop (1);
3599 rc
= do_move (ctx
, line
);
3601 return send_error (ctx
, rc
);
3605 ls_command (assuan_context_t ctx
, char *line
)
3613 return send_error (ctx
, GPG_ERR_SYNTAX
);
3615 tmp
= str_asprintf ("%s/data", homedir
);
3616 dir
= expand_homedir (tmp
);
3619 rc
= gpg_error_from_errno (errno
);
3624 return send_error (ctx
, rc
);
3628 offsetof (struct dirent
, d_name
) +pathconf (dir
, _PC_NAME_MAX
) + 1;
3629 struct dirent
*p
= xmalloc (len
), *cur
= NULL
;
3633 pthread_cleanup_push ((void *)xfree
, p
);
3634 pthread_cleanup_push ((void *)(void *)(void *)closedir
, d
);
3637 while (!readdir_r (d
, p
, &cur
) && cur
)
3641 if (stat (cur
->d_name
, &st
) == -1 || !S_ISREG (st
.st_mode
))
3644 tmp
= str_asprintf ("%s%s\n", list
? list
: "", cur
->d_name
);
3651 rc
= GPG_ERR_ENOMEM
;
3659 pthread_cleanup_pop (1); // closedir (d)
3660 pthread_cleanup_pop (1); // xfree (p)
3663 return send_error (ctx
, rc
);
3666 return send_error (ctx
, GPG_ERR_NO_DATA
);
3668 list
[strlen (list
) - 1] = 0;
3669 pthread_cleanup_push ((void *)xfree
, list
);
3670 rc
= xfer_data (ctx
, list
, strlen (list
));
3671 pthread_cleanup_pop (1);
3672 return send_error (ctx
, rc
);
3676 bye_notify (assuan_context_t ctx
, char *line
)
3678 struct client_s
*cl
= assuan_get_pointer (ctx
);
3679 gpg_error_t ret
= 0;
3681 update_client_state (cl
, CLIENT_STATE_DISCON
);
3684 if (cl
->thd
->remote
)
3690 struct timeval tv
= { 0, 50000 };
3692 rc
= gnutls_bye (cl
->thd
->tls
->ses
, GNUTLS_SHUT_RDWR
);
3693 if (rc
== GNUTLS_E_AGAIN
)
3694 select (0, NULL
, NULL
, NULL
, &tv
);
3696 while (rc
== GNUTLS_E_AGAIN
);
3700 /* This will let assuan_process_next() return. */
3701 if (fcntl (cl
->thd
->fd
, F_SETFL
, O_NONBLOCK
) == -1)
3703 cl
->last_rc
= gpg_error_from_errno (errno
);
3707 cl
->last_rc
= 0; // BYE command result
3712 reset_notify (assuan_context_t ctx
, char *line
)
3714 struct client_s
*client
= assuan_get_pointer (ctx
);
3717 cleanup_client (client
);
3723 * This is called before every Assuan command.
3726 command_startup (assuan_context_t ctx
, const char *name
)
3728 struct client_s
*client
= assuan_get_pointer (ctx
);
3730 struct command_table_s
*cmd
= NULL
;
3732 log_write2 ("command='%s'", name
);
3733 client
->last_rc
= client
->opts
= 0;
3735 for (int i
= 0; command_table
[i
]; i
++)
3737 if (!strcasecmp (name
, command_table
[i
]->name
))
3739 if (command_table
[i
]->ignore_startup
)
3741 cmd
= command_table
[i
];
3747 return GPG_ERR_UNKNOWN_COMMAND
;
3749 client
->last_rc
= rc
= gpg_error (file_modified (client
, cmd
));
3751 update_client_state (client
, CLIENT_STATE_COMMAND
);
3757 * This is called after every Assuan command.
3760 command_finalize (assuan_context_t ctx
, gpg_error_t rc
)
3762 struct client_s
*client
= assuan_get_pointer (ctx
);
3764 if (!(client
->flags
& FLAG_LOCK_CMD
))
3765 unlock_file_mutex (client
, 0);
3767 unlock_flock (&client
->flock_fd
);
3768 log_write2 (_("command completed: rc=%u"), rc
? rc
: client
->last_rc
);
3769 client
->last_rc
= gpg_error (GPG_ERR_UNKNOWN_COMMAND
);
3771 client
->thd
->buffer_timeout
= client
->thd
->last_buffer_size
= 0;
3773 if (client
->thd
->state
!= CLIENT_STATE_DISCON
)
3774 update_client_state (client
, CLIENT_STATE_IDLE
);
3778 parse_help_opt_html (void *data
, void *value
)
3780 struct client_s
*client
= data
;
3783 client
->opts
|= OPT_HTML
;
3788 help_command (assuan_context_t ctx
, char *line
)
3792 struct client_s
*client
= assuan_get_pointer (ctx
);
3793 struct argv_s
*args
[] = {
3794 &(struct argv_s
) {"html", OPTION_TYPE_NOARG
, parse_help_opt_html
},
3798 rc
= parse_options (&line
, args
, client
, 1);
3800 return send_error (ctx
, rc
);
3802 if (!line
|| !*line
)
3805 char *help
= str_dup (_("Usage: HELP [--html] [<COMMAND>]\n"
3806 "For commands that take an element path as an argument, each element is "
3807 "separated with an ASCII @key{TAB} character (ASCII 0x09)."
3810 for (i
= 0; command_table
[i
]; i
++)
3812 if (!command_table
[i
]->help
)
3815 /* @npxref{} won't put a "See " or "see " in front of the command.
3816 * It's not a texinfo command but needed for --html. */
3817 tmp
= str_asprintf ("%s %s%s%s", help
,
3818 client
->opts
& OPT_HTML
? "@npxref{" : "",
3819 command_table
[i
]->name
,
3820 client
->opts
& OPT_HTML
? "}" : "");
3825 tmp
= strip_texi_and_wrap (help
, client
->opts
& OPT_HTML
);
3827 pthread_cleanup_push ((void *)xfree
, tmp
);
3828 rc
= xfer_data (ctx
, tmp
, strlen (tmp
));
3829 pthread_cleanup_pop (1);
3830 return send_error (ctx
, rc
);
3833 for (i
= 0; command_table
[i
]; i
++)
3835 if (!strcasecmp (line
, command_table
[i
]->name
))
3839 if (!command_table
[i
]->help
)
3842 help
= strip_texi_and_wrap (command_table
[i
]->help
,
3843 client
->opts
& OPT_HTML
);
3844 tmp
= str_asprintf ("%s%s",
3845 (client
->opts
& OPT_HTML
) ? "" : _("Usage: "),
3848 pthread_cleanup_push ((void *)xfree
, tmp
);
3849 rc
= xfer_data (ctx
, tmp
, strlen (tmp
));
3850 pthread_cleanup_pop (1);
3851 return send_error (ctx
, rc
);
3855 return send_error (ctx
, GPG_ERR_INV_NAME
);
3859 new_command (const char *name
, int ignore
, int unlock
, int flock_type
,
3860 gpg_error_t (*handler
) (assuan_context_t
, char *),
3864 struct command_table_s
**tmp
;
3867 for (i
= 0; command_table
[i
]; i
++);
3869 tmp
= xrealloc (command_table
, (i
+ 2) * sizeof (struct command_table_s
*));
3871 command_table
= tmp
;
3872 command_table
[i
] = xcalloc (1, sizeof (struct command_table_s
));
3873 command_table
[i
]->name
= name
;
3874 command_table
[i
]->handler
= handler
;
3875 command_table
[i
]->ignore_startup
= ignore
;
3876 command_table
[i
]->unlock
= unlock
;
3877 command_table
[i
]->flock_type
= flock_type
;
3878 command_table
[i
++]->help
= help
;
3879 command_table
[i
] = NULL
;
3887 for (i
= 0; command_table
[i
]; i
++)
3888 xfree (command_table
[i
]);
3890 xfree (command_table
);
3894 sort_commands (const void *arg1
, const void *arg2
)
3896 struct command_table_s
*const *a
= arg1
;
3897 struct command_table_s
*const *b
= arg2
;
3906 return strcmp ((*a
)->name
, (*b
)->name
);
3910 passwd_command (assuan_context_t ctx
, char *line
)
3912 struct client_s
*client
= assuan_get_pointer (ctx
);
3915 rc
= peer_is_invoker (client
);
3916 if (rc
== GPG_ERR_EACCES
)
3917 return send_error (ctx
, GPG_ERR_FORBIDDEN
);
3919 return send_error (ctx
, rc
);
3921 if (client
->flags
& FLAG_NEW
)
3922 return send_error (ctx
, GPG_ERR_INV_STATE
);
3924 rc
= crypto_init_ctx (client
->crypto
, client
->flags
& FLAG_NO_PINENTRY
);
3926 return send_error (ctx
, rc
);
3929 rc
= crypto_passwd (client
, client
->crypto
);
3931 crypto_cleanup_non_keys (client
->crypto
);
3932 return send_error (ctx
, rc
);
3936 parse_opt_data (void *data
, void *value
)
3938 struct client_s
*client
= data
;
3941 client
->opts
|= OPT_DATA
;
3946 send_client_list (assuan_context_t ctx
)
3948 struct client_s
*client
= assuan_get_pointer (ctx
);
3951 if (client
->opts
& OPT_VERBOSE
)
3957 MUTEX_LOCK (&cn_mutex
);
3958 pthread_cleanup_push ((void *)cleanup_mutex_cb
, &cn_mutex
);
3959 t
= slist_length (cn_thread_list
);
3961 for (i
= 0; i
< t
; i
++)
3963 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, i
);
3966 if (thd
->state
== CLIENT_STATE_UNKNOWN
)
3969 tmp
= build_client_info_line (thd
, 0);
3972 char **l
= strv_cat (list
, tmp
);
3974 rc
= GPG_ERR_ENOMEM
;
3979 rc
= GPG_ERR_ENOMEM
;
3988 pthread_cleanup_pop (1);
3992 line
= strv_join ("\n", list
);
3994 pthread_cleanup_push ((void *)xfree
, line
);
3995 rc
= xfer_data (ctx
, line
, strlen (line
));
3996 pthread_cleanup_pop (1);
4000 if (client
->opts
& OPT_DATA
)
4002 char buf
[ASSUAN_LINELENGTH
];
4004 MUTEX_LOCK (&cn_mutex
);
4005 snprintf (buf
, sizeof (buf
), "%u", slist_length (cn_thread_list
));
4006 MUTEX_UNLOCK (&cn_mutex
);
4007 rc
= xfer_data (ctx
, buf
, strlen (buf
));
4010 rc
= send_status (ctx
, STATUS_CLIENTS
, NULL
);
4016 getinfo_command (assuan_context_t ctx
, char *line
)
4018 struct client_s
*client
= assuan_get_pointer (ctx
);
4020 char buf
[ASSUAN_LINELENGTH
];
4021 struct argv_s
*args
[] = {
4022 &(struct argv_s
) {"data", OPTION_TYPE_NOARG
, parse_opt_data
},
4023 &(struct argv_s
) {"verbose", OPTION_TYPE_NOARG
, parse_opt_verbose
},
4027 rc
= parse_options (&line
, args
, client
, 1);
4029 return send_error (ctx
, rc
);
4031 if (!strcasecmp (line
, "clients"))
4033 rc
= send_client_list (ctx
);
4035 else if (!strcasecmp (line
, "cache"))
4037 if (client
->opts
& OPT_DATA
)
4039 snprintf (buf
, sizeof (buf
), "%u", cache_file_count ());
4040 rc
= xfer_data (ctx
, buf
, strlen (buf
));
4043 rc
= send_status (ctx
, STATUS_CACHE
, NULL
);
4045 else if (!strcasecmp (line
, "pid"))
4048 pid_t pid
= getpid ();
4050 snprintf (buf
, sizeof (buf
), "%i", pid
);
4051 rc
= xfer_data (ctx
, buf
, strlen (buf
));
4053 else if (!strcasecmp (line
, "version"))
4055 char *buf
= str_asprintf ("0x%06x %s", VERSION_HEX
,
4063 rc
= xfer_data (ctx
, buf
, strlen (buf
));
4066 else if (!strcasecmp (line
, "last_error"))
4068 if (client
->last_error
)
4069 rc
= xfer_data (ctx
, client
->last_error
, strlen (client
->last_error
));
4071 rc
= GPG_ERR_NO_DATA
;
4073 else if (!strcasecmp (line
, "user"))
4078 if (client
->thd
->remote
)
4079 user
= str_asprintf ("#%s", client
->thd
->tls
->fp
);
4081 user
= get_username (client
->thd
->peer
->uid
);
4083 user
= get_username (client
->thd
->peer
->uid
);
4087 pthread_cleanup_push ((void *)xfree
, user
);
4088 rc
= xfer_data (ctx
, user
, strlen (user
));
4089 pthread_cleanup_pop (1);
4092 rc
= GPG_ERR_NO_DATA
;
4095 rc
= gpg_error (GPG_ERR_SYNTAX
);
4097 return send_error (ctx
, rc
);
4101 parse_listkeys_opt_secret_only (void *data
, void *value
)
4103 struct client_s
*client
= data
;
4106 client
->opts
|= OPT_SECRET_ONLY
;
4111 keyinfo_command (assuan_context_t ctx
, char *line
)
4113 struct client_s
*client
= assuan_get_pointer (ctx
);
4115 char **keys
= NULL
, **p
= NULL
;
4119 return send_error (ctx
, GPG_ERR_SYNTAX
);
4121 if (!(client
->flags
& FLAG_OPEN
))
4122 return send_error (ctx
, GPG_ERR_INV_STATE
);
4124 if (client
->flags
& FLAG_NEW
)
4125 return send_error (ctx
, GPG_ERR_NO_DATA
);
4127 rc
= lock_flock (ctx
, client
->filename
, FLOCK_TYPE_SH
, &client
->flock_fd
);
4129 return send_error (ctx
, rc
);
4131 rc
= crypto_is_symmetric (client
->filename
);
4132 unlock_flock (&client
->flock_fd
);
4135 else if (rc
!= GPG_ERR_BAD_DATA
)
4136 return send_error (ctx
, rc
);
4141 p
= strv_catv(keys
, client
->crypto
->pubkey
);
4143 rc
= GPG_ERR_ENOMEM
;
4149 for (p
= client
->crypto
->sigkey
; p
&& *p
; p
++)
4151 if (!strv_printf(&keys
, "S%s", *p
))
4154 return send_error (ctx
, GPG_ERR_ENOMEM
);
4159 rc
= GPG_ERR_ENOMEM
;
4163 line
= strv_join ("\n", keys
);
4165 pthread_cleanup_push ((void *)xfree
, line
);
4167 rc
= xfer_data (ctx
, line
, strlen (line
));
4169 rc
= GPG_ERR_ENOMEM
;
4171 pthread_cleanup_pop (1);
4174 rc
= GPG_ERR_NO_DATA
;
4178 return send_error (ctx
, rc
);
4182 kill_command (assuan_context_t ctx
, char *line
)
4184 struct client_s
*client
= assuan_get_pointer (ctx
);
4188 if (!line
|| !*line
)
4189 return send_error (ctx
, GPG_ERR_SYNTAX
);
4191 MUTEX_LOCK (&cn_mutex
);
4192 pthread_cleanup_push ((void *)cleanup_mutex_cb
, &cn_mutex
);
4193 t
= slist_length (cn_thread_list
);
4196 for (i
= 0; i
< t
; i
++)
4198 struct client_thread_s
*thd
= slist_nth_data (cn_thread_list
, i
);
4199 char *tmp
= str_asprintf ("%p", thd
->tid
);
4201 if (strcmp (line
, tmp
))
4208 rc
= peer_is_invoker (client
);
4211 #ifdef HAVE_PTHREAD_CANCEL
4212 rc
= pthread_cancel (thd
->tid
);
4220 rc
= GPG_ERR_FORBIDDEN
;
4221 if (config_get_boolean ("global", "strict_kill"))
4225 if (client
->thd
->remote
&& thd
->remote
)
4227 if (!strcmp (client
->thd
->tls
->fp
, thd
->tls
->fp
))
4229 #ifdef HAVE_PTHREAD_CANCEL
4230 rc
= pthread_cancel (thd
->tid
);
4238 else if (!client
->thd
->remote
&& !thd
->remote
)
4241 if (client
->thd
->peer
->uid
== thd
->peer
->uid
)
4243 #ifdef HAVE_PTHREAD_CANCEL
4244 rc
= pthread_cancel (thd
->tid
);
4254 pthread_cleanup_pop (1);
4255 return send_error (ctx
, rc
);
4259 listkeys_command (assuan_context_t ctx
, char *line
)
4261 struct client_s
*client
= assuan_get_pointer (ctx
);
4262 struct crypto_s
*crypto
= NULL
;
4263 char **pattern
= NULL
;
4264 gpgme_key_t
*keys
= NULL
;
4265 char **result
= NULL
;
4267 struct argv_s
*args
[] = {
4268 &(struct argv_s
) {"secret-only", OPTION_TYPE_NOARG
,
4269 parse_listkeys_opt_secret_only
},
4273 rc
= parse_options (&line
, args
, client
, 1);
4275 return send_error (ctx
, rc
);
4277 rc
= crypto_init (&crypto
, client
->ctx
, client
->filename
,
4278 client
->flags
& FLAG_NO_PINENTRY
);
4280 return send_error (ctx
, rc
);
4282 pthread_cleanup_push ((void *)(void *)crypto_cleanup
, crypto
);
4283 pattern
= str_split (line
, ",", 0);
4284 pthread_cleanup_push ((void *)(void *)strv_free
, pattern
);
4285 rc
= crypto_list_keys (crypto
, pattern
, client
->opts
& OPT_SECRET_ONLY
,
4287 pthread_cleanup_pop (1);
4288 pthread_cleanup_pop (1);
4293 for (i
= 0; keys
[i
]; i
++)
4295 char *p
= crypto_key_info (keys
[i
]);
4300 rc
= GPG_ERR_ENOMEM
;
4304 r
= strv_cat (result
, p
);
4307 rc
= GPG_ERR_ENOMEM
;
4315 rc
= GPG_ERR_NO_DATA
;
4317 crypto_free_key_list (keys
);
4322 line
= strv_join ("\n", result
);
4324 pthread_cleanup_push ((void *)xfree
, line
);
4326 rc
= GPG_ERR_ENOMEM
;
4328 rc
= xfer_data (ctx
, line
, strlen (line
));
4330 pthread_cleanup_pop (1);
4335 return send_error (ctx
, rc
);
4341 /* !BEGIN-HELP-TEXT!
4343 * This comment is used as a marker to generate the offline documentation
4344 * found in doc/pwmd.info. The indentation needs to be kept for the awk
4345 * script to determine where commands begin and end.
4347 new_command("HELP", 1, 1, 0, help_command
, _(
4348 "HELP [--html] [<COMMAND>]\n"
4349 "Show available commands or command specific help text."
4351 "The @option{--html} option will output the help text in HTML format."
4354 new_command("KILL", 1, 0, 0, kill_command
, _(
4355 "KILL <thread_id>\n"
4356 "Terminates the client identified by @var{thread_id} and releases any file "
4357 "lock or other resources it has held. See @code{GETINFO} (@pxref{GETINFO}) "
4358 "for details about listing connected clients. An @code{invoking_user} "
4359 "(@pxref{Configuration}) may kill any client while others may only kill "
4360 "clients of the same @code{UID} or @abbr{TLS} fingerprint.\n"
4363 new_command("LISTKEYS", 0, 0, 0, listkeys_command
, _(
4364 "LISTKEYS [--secret-only] [pattern[,<pattern>]]\n"
4365 "Returns a new line separated list of key information matching a comma "
4366 "separated list of @var{pattern}'s. When option @option{--secret-only} is "
4367 "specified, only keys matching @var{pattern} that also have a secret key "
4368 "available will be returned."
4371 new_command("KEYINFO", 1, 0, 0, keyinfo_command
, _(
4373 "Returns a new line separated list of key ID's that the currently opened "
4374 "data file has recipients and signers for. If the key is a signing key it "
4375 "will be prefixed with an @code{S}. If the file is a new one, or has no "
4376 "signers in the case of being symmetrically encrypted, the error code "
4377 "@code{GPG_ERR_NO_DATA} is returned."
4380 new_command("GETINFO", 1, 1, 0, getinfo_command
, _(
4381 "GETINFO [--data] [--verbose] CACHE | CLIENTS | PID | USER | LAST_ERROR | VERSION\n"
4382 "Get server and other information. The information is returned via a status "
4383 "message (@pxref{Status Messages}) unless otherwise noted or @option{--data} "
4386 "@var{CACHE} returns the number of cached documents."
4388 "@var{CLIENTS} returns the number of "
4389 "connected clients via a status message or a list of connected clients when "
4390 "the @option{--verbose} parameter is used (implies @option{--data}). A "
4391 "verbose line of a client list contains "
4393 "fields: the thread ID, client name, opened file (@code{/} if none opened), "
4394 "IP address if remote, file lock status, whether the current client is self "
4395 "or not, client state (see below), "
4396 "user ID or TLS fingerprint of the connected client, username if the "
4397 "client is a local one else @code{-}, and finally the time stamp of when the "
4400 "Client state @code{0} is an unknown client state, state @code{1} indicates "
4401 "the client has connected but hasn't completed initializing, state @code{2} "
4402 "indicates that the client is idle, state @code{3} means the "
4403 "client is in a command and state @code{4} means the client is disconnecting. "
4405 "@var{PID} returns the process ID number of the server via a data response."
4407 "@var{VERSION} returns the server version number and compile-time features "
4408 "via a data response with each being space delimited."
4410 "@var{LAST_ERROR} returns a detailed description of the last failed command "
4411 "via a data response, when available."
4413 "@var{USER} returns the username or @abbr{TLS} hash of the connected client "
4414 "via a data response."
4417 new_command("PASSWD", 0, 0, FLOCK_TYPE_EX
|FLOCK_TYPE_KEEP
, passwd_command
, _(
4419 "Changes the passphrase of the secret key required to open the current "
4420 "data file. If the data file is symmetrically encrypted, the error "
4421 "@code{GPG_ERR_NOT_SUPPORTED} is returned. When symmetrically encrypted, "
4422 "the @code{SAVE} command (@pxref{SAVE}) should be used instead to prevent "
4423 "this command saving any unwanted changes to the @abbr{XML} document."
4425 "This command is not available to non-invoking clients "
4426 "(@pxref{Access Control})."
4429 new_command("OPEN", 1, 1, FLOCK_TYPE_SH
|FLOCK_TYPE_KEEP
, open_command
, _(
4430 "OPEN [--lock] <filename>\n"
4431 "Opens @var{filename}. When the @var{filename} is not found on the "
4432 "file-system then a new in-memory document will be created. If the file is "
4433 "found, it is looked for in the file cache and when found no passphrase will "
4434 "be required to open it. When not cached, @cite{pinentry(1)} will be used to "
4435 "retrieve the passphrase for decryption unless @option{disable-pinentry} "
4436 "(@pxref{OPTION}) was specified in which case @command{pwmd} will "
4437 "@emph{INQUIRE} the client for the passphrase."
4439 "When the @option{--lock} option is passed then the file mutex will be "
4440 "locked as if the @code{LOCK} command (@pxref{LOCK}) had been sent after the "
4441 "file had been opened."
4444 new_command("SAVE", 0, 0, FLOCK_TYPE_EX
|FLOCK_TYPE_KEEP
, save_command
, _(
4445 "SAVE [--symmetric] [--inquire-keyparam] [--keyid=<keyid>[,..] | [--inquire-keyid]] [--sign-keyid=<fingerprint>[,..] | [--inquire-sign-keyid]]\n"
4446 "Writes the in-memory @abbr{XML} document to disk. The file written to is the "
4447 "file that was opened using the @code{OPEN} command (@pxref{OPEN}). If the "
4448 "file is a new one or the option @option{--inquire-keyparam} was passed, a "
4449 "new keypair will be generated and @cite{pinentry(1)} will be used to prompt "
4450 "for the passphrase of the secret key used for signing."
4452 "The @option{--inquire-keyparam} option will send an "
4453 "@emph{INQUIRE} to the client to obtain the key parameters to use for "
4454 "generating the new keypair. The inquired data is expected to be in "
4455 "@cite{gnupg} @abbr{XML} format. See the @cite{gnupg} documentation for "
4456 "details. Note that when this option is specified a new keypair will be "
4457 "generated reguardless if the file is a new one and that the passphrase for "
4458 "the current file will be required before generating the new keypair. This "
4459 "option is available to non-invoking clients (@pxref{Access Control}) only "
4460 "when the file is a new one."
4462 "You can encrypt the data file to a recipient other than the one that it "
4463 "was encrypted with by passing the @option{--keyid} or "
4464 "@option{--inquire-keyid} option with "
4465 "the key ID of a public encryption key as its argument. Use the "
4466 "@command{LISTKEYS} command (@pxref{LISTKEYS}) to show key information by "
4467 "pattern. The @option{--sign-keyid} or @option{--inquire-sign-keyid} option "
4468 "may also be used to sign the data "
4469 "file with an alternate key by specifying the key ID of a secret key. "
4470 "A passphrase to decrypt the data file "
4471 "will be required if one or more of the original encryption or signing keys "
4472 "are not found in either of these two options' arguments. The original "
4473 "encryption or signing keys will be used when either of these options are "
4476 "The @option{--keyid} and @option{--sign-keyid} options are not available "
4477 "for non-invoking clients "
4478 "(@pxref{Access Control}) when the recipients or signers do not match those "
4479 "that were used when the file was @code{OPEN}'ed."
4481 "The @option{--symmetric} option specifies that a new data file be "
4482 "conventionally encrypted. These types of data files do not use a recipient "
4483 "public key but may be signed by using the @option{--sign-keyid} or "
4484 "@option{--inquire-sign-keyid} options. To remove all signers from a "
4485 "symmtrically encrypted data file, leave the option value empty. Note that "
4486 "you cannot change encryption schemes once a data file has been saved."
4489 new_command("ISCACHED", 1, 0, 0, iscached_command
, _(
4490 "ISCACHED [--lock] <filename>\n"
4491 "An @emph{OK} response is returned if the specified @var{filename} is found "
4492 "in the file cache. If not found in the cache but exists on the filesystem "
4493 "then @code{GPG_ERR_NO_DATA} is returned. Otherwise a filesystem error is "
4496 "The @option{--lock} option will lock the file mutex of @var{filename} when "
4497 "the file exists; it does not need to be opened nor cached. The lock will be "
4498 "released when the client exits or sends the @code{UNLOCK} command "
4502 new_command("CLEARCACHE", 1, 1, 0, clearcache_command
, _(
4503 "CLEARCACHE [<filename>]\n"
4504 "Clears a file cache entry for all or the specified @var{filename}."
4507 new_command("CACHETIMEOUT", 1, 1, 0, cachetimeout_command
, _(
4508 "CACHETIMEOUT <filename> <seconds>\n"
4509 "The time in @var{seconds} until @var{filename} will be removed from the "
4510 "cache. @code{-1} will keep the cache entry forever, @code{0} will require "
4511 "the passphrase for each @code{OPEN} command (@pxref{OPEN}) or @code{SAVE} "
4512 "(@pxref{SAVE}) command. @xref{Configuration}, and the @code{cache_timeout} "
4516 new_command("LIST", 0, 1, 0, list_command
, _(
4517 "LIST [--inquire] [--recurse] [element[<TAB>child[..]]]\n"
4518 "If no element path is given then a newline separated list of root elements "
4519 "is returned with a data response. If given, then children of the specified "
4520 "element path are returned."
4522 "Each element path "
4523 "returned will have zero or more flags appened to it. These flags are "
4524 "delimited from the element path by a single space character. A flag itself "
4525 "is a single character. Flag @code{P} indicates that access to the element "
4526 "is denied. Flag @code{+} indicates that there are child nodes of "
4527 "the current element path. Flag @code{E} indicates that an element of the "
4528 "element path contained in a @var{target} attribute could not be found. Flag "
4529 "@code{O} indicates that a @var{target} attribute recursion limit was reached "
4530 "(@pxref{Configuration}). Flag @code{T}, followed by a single space character, "
4531 "then an element path, is the element path of the @var{target} attribute "
4532 "contained in the current element."
4534 "When a specified element path contains an error, beit from the final "
4535 "element in the path or any previous element, the path is still shown but "
4536 "will contain the error flag for the element with the error. Determining "
4537 "the actual element which contains the error is up to the client. This can be "
4538 "done by traversing the final element up to parent elements that contain the "
4541 "The option @option{--recurse} may be used to list the entire element tree "
4542 "for a specified element path or the entire tree for all root elements."
4544 "When the @option{--inquire} option is passed then all remaining non-option "
4545 "arguments are retrieved via a server @emph{INQUIRE}."
4548 new_command("REALPATH", 0, 1, 0, realpath_command
, _(
4549 "REALPATH [--inquire] element[<TAB>child[..]]\n"
4550 "Resolves all @code{target} attributes of the specified element path and "
4551 "returns the result with a data response. @xref{Target Attribute}, for details."
4553 "When the @option{--inquire} option is passed then all remaining non-option "
4554 "arguments are retrieved via a server @emph{INQUIRE}."
4557 new_command("STORE", 0, 1, 0, store_command
, _(
4558 "STORE element[<TAB>child[..]]<TAB>[content]\n"
4559 "This command uses a server @emph{INQUIRE} to retrieve data from the client."
4561 "Creates a new element path or modifies the @var{content} of an existing "
4562 "element. If only a single element is specified then a new root element is "
4563 "created. Otherwise, elements are @key{TAB} delimited and the content will be "
4564 "set to the final @key{TAB} delimited element. If no @var{content} is "
4565 "specified after the final @key{TAB}, then the content of the existing "
4566 "element will be removed; or will be empty if creating a new element."
4568 "The only restriction of an element name is that it not contain whitespace "
4569 "characters. There is no other whitespace between the @key{TAB} delimited "
4570 "elements. It is recommended that the content of an element be base64 encoded "
4571 "when it contains control or @key{TAB} characters to prevent @abbr{XML} "
4572 "parsing and @command{pwmd} syntax errors."
4575 new_command("RENAME", 0, 1, 0, rename_command
, _(
4576 "RENAME [--inquire] element[<TAB>child[..]] <value>\n"
4577 "Renames the specified @var{element} to the new @var{value}. If an element of "
4578 "the same name as the @var{value} already exists it will be overwritten."
4580 "When the @option{--inquire} option is passed then all remaining non-option "
4581 "arguments are retrieved via a server @emph{INQUIRE}."
4584 new_command("COPY", 0, 1, 0, copy_command
, _(
4585 "COPY [--inquire] source[<TAB>child[..]] dest[<TAB>child[..]]\n"
4586 "Copies the entire element tree starting from the child node of the source "
4587 "element, to the destination element path. If the destination element path "
4588 "does not exist then it will be created; otherwise it is overwritten."
4590 "Note that attributes from the source element are merged into the "
4591 "destination element when the destination element path exists. When an "
4592 "attribute of the same name exists in both the source and destination "
4593 "elements then the destination attribute will be updated to the source "
4596 "When the @option{--inquire} option is passed then all remaining non-option "
4597 "arguments are retrieved via a server @emph{INQUIRE}."
4600 new_command("MOVE", 0, 1, 0, move_command
, _(
4601 "MOVE [--inquire] source[<TAB>child[..]] [dest[<TAB>child[..]]]\n"
4602 "Moves the source element path to the destination element path. If the "
4603 "destination is not specified then it will be moved to the root node of the "
4604 "document. If the destination is specified and exists then it will be "
4605 "overwritten; otherwise non-existing elements of the destination element "
4606 "path will be created."
4608 "When the @option{--inquire} option is passed then all remaining non-option "
4609 "arguments are retrieved via a server @emph{INQUIRE}."
4612 new_command("DELETE", 0, 1, 0, delete_command
, _(
4613 "DELETE [--inquire] element[<TAB>child[..]]\n"
4614 "Removes the specified element path and all of its children. This may break "
4615 "an element with a @code{target} attribute (@pxref{Target Attribute}) that "
4616 "refers to this element or any of its children."
4618 "When the @option{--inquire} option is passed then all remaining non-option "
4619 "arguments are retrieved via a server @emph{INQUIRE}."
4622 new_command("GET", 0, 1, 0, get_command
, _(
4623 "GET [--inquire] element[<TAB>child[..]]\n"
4624 "Retrieves the content of the specified element. The content is returned "
4625 "with a data response."
4627 "When the @option{--inquire} option is passed then all remaining non-option "
4628 "arguments are retrieved via a server @emph{INQUIRE}."
4631 new_command("ATTR", 0, 1, 0, attr_command
, _(
4632 "ATTR [--inquire] SET|GET|DELETE|LIST [<attribute>] element[<TAB>child[..]] ..\n"
4634 "@item ATTR SET attribute element[<TAB>child[..]] [value]\n"
4635 " Stores or updates an @var{attribute} name and optional @var{value} of an "
4636 "element. When no @var{value} is specified any existing value will be removed."
4638 "@item ATTR DELETE attribute element[<TAB>child[..]]\n"
4639 " Removes an attribute from an element. If @var{attribute} is @code{_name} "
4640 "or @code{target} an error is returned. Use the @command{DELETE} command "
4641 "(@pxref{DELETE}) instead."
4643 "@item ATTR LIST element[<TAB>child[..]]\n"
4644 " Retrieves a newline separated list of attributes names and values "
4645 "from the specified element. Each attribute name and value is space delimited."
4647 "@item ATTR GET attribute element[<TAB>child[..]]\n"
4648 " Retrieves the value of an @var{attribute} from an element."
4651 "When the @option{--inquire} option is passed then all remaining non-option "
4652 "arguments are retrieved via a server @emph{INQUIRE}."
4654 "@xref{Target Attribute}, for details about this special attribute and also "
4655 "@pxref{Other Attributes} for other attributes that are handled specially "
4656 "by @command{pwmd}."
4659 new_command("XPATH", 0, 1, 0, xpath_command
, _(
4660 "XPATH [--inquire] <expression>[<TAB>[value]]\n"
4661 "Evaluates an XPath @var{expression}. If no @var{value} argument is "
4662 "specified it is assumed the expression is a request to return a result. "
4663 "Otherwise, the result is set to the @var{value} argument and the document is "
4664 "updated. If there is no @var{value} after the @key{TAB} character, the value "
4665 "is assumed to be empty and the document is updated. For example:"
4668 "XPATH //element[@@_name='password']@key{TAB}\n"
4671 "would clear the content of all @var{password} elements in the data file "
4672 "while leaving off the trailing @key{TAB} would return all @var{password} "
4673 "elements in @abbr{XML} format."
4675 "When the @option{--inquire} option is passed then all remaining non-option "
4676 "arguments are retrieved via a server @emph{INQUIRE}."
4678 "See @url{http://www.w3schools.com/xpath/xpath_syntax.asp} for @abbr{XPATH} "
4679 "expression syntax."
4682 new_command("XPATHATTR", 0, 1, 0, xpathattr_command
, _(
4683 "XPATHATTR [--inquire] SET|DELETE <name> <expression>[<TAB>[<value>]]\n"
4684 "Like the @code{XPATH} command (@pxref{XPATH}) but operates on element "
4685 "attributes and does not return a result. For the @var{SET} operation the "
4686 "@var{value} is optional but the field is required. If not specified then "
4687 "the attribute value will be empty. For example:"
4690 "XPATHATTR SET password //element[@@_name='password']@key{TAB}\n"
4693 "would create a @var{password} attribute for each @var{password} element "
4694 "found in the document. The attribute value will be empty but still exist."
4696 "When the @option{--inquire} option is passed then all remaining non-option "
4697 "arguments are retrieved via a server @emph{INQUIRE}."
4699 "See @url{http://www.w3schools.com/xpath/xpath_syntax.asp} for @abbr{XPATH} "
4700 "expression syntax."
4703 new_command("IMPORT", 0, 1, 0, import_command
, _(
4704 "IMPORT [--root=element[<TAB>child[..]]]\n"
4705 "This command uses a server @emph{INQUIRE} to retrieve data from the client."
4707 "Like the @code{STORE} command (@pxref{STORE}), but the @var{content} "
4708 "argument is raw @abbr{XML} data. The content is created as a child of "
4709 "the element path specified with the @option{--root} option or at the "
4710 "document root when not specified. Existing elements of the same name will "
4713 "The content must begin with an @abbr{XML} element node. @xref{Introduction}, "
4717 new_command("DUMP", 0, 1, 0, dump_command
, _(
4719 "Shows the in memory @abbr{XML} document with indenting. @xref{XPATH}, for "
4720 "dumping a specific node."
4723 new_command("LOCK", 0, 0, 0, lock_command
, _(
4725 "Locks the mutex associated with the opened file. This prevents other clients "
4726 "from sending commands to the same opened file until the client "
4727 "that sent this command either disconnects or sends the @code{UNLOCK} "
4728 "command. @xref{UNLOCK}."
4731 new_command("UNLOCK", 1, 0, 0, unlock_command
, _(
4733 "Unlocks the file mutex which was locked with the @code{LOCK} command or "
4734 "a commands' @option{--lock} option (@pxref{LOCK}, @pxref{OPEN}, "
4735 "@pxref{ISCACHED})."
4738 new_command("GETCONFIG", 1, 1, 0, getconfig_command
, _(
4739 "GETCONFIG [filename] <parameter>\n"
4740 "Returns the value of a @command{pwmd} configuration @var{parameter} with a "
4741 "data response. If no file has been opened then the value for @var{filename} "
4742 "or the default from the @var{global} section will be returned. If a file "
4743 "has been opened and no @var{filename} is specified, the value previously "
4744 "set with the @code{OPTION} command (@pxref{OPTION}) will be returned."
4747 new_command("OPTION", 1, 1, 0, option_command
, _(
4748 "OPTION <NAME>=[<VALUE>]\n"
4749 "Sets a client option @var{name} to @var{value}. The value for an option is "
4750 "kept for the duration of the connection with the exception of the "
4751 "@command{pinentry} options which are defaults for all future connections "
4752 "(@pxref{Pinentry}). When @var{value} is empty the option is unset."
4755 "@item DISABLE-PINENTRY\n"
4756 "Disable use of @command{pinentry} for passphrase retrieval. When @code{1}, a "
4757 "server inquire is sent to the client to obtain the passphrase. This option "
4758 "may be set as needed before the @code{OPEN} (@pxref{OPEN}), @code{PASSWD} "
4759 "(@pxref{PASSWD}) and @code{SAVE} (@pxref{SAVE}) commands. Set to @code{0} "
4760 "to use a @command{pinentry}."
4763 "Set or unset the X11 display to use when prompting for a passphrase."
4766 "Set the terminal device path to use when prompting for a passphrase."
4769 "Set the terminal type for use with @option{TTYNAME}."
4772 "Associates the thread ID of the connection with the specified textual "
4773 "representation. Useful for debugging log messages. May not contain whitespace."
4775 "@item LOCK-TIMEOUT\n"
4776 "When not @code{0}, the duration in tenths of a second to wait for the file "
4777 "mutex which has been locked by another thread to be released before returning "
4778 "an error. When @code{-1} the error will be returned immediately."
4782 new_command("LS", 1, 1, 0, ls_command
, _(
4784 "Returns a newline separated list of data files stored in the data directory "
4785 "@file{HOMEDIR/data} (@pxref{Invoking}) with a data response."
4788 new_command("RESET", 1, 1, 0, NULL
, _(
4790 "Closes the currently opened file but keeps any previously set client options "
4794 new_command("NOP", 1, 1, 0, NULL
, _(
4796 "Does nothing. Always returns successfully."
4799 /* !END-HELP-TEXT! */
4800 new_command ("CANCEL", 1, 1, 0, NULL
, NULL
);
4801 new_command ("END", 1, 1, 0, NULL
, NULL
);
4802 new_command ("BYE", 1, 1, 0, NULL
, NULL
);
4805 for (i
= 0; command_table
[i
]; i
++);
4806 qsort (command_table
, i
- 1, sizeof (struct command_table_s
*),
4811 register_commands (assuan_context_t ctx
)
4815 for (; command_table
[i
]; i
++)
4817 if (!command_table
[i
]->handler
)
4820 rc
= assuan_register_command (ctx
, command_table
[i
]->name
,
4821 command_table
[i
]->handler
,
4822 command_table
[i
]->help
);
4827 rc
= assuan_register_bye_notify (ctx
, bye_notify
);
4831 rc
= assuan_register_reset_notify (ctx
, reset_notify
);
4835 rc
= assuan_register_pre_cmd_notify (ctx
, command_startup
);
4839 return assuan_register_post_cmd_notify (ctx
, command_finalize
);