mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
gpg: Avoid multiple open calls to the keybox file.
* g10/keydb.h (KEYDB_HANDLE): Move typedef to ... * g10/gpg.h: here. (struct server_control_s): Add field 'cached_getkey_kdb'. * g10/gpg.c (gpg_deinit_default_ctrl): Release that keydb handle. * g10/getkey.c (getkey_end): Cache keydb handle. (get_pubkey): Use cached keydb handle. * kbx/keybox-search.c (keybox_search_reset): Use lseek instead of closing the file. -- Before this patch a "gpg --check-sigs" opened and closed the keybox file for almost every signature check. By caching the keydb handle and using lseek(2) this can be limited to just 2 times. This might speed up things on Windows. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
aca5f494a8
commit
5556eca5ac
13
g10/getkey.c
13
g10/getkey.c
@ -736,12 +736,22 @@ get_pubkey (ctrl_t ctrl, PKT_public_key * pk, u32 * keyid)
|
|||||||
memset (&ctx, 0, sizeof ctx);
|
memset (&ctx, 0, sizeof ctx);
|
||||||
ctx.exact = 1; /* Use the key ID exactly as given. */
|
ctx.exact = 1; /* Use the key ID exactly as given. */
|
||||||
ctx.not_allocated = 1;
|
ctx.not_allocated = 1;
|
||||||
|
|
||||||
|
if (ctrl && ctrl->cached_getkey_kdb)
|
||||||
|
{
|
||||||
|
ctx.kr_handle = ctrl->cached_getkey_kdb;
|
||||||
|
ctrl->cached_getkey_kdb = NULL;
|
||||||
|
keydb_search_reset (ctx.kr_handle);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
ctx.kr_handle = keydb_new ();
|
ctx.kr_handle = keydb_new ();
|
||||||
if (!ctx.kr_handle)
|
if (!ctx.kr_handle)
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
ctx.nitems = 1;
|
ctx.nitems = 1;
|
||||||
ctx.items[0].mode = KEYDB_SEARCH_MODE_LONG_KID;
|
ctx.items[0].mode = KEYDB_SEARCH_MODE_LONG_KID;
|
||||||
ctx.items[0].u.kid[0] = keyid[0];
|
ctx.items[0].u.kid[0] = keyid[0];
|
||||||
@ -2208,6 +2218,9 @@ getkey_end (ctrl_t ctrl, getkey_ctx_t ctx)
|
|||||||
{
|
{
|
||||||
if (ctx)
|
if (ctx)
|
||||||
{
|
{
|
||||||
|
if (ctrl && !ctrl->cached_getkey_kdb)
|
||||||
|
ctrl->cached_getkey_kdb = ctx->kr_handle;
|
||||||
|
else
|
||||||
keydb_release (ctx->kr_handle);
|
keydb_release (ctx->kr_handle);
|
||||||
free_strlist (ctx->extra_list);
|
free_strlist (ctx->extra_list);
|
||||||
if (!ctx->not_allocated)
|
if (!ctx->not_allocated)
|
||||||
|
@ -2195,6 +2195,8 @@ gpg_deinit_default_ctrl (ctrl_t ctrl)
|
|||||||
tofu_closedbs (ctrl);
|
tofu_closedbs (ctrl);
|
||||||
#endif
|
#endif
|
||||||
gpg_dirmngr_deinit_session_data (ctrl);
|
gpg_dirmngr_deinit_session_data (ctrl);
|
||||||
|
|
||||||
|
keydb_release (ctrl->cached_getkey_kdb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -59,10 +59,13 @@ struct server_local_s;
|
|||||||
struct dirmngr_local_s;
|
struct dirmngr_local_s;
|
||||||
typedef struct dirmngr_local_s *dirmngr_local_t;
|
typedef struct dirmngr_local_s *dirmngr_local_t;
|
||||||
|
|
||||||
/* Object used to describe a keyblok node. */
|
/* Object used to describe a keyblock node. */
|
||||||
typedef struct kbnode_struct *KBNODE; /* Deprecated use kbnode_t. */
|
typedef struct kbnode_struct *KBNODE; /* Deprecated use kbnode_t. */
|
||||||
typedef struct kbnode_struct *kbnode_t;
|
typedef struct kbnode_struct *kbnode_t;
|
||||||
|
|
||||||
|
/* The handle for keydb operations. */
|
||||||
|
typedef struct keydb_handle *KEYDB_HANDLE;
|
||||||
|
|
||||||
/* TOFU database meta object. */
|
/* TOFU database meta object. */
|
||||||
struct tofu_dbs_s;
|
struct tofu_dbs_s;
|
||||||
typedef struct tofu_dbs_s *tofu_dbs_t;
|
typedef struct tofu_dbs_s *tofu_dbs_t;
|
||||||
@ -94,6 +97,8 @@ struct server_control_s
|
|||||||
int batch_updated_wanted;
|
int batch_updated_wanted;
|
||||||
} tofu;
|
} tofu;
|
||||||
|
|
||||||
|
/* This is used to cache a key data base handle. */
|
||||||
|
KEYDB_HANDLE cached_getkey_kdb;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -109,9 +109,6 @@ struct pubkey_find_info {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
typedef struct keydb_handle *KEYDB_HANDLE;
|
|
||||||
|
|
||||||
|
|
||||||
/* Helper type for preference fucntions. */
|
/* Helper type for preference fucntions. */
|
||||||
union pref_hint
|
union pref_hint
|
||||||
{
|
{
|
||||||
|
@ -746,9 +746,14 @@ keybox_search_reset (KEYBOX_HANDLE hd)
|
|||||||
|
|
||||||
if (hd->fp)
|
if (hd->fp)
|
||||||
{
|
{
|
||||||
|
if (fseeko (hd->fp, 0, SEEK_SET))
|
||||||
|
{
|
||||||
|
/* Ooops. Seek did not work. Close so that the search will
|
||||||
|
* open the file again. */
|
||||||
fclose (hd->fp);
|
fclose (hd->fp);
|
||||||
hd->fp = NULL;
|
hd->fp = NULL;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
hd->error = 0;
|
hd->error = 0;
|
||||||
hd->eof = 0;
|
hd->eof = 0;
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user