libc/winsup/utils/regtool.cc

683 lines
14 KiB
C++
Raw Normal View History

2000-02-17 20:38:33 +01:00
/* regtool.cc
Copyright 2000, 2001, 2002 Red Hat Inc.
2000-02-17 20:38:33 +01:00
This file is part of Cygwin.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <getopt.h>
#include <windows.h>
enum
{
2000-02-17 20:38:33 +01:00
KT_AUTO, KT_INT, KT_STRING, KT_EXPAND, KT_MULTI
} key_type = KT_AUTO;
#define LIST_KEYS 0x01
#define LIST_VALS 0x02
#define LIST_ALL (LIST_KEYS | LIST_VALS)
static const char version[] = "$Revision$";
static char *prog_name;
static struct option longopts[] =
{
{"expand-string", no_argument, NULL, 'e' },
{"help", no_argument, NULL, 'h' },
{"integer", no_argument, NULL, 'i' },
{"keys", no_argument, NULL, 'k'},
{"list", no_argument, NULL, 'l'},
{"multi-string", no_argument, NULL, 'm'},
{"postfix", no_argument, NULL, 'p'},
{"quiet", no_argument, NULL, 'q'},
{"string", no_argument, NULL, 's'},
{"verbose", no_argument, NULL, 'v'},
{"version", no_argument, NULL, 'V'},
{NULL, 0, NULL, 0}
};
static char opts[] = "ehiklmpqsvV";
int listwhat = 0;
int postfix = 0;
2000-02-17 20:38:33 +01:00
int verbose = 0;
int quiet = 0;
char **argv;
HKEY key;
char *value;
static void
usage (FILE *where = stderr)
{
fprintf (where, ""
"Usage: %s [OPTION] (add | check | get | list | remove | unset) KEY\n"
"\n"
"", prog_name);
if (where == stdout)
fprintf (where, ""
"Actions:\n"
" add KEY\\SUBKEY add new SUBKEY\n"
" check KEY exit 0 if KEY exists, 1 if not\n"
" get KEY\\VALUE prints VALUE to stdout\n"
" list KEY list SUBKEYs and VALUEs\n"
" remove KEY remove KEY\n"
" set KEY\\VALUE [data ...] set VALUE\n"
" unset KEY\\VALUE removes VALUE from KEY\n"
"\n");
fprintf (where, ""
"Options for 'list' Action:\n"
" -k, --keys print only KEYs\n"
" -l, --list print only VALUEs\n"
" -p, --postfix like ls -p, appends '\\' postfix to KEY names\n"
"\n"
"Options for 'set' Action:\n"
" -e, --expand-string set type to REG_EXPAND_SZ\n"
" -i, --integer set type to REG_DWORD\n"
" -m, --multi-string set type to REG_MULTI_SZ\n"
" -s, --string set type to REG_SZ\n"
"\n"
"Other Options:\n"
" -h, --help output usage information and exit\n"
" -q, --quiet no error output, just nonzero return if KEY/VALUE missing\n"
" -v, --verbose verbose output, including VALUE contents when applicable\n"
" -V, --version output version information and exit\n"
"\n");
if (where == stdout)
fprintf (where, ""
"KEY is in the format [host]\\prefix\\KEY\\KEY\\VALUE, where host is optional\n"
"remote host in either \\\\hostname or hostname: format and prefix is any of:\n"
" root HKCR HKEY_CLASSES_ROOT (local only)\n"
" config HKCC HKEY_CURRENT_CONFIG (local only)\n"
" user HKCU HKEY_CURRENT_USER (local only)\n"
" machine HKLM HKEY_LOCAL_MACHINE\n"
" users HKU HKEY_USERS\n"
"\n"
"You can use forward slash ('/') as a separator instead of backslash, in\n"
"that case backslash is treated as escape character\n"
"");
fprintf (where, ""
"Example: %s get '\\user\\software\\Microsoft\\Clock\\iFormat'\n", prog_name);
if (where == stderr)
fprintf (where, "Try '%s --help' for more information.", prog_name);
exit (where == stderr ? 1 : 0);
}
2000-02-17 20:38:33 +01:00
static void
print_version ()
2000-02-17 20:38:33 +01:00
{
const char *v = strchr (version, ':');
int len;
if (!v)
{
v = "?";
len = 1;
}
else
{
v += 2;
len = strchr (v, ' ') - v;
}
printf ("\
%s (cygwin) %.*s\n\
Registry Tool\n\
Copyright 2000, 2001, 2002 Red Hat, Inc.\n\
Compiled on %s", prog_name, len, v, __DATE__);
2000-02-17 20:38:33 +01:00
}
void
Fail (DWORD rv)
2000-02-17 20:38:33 +01:00
{
char *buf;
if (!quiet)
{
FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER
| FORMAT_MESSAGE_FROM_SYSTEM,
0, rv, 0, (CHAR *) & buf, 0, 0);
fprintf (stderr, "Error (%ld): %s\n", rv, buf);
LocalFree (buf);
2000-02-17 20:38:33 +01:00
}
exit (1);
2000-02-17 20:38:33 +01:00
}
struct
{
2000-02-17 20:38:33 +01:00
const char *string;
HKEY key;
} wkprefixes[] =
{
{"root", HKEY_CLASSES_ROOT},
{"HKCR", HKEY_CLASSES_ROOT},
{"HKEY_CLASSES_ROOT", HKEY_CLASSES_ROOT},
{"config", HKEY_CURRENT_CONFIG},
{"HKCC", HKEY_CURRENT_CONFIG},
{"HKEY_CURRENT_CONFIG", HKEY_CURRENT_CONFIG},
{"user", HKEY_CURRENT_USER},
{"HKCU", HKEY_CURRENT_USER},
{"HKEY_CURRENT_USER", HKEY_CURRENT_USER},
{"machine", HKEY_LOCAL_MACHINE},
{"HKLM", HKEY_LOCAL_MACHINE},
{"HKEY_LOCAL_MACHINE", HKEY_LOCAL_MACHINE},
{"users", HKEY_USERS},
{"HKU", HKEY_USERS},
{"HKEY_USERS", HKEY_USERS},
{0, 0}
2000-02-17 20:38:33 +01:00
};
void
translate (char *key)
2000-02-17 20:38:33 +01:00
{
#define isodigit(c) (strchr("01234567", c))
#define tooct(c) ((c)-'0')
#define tohex(c) (strchr(_hs,tolower(c))-_hs)
static char _hs[] = "0123456789abcdef";
char *d = key;
char *s = key;
char c;
while (*s)
{
if (*s == '\\')
switch (*++s)
{
case 'a':
*d++ = '\007';
break;
case 'b':
*d++ = '\b';
break;
case 'e':
*d++ = '\033';
break;
case 'f':
*d++ = '\f';
break;
case 'n':
*d++ = '\n';
break;
case 'r':
*d++ = '\r';
break;
case 't':
*d++ = '\t';
break;
case 'v':
*d++ = '\v';
break;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
c = tooct (*s);
if (isodigit (s[1]))
{
c = (c << 3) | tooct (*++s);
if (isodigit (s[1]))
c = (c << 3) | tooct (*++s);
}
*d++ = c;
break;
case 'x':
if (!isxdigit (s[1]))
2001-01-10 16:22:40 +01:00
c = '0';
else
{
c = tohex (*++s);
if (isxdigit (s[1]))
c = (c << 4) | tohex (*++s);
}
*d++ = c;
break;
default: /* before non-special char: just add the char */
*d++ = *s;
break;
}
2000-02-17 20:38:33 +01:00
else if (*s == '/')
*d++ = '\\';
2000-02-17 20:38:33 +01:00
else
*d++ = *s;
2000-02-17 20:38:33 +01:00
++s;
}
*d = '\0';
}
void
find_key (int howmanyparts, REGSAM access)
2000-02-17 20:38:33 +01:00
{
HKEY base;
int rv;
char *n = argv[0], *e, *h, c;
char* host = NULL;
2000-02-17 20:38:33 +01:00
int i;
if (*n == '/')
translate (n);
if (*n != '\\')
{
/* expect host:/key/value format */
host = (char*) malloc (strlen (n) + 1);
host[0] = host [1] = '\\';
for (e = n, h = host + 2; *e && *e != ':'; e++, h++)
*h = *e;
*h = 0;
n = e + 1;
if (*n == '/')
translate (n);
}
else if (n[0] == '\\' && n[1] == '\\')
{
/* expect //host/key/value format */
host = (char*) malloc (strlen (n) + 1);
host[0] = host[1] = '\\';
for (e = n + 2, h = host + 2; *e && *e != '\\'; e++, h++)
*h = *e;
*h = 0;
n = e;
}
while (*n != '\\')
2000-02-17 20:38:33 +01:00
n++;
*n++ = 0;
for (e = n; *e && *e != '\\'; e++);
c = *e;
2000-02-17 20:38:33 +01:00
*e = 0;
for (i = 0; wkprefixes[i].string; i++)
if (strcmp (wkprefixes[i].string, n) == 0)
2000-02-17 20:38:33 +01:00
break;
if (!wkprefixes[i].string)
{
fprintf (stderr, "Unknown key prefix. Valid prefixes are:\n");
for (i = 0; wkprefixes[i].string; i++)
fprintf (stderr, "\t%s\n", wkprefixes[i].string);
exit (1);
2000-02-17 20:38:33 +01:00
}
n = e;
*e = c;
while (*n && *n == '\\')
n++;
e = n + strlen (n);
2000-02-17 20:38:33 +01:00
if (howmanyparts > 1)
{
while (n < e && *e != '\\')
e--;
if (*e != '\\')
{
key = wkprefixes[i].key;
value = n;
return;
}
else
{
*e = 0;
value = e + 1;
2000-02-17 20:38:33 +01:00
}
}
if (host)
{
rv = RegConnectRegistry (host, wkprefixes[i].key, &base);
if (rv != ERROR_SUCCESS)
Fail (rv);
free (host);
}
else
base = wkprefixes[i].key;
2000-02-17 20:38:33 +01:00
if (n[0] == 0)
key = base;
else
2000-02-17 20:38:33 +01:00
{
rv = RegOpenKeyEx (base, n, 0, access, &key);
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
}
//printf("key `%s' value `%s'\n", n, value);
}
int
cmd_list ()
2000-02-17 20:38:33 +01:00
{
DWORD num_subkeys, maxsubkeylen, num_values, maxvalnamelen, maxvaluelen;
DWORD maxclasslen;
char *subkey_name, *value_name, *class_name;
unsigned char *value_data, *vd;
DWORD i, j, m, n, t;
int v;
find_key (1, KEY_READ);
RegQueryInfoKey (key, 0, 0, 0, &num_subkeys, &maxsubkeylen, &maxclasslen,
&num_values, &maxvalnamelen, &maxvaluelen, 0, 0);
2000-02-17 20:38:33 +01:00
subkey_name = (char *) malloc (maxsubkeylen + 1);
class_name = (char *) malloc (maxclasslen + 1);
value_name = (char *) malloc (maxvalnamelen + 1);
value_data = (unsigned char *) malloc (maxvaluelen + 1);
2000-02-17 20:38:33 +01:00
if (!listwhat)
listwhat = LIST_ALL;
2000-02-17 20:38:33 +01:00
if (listwhat & LIST_KEYS)
for (i = 0; i < num_subkeys; i++)
{
m = maxsubkeylen + 1;
n = maxclasslen + 1;
RegEnumKeyEx (key, i, subkey_name, &m, 0, class_name, &n, 0);
printf ("%s%s", subkey_name, (postfix || verbose) ? "\\" : "");
if (verbose)
printf (" (%s)", class_name);
puts ("");
}
if (listwhat & LIST_VALS)
for (i = 0; i < num_values; i++)
{
m = maxvalnamelen + 1;
n = maxvaluelen + 1;
RegEnumValue (key, i, value_name, &m, 0, &t, (BYTE *) value_data, &n);
if (!verbose)
printf ("%s\n", value_name);
else
{
printf ("%s = ", value_name);
switch (t)
{
case REG_BINARY:
for (j = 0; j < 8 && j < n; j++)
printf ("%02x ", value_data[j]);
printf ("\n");
break;
case REG_DWORD:
printf ("0x%08lx (%lu)\n", *(DWORD *) value_data,
*(DWORD *) value_data);
break;
case REG_DWORD_BIG_ENDIAN:
v = ((value_data[0] << 24)
| (value_data[1] << 16)
| (value_data[2] << 8) | (value_data[3]));
printf ("0x%08x (%d)\n", v, v);
break;
case REG_EXPAND_SZ:
case REG_SZ:
printf ("\"%s\"\n", value_data);
break;
case REG_MULTI_SZ:
vd = value_data;
while (vd && *vd)
{
printf ("\"%s\"", vd);
vd = vd + strlen ((const char *) vd) + 1;
if (*vd)
printf (", ");
}
printf ("\n");
break;
default:
printf ("? (type %d)\n", (int) t);
}
}
}
2000-02-17 20:38:33 +01:00
return 0;
}
int
cmd_add ()
2000-02-17 20:38:33 +01:00
{
find_key (2, KEY_ALL_ACCESS);
2000-02-17 20:38:33 +01:00
HKEY newkey;
DWORD newtype;
int rv = RegCreateKeyEx (key, value, 0, (char *) "", REG_OPTION_NON_VOLATILE,
KEY_ALL_ACCESS, 0, &newkey, &newtype);
2000-02-17 20:38:33 +01:00
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
if (verbose)
{
if (newtype == REG_OPENED_EXISTING_KEY)
printf ("Key %s already exists\n", value);
2000-02-17 20:38:33 +01:00
else
printf ("Key %s created\n", value);
2000-02-17 20:38:33 +01:00
}
return 0;
}
int
cmd_remove ()
2000-02-17 20:38:33 +01:00
{
find_key (2, KEY_ALL_ACCESS);
DWORD rv = RegDeleteKey (key, value);
2000-02-17 20:38:33 +01:00
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
if (verbose)
printf ("subkey %s deleted\n", value);
2000-02-17 20:38:33 +01:00
return 0;
}
int
cmd_check ()
2000-02-17 20:38:33 +01:00
{
find_key (1, KEY_READ);
2000-02-17 20:38:33 +01:00
if (verbose)
printf ("key %s exists\n", argv[0]);
2000-02-17 20:38:33 +01:00
return 0;
}
int
cmd_set ()
2000-02-17 20:38:33 +01:00
{
int i, n;
DWORD v, rv;
char *a = argv[1], *data;
find_key (2, KEY_ALL_ACCESS);
2000-02-17 20:38:33 +01:00
if (key_type == KT_AUTO)
{
char *e;
strtoul (a, &e, 0);
2000-02-17 20:38:33 +01:00
if (a[0] == '%')
key_type = KT_EXPAND;
else if (a[0] && !*e)
key_type = KT_INT;
else if (argv[2])
key_type = KT_MULTI;
else
key_type = KT_STRING;
}
switch (key_type)
{
case KT_INT:
v = strtoul (a, 0, 0);
rv = RegSetValueEx (key, value, 0, REG_DWORD, (const BYTE *) &v,
sizeof (v));
2000-02-17 20:38:33 +01:00
break;
case KT_STRING:
rv = RegSetValueEx (key, value, 0, REG_SZ, (const BYTE *) a, strlen (a));
2000-02-17 20:38:33 +01:00
break;
case KT_EXPAND:
rv = RegSetValueEx (key, value, 0, REG_EXPAND_SZ, (const BYTE *) a,
strlen (a));
2000-02-17 20:38:33 +01:00
break;
case KT_MULTI:
for (i = 1, n = 1; argv[i]; i++)
n += strlen (argv[i]) + 1;
data = (char *) malloc (n);
for (i = 1, n = 0; argv[i]; i++)
2000-02-17 20:38:33 +01:00
{
strcpy (data + n, argv[i]);
n += strlen (argv[i]) + 1;
2000-02-17 20:38:33 +01:00
}
data[n] = 0;
rv = RegSetValueEx (key, value, 0, REG_MULTI_SZ, (const BYTE *) data,
n + 1);
2000-02-17 20:38:33 +01:00
break;
case KT_AUTO:
rv = ERROR_SUCCESS;
2000-02-17 20:38:33 +01:00
break;
2001-01-10 16:22:40 +01:00
default:
rv = ERROR_INVALID_CATEGORY;
break;
2000-02-17 20:38:33 +01:00
}
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
return 0;
}
int
cmd_unset ()
2000-02-17 20:38:33 +01:00
{
find_key (2, KEY_ALL_ACCESS);
DWORD rv = RegDeleteValue (key, value);
2000-02-17 20:38:33 +01:00
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
if (verbose)
printf ("value %s deleted\n", value);
2000-02-17 20:38:33 +01:00
return 0;
}
int
cmd_get ()
2000-02-17 20:38:33 +01:00
{
find_key (2, KEY_READ);
2000-02-17 20:38:33 +01:00
DWORD vtype, dsize, rv;
char *data, *vd;
rv = RegQueryValueEx (key, value, 0, &vtype, 0, &dsize);
2000-02-17 20:38:33 +01:00
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
dsize++;
data = (char *) malloc (dsize);
rv = RegQueryValueEx (key, value, 0, &vtype, (BYTE *) data, &dsize);
2000-02-17 20:38:33 +01:00
if (rv != ERROR_SUCCESS)
Fail (rv);
2000-02-17 20:38:33 +01:00
switch (vtype)
{
case REG_BINARY:
fwrite (data, dsize, 0, stdout);
2000-02-17 20:38:33 +01:00
break;
case REG_DWORD:
printf ("%lu\n", *(DWORD *) data);
2000-02-17 20:38:33 +01:00
break;
case REG_SZ:
printf ("%s\n", data);
2000-02-17 20:38:33 +01:00
break;
case REG_EXPAND_SZ:
if (key_type == KT_EXPAND) // hack
2000-02-17 20:38:33 +01:00
{
char *buf;
DWORD bufsize;
bufsize = ExpandEnvironmentStrings (data, 0, 0);
buf = (char *) malloc (bufsize + 1);
ExpandEnvironmentStrings (data, buf, bufsize + 1);
2000-02-17 20:38:33 +01:00
data = buf;
}
printf ("%s\n", data);
2000-02-17 20:38:33 +01:00
break;
case REG_MULTI_SZ:
vd = data;
while (vd && *vd)
{
printf ("%s\n", vd);
vd = vd + strlen ((const char *) vd) + 1;
2000-02-17 20:38:33 +01:00
}
break;
}
return 0;
}
struct
{
2000-02-17 20:38:33 +01:00
const char *name;
int (*func) ();
} commands[] =
{
{"list", cmd_list},
{"add", cmd_add},
{"remove", cmd_remove},
{"check", cmd_check},
{"set", cmd_set},
{"unset", cmd_unset},
{"get", cmd_get},
{0, 0}
2000-02-17 20:38:33 +01:00
};
int
main (int argc, char **_argv)
2000-02-17 20:38:33 +01:00
{
int g;
prog_name = strrchr (_argv[0], '/');
if (prog_name == NULL)
prog_name = strrchr (_argv[0], '\\');
if (prog_name == NULL)
prog_name = _argv[0];
else
prog_name++;
while ((g = getopt_long (argc, _argv, opts, longopts, NULL)) != EOF)
switch (g)
{
case 'e':
key_type = KT_EXPAND;
break;
case 'k':
listwhat |= LIST_KEYS;
break;
case 'h':
usage (stdout);
case 'i':
key_type = KT_INT;
break;
case 'l':
listwhat |= LIST_VALS;
break;
case 'm':
key_type = KT_MULTI;
break;
case 'p':
postfix++;
break;
case 'q':
quiet++;
break;
case 's':
key_type = KT_STRING;
break;
case 'v':
verbose++;
break;
case 'V':
print_version ();
exit (0);
default :
usage ();
}
if ((_argv[optind] == NULL) || (_argv[optind+1] == NULL))
usage ();
2000-02-17 20:38:33 +01:00
argv = _argv + optind;
2000-02-17 20:38:33 +01:00
int i;
for (i = 0; commands[i].name; i++)
if (strcmp (commands[i].name, argv[0]) == 0)
2000-02-17 20:38:33 +01:00
{
argv++;
return commands[i].func ();
2000-02-17 20:38:33 +01:00
}
usage ();
2000-02-17 20:38:33 +01:00
return 0;
}