mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-09 21:28:51 +01:00
Merge branch 'master' into gniibe/t6275
This commit is contained in:
commit
3274893224
2
NEWS
2
NEWS
@ -1,4 +1,4 @@
|
|||||||
Noteworthy changes in version 2.4.2 (unreleased)
|
Noteworthy changes in version 2.5.0 (unreleased)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
2
README
2
README
@ -1,6 +1,6 @@
|
|||||||
The GNU Privacy Guard
|
The GNU Privacy Guard
|
||||||
=======================
|
=======================
|
||||||
Version 2.4
|
Version 2.5 (devel)
|
||||||
|
|
||||||
Copyright 1997-2019 Werner Koch
|
Copyright 1997-2019 Werner Koch
|
||||||
Copyright 1998-2021 Free Software Foundation, Inc.
|
Copyright 1998-2021 Free Software Foundation, Inc.
|
||||||
|
@ -28,8 +28,8 @@ min_automake_version="1.16.3"
|
|||||||
# another commit and push so that the git magic is able to work.
|
# another commit and push so that the git magic is able to work.
|
||||||
m4_define([mym4_package],[gnupg])
|
m4_define([mym4_package],[gnupg])
|
||||||
m4_define([mym4_major], [2])
|
m4_define([mym4_major], [2])
|
||||||
m4_define([mym4_minor], [4])
|
m4_define([mym4_minor], [5])
|
||||||
m4_define([mym4_micro], [2])
|
m4_define([mym4_micro], [0])
|
||||||
|
|
||||||
# To start a new development series, i.e a new major or minor number
|
# To start a new development series, i.e a new major or minor number
|
||||||
# you need to mark an arbitrary commit before the first beta release
|
# you need to mark an arbitrary commit before the first beta release
|
||||||
@ -53,7 +53,7 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org])
|
|||||||
# When changing the SWDB tag please also adjust the hard coded tags in
|
# When changing the SWDB tag please also adjust the hard coded tags in
|
||||||
# build-aux/speedo.mk, build-aux/getswdb.sh, and Makefile.am
|
# build-aux/speedo.mk, build-aux/getswdb.sh, and Makefile.am
|
||||||
# As well as the source info for the man pages.
|
# As well as the source info for the man pages.
|
||||||
AC_DEFINE_UNQUOTED(GNUPG_SWDB_TAG, "gnupg24", [swdb tag for this branch])
|
AC_DEFINE_UNQUOTED(GNUPG_SWDB_TAG, "gnupg26", [swdb tag for this branch])
|
||||||
|
|
||||||
NEED_GPGRT_VERSION=1.46
|
NEED_GPGRT_VERSION=1.46
|
||||||
|
|
||||||
|
13
doc/gpg.texi
13
doc/gpg.texi
@ -3185,12 +3185,17 @@ and may thus be changed or removed at any time without notice.
|
|||||||
To facilitate software tests and experiments this option allows to
|
To facilitate software tests and experiments this option allows to
|
||||||
specify a limit of up to 4 EiB (@code{--chunk-size 62}).
|
specify a limit of up to 4 EiB (@code{--chunk-size 62}).
|
||||||
|
|
||||||
|
@item --debug-ignore-expiration
|
||||||
|
@opindex debug-ignore-expiration
|
||||||
|
This option tries to override certain key expiration dates. It is
|
||||||
|
only useful for certain regression tests.
|
||||||
|
|
||||||
@item --faked-system-time @var{epoch}
|
@item --faked-system-time @var{epoch}
|
||||||
@opindex faked-system-time
|
@opindex faked-system-time
|
||||||
This option is only useful for testing; it sets the system time back or
|
This option is only useful for testing; it sets the system time back
|
||||||
forth to @var{epoch} which is the number of seconds elapsed since the year
|
or forth to @var{epoch} which is the number of seconds elapsed since
|
||||||
1970. Alternatively @var{epoch} may be given as a full ISO time string
|
the year 1970. Alternatively @var{epoch} may be given as a full ISO
|
||||||
(e.g. "20070924T154812").
|
time string (e.g. "20070924T154812").
|
||||||
|
|
||||||
If you suffix @var{epoch} with an exclamation mark (!), the system time
|
If you suffix @var{epoch} with an exclamation mark (!), the system time
|
||||||
will appear to be frozen at the specified time.
|
will appear to be frozen at the specified time.
|
||||||
|
@ -685,7 +685,7 @@ skip_unusable (void *opaque, u32 * keyid, int uid_no)
|
|||||||
pk = keyblock->pkt->pkt.public_key;
|
pk = keyblock->pkt->pkt.public_key;
|
||||||
|
|
||||||
/* Is the key revoked or expired? */
|
/* Is the key revoked or expired? */
|
||||||
if (pk->flags.revoked || pk->has_expired)
|
if (pk->flags.revoked || (pk->has_expired && !opt.ignore_expiration))
|
||||||
unusable = 1;
|
unusable = 1;
|
||||||
|
|
||||||
/* Is the user ID in question revoked or expired? */
|
/* Is the user ID in question revoked or expired? */
|
||||||
@ -704,7 +704,8 @@ skip_unusable (void *opaque, u32 * keyid, int uid_no)
|
|||||||
if (uids_seen != uid_no)
|
if (uids_seen != uid_no)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (user_id->flags.revoked || user_id->flags.expired)
|
if (user_id->flags.revoked
|
||||||
|
|| (user_id->flags.expired && !opt.ignore_expiration))
|
||||||
unusable = 1;
|
unusable = 1;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -3736,7 +3737,7 @@ finish_lookup (kbnode_t keyblock, unsigned int req_usage, int want_exact,
|
|||||||
n_revoked_or_expired++;
|
n_revoked_or_expired++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (pk->has_expired)
|
if (pk->has_expired && !opt.ignore_expiration)
|
||||||
{
|
{
|
||||||
if (DBG_LOOKUP)
|
if (DBG_LOOKUP)
|
||||||
log_debug ("\tsubkey has expired\n");
|
log_debug ("\tsubkey has expired\n");
|
||||||
|
14
g10/gpg.c
14
g10/gpg.c
@ -68,6 +68,7 @@
|
|||||||
#include "../common/shareddefs.h"
|
#include "../common/shareddefs.h"
|
||||||
#include "../common/compliance.h"
|
#include "../common/compliance.h"
|
||||||
#include "../common/comopt.h"
|
#include "../common/comopt.h"
|
||||||
|
#include "../kbx/keybox.h"
|
||||||
|
|
||||||
#if defined(HAVE_DOSISH_SYSTEM) || defined(__CYGWIN__)
|
#if defined(HAVE_DOSISH_SYSTEM) || defined(__CYGWIN__)
|
||||||
#define MY_O_BINARY O_BINARY
|
#define MY_O_BINARY O_BINARY
|
||||||
@ -233,6 +234,7 @@ enum cmd_and_opt_values
|
|||||||
oDebugIOLBF,
|
oDebugIOLBF,
|
||||||
oDebugSetIobufSize,
|
oDebugSetIobufSize,
|
||||||
oDebugAllowLargeChunks,
|
oDebugAllowLargeChunks,
|
||||||
|
oDebugIgnoreExpiration,
|
||||||
oStatusFD,
|
oStatusFD,
|
||||||
oStatusFile,
|
oStatusFile,
|
||||||
oAttributeFD,
|
oAttributeFD,
|
||||||
@ -447,6 +449,7 @@ enum cmd_and_opt_values
|
|||||||
oCompatibilityFlags,
|
oCompatibilityFlags,
|
||||||
oAddDesigRevoker,
|
oAddDesigRevoker,
|
||||||
oAssertSigner,
|
oAssertSigner,
|
||||||
|
oKbxBufferSize,
|
||||||
|
|
||||||
oNoop
|
oNoop
|
||||||
};
|
};
|
||||||
@ -605,7 +608,6 @@ static gpgrt_opt_t opts[] = {
|
|||||||
N_("|FILE|write server mode logs to FILE")),
|
N_("|FILE|write server mode logs to FILE")),
|
||||||
ARGPARSE_s_s (oLoggerFile, "logger-file", "@"), /* 1.4 compatibility. */
|
ARGPARSE_s_s (oLoggerFile, "logger-file", "@"), /* 1.4 compatibility. */
|
||||||
ARGPARSE_s_n (oLogTime, "log-time", "@"),
|
ARGPARSE_s_n (oLogTime, "log-time", "@"),
|
||||||
ARGPARSE_s_n (oQuickRandom, "debug-quick-random", "@"),
|
|
||||||
|
|
||||||
|
|
||||||
ARGPARSE_header ("Configuration",
|
ARGPARSE_header ("Configuration",
|
||||||
@ -926,6 +928,9 @@ static gpgrt_opt_t opts[] = {
|
|||||||
/* Esoteric compatibility options. */
|
/* Esoteric compatibility options. */
|
||||||
ARGPARSE_s_n (oRFC2440Text, "rfc2440-text", "@"),
|
ARGPARSE_s_n (oRFC2440Text, "rfc2440-text", "@"),
|
||||||
ARGPARSE_s_n (oNoRFC2440Text, "no-rfc2440-text", "@"),
|
ARGPARSE_s_n (oNoRFC2440Text, "no-rfc2440-text", "@"),
|
||||||
|
ARGPARSE_p_u (oKbxBufferSize, "kbx-buffer-size", "@"),
|
||||||
|
ARGPARSE_s_n (oQuickRandom, "debug-quick-random", "@"),
|
||||||
|
ARGPARSE_s_n (oDebugIgnoreExpiration, "debug-ignore-expiration", "@"),
|
||||||
|
|
||||||
ARGPARSE_header (NULL, ""), /* Stop the header group. */
|
ARGPARSE_header (NULL, ""), /* Stop the header group. */
|
||||||
|
|
||||||
@ -2848,6 +2853,10 @@ main (int argc, char **argv)
|
|||||||
allow_large_chunks = 1;
|
allow_large_chunks = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case oDebugIgnoreExpiration:
|
||||||
|
opt.ignore_expiration = 1;
|
||||||
|
break;
|
||||||
|
|
||||||
case oCompatibilityFlags:
|
case oCompatibilityFlags:
|
||||||
if (parse_compatibility_flags (pargs.r.ret_str, &opt.compat_flags,
|
if (parse_compatibility_flags (pargs.r.ret_str, &opt.compat_flags,
|
||||||
compatibility_flags))
|
compatibility_flags))
|
||||||
@ -3743,6 +3752,9 @@ main (int argc, char **argv)
|
|||||||
add_to_strlist (&opt.assert_signer_list, pargs.r.ret_str);
|
add_to_strlist (&opt.assert_signer_list, pargs.r.ret_str);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case oKbxBufferSize:
|
||||||
|
keybox_set_buffersize (pargs.r.ret_ulong, 0);
|
||||||
|
break;
|
||||||
|
|
||||||
case oNoop: break;
|
case oNoop: break;
|
||||||
|
|
||||||
|
@ -2136,6 +2136,7 @@ import_one_real (ctrl_t ctrl,
|
|||||||
list_keyblock_direct (ctrl, keyblock, from_sk, 0,
|
list_keyblock_direct (ctrl, keyblock, from_sk, 0,
|
||||||
opt.fingerprint || opt.with_fingerprint, 1);
|
opt.fingerprint || opt.with_fingerprint, 1);
|
||||||
es_fflush (es_stdout);
|
es_fflush (es_stdout);
|
||||||
|
no_usable_encr_subkeys_warning (keyblock);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Write the keyblock to the output and do not actually import. */
|
/* Write the keyblock to the output and do not actually import. */
|
||||||
|
@ -1501,6 +1501,7 @@ keyedit_menu (ctrl_t ctrl, const char *username, strlist_t locusr,
|
|||||||
run_subkey_warnings = 0;
|
run_subkey_warnings = 0;
|
||||||
if (!count_selected_keys (keyblock))
|
if (!count_selected_keys (keyblock))
|
||||||
subkey_expire_warning (keyblock);
|
subkey_expire_warning (keyblock);
|
||||||
|
no_usable_encr_subkeys_warning (keyblock);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (delseckey_list_warn)
|
if (delseckey_list_warn)
|
||||||
@ -4258,6 +4259,40 @@ subkey_expire_warning (kbnode_t keyblock)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Print a warning if all encryption (sub|primary)keys are expired.
|
||||||
|
* The warning is not printed if there is no encryption
|
||||||
|
* (sub|primary)key at all. This function is called after the expire
|
||||||
|
* data of the primary key has been changed. */
|
||||||
|
void
|
||||||
|
no_usable_encr_subkeys_warning (kbnode_t keyblock)
|
||||||
|
{
|
||||||
|
kbnode_t node;
|
||||||
|
PKT_public_key *pk;
|
||||||
|
int any_encr_key = 0;
|
||||||
|
|
||||||
|
for (node = keyblock; node; node = node->next)
|
||||||
|
{
|
||||||
|
if (node->pkt->pkttype == PKT_PUBLIC_KEY
|
||||||
|
|| node->pkt->pkttype == PKT_PUBLIC_SUBKEY)
|
||||||
|
{
|
||||||
|
pk = node->pkt->pkt.public_key;
|
||||||
|
if ((pk->pubkey_usage & PUBKEY_USAGE_ENC))
|
||||||
|
{
|
||||||
|
any_encr_key = 1;
|
||||||
|
if (pk->flags.valid && !pk->has_expired && !pk->flags.revoked
|
||||||
|
&& !pk->flags.disabled)
|
||||||
|
{
|
||||||
|
return; /* Key is usable for encryption */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (any_encr_key && !opt.quiet)
|
||||||
|
log_info (_("WARNING: No valid encryption subkey left over.\n"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Ask for a new user id, add the self-signature, and update the
|
* Ask for a new user id, add the self-signature, and update the
|
||||||
* keyblock. If UIDSTRING is not NULL the user ID is generated
|
* keyblock. If UIDSTRING is not NULL the user ID is generated
|
||||||
|
@ -63,5 +63,6 @@ int keyedit_print_one_sig (ctrl_t ctrl, estream_t fp,
|
|||||||
kbnode_t node, int *inv_sigs, int *no_key,
|
kbnode_t node, int *inv_sigs, int *no_key,
|
||||||
int *oth_err, int is_selfsig,
|
int *oth_err, int is_selfsig,
|
||||||
int print_without_key, int extended);
|
int print_without_key, int extended);
|
||||||
|
void no_usable_encr_subkeys_warning (kbnode_t keyblock);
|
||||||
|
|
||||||
#endif /* GNUPG_G10_KEYEDIT_H */
|
#endif /* GNUPG_G10_KEYEDIT_H */
|
||||||
|
@ -208,6 +208,7 @@ struct
|
|||||||
int ignore_valid_from;
|
int ignore_valid_from;
|
||||||
int ignore_crc_error;
|
int ignore_crc_error;
|
||||||
int ignore_mdc_error;
|
int ignore_mdc_error;
|
||||||
|
int ignore_expiration;
|
||||||
int command_fd;
|
int command_fd;
|
||||||
const char *override_session_key;
|
const char *override_session_key;
|
||||||
int show_session_key;
|
int show_session_key;
|
||||||
|
@ -417,7 +417,11 @@ do_we_trust( PKT_public_key *pk, unsigned int trustlevel )
|
|||||||
if(trustlevel & TRUST_FLAG_REVOKED
|
if(trustlevel & TRUST_FLAG_REVOKED
|
||||||
|| trustlevel & TRUST_FLAG_SUB_REVOKED
|
|| trustlevel & TRUST_FLAG_SUB_REVOKED
|
||||||
|| (trustlevel & TRUST_MASK) == TRUST_EXPIRED)
|
|| (trustlevel & TRUST_MASK) == TRUST_EXPIRED)
|
||||||
|
{
|
||||||
|
if (opt.ignore_expiration)
|
||||||
|
return 0;
|
||||||
BUG ();
|
BUG ();
|
||||||
|
}
|
||||||
|
|
||||||
if( opt.trust_model==TM_ALWAYS )
|
if( opt.trust_model==TM_ALWAYS )
|
||||||
{
|
{
|
||||||
|
@ -136,6 +136,14 @@ typedef struct _keybox_openpgp_info *keybox_openpgp_info_t;
|
|||||||
/* } keybox_opt; */
|
/* } keybox_opt; */
|
||||||
|
|
||||||
/*-- keybox-init.c --*/
|
/*-- keybox-init.c --*/
|
||||||
|
|
||||||
|
#define KEYBOX_LL_OPEN_READ 0
|
||||||
|
#define KEYBOX_LL_OPEN_UPDATE 1
|
||||||
|
#define KEYBOX_LL_OPEN_CREATE 2
|
||||||
|
gpg_error_t _keybox_ll_open (estream_t *rfp, const char *fname,
|
||||||
|
unsigned int mode);
|
||||||
|
gpg_error_t _keybox_ll_close (estream_t fp);
|
||||||
|
|
||||||
void _keybox_close_file (KEYBOX_HANDLE hd);
|
void _keybox_close_file (KEYBOX_HANDLE hd);
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,8 +28,26 @@
|
|||||||
#include "../common/sysutils.h"
|
#include "../common/sysutils.h"
|
||||||
#include "../common/mischelp.h"
|
#include "../common/mischelp.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_W32_SYSTEM
|
||||||
|
# define DEFAULT_LL_BUFFER_SIZE 128
|
||||||
|
#else
|
||||||
|
# define DEFAULT_LL_BUFFER_SIZE 64
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static unsigned int ll_buffer_size = DEFAULT_LL_BUFFER_SIZE;
|
||||||
|
|
||||||
static KB_NAME kb_names;
|
static KB_NAME kb_names;
|
||||||
|
|
||||||
|
/* This object is used to mahe setvbuf buffers. We use a short arary
|
||||||
|
* to be able to reuse already allocated buffers. */
|
||||||
|
struct stream_buffer_s
|
||||||
|
{
|
||||||
|
int inuse; /* True if used by a stream. */
|
||||||
|
size_t bufsize;
|
||||||
|
char *buf;
|
||||||
|
};
|
||||||
|
static struct stream_buffer_s stream_buffers[5];
|
||||||
|
|
||||||
|
|
||||||
/* Register a filename for plain keybox files. Returns 0 on success,
|
/* Register a filename for plain keybox files. Returns 0 on success,
|
||||||
* GPG_ERR_EEXIST if it has already been registered, or another error
|
* GPG_ERR_EEXIST if it has already been registered, or another error
|
||||||
@ -85,6 +103,16 @@ keybox_is_writable (void *token)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Change the default buffering to KBYTES KiB; using 0 uses the syste
|
||||||
|
* buffers. This function must be called early. */
|
||||||
|
void
|
||||||
|
keybox_set_buffersize (unsigned int kbytes, int reserved)
|
||||||
|
{
|
||||||
|
(void)reserved;
|
||||||
|
/* Round down to 8k multiples. */
|
||||||
|
ll_buffer_size = (kbytes + 7)/8 * 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static KEYBOX_HANDLE
|
static KEYBOX_HANDLE
|
||||||
do_keybox_new (KB_NAME resource, int secret, int for_openpgp)
|
do_keybox_new (KB_NAME resource, int secret, int for_openpgp)
|
||||||
@ -180,7 +208,7 @@ keybox_release (KEYBOX_HANDLE hd)
|
|||||||
_keybox_release_blob (hd->saved_found.blob);
|
_keybox_release_blob (hd->saved_found.blob);
|
||||||
if (hd->fp)
|
if (hd->fp)
|
||||||
{
|
{
|
||||||
es_fclose (hd->fp);
|
_keybox_ll_close (hd->fp);
|
||||||
hd->fp = NULL;
|
hd->fp = NULL;
|
||||||
}
|
}
|
||||||
xfree (hd->word_match.name);
|
xfree (hd->word_match.name);
|
||||||
@ -236,6 +264,100 @@ keybox_set_ephemeral (KEYBOX_HANDLE hd, int yes)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Low-level open function to be used for keybox files. This function
|
||||||
|
* also manages custom buffering. On success 0 is returned and a new
|
||||||
|
* file pointer stored at RFP; on error an error code is returned and
|
||||||
|
* NULL is stored at RFP. MODE is one of
|
||||||
|
* KEYBOX_LL_OPEN_READ(0) := fopen mode is "rb"
|
||||||
|
* KEYBOX_LL_OPEN_UPDATE := fopen mode is "r+b"
|
||||||
|
* KEYBOX_LL_OPEN_CREATE := fopen mode is "wb"
|
||||||
|
*/
|
||||||
|
gpg_error_t
|
||||||
|
_keybox_ll_open (estream_t *rfp, const char *fname, unsigned int mode)
|
||||||
|
{
|
||||||
|
estream_t fp;
|
||||||
|
int i;
|
||||||
|
size_t bufsize;
|
||||||
|
|
||||||
|
*rfp = NULL;
|
||||||
|
|
||||||
|
fp = es_fopen (fname,
|
||||||
|
mode == KEYBOX_LL_OPEN_CREATE
|
||||||
|
? "wb,sysopen,sequential" :
|
||||||
|
mode == KEYBOX_LL_OPEN_UPDATE
|
||||||
|
? "r+b,sysopen,sequential" :
|
||||||
|
"rb,sysopen,sequential");
|
||||||
|
if (!fp)
|
||||||
|
return gpg_error_from_syserror ();
|
||||||
|
|
||||||
|
if (ll_buffer_size)
|
||||||
|
{
|
||||||
|
for (i=0; i < DIM (stream_buffers); i++)
|
||||||
|
if (!stream_buffers[i].inuse)
|
||||||
|
{
|
||||||
|
/* There is a free slot - we can use a larger buffer. */
|
||||||
|
stream_buffers[i].inuse = 1;
|
||||||
|
if (!stream_buffers[i].buf)
|
||||||
|
{
|
||||||
|
bufsize = ll_buffer_size * 1024;
|
||||||
|
stream_buffers[i].buf = xtrymalloc (bufsize);
|
||||||
|
if (stream_buffers[i].buf)
|
||||||
|
stream_buffers[i].bufsize = bufsize;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
log_info ("can't allocate a large buffer for a kbx file;"
|
||||||
|
" using default\n");
|
||||||
|
stream_buffers[i].inuse = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stream_buffers[i].buf)
|
||||||
|
{
|
||||||
|
es_setvbuf (fp, stream_buffers[i].buf, _IOFBF,
|
||||||
|
stream_buffers[i].bufsize);
|
||||||
|
es_opaque_set (fp, stream_buffers + i);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
*rfp = fp;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Wrapper around es_fclose to be used for file opened with
|
||||||
|
* _keybox_ll_open. */
|
||||||
|
gpg_error_t
|
||||||
|
_keybox_ll_close (estream_t fp)
|
||||||
|
{
|
||||||
|
gpg_error_t err;
|
||||||
|
struct stream_buffer_s *sbuf;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
if (!fp)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
sbuf = ll_buffer_size? es_opaque_get (fp) : NULL;
|
||||||
|
if (es_fclose (fp))
|
||||||
|
err = gpg_error_from_syserror ();
|
||||||
|
else
|
||||||
|
err = 0;
|
||||||
|
if (sbuf)
|
||||||
|
{
|
||||||
|
for (i=0; i < DIM (stream_buffers); i++)
|
||||||
|
if (stream_buffers + i == sbuf)
|
||||||
|
break;
|
||||||
|
log_assert (i < DIM (stream_buffers));
|
||||||
|
stream_buffers[i].inuse = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Close the file of the resource identified by HD. For consistent
|
/* Close the file of the resource identified by HD. For consistent
|
||||||
results this function closes the files of all handles pointing to
|
results this function closes the files of all handles pointing to
|
||||||
the resource identified by HD. */
|
the resource identified by HD. */
|
||||||
@ -253,7 +375,7 @@ _keybox_close_file (KEYBOX_HANDLE hd)
|
|||||||
{
|
{
|
||||||
if (roverhd->fp)
|
if (roverhd->fp)
|
||||||
{
|
{
|
||||||
es_fclose (roverhd->fp);
|
_keybox_ll_close (roverhd->fp);
|
||||||
roverhd->fp = NULL;
|
roverhd->fp = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -873,27 +873,11 @@ release_sn_array (struct sn_array_s *array, size_t size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Helper to open the file. */
|
|
||||||
static gpg_error_t
|
|
||||||
open_file (KEYBOX_HANDLE hd)
|
|
||||||
{
|
|
||||||
|
|
||||||
hd->fp = es_fopen (hd->kb->fname, "rb");
|
|
||||||
if (!hd->fp)
|
|
||||||
{
|
|
||||||
hd->error = gpg_error_from_syserror ();
|
|
||||||
return hd->error;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
*
|
||||||
The search API
|
* The search API
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
gpg_error_t
|
gpg_error_t
|
||||||
@ -914,7 +898,7 @@ keybox_search_reset (KEYBOX_HANDLE hd)
|
|||||||
{
|
{
|
||||||
/* Ooops. Seek did not work. Close so that the search will
|
/* Ooops. Seek did not work. Close so that the search will
|
||||||
* open the file again. */
|
* open the file again. */
|
||||||
es_fclose (hd->fp);
|
_keybox_ll_close (hd->fp);
|
||||||
hd->fp = NULL;
|
hd->fp = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -992,7 +976,7 @@ keybox_search (KEYBOX_HANDLE hd, KEYBOX_SEARCH_DESC *desc, size_t ndesc,
|
|||||||
|
|
||||||
if (!hd->fp)
|
if (!hd->fp)
|
||||||
{
|
{
|
||||||
rc = open_file (hd);
|
rc = _keybox_ll_open (&hd->fp, hd->kb->fname, 0);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
xfree (sn_array);
|
xfree (sn_array);
|
||||||
@ -1480,7 +1464,7 @@ keybox_seek (KEYBOX_HANDLE hd, off_t offset)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = open_file (hd);
|
err = _keybox_ll_open (&hd->fp, hd->kb->fname, 0);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
@ -78,10 +78,9 @@ create_tmp_file (const char *template,
|
|||||||
err = keybox_tmp_names (template, 0, r_bakfname, r_tmpfname);
|
err = keybox_tmp_names (template, 0, r_bakfname, r_tmpfname);
|
||||||
if (!err)
|
if (!err)
|
||||||
{
|
{
|
||||||
*r_fp = es_fopen (*r_tmpfname, "wb");
|
err = _keybox_ll_open (r_fp, *r_tmpfname, KEYBOX_LL_OPEN_CREATE);
|
||||||
if (!*r_fp)
|
if (err)
|
||||||
{
|
{
|
||||||
err = gpg_error_from_syserror ();
|
|
||||||
xfree (*r_tmpfname);
|
xfree (*r_tmpfname);
|
||||||
*r_tmpfname = NULL;
|
*r_tmpfname = NULL;
|
||||||
xfree (*r_bakfname);
|
xfree (*r_bakfname);
|
||||||
@ -174,31 +173,32 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
if ((ec = gnupg_access (fname, W_OK)))
|
if ((ec = gnupg_access (fname, W_OK)))
|
||||||
return gpg_error (ec);
|
return gpg_error (ec);
|
||||||
|
|
||||||
fp = es_fopen (fname, "rb");
|
rc = _keybox_ll_open (&fp, fname, 0);
|
||||||
if (mode == FILECOPY_INSERT && !fp && errno == ENOENT)
|
if (mode == FILECOPY_INSERT && gpg_err_code (rc) == GPG_ERR_ENOENT)
|
||||||
{
|
{
|
||||||
/* Insert mode but file does not exist:
|
/* Insert mode but file does not exist:
|
||||||
Create a new keybox file. */
|
* Create a new keybox file. */
|
||||||
newfp = es_fopen (fname, "wb");
|
rc = _keybox_ll_open (&newfp, fname, KEYBOX_LL_OPEN_CREATE);
|
||||||
if (!newfp )
|
if (rc)
|
||||||
return gpg_error_from_syserror ();
|
return rc;
|
||||||
|
|
||||||
rc = _keybox_write_header_blob (newfp, for_openpgp);
|
rc = _keybox_write_header_blob (newfp, for_openpgp);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = _keybox_write_blob (blob, newfp, NULL);
|
rc = _keybox_write_blob (blob, newfp, NULL);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( es_fclose (newfp) )
|
rc = _keybox_ll_close (newfp);
|
||||||
return gpg_error_from_syserror ();
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
|
||||||
/* if (chmod( fname, S_IRUSR | S_IWUSR )) */
|
/* if (chmod( fname, S_IRUSR | S_IWUSR )) */
|
||||||
/* { */
|
/* { */
|
||||||
@ -218,7 +218,7 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
rc = create_tmp_file (fname, &bakfname, &tmpfname, &newfp);
|
rc = create_tmp_file (fname, &bakfname, &tmpfname, &newfp);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -242,16 +242,16 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
if (es_fwrite (buffer, nread, 1, newfp) != 1)
|
if (es_fwrite (buffer, nread, 1, newfp) != 1)
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (es_ferror (fp))
|
if (es_ferror (fp))
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -275,16 +275,16 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
if (es_fwrite (buffer, nread, 1, newfp) != 1)
|
if (es_fwrite (buffer, nread, 1, newfp) != 1)
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (es_ferror (fp))
|
if (es_ferror (fp))
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -292,8 +292,8 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
rc = _keybox_read_blob (NULL, fp, NULL);
|
rc = _keybox_read_blob (NULL, fp, NULL);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -304,8 +304,8 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
rc = _keybox_write_blob (blob, newfp, NULL);
|
rc = _keybox_write_blob (blob, newfp, NULL);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -318,32 +318,30 @@ blob_filecopy (int mode, const char *fname, KEYBOXBLOB blob,
|
|||||||
if (es_fwrite (buffer, nread, 1, newfp) != 1)
|
if (es_fwrite (buffer, nread, 1, newfp) != 1)
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (es_ferror (fp))
|
if (es_ferror (fp))
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
es_fclose (newfp);
|
_keybox_ll_close (newfp);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Close both files. */
|
/* Close both files. */
|
||||||
if (es_fclose(fp))
|
rc = _keybox_ll_close (fp);
|
||||||
|
if (rc)
|
||||||
{
|
{
|
||||||
rc = gpg_error_from_syserror ();
|
_keybox_ll_close (newfp);
|
||||||
es_fclose (newfp);
|
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
if (es_fclose(newfp))
|
rc = _keybox_ll_close (newfp);
|
||||||
{
|
if (rc)
|
||||||
rc = gpg_error_from_syserror ();
|
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
|
||||||
|
|
||||||
rc = rename_tmp_file (bakfname, tmpfname, fname, secret);
|
rc = rename_tmp_file (bakfname, tmpfname, fname, secret);
|
||||||
|
|
||||||
@ -502,6 +500,7 @@ keybox_update_cert (KEYBOX_HANDLE hd, ksba_cert_t cert,
|
|||||||
int
|
int
|
||||||
keybox_set_flags (KEYBOX_HANDLE hd, int what, int idx, unsigned int value)
|
keybox_set_flags (KEYBOX_HANDLE hd, int what, int idx, unsigned int value)
|
||||||
{
|
{
|
||||||
|
gpg_error_t err;
|
||||||
off_t off;
|
off_t off;
|
||||||
const char *fname;
|
const char *fname;
|
||||||
estream_t fp;
|
estream_t fp;
|
||||||
@ -536,9 +535,10 @@ keybox_set_flags (KEYBOX_HANDLE hd, int what, int idx, unsigned int value)
|
|||||||
off += flag_pos;
|
off += flag_pos;
|
||||||
|
|
||||||
_keybox_close_file (hd);
|
_keybox_close_file (hd);
|
||||||
fp = es_fopen (hd->kb->fname, "r+b");
|
|
||||||
if (!fp)
|
err = _keybox_ll_open (&fp, fname, KEYBOX_LL_OPEN_UPDATE);
|
||||||
return gpg_error_from_syserror ();
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
ec = 0;
|
ec = 0;
|
||||||
if (es_fseeko (fp, off, SEEK_SET))
|
if (es_fseeko (fp, off, SEEK_SET))
|
||||||
@ -566,10 +566,11 @@ keybox_set_flags (KEYBOX_HANDLE hd, int what, int idx, unsigned int value)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (es_fclose (fp))
|
err = _keybox_ll_close (fp);
|
||||||
|
if (err)
|
||||||
{
|
{
|
||||||
if (!ec)
|
if (!ec)
|
||||||
ec = gpg_err_code_from_syserror ();
|
ec = gpg_err_code (err);
|
||||||
}
|
}
|
||||||
|
|
||||||
return gpg_error (ec);
|
return gpg_error (ec);
|
||||||
@ -583,7 +584,7 @@ keybox_delete (KEYBOX_HANDLE hd)
|
|||||||
off_t off;
|
off_t off;
|
||||||
const char *fname;
|
const char *fname;
|
||||||
estream_t fp;
|
estream_t fp;
|
||||||
int rc;
|
int rc, rc2;
|
||||||
|
|
||||||
if (!hd)
|
if (!hd)
|
||||||
return gpg_error (GPG_ERR_INV_VALUE);
|
return gpg_error (GPG_ERR_INV_VALUE);
|
||||||
@ -601,9 +602,9 @@ keybox_delete (KEYBOX_HANDLE hd)
|
|||||||
off += 4;
|
off += 4;
|
||||||
|
|
||||||
_keybox_close_file (hd);
|
_keybox_close_file (hd);
|
||||||
fp = es_fopen (hd->kb->fname, "r+b");
|
rc = _keybox_ll_open (&fp, hd->kb->fname, KEYBOX_LL_OPEN_UPDATE);
|
||||||
if (!fp)
|
if (rc)
|
||||||
return gpg_error_from_syserror ();
|
return rc;
|
||||||
|
|
||||||
if (es_fseeko (fp, off, SEEK_SET))
|
if (es_fseeko (fp, off, SEEK_SET))
|
||||||
rc = gpg_error_from_syserror ();
|
rc = gpg_error_from_syserror ();
|
||||||
@ -612,10 +613,11 @@ keybox_delete (KEYBOX_HANDLE hd)
|
|||||||
else
|
else
|
||||||
rc = 0;
|
rc = 0;
|
||||||
|
|
||||||
if (es_fclose (fp))
|
rc2 = _keybox_ll_close (fp);
|
||||||
|
if (rc2)
|
||||||
{
|
{
|
||||||
if (!rc)
|
if (!rc)
|
||||||
rc = gpg_error_from_syserror ();
|
rc = rc2;
|
||||||
}
|
}
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
@ -628,7 +630,7 @@ int
|
|||||||
keybox_compress (KEYBOX_HANDLE hd)
|
keybox_compress (KEYBOX_HANDLE hd)
|
||||||
{
|
{
|
||||||
gpg_err_code_t ec;
|
gpg_err_code_t ec;
|
||||||
int read_rc, rc;
|
int read_rc, rc, rc2;
|
||||||
const char *fname;
|
const char *fname;
|
||||||
estream_t fp, newfp;
|
estream_t fp, newfp;
|
||||||
char *bakfname = NULL;
|
char *bakfname = NULL;
|
||||||
@ -656,14 +658,11 @@ keybox_compress (KEYBOX_HANDLE hd)
|
|||||||
if ((ec = gnupg_access (fname, W_OK)))
|
if ((ec = gnupg_access (fname, W_OK)))
|
||||||
return gpg_error (ec);
|
return gpg_error (ec);
|
||||||
|
|
||||||
fp = es_fopen (fname, "rb");
|
rc = _keybox_ll_open (&fp, fname, 0);
|
||||||
if (!fp && errno == ENOENT)
|
if (gpg_err_code (rc) == GPG_ERR_ENOENT)
|
||||||
return 0; /* Ready. File has been deleted right after the access above. */
|
return 0; /* Ready. File has been deleted right after the access above. */
|
||||||
if (!fp)
|
if (rc)
|
||||||
{
|
|
||||||
rc = gpg_error_from_syserror ();
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
|
||||||
|
|
||||||
/* A quick test to see if we need to compress the file at all. We
|
/* A quick test to see if we need to compress the file at all. We
|
||||||
schedule a compress run after 3 hours. */
|
schedule a compress run after 3 hours. */
|
||||||
@ -679,7 +678,7 @@ keybox_compress (KEYBOX_HANDLE hd)
|
|||||||
|
|
||||||
if ( (last_maint + 3*3600) > make_timestamp () )
|
if ( (last_maint + 3*3600) > make_timestamp () )
|
||||||
{
|
{
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
_keybox_release_blob (blob);
|
_keybox_release_blob (blob);
|
||||||
return 0; /* Compress run not yet needed. */
|
return 0; /* Compress run not yet needed. */
|
||||||
}
|
}
|
||||||
@ -693,7 +692,7 @@ keybox_compress (KEYBOX_HANDLE hd)
|
|||||||
rc = create_tmp_file (fname, &bakfname, &tmpfname, &newfp);
|
rc = create_tmp_file (fname, &bakfname, &tmpfname, &newfp);
|
||||||
if (rc)
|
if (rc)
|
||||||
{
|
{
|
||||||
es_fclose (fp);
|
_keybox_ll_close (fp);
|
||||||
return rc;;
|
return rc;;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -782,10 +781,10 @@ keybox_compress (KEYBOX_HANDLE hd)
|
|||||||
rc = read_rc;
|
rc = read_rc;
|
||||||
|
|
||||||
/* Close both files. */
|
/* Close both files. */
|
||||||
if (es_fclose(fp) && !rc)
|
if ((rc2 = _keybox_ll_close (fp)) && !rc)
|
||||||
rc = gpg_error_from_syserror ();
|
rc = rc2;
|
||||||
if (es_fclose(newfp) && !rc)
|
if ((rc2 = _keybox_ll_close (newfp)) && !rc)
|
||||||
rc = gpg_error_from_syserror ();
|
rc = rc2;
|
||||||
|
|
||||||
/* Rename or remove the temporary file. */
|
/* Rename or remove the temporary file. */
|
||||||
if (rc || !any_changes)
|
if (rc || !any_changes)
|
||||||
|
@ -66,6 +66,7 @@ typedef enum
|
|||||||
/*-- keybox-init.c --*/
|
/*-- keybox-init.c --*/
|
||||||
gpg_error_t keybox_register_file (const char *fname, int secret,
|
gpg_error_t keybox_register_file (const char *fname, int secret,
|
||||||
void **r_token);
|
void **r_token);
|
||||||
|
void keybox_set_buffersize (unsigned int kbytes, int reserved);
|
||||||
int keybox_is_writable (void *token);
|
int keybox_is_writable (void *token);
|
||||||
|
|
||||||
KEYBOX_HANDLE keybox_new_openpgp (void *token, int secret);
|
KEYBOX_HANDLE keybox_new_openpgp (void *token, int secret);
|
||||||
|
@ -307,6 +307,7 @@ allowed_ca (ctrl_t ctrl,
|
|||||||
static int
|
static int
|
||||||
check_cert_policy (ksba_cert_t cert, int listmode, estream_t fplist)
|
check_cert_policy (ksba_cert_t cert, int listmode, estream_t fplist)
|
||||||
{
|
{
|
||||||
|
static int no_policy_file;
|
||||||
gpg_error_t err;
|
gpg_error_t err;
|
||||||
char *policies;
|
char *policies;
|
||||||
estream_t fp;
|
estream_t fp;
|
||||||
@ -341,12 +342,24 @@ check_cert_policy (ksba_cert_t cert, int listmode, estream_t fplist)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (no_policy_file)
|
||||||
|
{
|
||||||
|
/* Avoid trying to open the policy file if we already know that
|
||||||
|
* it does not exist. */
|
||||||
|
fp = NULL;
|
||||||
|
gpg_err_set_errno (ENOENT);
|
||||||
|
}
|
||||||
|
else
|
||||||
fp = es_fopen (opt.policy_file, "r");
|
fp = es_fopen (opt.policy_file, "r");
|
||||||
if (!fp)
|
if (!fp)
|
||||||
{
|
{
|
||||||
if (opt.verbose || errno != ENOENT)
|
if ((opt.verbose || errno != ENOENT) && !no_policy_file)
|
||||||
log_info (_("failed to open '%s': %s\n"),
|
log_info (_("failed to open '%s': %s\n"),
|
||||||
opt.policy_file, strerror (errno));
|
opt.policy_file, strerror (errno));
|
||||||
|
|
||||||
|
if (errno == ENOENT)
|
||||||
|
no_policy_file = 1;
|
||||||
|
|
||||||
xfree (policies);
|
xfree (policies);
|
||||||
/* With no critical policies this is only a warning */
|
/* With no critical policies this is only a warning */
|
||||||
if (!any_critical)
|
if (!any_critical)
|
||||||
@ -361,6 +374,8 @@ check_cert_policy (ksba_cert_t cert, int listmode, estream_t fplist)
|
|||||||
return gpg_error (GPG_ERR_NO_POLICY_MATCH);
|
return gpg_error (GPG_ERR_NO_POLICY_MATCH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Cache the policy file content. */
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
int c;
|
int c;
|
||||||
|
@ -213,6 +213,7 @@ enum cmd_and_opt_values {
|
|||||||
oKeyboxdProgram,
|
oKeyboxdProgram,
|
||||||
oRequireCompliance,
|
oRequireCompliance,
|
||||||
oCompatibilityFlags,
|
oCompatibilityFlags,
|
||||||
|
oKbxBufferSize,
|
||||||
oNoAutostart
|
oNoAutostart
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -447,6 +448,7 @@ static gpgrt_opt_t opts[] = {
|
|||||||
ARGPARSE_s_s (oXauthority, "xauthority", "@"),
|
ARGPARSE_s_s (oXauthority, "xauthority", "@"),
|
||||||
ARGPARSE_s_s (oChUid, "chuid", "@"),
|
ARGPARSE_s_s (oChUid, "chuid", "@"),
|
||||||
ARGPARSE_s_s (oCompatibilityFlags, "compatibility-flags", "@"),
|
ARGPARSE_s_s (oCompatibilityFlags, "compatibility-flags", "@"),
|
||||||
|
ARGPARSE_p_u (oKbxBufferSize, "kbx-buffer-size", "@"),
|
||||||
|
|
||||||
ARGPARSE_header (NULL, ""), /* Stop the header group. */
|
ARGPARSE_header (NULL, ""), /* Stop the header group. */
|
||||||
|
|
||||||
@ -1492,6 +1494,10 @@ main ( int argc, char **argv)
|
|||||||
|
|
||||||
case oRequireCompliance: opt.require_compliance = 1; break;
|
case oRequireCompliance: opt.require_compliance = 1; break;
|
||||||
|
|
||||||
|
case oKbxBufferSize:
|
||||||
|
keybox_set_buffersize (pargs.r.ret_ulong, 0);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (configname)
|
if (configname)
|
||||||
pargs.err = ARGPARSE_PRINT_WARNING;
|
pargs.err = ARGPARSE_PRINT_WARNING;
|
||||||
|
Loading…
Reference in New Issue
Block a user