mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
kbx: Implement keybox_lock for use by gpg.
* kbx/keybox-defs.h: Include dotlock.h and logging.h. (CONST_KB_NAME): Remove. Replace usage by KB_NAME. (struct keybox_name): Add field "lockhd". * kbx/keybox-init.c (keybox_register_file): Init LOCKHD. (keybox_lock): Chnage to return gpg_error_t. Implement locking. -- The keybox locking for gpg was not implemented - This needs to be fixed of course. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
9dc355ad3a
commit
1608629786
@ -40,6 +40,8 @@
|
|||||||
fixme: Better use the LIBOBJ mechnism. */
|
fixme: Better use the LIBOBJ mechnism. */
|
||||||
#include "../common/types.h"
|
#include "../common/types.h"
|
||||||
#include "../common/stringhelp.h"
|
#include "../common/stringhelp.h"
|
||||||
|
#include "../common/dotlock.h"
|
||||||
|
#include "../common/logging.h"
|
||||||
|
|
||||||
#include "keybox.h"
|
#include "keybox.h"
|
||||||
|
|
||||||
@ -48,7 +50,6 @@ typedef struct keyboxblob *KEYBOXBLOB;
|
|||||||
|
|
||||||
|
|
||||||
typedef struct keybox_name *KB_NAME;
|
typedef struct keybox_name *KB_NAME;
|
||||||
typedef struct keybox_name const *CONST_KB_NAME;
|
|
||||||
struct keybox_name
|
struct keybox_name
|
||||||
{
|
{
|
||||||
/* Link to the next resources, so that we can walk all
|
/* Link to the next resources, so that we can walk all
|
||||||
@ -58,14 +59,15 @@ struct keybox_name
|
|||||||
/* True if this is a keybox with secret keys. */
|
/* True if this is a keybox with secret keys. */
|
||||||
int secret;
|
int secret;
|
||||||
|
|
||||||
/*DOTLOCK lockhd;*/
|
|
||||||
|
|
||||||
/* A table with all the handles accessing this resources.
|
/* A table with all the handles accessing this resources.
|
||||||
HANDLE_TABLE_SIZE gives the allocated length of this table unused
|
HANDLE_TABLE_SIZE gives the allocated length of this table unused
|
||||||
entrues are set to NULL. HANDLE_TABLE may be NULL. */
|
entrues are set to NULL. HANDLE_TABLE may be NULL. */
|
||||||
KEYBOX_HANDLE *handle_table;
|
KEYBOX_HANDLE *handle_table;
|
||||||
size_t handle_table_size;
|
size_t handle_table_size;
|
||||||
|
|
||||||
|
/* The lock handle or NULL it not yet initialized. */
|
||||||
|
dotlock_t lockhd;
|
||||||
|
|
||||||
/* Not yet used. */
|
/* Not yet used. */
|
||||||
int is_locked;
|
int is_locked;
|
||||||
|
|
||||||
@ -85,7 +87,7 @@ struct keybox_found_s
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct keybox_handle {
|
struct keybox_handle {
|
||||||
CONST_KB_NAME kb;
|
KB_NAME kb;
|
||||||
int secret; /* this is for a secret keybox */
|
int secret; /* this is for a secret keybox */
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
int eof;
|
int eof;
|
||||||
|
@ -60,7 +60,7 @@ keybox_register_file (const char *fname, int secret, void **r_token)
|
|||||||
kr->handle_table = NULL;
|
kr->handle_table = NULL;
|
||||||
kr->handle_table_size = 0;
|
kr->handle_table_size = 0;
|
||||||
|
|
||||||
/* kr->lockhd = NULL;*/
|
kr->lockhd = NULL;
|
||||||
kr->is_locked = 0;
|
kr->is_locked = 0;
|
||||||
kr->did_full_scan = 0;
|
kr->did_full_scan = 0;
|
||||||
/* keep a list of all issued pointers */
|
/* keep a list of all issued pointers */
|
||||||
@ -261,17 +261,55 @@ _keybox_close_file (KEYBOX_HANDLE hd)
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Lock the keybox at handle HD, or unlock if YES is false. Note that
|
* Lock the keybox at handle HD, or unlock if YES is false.
|
||||||
* we currently ignore the handle and lock all registered keyboxes.
|
|
||||||
*/
|
*/
|
||||||
int
|
gpg_error_t
|
||||||
keybox_lock (KEYBOX_HANDLE hd, int yes)
|
keybox_lock (KEYBOX_HANDLE hd, int yes)
|
||||||
{
|
{
|
||||||
/* FIXME: We need to implement it before we can use it with gpg.
|
gpg_error_t err;
|
||||||
gpgsm does the locking in its local keydb.c driver; this should
|
KB_NAME kb = hd->kb;
|
||||||
be changed as well. */
|
|
||||||
|
|
||||||
(void)hd;
|
if (!keybox_is_writable ((void*)kb))
|
||||||
(void)yes;
|
return 0;
|
||||||
return 0;
|
|
||||||
|
/* Make sure the lock handle has been created. */
|
||||||
|
if (!kb->lockhd)
|
||||||
|
{
|
||||||
|
kb->lockhd = dotlock_create (kb->fname, 0);
|
||||||
|
if (!kb->lockhd)
|
||||||
|
{
|
||||||
|
/* Unfortuntaley dotlock_create does not properly set ERRNO. */
|
||||||
|
log_info ("can't allocate lock for '%s'\n", kb->fname );
|
||||||
|
return gpg_error (GPG_ERR_GENERAL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (yes) /* Take the lock. */
|
||||||
|
{
|
||||||
|
if (kb->is_locked)
|
||||||
|
;
|
||||||
|
else if (!dotlock_take (kb->lockhd, -1))
|
||||||
|
kb->is_locked = 1;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Unfortuntaley dotlock_take does not properly set ERRNO. */
|
||||||
|
log_info ("can't lock '%s'\n", kb->fname );
|
||||||
|
err = gpg_error (GPG_ERR_GENERAL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else /* Release the lock. */
|
||||||
|
{
|
||||||
|
if (!kb->is_locked)
|
||||||
|
;
|
||||||
|
else if (!dotlock_release (kb->lockhd))
|
||||||
|
kb->is_locked = 0;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Unfortuntaley dotlock_release does not properly set ERRNO. */
|
||||||
|
log_info ("can't unlock '%s'\n", kb->fname );
|
||||||
|
err = gpg_error (GPG_ERR_GENERAL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ void keybox_pop_found_state (KEYBOX_HANDLE hd);
|
|||||||
const char *keybox_get_resource_name (KEYBOX_HANDLE hd);
|
const char *keybox_get_resource_name (KEYBOX_HANDLE hd);
|
||||||
int keybox_set_ephemeral (KEYBOX_HANDLE hd, int yes);
|
int keybox_set_ephemeral (KEYBOX_HANDLE hd, int yes);
|
||||||
|
|
||||||
int keybox_lock (KEYBOX_HANDLE hd, int yes);
|
gpg_error_t keybox_lock (KEYBOX_HANDLE hd, int yes);
|
||||||
|
|
||||||
/*-- keybox-file.c --*/
|
/*-- keybox-file.c --*/
|
||||||
/* Fixme: This function does not belong here: Provide a better
|
/* Fixme: This function does not belong here: Provide a better
|
||||||
|
Loading…
x
Reference in New Issue
Block a user