mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpgconf: Improve registry dumping.
* common/w32-reg.c (read_w32_reg_string): Add arg r_hklm_fallback and change all callers. (show_configs): Indicate whether the HKLM fallback was used. * tools/gpgconf.c (show_other_registry_entries): Fix the Outlook Addin Registry key. Indicate whether the HKLM fallback was used. -- Note that this is backport from 2.2. The new support there for REG_DWORD needs to be implemented in libgpg-error, though.
This commit is contained in:
parent
10f42f313c
commit
ea7aba6e60
@ -56,7 +56,7 @@ test_read_registry (void)
|
|||||||
|
|
||||||
string2 = read_w32_reg_string
|
string2 = read_w32_reg_string
|
||||||
("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion"
|
("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion"
|
||||||
"\\Internet Settings:User Agent");
|
"\\Internet Settings:User Agent", NULL);
|
||||||
if (!string2)
|
if (!string2)
|
||||||
fail (1);
|
fail (1);
|
||||||
fprintf (stderr, "User agent: %s\n", string2);
|
fprintf (stderr, "User agent: %s\n", string2);
|
||||||
@ -76,7 +76,7 @@ main (int argc, char **argv)
|
|||||||
{
|
{
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
{
|
{
|
||||||
char *string = read_w32_reg_string (argv[1]);
|
char *string = read_w32_reg_string (argv[1], NULL);
|
||||||
printf ("%s -> %s\n", argv[1], string? string : "(null)");
|
printf ("%s -> %s\n", argv[1], string? string : "(null)");
|
||||||
xfree (string);
|
xfree (string);
|
||||||
}
|
}
|
||||||
|
@ -71,14 +71,19 @@ read_w32_registry_string (const char *root, const char *dir, const char *name)
|
|||||||
*
|
*
|
||||||
* Note that the first backslash and the first colon act as delimiters.
|
* Note that the first backslash and the first colon act as delimiters.
|
||||||
*
|
*
|
||||||
* Returns a malloced string or NULL if not found.
|
* Returns a malloced string or NULL if not found. If R_HKLM_FALLBACK
|
||||||
|
* is not NULL, no class was given, and the result came from HKLM,
|
||||||
|
* true is stored there.
|
||||||
*/
|
*/
|
||||||
char *
|
char *
|
||||||
read_w32_reg_string (const char *key_arg)
|
read_w32_reg_string (const char *key_arg, int *r_hklm_fallback)
|
||||||
{
|
{
|
||||||
char *key;
|
char *key;
|
||||||
char *p1, *p2;
|
char *p1, *p2;
|
||||||
char *result;
|
char *result, *result2;
|
||||||
|
|
||||||
|
if (r_hklm_fallback)
|
||||||
|
*r_hklm_fallback = 0;
|
||||||
|
|
||||||
if (!key_arg)
|
if (!key_arg)
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -101,6 +106,15 @@ read_w32_reg_string (const char *key_arg)
|
|||||||
*p2++ = 0;
|
*p2++ = 0;
|
||||||
|
|
||||||
result = gpgrt_w32_reg_query_string (*key? key : NULL, p1, p2);
|
result = gpgrt_w32_reg_query_string (*key? key : NULL, p1, p2);
|
||||||
|
if (result && !*key && r_hklm_fallback)
|
||||||
|
{
|
||||||
|
/* No key given - see whether the result came from HKCU or HKLM. */
|
||||||
|
result2 = gpgrt_w32_reg_query_string ("HKCU", p1, p2);
|
||||||
|
if (result2)
|
||||||
|
xfree (result2);
|
||||||
|
else
|
||||||
|
*r_hklm_fallback = 1;
|
||||||
|
}
|
||||||
xfree (key);
|
xfree (key);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ char **w32_parse_commandline (char *cmdline, int globing, int *r_argv,
|
|||||||
/*-- w32-reg.c --*/
|
/*-- w32-reg.c --*/
|
||||||
char *read_w32_registry_string (const char *root,
|
char *read_w32_registry_string (const char *root,
|
||||||
const char *dir, const char *name );
|
const char *dir, const char *name );
|
||||||
char *read_w32_reg_string (const char *key);
|
char *read_w32_reg_string (const char *key, int *r_hklm_fallback);
|
||||||
|
|
||||||
|
|
||||||
#endif /*HAVE_W32_SYSTEM*/
|
#endif /*HAVE_W32_SYSTEM*/
|
||||||
|
@ -1357,7 +1357,7 @@ show_other_registry_entries (estream_t outfp)
|
|||||||
{ 1, "HKLM\\Software\\Gpg4win:VS-Desktop-Version" },
|
{ 1, "HKLM\\Software\\Gpg4win:VS-Desktop-Version" },
|
||||||
{ 1, "\\" GNUPG_REGISTRY_DIR ":HomeDir" },
|
{ 1, "\\" GNUPG_REGISTRY_DIR ":HomeDir" },
|
||||||
{ 1, "\\" GNUPG_REGISTRY_DIR ":DefaultLogFile" },
|
{ 1, "\\" GNUPG_REGISTRY_DIR ":DefaultLogFile" },
|
||||||
{ 2, "Software\\Microsoft\\Office\\Outlook\\Addins\\GNU.GpgOL"
|
{ 2, "\\Software\\Microsoft\\Office\\Outlook\\Addins\\GNU.GpgOL"
|
||||||
":LoadBehavior" },
|
":LoadBehavior" },
|
||||||
{ 2, "HKCU\\Software\\Microsoft\\Office\\16.0\\Outlook\\Options\\Mail:"
|
{ 2, "HKCU\\Software\\Microsoft\\Office\\16.0\\Outlook\\Options\\Mail:"
|
||||||
"ReadAsPlain" },
|
"ReadAsPlain" },
|
||||||
@ -1389,6 +1389,7 @@ show_other_registry_entries (estream_t outfp)
|
|||||||
int group = 0;
|
int group = 0;
|
||||||
char *namebuf = NULL;
|
char *namebuf = NULL;
|
||||||
const char *name;
|
const char *name;
|
||||||
|
int from_hklm;
|
||||||
|
|
||||||
for (idx=0; (name = names[idx].name); idx++)
|
for (idx=0; (name = names[idx].name); idx++)
|
||||||
{
|
{
|
||||||
@ -1402,7 +1403,7 @@ show_other_registry_entries (estream_t outfp)
|
|||||||
name = namebuf;
|
name = namebuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
value = read_w32_reg_string (name);
|
value = read_w32_reg_string (name, &from_hklm);
|
||||||
if (!value)
|
if (!value)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
@ -1417,12 +1418,11 @@ show_other_registry_entries (estream_t outfp)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (group == 3)
|
if (group == 3)
|
||||||
es_fprintf (outfp, "### %s=%s\n", names[idx].name, value);
|
es_fprintf (outfp, "### %s=%s%s\n", names[idx].name, value,
|
||||||
|
from_hklm? " [hklm]":"");
|
||||||
else
|
else
|
||||||
es_fprintf (outfp, "### %s\n### ->%s<-\n", name, value);
|
es_fprintf (outfp, "### %s\n### ->%s<-%s\n", name, value,
|
||||||
|
from_hklm? " [hklm]":"");
|
||||||
/* FIXME: We may want to add an indiction whethe found via HKLM
|
|
||||||
* or HKCU. */
|
|
||||||
|
|
||||||
xfree (value);
|
xfree (value);
|
||||||
}
|
}
|
||||||
@ -1521,14 +1521,16 @@ show_configs (estream_t outfp)
|
|||||||
if ((sl->flags & 1))
|
if ((sl->flags & 1))
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
|
int from_hklm;
|
||||||
|
|
||||||
if (!any)
|
if (!any)
|
||||||
{
|
{
|
||||||
any = 1;
|
any = 1;
|
||||||
es_fprintf (outfp, "###\n### Encountered in config files:\n");
|
es_fprintf (outfp, "###\n### Encountered in config files:\n");
|
||||||
}
|
}
|
||||||
if ((p = read_w32_reg_string (sl->d)))
|
if ((p = read_w32_reg_string (sl->d, &from_hklm)))
|
||||||
es_fprintf (outfp, "### %s ->%s<-\n", sl->d, p);
|
es_fprintf (outfp, "### %s ->%s<-%s\n", sl->d, p,
|
||||||
|
from_hklm? " [hklm]":"");
|
||||||
else
|
else
|
||||||
es_fprintf (outfp, "### %s [not set]\n", sl->d);
|
es_fprintf (outfp, "### %s [not set]\n", sl->d);
|
||||||
xfree (p);
|
xfree (p);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user