summaryrefslogtreecommitdiff
path: root/src/argparse.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2020-02-25 15:15:39 +0100
committerWerner Koch <wk@gnupg.org>2020-02-25 15:15:39 +0100
commite9f36cabe157aa046b32dfc0b9f5c175b9808722 (patch)
treefb0f55cffc23d66f04057b6664eaff1f70301bd0 /src/argparse.c
parentf25555aed0da7f0492b68efb789dbe3e03ec7fe8 (diff)
downloadlibgpg-error-e9f36cabe157aa046b32dfc0b9f5c175b9808722.tar.gz
core: New flag ARGPARSE_FLAG_USERVERS to try versioned config files.
* src/gpg-error.h.in (ARGPARSE_FLAG_USERVERS): New. * src/argparse.c: Include unistd.h. (try_versioned_conffile): New. (_gpgrt_argparser): Use it. -- This is neded to bring the versioned config files back to gpg. Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'src/argparse.c')
-rw-r--r--src/argparse.c95
1 files changed, 75 insertions, 20 deletions
diff --git a/src/argparse.c b/src/argparse.c
index 04c8291..d54ca66 100644
--- a/src/argparse.c
+++ b/src/argparse.c
@@ -33,6 +33,7 @@
#include <stdarg.h>
#include <limits.h>
#include <errno.h>
+#include <unistd.h>
#include "gpgrt-int.h"
@@ -948,6 +949,59 @@ is_twopartfname (const char *fname)
}
+
+/* Try to use a version-ed config file name. A version-ed config file
+ * name is one which has the packages version number appended. For
+ * example if the standard config file name is "foo.conf" and the
+ * version of the foo program is 1.2.3-beta1 the following config
+ * files are tried in order until one is readable:
+ *
+ * foo.conf-1.2.3-beta1
+ * foo.conf-1.2.3
+ * foo.conf-1.2
+ * foo.conf-1
+ * foo.conf
+ *
+ * The argument CONFIGNAME should already be expanded. On success a
+ * newly allocated file name is returned. On error NULL is returned.
+ */
+static char *
+try_versioned_conffile (const char *configname)
+{
+ const char *version = _gpgrt_strusage (13);
+ char *name;
+ char *dash, *endp;
+
+ if (!version || !*version)
+ return NULL; /* No program version known. */
+
+ name = _gpgrt_strconcat (configname, "-", version, NULL);
+ if (!name)
+ return NULL; /* Oops: Out of core - ignore. */
+ dash = name + strlen (configname);
+
+ endp = dash + strlen (dash) - 1;
+ while (endp > dash)
+ {
+ if (!access (name, R_OK))
+ {
+ return name;
+ }
+ for (; endp > dash; endp--)
+ {
+ if (*endp == '-' || *endp == '.')
+ {
+ *endp = 0;
+ break;
+ }
+ }
+ }
+
+ _gpgrt_free (name);
+ return NULL;
+}
+
+
/* The full arg parser which handles option files and command line
* arguments. The behaviour depends on the combinations of CONFNAME
* and the ARGPARSE_FLAG_xxx values:
@@ -1083,13 +1137,6 @@ _gpgrt_argparser (gpgrt_argparse_t *arg, gpgrt_opt_t *opts,
arg->internal->inarg = 0;
_gpgrt_fclose (arg->internal->conffp);
arg->internal->conffp = _gpgrt_fopen (arg->internal->confname, "r");
- /* FIXME: Add a callback. */
- /* if (arg->internal->conffp && is_secured_file (fileno (configfp)))*/
- /* { */
- /* es_fclose (arg->internal->conffp); */
- /* arg->internal->conffp = NULL; */
- /* gpg_err_set_errno (EPERM); */
- /* } */
if (!arg->internal->conffp)
{
if ((arg->flags & ARGPARSE_FLAG_VERBOSE))
@@ -1139,17 +1186,32 @@ _gpgrt_argparser (gpgrt_argparse_t *arg, gpgrt_opt_t *opts,
else
{
/* Use the standard configure file. If it is a two part
- * name take the second part. */
+ * name take the second part. If it is the standard name
+ * and ARGPARSE_FLAG_USERVERS is set try versioned config
+ * files. */
const char *s;
+ char *nconf;
xfree (arg->internal->confname);
if ((s = is_twopartfname (confname)))
- arg->internal->confname = _gpgrt_fnameconcat (s + 1, NULL);
+ {
+ arg->internal->confname = _gpgrt_fnameconcat (s + 1, NULL);
+ if (!arg->internal->confname)
+ return (arg->r_opt = ARGPARSE_OUT_OF_CORE);
+ }
else
- arg->internal->confname = _gpgrt_fnameconcat
- (confdir.user? confdir.user : "~/.config", confname, NULL);
- if (!arg->internal->confname)
- return (arg->r_opt = ARGPARSE_OUT_OF_CORE);
+ {
+ arg->internal->confname = _gpgrt_fnameconcat
+ (confdir.user? confdir.user : "~/.config", confname, NULL);
+ if (!arg->internal->confname)
+ return (arg->r_opt = ARGPARSE_OUT_OF_CORE);
+ if ((arg->flags & ARGPARSE_FLAG_USERVERS)
+ && (nconf = try_versioned_conffile (arg->internal->confname)))
+ {
+ xfree (arg->internal->confname);
+ arg->internal->confname = nconf;
+ }
+ }
}
arg->lineno = 0;
arg->internal->idx = 0;
@@ -1157,13 +1219,6 @@ _gpgrt_argparser (gpgrt_argparse_t *arg, gpgrt_opt_t *opts,
arg->internal->inarg = 0;
_gpgrt_fclose (arg->internal->conffp);
arg->internal->conffp = _gpgrt_fopen (arg->internal->confname, "r");
- /* FIXME: Add a callback. */
- /* if (arg->internal->conffp && is_secured_file (fileno (configfp)))*/
- /* { */
- /* es_fclose (arg->internal->conffp); */
- /* arg->internal->conffp = NULL; */
- /* gpg_err_set_errno (EPERM); */
- /* } */
if (!arg->internal->conffp)
{
arg->internal->state = STATE_open_cmdline;