1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
|
/* $Id: synce-registry.c 3688 2009-01-29 18:39:53Z mark_ellis $ */
#include <rapi.h>
#include <synce_log.h>
#include <pcommon.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
char* dev_name = NULL;
bool list_recurse = false ;
const char *prog_name;
static void show_usage(const char* name)
{
fprintf(stderr,
"Syntax:\n"
"\n"
"\t%s [-d LEVEL] [-p DEVNAME] [-t TYPE ] [-h]\n"
"\t[-r] PARENTKEY KEY VALUE\t\tRead value\n"
"\t -w PARENTKEY KEY VALUE NEWVALUE\tWrite value\n"
"\t -l PARENTKEY KEY\t\tList key\n"
"\t -n PARENTKEY KEY\t\t\tNew key\n"
"\t -x PARENTKEY KEY VALUE\t\tDelete value (not supported)\n"
"\t -X PARENTKEY KEY\t\t\tDelete key (not supported)\n"
"\n"
"\t-d LEVEL Set debug log level\n"
"\t 0 - No logging (default)\n"
"\t 1 - Errors only\n"
"\t 2 - Errors and warnings\n"
"\t 3 - Everything\n"
"\t-D Dump complete registry to screen\n"
"\t-L Enable list recursion\n"
"\t-h Show this help message\n"
"\t-p DEVNAME Mobile device name\n"
"\t-t TYPE New type for writes:\n"
"\t\tsz String (default)\n"
"\t\tdword Double-word\n"
"\t\tdword_bige Big-endian double-word\n"
"\t\texpand_sz String with path expansion\n"
"\t\tmulti_sz Multiple strings (not supported)\n"
"\t\tbinary Binary data (not supported)\n"
"\tPARENTKEY Registry parent (HKLM, etc.)\n"
"\tKEY Registry key\n"
"\tVALUE Registry value within key\n"
"\tNEWVALUE New value for writes\n"
"",
name
);
}
#if 0
static void dump(const char *desc, void* data, size_t len)/*{{{*/
{
uint8_t* buf = (uint8_t*)data;
size_t i, j;
char hex[8 * 3 + 1];
char chr[8 + 1];
printf("%s (%zd bytes):\n", desc, len);
for (i = 0; i < len + 7; i += 8) {
for (j = 0; j < 8; j++)
if (j + i >= len) {
hex[3*j+0] = ' ';
hex[3*j+1] = ' ';
hex[3*j+2] = ' ';
chr[j] = ' ';
} else {
uint8_t c = buf[j + i];
const char *hexchr = "0123456789abcdef";
hex[3*j+0] = hexchr[(c >> 4) & 0xf];
hex[3*j+1] = hexchr[c & 0xf];
hex[3*j+2] = ' ';
if (c > ' ' && c <= '~')
chr[j] = c;
else
chr[j] = '.';
}
hex[8*3] = '\0';
chr[8] = '\0';
printf(" %04zx: %s %s\n", i, hex, chr);
}
}/*}}}*/
#endif
const char * property_type_to_str(CEPROPID propid)
{
switch (propid & 0xffff)
{
case CEVT_BLOB:
return "CEVT_BLOB";
break;
case CEVT_BOOL:
return "CEVT_BOOL";
break;
case CEVT_FILETIME:
return "CEVT_FILETIME";
break;
case CEVT_I2:
return "CEVT_I2";
break;
case CEVT_I4:
return "CEVT_I4";
break;
case CEVT_LPWSTR:
return "CEVT_LPWSTR";
break;
case CEVT_R8:
return "CEVT_R8";
break;
case CEVT_UI2:
return "CEVT_UI2";
break;
case CEVT_UI4:
return "CEVT_UI4";
break;
default:
break;
}
return "Unknown type";
}
static bool handle_parameters(int argc, char** argv)
{
int c;
int log_level = SYNCE_LOG_LEVEL_LOWEST;
while ((c = getopt(argc, argv, "d:hp:t:rwxlnXDL")) != -1)
{
switch (c)
{
case 'd':
log_level = atoi(optarg);
break;
case 'p':
dev_name = optarg;
break;
case 'h':
default:
show_usage(argv[0]);
return false;
}
}
synce_log_set_level(log_level);
argc -= optind;
return true;
}
bool
list_databases_by_all()
{
HRESULT hr;
DWORD last_error;
CEDB_FIND_DATA* find_data = NULL;
WORD db_count = 0;
WORD flags = 0;
BOOL retval;
char *db_name = NULL;
unsigned i;
bool result = FALSE;
flags = FAD_OID | FAD_FLAGS | FAD_NAME | FAD_TYPE | FAD_NUM_RECORDS | FAD_NUM_SORT_ORDER | FAD_SIZE | FAD_LAST_MODIFIED | FAD_SORT_SPECS;
retval = CeFindAllDatabases(0, flags, &db_count, &find_data);
if (!retval) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: Failed to enumerate databases: %s\n",
prog_name, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: Failed to enumerate databases: %s\n",
prog_name, synce_strerror(last_error));
goto exit;
}
printf("Number of databases: %u\n", db_count);
for (i = 0; i < db_count; i++) {
db_name = wstr_to_current(find_data[i].DbInfo.szDbaseName);
printf("Database %3u: \"%s\" (oid=0x%x, type=0x%x, rows=%u)\n",
i,
db_name,
find_data[i].OidDb,
(unsigned)find_data[i].DbInfo.dwDbaseType,
find_data[i].DbInfo.wNumRecords);
free(db_name);
}
CeRapiFreeBuffer(find_data);
result = TRUE;
exit:
return result;
}
bool
list_databases_by_enum()
{
HRESULT hr;
DWORD last_error;
char *db_name = NULL;
unsigned i = 0;
bool result = FALSE;
HANDLE handle;
DWORD dwDbaseType = 0;
CEOID oid = 0;
CEOIDINFO info;
handle = CeFindFirstDatabase(dwDbaseType);
if (handle == INVALID_HANDLE_VALUE) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error enumerating first database: %s\n",
prog_name, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: error enumerating first database: %s\n",
prog_name, synce_strerror(last_error));
goto exit;
}
memset(&info, 0, sizeof(info));
while ((oid = CeFindNextDatabase(handle)) != 0) {
if (!CeOidGetInfo(oid, &info)) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error getting database info: %s\n",
prog_name, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: error getting database info: %s\n",
prog_name, synce_strerror(last_error));
goto exit;
}
if (info.wObjType != OBJTYPE_DATABASE) {
fprintf(stderr, "%s: object not a database, skipping...\n", prog_name);
continue;
}
db_name = wstr_to_current(info.u.infDatabase.szDbaseName);
printf("Database %3u: \"%s\" (oid=0x%x, type=0x%x, rows=%u)\n",
i,
db_name,
oid,
info.u.infDatabase.dwDbaseType,
info.u.infDatabase.wNumRecords);
free(db_name);
i++;
}
if (oid == 0) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error enumerating databases: %s\n",
prog_name, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
if (last_error != ERROR_NO_MORE_ITEMS) {
fprintf(stderr, "%s: error enumerating databases: %s\n",
prog_name, synce_strerror(last_error));
goto exit;
}
}
if (!CeCloseHandle(handle)) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error closing database enumeration: %s\n",
prog_name, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: error closing database enumeration: %s\n",
prog_name, synce_strerror(last_error));
goto exit;
}
result = TRUE;
exit:
return result;
}
bool
read_record(HANDLE handle)
{
bool result = FALSE;
HRESULT hr;
DWORD last_error;
uint i;
char *tmp_str = NULL;
CEOID rec_oid = 0;
/* 0 = don't allow realloc of buffer */
DWORD dwFlags = CEDB_ALLOWREALLOC;
WORD num_props = 0;
CEPROPID * rgPropID = NULL;
LPBYTE buffer = malloc(4096*4096);
DWORD lpcbBuffer = 4096*4096;
CEPROPVAL *field = NULL;
rec_oid = CeReadRecordProps(handle,
dwFlags,
&num_props,
rgPropID,
&buffer,
&lpcbBuffer
);
if (rec_oid == 0) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error reading record: %s\n",
prog_name, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: error reading record: %s\n",
prog_name, synce_strerror(last_error));
goto exit;
}
printf("Number of properties = %d\n", num_props);
field = (CEPROPVAL*)buffer;
for (i = 0; i < num_props; i++) {
printf("field %d: %s: ", i, property_type_to_str(field[i].propid));
switch (field[i].propid & 0xffff)
{
case CEVT_BLOB:
printf("not yet supported\n");
break;
case CEVT_BOOL:
if (field[i].val.boolVal == FALSE)
printf("FALSE\n");
else
printf("TRUE\n");
break;
case CEVT_FILETIME:
printf("not yet supported\n");
break;
case CEVT_I2:
printf("%d\n", field[i].val.iVal);
break;
case CEVT_I4:
printf("%d\n", field[i].val.iVal);
break;
case CEVT_LPWSTR:
tmp_str = wstr_to_current(field[i].val.lpwstr);
printf("%s\n", tmp_str);
free(tmp_str);
break;
case CEVT_R8:
printf("not yet supported\n");
break;
case CEVT_UI2:
printf("%u\n", field[i].val.uiVal);
break;
case CEVT_UI4:
printf("%u\n", field[i].val.uiVal);
break;
default:
printf("unknown\n");
break;
}
}
result = TRUE;
exit:
CeRapiFreeBuffer(buffer);
return result;
}
bool
read_database(const char *dbname, CEOID oid)
{
bool result = FALSE;
HRESULT hr;
DWORD last_error;
uint record = 1;
HANDLE handle;
/* 0 to use name */
/* open by name doesn't work */
LPWSTR lpszName = wstr_from_current(dbname);
/* 0 if sort order not important */
CEPROPID propid = 0;
/* position increments after reading */
DWORD dwFlags = CEDB_AUTOINCREMENT;
handle = CeOpenDatabase (&oid,
lpszName,
propid,
dwFlags,
0
);
wstr_free_string(lpszName);
if (handle == INVALID_HANDLE_VALUE) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error opening database %s: %s\n",
prog_name, dbname, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: error opening database %s: %s\n",
prog_name, dbname, synce_strerror(last_error));
goto exit;
}
printf("opened database ceoid = 0x%x\n", oid);
for (;;) {
printf("record %d\n", record);
if (!read_record(handle))
break;
record++;
}
if (!CeCloseHandle(handle)) {
if (FAILED(hr = CeRapiGetError())) {
fprintf(stderr, "%s: error closing database %s: %s\n",
prog_name, dbname, synce_strerror(hr));
goto exit;
}
last_error = CeGetLastError();
fprintf(stderr, "%s: error closing database %s: %s\n",
prog_name, dbname, synce_strerror(last_error));
goto exit;
}
result = TRUE;
exit:
return result;
}
int
main(int argc, char** argv)
{
int result = 1;
RapiConnection* connection = NULL;
HRESULT hr;
prog_name = argv[0];
if (!handle_parameters(argc,argv))
goto exit;
if ((connection = rapi_connection_from_name(dev_name)) == NULL) {
fprintf(stderr, "%s: Could not find connected device '%s'\n",
argv[0], dev_name?dev_name:"(Default)");
goto exit;
}
rapi_connection_select(connection);
if (S_OK != (hr = CeRapiInit())) {
fprintf(stderr, "%s: Unable to initialize RAPI: %s\n",
argv[0], synce_strerror(hr));
goto exit;
}
list_databases_by_all();
list_databases_by_enum();
read_database("pmailAttachs", 0);
/*
read_database("", 0x2001558);
*/
result = 0;
exit:
CeRapiUninit();
return result;
}
|