mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
keyboxd: Pass lock info back to gpg and gpgsm.
* g10/call-keyboxd.c (keydb_default_status_cb): New. (keydb_update_keyblock): Add new status callback. (keydb_insert_keyblock): Ditto. (keydb_delete_keyblock): Ditto. (search_status_cb): Also try the new status callback. * sm/keydb.c (keydb_default_status_cb): New. (keydb_insert_cert): Add new status callback. (keydb_delete): Ditto (search_status_cb): Also try the new status callback. -- GnuPG-bug-id: 6838
This commit is contained in:
parent
c99282fc78
commit
bd8346f7ab
3 changed files with 48 additions and 9 deletions
|
@ -385,6 +385,23 @@ keydb_get_keyblock (KEYDB_HANDLE hd, kbnode_t *ret_kb)
|
|||
}
|
||||
|
||||
|
||||
/* Default status callback used to show diagnostics from the keyboxd */
|
||||
static gpg_error_t
|
||||
keydb_default_status_cb (void *opaque, const char *line)
|
||||
{
|
||||
const char *s;
|
||||
|
||||
(void)opaque;
|
||||
|
||||
if ((s = has_leading_keyword (line, "NOTE")))
|
||||
log_info (_("Note: %s\n"), s);
|
||||
else if ((s = has_leading_keyword (line, "WARNING")))
|
||||
log_info (_("WARNING: %s\n"), s);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Communication object for STORE commands. */
|
||||
struct store_parm_s
|
||||
|
@ -464,7 +481,8 @@ keydb_update_keyblock (ctrl_t ctrl, KEYDB_HANDLE hd, kbnode_t kb)
|
|||
err = assuan_transact (hd->kbl->ctx, "STORE --update",
|
||||
NULL, NULL,
|
||||
store_inq_cb, &parm,
|
||||
NULL, NULL);
|
||||
keydb_default_status_cb, hd);
|
||||
|
||||
|
||||
leave:
|
||||
iobuf_close (iobuf);
|
||||
|
@ -515,7 +533,7 @@ keydb_insert_keyblock (KEYDB_HANDLE hd, kbnode_t kb)
|
|||
err = assuan_transact (hd->kbl->ctx, "STORE --insert",
|
||||
NULL, NULL,
|
||||
store_inq_cb, &parm,
|
||||
NULL, NULL);
|
||||
keydb_default_status_cb, hd);
|
||||
|
||||
leave:
|
||||
iobuf_close (iobuf);
|
||||
|
@ -561,7 +579,7 @@ keydb_delete_keyblock (KEYDB_HANDLE hd)
|
|||
err = assuan_transact (hd->kbl->ctx, line,
|
||||
NULL, NULL,
|
||||
NULL, NULL,
|
||||
NULL, NULL);
|
||||
keydb_default_status_cb, hd);
|
||||
|
||||
leave:
|
||||
return err;
|
||||
|
@ -648,6 +666,8 @@ search_status_cb (void *opaque, const char *line)
|
|||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
err = keydb_default_status_cb (opaque, line);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue