2019-08-06 16:07:33 +02:00
|
|
|
/* backend.h - Definitions for keyboxd backends
|
|
|
|
* Copyright (C) 2019 g10 Code GmbH
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KBX_BACKEND_H
|
|
|
|
#define KBX_BACKEND_H
|
|
|
|
|
2020-09-10 12:50:45 +02:00
|
|
|
#include <ksba.h>
|
2021-09-30 03:14:37 +02:00
|
|
|
#include "keybox.h"
|
2019-08-06 16:07:33 +02:00
|
|
|
|
|
|
|
/* The types of the backends. */
|
|
|
|
enum database_types
|
|
|
|
{
|
Spelling cleanup.
No functional changes, just fixing minor spelling issues.
---
Most of these were identified from the command line by running:
codespell \
--ignore-words-list fpr,stati,keyserver,keyservers,asign,cas,iff,ifset \
--skip '*.po,ChangeLog*,help.*.txt,*.jpg,*.eps,*.pdf,*.png,*.gpg,*.asc' \
doc g13 g10 kbx agent artwork scd tests tools am common dirmngr sm \
NEWS README README.maint TODO
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
2020-02-18 15:34:42 +01:00
|
|
|
DB_TYPE_NONE, /* No database at all (uninitialized etc.). */
|
2019-09-27 09:24:58 +02:00
|
|
|
DB_TYPE_CACHE, /* The cache backend (backend-cache.c). */
|
2020-01-02 14:21:12 +01:00
|
|
|
DB_TYPE_KBX, /* Keybox type database (backend-kbx.c). */
|
|
|
|
DB_TYPE_SQLITE /* SQLite type database (backend-sqlite.c).*/
|
2019-08-06 16:07:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Declaration of the backend handle. Each backend uses its own
|
|
|
|
* hidden handle structure with the only common thing being that the
|
|
|
|
* first field is the database_type to help with debugging. */
|
|
|
|
struct backend_handle_s;
|
|
|
|
typedef struct backend_handle_s *backend_handle_t;
|
|
|
|
|
|
|
|
|
2020-01-02 14:21:12 +01:00
|
|
|
/* Private data for sqlite requests. */
|
|
|
|
struct be_sqlite_local_s;
|
|
|
|
typedef struct be_sqlite_local_s *be_sqlite_local_t;
|
|
|
|
|
|
|
|
|
2019-09-27 09:24:58 +02:00
|
|
|
/* Object to store backend specific database information per database
|
2019-08-06 16:07:33 +02:00
|
|
|
* handle. */
|
|
|
|
struct db_request_part_s
|
|
|
|
{
|
|
|
|
struct db_request_part_s *next;
|
|
|
|
|
|
|
|
/* Id of the backend instance this object pertains to. */
|
|
|
|
unsigned int backend_id;
|
|
|
|
|
2020-01-02 14:21:12 +01:00
|
|
|
/* Local data for a KBX backend or NULL. */
|
2019-08-06 16:07:33 +02:00
|
|
|
KEYBOX_HANDLE kbx_hd;
|
2019-09-27 09:24:58 +02:00
|
|
|
|
2020-01-02 14:21:12 +01:00
|
|
|
/* Local data for a sqlite backend. */
|
|
|
|
be_sqlite_local_t besqlite;
|
|
|
|
|
2019-09-27 09:24:58 +02:00
|
|
|
/* For the CACHE backend the indices into the bloblist for each
|
|
|
|
* index type. */
|
|
|
|
struct {
|
|
|
|
unsigned int fpr;
|
|
|
|
unsigned int kid;
|
|
|
|
unsigned int grip;
|
2019-09-27 10:05:07 +02:00
|
|
|
unsigned int ubid;
|
2019-09-27 09:24:58 +02:00
|
|
|
} cache_seqno;
|
2019-08-06 16:07:33 +02:00
|
|
|
};
|
|
|
|
typedef struct db_request_part_s *db_request_part_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* A database request handle. This keeps per session search
|
|
|
|
* information as well as a list of per-backend infos. */
|
|
|
|
struct db_request_s
|
|
|
|
{
|
|
|
|
unsigned int any_search:1; /* Any search has been done. */
|
|
|
|
unsigned int any_found:1; /* Any object has been found. */
|
2019-09-27 09:24:58 +02:00
|
|
|
unsigned int last_cached_valid:1; /* see below */
|
|
|
|
unsigned int last_cached_final:1; /* see below */
|
|
|
|
unsigned int last_cached_fprlen:8;/* see below */
|
2019-08-06 16:07:33 +02:00
|
|
|
|
|
|
|
db_request_part_t part;
|
|
|
|
|
|
|
|
/* Counter to track the next to be searched database index. */
|
|
|
|
unsigned int next_dbidx;
|
2019-09-27 09:24:58 +02:00
|
|
|
|
|
|
|
/* The last UBID found in the cache and the corresponding keyid and,
|
2019-11-28 09:39:35 +01:00
|
|
|
* if found via fpr, the fingerprint. For the LAST_CACHED_FPRLEN see
|
|
|
|
* above. The entry here is only valid if LAST_CACHED_VALID is set;
|
|
|
|
* if LAST_CACHED_FINAL is also set, this indicates that no further
|
2019-09-27 09:24:58 +02:00
|
|
|
* database searches are required. */
|
2019-11-28 09:39:35 +01:00
|
|
|
unsigned char last_cached_ubid[UBID_LEN];
|
2019-09-27 09:24:58 +02:00
|
|
|
u32 last_cached_kid_h;
|
|
|
|
u32 last_cached_kid_l;
|
|
|
|
unsigned char last_cached_fpr[32];
|
2019-08-06 16:07:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-- backend-support.c --*/
|
|
|
|
const char *strdbtype (enum database_types t);
|
|
|
|
unsigned int be_new_backend_id (void);
|
|
|
|
void be_generic_release_backend (ctrl_t ctrl, backend_handle_t hd);
|
|
|
|
void be_release_request (db_request_t req);
|
2019-09-27 09:24:58 +02:00
|
|
|
gpg_error_t be_find_request_part (backend_handle_t backend_hd,
|
|
|
|
db_request_t request,
|
|
|
|
db_request_part_t *r_part);
|
|
|
|
gpg_error_t be_return_pubkey (ctrl_t ctrl, const void *buffer, size_t buflen,
|
|
|
|
enum pubkey_types pubkey_type,
|
2020-09-10 16:41:49 +02:00
|
|
|
const unsigned char *ubid,
|
2020-09-22 15:42:12 +02:00
|
|
|
int is_ephemeral, int is_revoked,
|
|
|
|
int uidno, int pkno);
|
2020-01-02 14:21:12 +01:00
|
|
|
int be_is_x509_blob (const unsigned char *blob, size_t bloblen);
|
2019-11-28 09:39:35 +01:00
|
|
|
gpg_error_t be_ubid_from_blob (const void *blob, size_t bloblen,
|
|
|
|
enum pubkey_types *r_pktype, char *r_ubid);
|
2020-09-10 12:50:45 +02:00
|
|
|
char *be_get_x509_serial (ksba_cert_t cert);
|
|
|
|
gpg_error_t be_get_x509_keygrip (ksba_cert_t cert, unsigned char *keygrip);
|
2019-09-27 09:24:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*-- backend-cache.c --*/
|
2019-11-28 09:39:35 +01:00
|
|
|
gpg_error_t be_cache_initialize (void);
|
2019-09-27 09:24:58 +02:00
|
|
|
gpg_error_t be_cache_add_resource (ctrl_t ctrl, backend_handle_t *r_hd);
|
|
|
|
void be_cache_release_resource (ctrl_t ctrl, backend_handle_t hd);
|
|
|
|
gpg_error_t be_cache_search (ctrl_t ctrl, backend_handle_t backend_hd,
|
|
|
|
db_request_t request,
|
|
|
|
KEYDB_SEARCH_DESC *desc, unsigned int ndesc);
|
|
|
|
void be_cache_mark_final (ctrl_t ctrl, db_request_t request);
|
|
|
|
void be_cache_pubkey (ctrl_t ctrl, const unsigned char *ubid,
|
|
|
|
const void *blob, unsigned int bloblen,
|
|
|
|
enum pubkey_types pubkey_type);
|
|
|
|
void be_cache_not_found (ctrl_t ctrl, enum pubkey_types pubkey_type,
|
|
|
|
KEYDB_SEARCH_DESC *desc, unsigned int ndesc);
|
2019-08-06 16:07:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*-- backend-kbx.c --*/
|
|
|
|
gpg_error_t be_kbx_add_resource (ctrl_t ctrl, backend_handle_t *r_hd,
|
|
|
|
const char *filename, int readonly);
|
|
|
|
void be_kbx_release_resource (ctrl_t ctrl, backend_handle_t hd);
|
|
|
|
|
|
|
|
void be_kbx_release_kbx_hd (KEYBOX_HANDLE kbx_hd);
|
2019-09-27 09:24:58 +02:00
|
|
|
gpg_error_t be_kbx_init_request_part (backend_handle_t backend_hd,
|
|
|
|
db_request_part_t part);
|
2019-08-06 16:07:33 +02:00
|
|
|
gpg_error_t be_kbx_search (ctrl_t ctrl, backend_handle_t hd,
|
|
|
|
db_request_t request,
|
|
|
|
KEYDB_SEARCH_DESC *desc, unsigned int ndesc);
|
2019-09-27 09:24:58 +02:00
|
|
|
gpg_error_t be_kbx_seek (ctrl_t ctrl, backend_handle_t backend_hd,
|
2019-11-28 09:39:35 +01:00
|
|
|
db_request_t request, const unsigned char *ubid);
|
2019-10-01 20:09:42 +02:00
|
|
|
gpg_error_t be_kbx_insert (ctrl_t ctrl, backend_handle_t backend_hd,
|
|
|
|
db_request_t request, enum pubkey_types pktype,
|
|
|
|
const void *blob, size_t bloblen);
|
2019-10-04 14:19:39 +02:00
|
|
|
gpg_error_t be_kbx_update (ctrl_t ctrl, backend_handle_t backend_hd,
|
|
|
|
db_request_t request, enum pubkey_types pktype,
|
|
|
|
const void *blob, size_t bloblen);
|
2019-11-28 11:19:33 +01:00
|
|
|
gpg_error_t be_kbx_delete (ctrl_t ctrl, backend_handle_t backend_hd,
|
|
|
|
db_request_t request);
|
2019-08-06 16:07:33 +02:00
|
|
|
|
|
|
|
|
2020-01-02 14:21:12 +01:00
|
|
|
/*-- backend-sqlite.c --*/
|
|
|
|
gpg_error_t be_sqlite_add_resource (ctrl_t ctrl, backend_handle_t *r_hd,
|
|
|
|
const char *filename, int readonly);
|
|
|
|
void be_sqlite_release_resource (ctrl_t ctrl, backend_handle_t hd);
|
|
|
|
|
|
|
|
gpg_error_t be_sqlite_init_local (backend_handle_t backend_hd,
|
|
|
|
db_request_part_t part);
|
|
|
|
void be_sqlite_release_local (be_sqlite_local_t ctx);
|
2020-09-24 16:38:21 +02:00
|
|
|
gpg_error_t be_sqlite_rollback (void);
|
|
|
|
gpg_error_t be_sqlite_commit (void);
|
2020-01-02 14:21:12 +01:00
|
|
|
gpg_error_t be_sqlite_search (ctrl_t ctrl, backend_handle_t hd,
|
|
|
|
db_request_t request,
|
|
|
|
KEYDB_SEARCH_DESC *desc, unsigned int ndesc);
|
|
|
|
gpg_error_t be_sqlite_store (ctrl_t ctrl, backend_handle_t backend_hd,
|
|
|
|
db_request_t request, enum kbxd_store_modes mode,
|
|
|
|
enum pubkey_types pktype,
|
|
|
|
const unsigned char *ubid,
|
|
|
|
const void *blob, size_t bloblen);
|
|
|
|
gpg_error_t be_sqlite_delete (ctrl_t ctrl, backend_handle_t backend_hd,
|
|
|
|
db_request_t request, const unsigned char *ubid);
|
|
|
|
|
|
|
|
|
2019-08-06 16:07:33 +02:00
|
|
|
#endif /*KBX_BACKEND_H*/
|