reg.c 51.8 KB
Newer Older
Juergen Schmied's avatar
Juergen Schmied committed
1
/*
2 3 4 5
 * Registry functions
 *
 * Copyright (C) 1999 Juergen Schmied
 * Copyright (C) 2000 Alexandre Julliard
6
 * Copyright 2005 Ivan Leo Puoti, Laurent Pinchart
7
 *
8 9 10 11 12 13 14 15 16 17 18 19
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21
 *
22 23 24 25 26
 * NOTES:
 * 	HKEY_LOCAL_MACHINE	\\REGISTRY\\MACHINE
 *	HKEY_USERS		\\REGISTRY\\USER
 *	HKEY_CURRENT_CONFIG	\\REGISTRY\\MACHINE\\SYSTEM\\CURRENTCONTROLSET\\HARDWARE PROFILES\\CURRENT
  *	HKEY_CLASSES		\\REGISTRY\\MACHINE\\SOFTWARE\\CLASSES
Juergen Schmied's avatar
Juergen Schmied committed
27 28
 */

29 30 31
#include "config.h"
#include "wine/port.h"

32
#include <stdarg.h>
33
#include <stdio.h>
34
#include <string.h>
35

36 37
#include "ntstatus.h"
#define WIN32_NO_STATUS
38
#include "wine/library.h"
39
#include "ntdll_misc.h"
40
#include "wine/debug.h"
41
#include "wine/unicode.h"
42

43
WINE_DEFAULT_DEBUG_CHANNEL(reg);
44

45 46
/* maximum length of a value name in bytes (without terminating null) */
#define MAX_VALUE_LENGTH (16383 * sizeof(WCHAR))
47

48
/******************************************************************************
49
 * NtCreateKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
50
 * ZwCreateKey [NTDLL.@]
51
 */
52
NTSTATUS WINAPI NtCreateKey( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
53 54
                             ULONG TitleIndex, const UNICODE_STRING *class, ULONG options,
                             PULONG dispos )
55
{
56
    NTSTATUS ret;
57 58
    data_size_t len;
    struct object_attributes *objattr;
59

60 61
    if (!retkey || !attr) return STATUS_ACCESS_VIOLATION;
    if (attr->Length > sizeof(OBJECT_ATTRIBUTES)) return STATUS_INVALID_PARAMETER;
62

63
    TRACE( "(%p,%s,%s,%x,%x,%p)\n", attr->RootDirectory, debugstr_us(attr->ObjectName),
64 65
           debugstr_us(class), options, access, retkey );

66 67
    if ((ret = alloc_object_attributes( attr, &objattr, &len ))) return ret;

68
    SERVER_START_REQ( create_key )
69
    {
70 71
        req->access     = access;
        req->options    = options;
72
        wine_server_add_data( req, objattr, len );
73
        if (class) wine_server_add_data( req, class->Buffer, class->Length );
74 75 76
        ret = wine_server_call( req );
        *retkey = wine_server_ptr_handle( reply->hkey );
        if (dispos && !ret) *dispos = reply->created ? REG_CREATED_NEW_KEY : REG_OPENED_EXISTING_KEY;
77
    }
78
    SERVER_END_REQ;
79

Patrik Stridvall's avatar
Patrik Stridvall committed
80
    TRACE("<- %p\n", *retkey);
81
    RtlFreeHeap( GetProcessHeap(), 0, objattr );
82
    return ret;
83 84
}

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
NTSTATUS WINAPI NtCreateKeyTransacted( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
                                       ULONG TitleIndex, const UNICODE_STRING *class, ULONG options,
                                       HANDLE transacted, ULONG *dispos )
{
    FIXME( "(%p,%s,%s,%x,%x,%p,%p)\n", attr->RootDirectory, debugstr_us(attr->ObjectName),
           debugstr_us(class), options, access, transacted, retkey );
    return STATUS_NOT_IMPLEMENTED;
}

NTSTATUS WINAPI NtRenameKey( HANDLE handle, UNICODE_STRING *name )
{
    FIXME( "(%p %s)\n", handle, debugstr_us(name) );
    return STATUS_NOT_IMPLEMENTED;
}

100 101 102 103 104
/******************************************************************************
 *  RtlpNtCreateKey [NTDLL.@]
 *
 *  See NtCreateKey.
 */
105
NTSTATUS WINAPI RtlpNtCreateKey( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
106 107 108
                                 ULONG TitleIndex, const UNICODE_STRING *class, ULONG options,
                                 PULONG dispos )
{
109 110
    OBJECT_ATTRIBUTES oa;

111
    if (attr)
112
    {
113
        oa = *attr;
114 115 116
        oa.Attributes &= ~(OBJ_PERMANENT|OBJ_EXCLUSIVE);
        attr = &oa;
    }
117 118 119

    return NtCreateKey(retkey, access, attr, 0, NULL, 0, dispos);
}
120

121
static NTSTATUS open_key( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr, ULONG options )
122
{
123
    NTSTATUS ret;
124

125
    if (!retkey || !attr || !attr->ObjectName) return STATUS_ACCESS_VIOLATION;
126 127
    if ((ret = validate_open_object_attributes( attr ))) return ret;

128
    TRACE( "(%p,%s,%x,%p)\n", attr->RootDirectory,
129
           debugstr_us(attr->ObjectName), access, retkey );
130
    if (options & ~REG_OPTION_OPEN_LINK)
131
        FIXME("options %x not implemented\n", options);
132

133
    SERVER_START_REQ( open_key )
134
    {
135
        req->parent     = wine_server_obj_handle( attr->RootDirectory );
136 137
        req->access     = access;
        req->attributes = attr->Attributes;
138
        wine_server_add_data( req, attr->ObjectName->Buffer, attr->ObjectName->Length );
139
        ret = wine_server_call( req );
140
        *retkey = wine_server_ptr_handle( reply->hkey );
141
    }
142
    SERVER_END_REQ;
Patrik Stridvall's avatar
Patrik Stridvall committed
143
    TRACE("<- %p\n", *retkey);
144
    return ret;
145 146
}

147 148 149 150 151 152 153 154 155
/******************************************************************************
 * NtOpenKeyEx [NTDLL.@]
 * ZwOpenKeyEx [NTDLL.@]
 */
NTSTATUS WINAPI NtOpenKeyEx( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr, ULONG options )
{
    return open_key( retkey, access, attr, options );
}

156 157 158 159 160 161 162 163 164 165
/******************************************************************************
 * NtOpenKey [NTDLL.@]
 * ZwOpenKey [NTDLL.@]
 *
 *   OUT	HANDLE			retkey (returns 0 when failure)
 *   IN		ACCESS_MASK		access
 *   IN		POBJECT_ATTRIBUTES 	attr
 */
NTSTATUS WINAPI NtOpenKey( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr )
{
166
    return open_key( retkey, access, attr, 0 );
167 168
}

169 170 171 172 173 174 175 176 177 178 179 180 181
NTSTATUS WINAPI NtOpenKeyTransactedEx( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
                                       ULONG options, HANDLE transaction )
{
    FIXME( "(%p %x %p %x %p)\n", retkey, access, attr, options, transaction );
    return STATUS_NOT_IMPLEMENTED;
}

NTSTATUS WINAPI NtOpenKeyTransacted( PHANDLE retkey, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
                                     HANDLE transaction )
{
    return NtOpenKeyTransactedEx( retkey, access, attr, 0, transaction );
}

182 183 184 185 186
/******************************************************************************
 * RtlpNtOpenKey [NTDLL.@]
 *
 * See NtOpenKey.
 */
187
NTSTATUS WINAPI RtlpNtOpenKey( PHANDLE retkey, ACCESS_MASK access, OBJECT_ATTRIBUTES *attr )
188 189 190 191 192
{
    if (attr)
        attr->Attributes &= ~(OBJ_PERMANENT|OBJ_EXCLUSIVE);
    return NtOpenKey(retkey, access, attr);
}
193

194
/******************************************************************************
195
 * NtDeleteKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
196
 * ZwDeleteKey [NTDLL.@]
197
 */
198
NTSTATUS WINAPI NtDeleteKey( HANDLE hkey )
199
{
200
    NTSTATUS ret;
201

202
    TRACE( "(%p)\n", hkey );
203

204
    SERVER_START_REQ( delete_key )
205
    {
206
        req->hkey = wine_server_obj_handle( hkey );
207
        ret = wine_server_call( req );
208 209 210
    }
    SERVER_END_REQ;
    return ret;
211 212
}

213 214 215 216 217
/******************************************************************************
 * RtlpNtMakeTemporaryKey [NTDLL.@]
 *
 *  See NtDeleteKey.
 */
218
NTSTATUS WINAPI RtlpNtMakeTemporaryKey( HANDLE hkey )
219 220 221
{
    return NtDeleteKey(hkey);
}
222

223
/******************************************************************************
224
 * NtDeleteValueKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
225
 * ZwDeleteValueKey [NTDLL.@]
226
 */
227
NTSTATUS WINAPI NtDeleteValueKey( HANDLE hkey, const UNICODE_STRING *name )
228
{
229 230
    NTSTATUS ret;

Patrik Stridvall's avatar
Patrik Stridvall committed
231
    TRACE( "(%p,%s)\n", hkey, debugstr_us(name) );
232
    if (name->Length > MAX_VALUE_LENGTH) return STATUS_OBJECT_NAME_NOT_FOUND;
233

234
    SERVER_START_REQ( delete_key_value )
235
    {
236
        req->hkey = wine_server_obj_handle( hkey );
237 238
        wine_server_add_data( req, name->Buffer, name->Length );
        ret = wine_server_call( req );
239
    }
240
    SERVER_END_REQ;
241
    return ret;
242
}
243

244

245
/******************************************************************************
246
 *     enumerate_key
247
 *
248
 * Implementation of NtQueryKey and NtEnumerateKey
249
 */
250
static NTSTATUS enumerate_key( HANDLE handle, int index, KEY_INFORMATION_CLASS info_class,
251
                               void *info, DWORD length, DWORD *result_len )
252

253 254 255 256
{
    NTSTATUS ret;
    void *data_ptr;
    size_t fixed_size;
257 258 259

    switch(info_class)
    {
260 261 262 263 264
    case KeyBasicInformation:  data_ptr = ((KEY_BASIC_INFORMATION *)info)->Name; break;
    case KeyFullInformation:   data_ptr = ((KEY_FULL_INFORMATION *)info)->Class; break;
    case KeyNodeInformation:   data_ptr = ((KEY_NODE_INFORMATION *)info)->Name;  break;
    case KeyNameInformation:   data_ptr = ((KEY_NAME_INFORMATION *)info)->Name;  break;
    case KeyCachedInformation: data_ptr = ((KEY_CACHED_INFORMATION *)info)+1;    break;
265
    default:
266
        FIXME( "Information class %d not implemented\n", info_class );
267 268
        return STATUS_INVALID_PARAMETER;
    }
269
    fixed_size = (char *)data_ptr - (char *)info;
270

271
    SERVER_START_REQ( enum_key )
272
    {
273
        req->hkey       = wine_server_obj_handle( handle );
274 275 276 277 278 279 280 281 282 283 284
        req->index      = index;
        req->info_class = info_class;
        if (length > fixed_size) wine_server_set_reply( req, data_ptr, length - fixed_size );
        if (!(ret = wine_server_call( req )))
        {
            switch(info_class)
            {
            case KeyBasicInformation:
                {
                    KEY_BASIC_INFORMATION keyinfo;
                    fixed_size = (char *)keyinfo.Name - (char *)&keyinfo;
285
                    keyinfo.LastWriteTime.QuadPart = reply->modif;
286 287 288 289 290 291 292 293 294
                    keyinfo.TitleIndex = 0;
                    keyinfo.NameLength = reply->namelen;
                    memcpy( info, &keyinfo, min( length, fixed_size ) );
                }
                break;
            case KeyFullInformation:
                {
                    KEY_FULL_INFORMATION keyinfo;
                    fixed_size = (char *)keyinfo.Class - (char *)&keyinfo;
295
                    keyinfo.LastWriteTime.QuadPart = reply->modif;
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
                    keyinfo.TitleIndex = 0;
                    keyinfo.ClassLength = wine_server_reply_size(reply);
                    keyinfo.ClassOffset = keyinfo.ClassLength ? fixed_size : -1;
                    keyinfo.SubKeys = reply->subkeys;
                    keyinfo.MaxNameLen = reply->max_subkey;
                    keyinfo.MaxClassLen = reply->max_class;
                    keyinfo.Values = reply->values;
                    keyinfo.MaxValueNameLen = reply->max_value;
                    keyinfo.MaxValueDataLen = reply->max_data;
                    memcpy( info, &keyinfo, min( length, fixed_size ) );
                }
                break;
            case KeyNodeInformation:
                {
                    KEY_NODE_INFORMATION keyinfo;
                    fixed_size = (char *)keyinfo.Name - (char *)&keyinfo;
312
                    keyinfo.LastWriteTime.QuadPart = reply->modif;
313
                    keyinfo.TitleIndex = 0;
314 315 316 317 318 319 320 321 322 323
                    if (reply->namelen < wine_server_reply_size(reply))
                    {
                        keyinfo.ClassLength = wine_server_reply_size(reply) - reply->namelen;
                        keyinfo.ClassOffset = fixed_size + reply->namelen;
                    }
                    else
                    {
                        keyinfo.ClassLength = 0;
                        keyinfo.ClassOffset = -1;
                    }
324 325 326 327
                    keyinfo.NameLength = reply->namelen;
                    memcpy( info, &keyinfo, min( length, fixed_size ) );
                }
                break;
328 329 330 331 332 333 334 335
            case KeyNameInformation:
                {
                    KEY_NAME_INFORMATION keyinfo;
                    fixed_size = (char *)keyinfo.Name - (char *)&keyinfo;
                    keyinfo.NameLength = reply->namelen;
                    memcpy( info, &keyinfo, min( length, fixed_size ) );
                }
                break;
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
            case KeyCachedInformation:
                {
                    KEY_CACHED_INFORMATION keyinfo;
                    fixed_size = sizeof(keyinfo);
                    keyinfo.LastWriteTime.QuadPart = reply->modif;
                    keyinfo.TitleIndex = 0;
                    keyinfo.SubKeys = reply->subkeys;
                    keyinfo.MaxNameLen = reply->max_subkey;
                    keyinfo.Values = reply->values;
                    keyinfo.MaxValueNameLen = reply->max_value;
                    keyinfo.MaxValueDataLen = reply->max_data;
                    keyinfo.NameLength = reply->namelen;
                    memcpy( info, &keyinfo, min( length, fixed_size ) );
                }
                break;
            default:
                break;
353 354 355 356
            }
            *result_len = fixed_size + reply->total;
            if (length < *result_len) ret = STATUS_BUFFER_OVERFLOW;
        }
357
    }
358 359
    SERVER_END_REQ;
    return ret;
360 361 362 363
}



364
/******************************************************************************
365
 * NtEnumerateKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
366
 * ZwEnumerateKey [NTDLL.@]
367 368
 *
 * NOTES
369
 *  the name copied into the buffer is NOT 0-terminated
370
 */
371
NTSTATUS WINAPI NtEnumerateKey( HANDLE handle, ULONG index, KEY_INFORMATION_CLASS info_class,
372
                                void *info, DWORD length, DWORD *result_len )
373
{
374 375
    /* -1 means query key, so avoid it here */
    if (index == (ULONG)-1) return STATUS_NO_MORE_ENTRIES;
376
    return enumerate_key( handle, index, info_class, info, length, result_len );
377 378
}

379

380 381 382 383
/******************************************************************************
 * RtlpNtEnumerateSubKey [NTDLL.@]
 *
 */
384
NTSTATUS WINAPI RtlpNtEnumerateSubKey( HANDLE handle, UNICODE_STRING *out, ULONG index )
385 386 387 388 389 390 391 392
{
  KEY_BASIC_INFORMATION *info;
  DWORD dwLen, dwResultLen;
  NTSTATUS ret;

  if (out->Length)
  {
    dwLen = out->Length + sizeof(KEY_BASIC_INFORMATION);
393
    info = RtlAllocateHeap( GetProcessHeap(), 0, dwLen );
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
    if (!info)
      return STATUS_NO_MEMORY;
  }
  else
  {
    dwLen = 0;
    info = NULL;
  }

  ret = NtEnumerateKey( handle, index, KeyBasicInformation, info, dwLen, &dwResultLen );
  dwResultLen -= sizeof(KEY_BASIC_INFORMATION);

  if (ret == STATUS_BUFFER_OVERFLOW)
    out->Length = dwResultLen;
  else if (!ret)
  {
    if (out->Length < info->NameLength)
    {
      out->Length = dwResultLen;
      ret = STATUS_BUFFER_OVERFLOW;
    }
    else
    {
      out->Length = info->NameLength;
      memcpy(out->Buffer, info->Name, info->NameLength);
    }
  }

422
  RtlFreeHeap( GetProcessHeap(), 0, info );
423 424 425
  return ret;
}

426
/******************************************************************************
427
 * NtQueryKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
428
 * ZwQueryKey [NTDLL.@]
429
 */
430
NTSTATUS WINAPI NtQueryKey( HANDLE handle, KEY_INFORMATION_CLASS info_class,
431
                            void *info, DWORD length, DWORD *result_len )
432
{
433
    return enumerate_key( handle, -1, info_class, info, length, result_len );
434 435 436
}


437 438 439
/* fill the key value info structure for a specific info class */
static void copy_key_value_info( KEY_VALUE_INFORMATION_CLASS info_class, void *info,
                                 DWORD length, int type, int name_len, int data_len )
440
{
441 442 443 444 445 446 447 448
    switch(info_class)
    {
    case KeyValueBasicInformation:
        {
            KEY_VALUE_BASIC_INFORMATION keyinfo;
            keyinfo.TitleIndex = 0;
            keyinfo.Type       = type;
            keyinfo.NameLength = name_len;
449
            length = min( length, (char *)keyinfo.Name - (char *)&keyinfo );
450 451 452 453 454 455 456 457
            memcpy( info, &keyinfo, length );
            break;
        }
    case KeyValueFullInformation:
        {
            KEY_VALUE_FULL_INFORMATION keyinfo;
            keyinfo.TitleIndex = 0;
            keyinfo.Type       = type;
458
            keyinfo.DataOffset = (char *)keyinfo.Name - (char *)&keyinfo + name_len;
459 460
            keyinfo.DataLength = data_len;
            keyinfo.NameLength = name_len;
461
            length = min( length, (char *)keyinfo.Name - (char *)&keyinfo );
462 463 464 465 466 467 468 469 470
            memcpy( info, &keyinfo, length );
            break;
        }
    case KeyValuePartialInformation:
        {
            KEY_VALUE_PARTIAL_INFORMATION keyinfo;
            keyinfo.TitleIndex = 0;
            keyinfo.Type       = type;
            keyinfo.DataLength = data_len;
471
            length = min( length, (char *)keyinfo.Data - (char *)&keyinfo );
472 473 474 475 476 477
            memcpy( info, &keyinfo, length );
            break;
        }
    default:
        break;
    }
478 479 480 481
}


/******************************************************************************
482
 *  NtEnumerateValueKey	[NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
483
 *  ZwEnumerateValueKey [NTDLL.@]
484
 */
485
NTSTATUS WINAPI NtEnumerateValueKey( HANDLE handle, ULONG index,
486 487
                                     KEY_VALUE_INFORMATION_CLASS info_class,
                                     void *info, DWORD length, DWORD *result_len )
488
{
489
    NTSTATUS ret;
490 491
    void *ptr;
    size_t fixed_size;
492

493
    TRACE( "(%p,%u,%d,%p,%d)\n", handle, index, info_class, info, length );
494 495 496 497

    /* compute the length we want to retrieve */
    switch(info_class)
    {
498 499 500
    case KeyValueBasicInformation:   ptr = ((KEY_VALUE_BASIC_INFORMATION *)info)->Name; break;
    case KeyValueFullInformation:    ptr = ((KEY_VALUE_FULL_INFORMATION *)info)->Name; break;
    case KeyValuePartialInformation: ptr = ((KEY_VALUE_PARTIAL_INFORMATION *)info)->Data; break;
501 502 503 504
    default:
        FIXME( "Information class %d not implemented\n", info_class );
        return STATUS_INVALID_PARAMETER;
    }
505
    fixed_size = (char *)ptr - (char *)info;
506

507
    SERVER_START_REQ( enum_key_value )
508
    {
509
        req->hkey       = wine_server_obj_handle( handle );
510 511 512 513
        req->index      = index;
        req->info_class = info_class;
        if (length > fixed_size) wine_server_set_reply( req, ptr, length - fixed_size );
        if (!(ret = wine_server_call( req )))
514
        {
515 516 517 518
            copy_key_value_info( info_class, info, length, reply->type, reply->namelen,
                                 wine_server_reply_size(reply) - reply->namelen );
            *result_len = fixed_size + reply->total;
            if (length < *result_len) ret = STATUS_BUFFER_OVERFLOW;
519
        }
520 521
    }
    SERVER_END_REQ;
522
    return ret;
523 524
}

525

526
/******************************************************************************
527
 * NtQueryValueKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
528
 * ZwQueryValueKey [NTDLL.@]
529 530 531
 *
 * NOTES
 *  the name in the KeyValueInformation is never set
532
 */
533
NTSTATUS WINAPI NtQueryValueKey( HANDLE handle, const UNICODE_STRING *name,
534 535
                                 KEY_VALUE_INFORMATION_CLASS info_class,
                                 void *info, DWORD length, DWORD *result_len )
536
{
537
    NTSTATUS ret;
538
    UCHAR *data_ptr;
539
    unsigned int fixed_size, min_size;
540

541
    TRACE( "(%p,%s,%d,%p,%d)\n", handle, debugstr_us(name), info_class, info, length );
542

543
    if (name->Length > MAX_VALUE_LENGTH) return STATUS_OBJECT_NAME_NOT_FOUND;
544

545 546 547 548
    /* compute the length we want to retrieve */
    switch(info_class)
    {
    case KeyValueBasicInformation:
549 550
    {
        KEY_VALUE_BASIC_INFORMATION *basic_info = info;
551 552 553 554
        min_size = FIELD_OFFSET(KEY_VALUE_BASIC_INFORMATION, Name);
        fixed_size = min_size + name->Length;
        if (min_size < length)
            memcpy(basic_info->Name, name->Buffer, min(length - min_size, name->Length));
555 556
        data_ptr = NULL;
        break;
557
    }
558
    case KeyValueFullInformation:
559 560
    {
        KEY_VALUE_FULL_INFORMATION *full_info = info;
561 562 563 564
        min_size = FIELD_OFFSET(KEY_VALUE_FULL_INFORMATION, Name);
        fixed_size = min_size + name->Length;
        if (min_size < length)
            memcpy(full_info->Name, name->Buffer, min(length - min_size, name->Length));
565
        data_ptr = (UCHAR *)full_info->Name + name->Length;
566
        break;
567
    }
568
    case KeyValuePartialInformation:
569
        min_size = fixed_size = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data);
570
        data_ptr = ((KEY_VALUE_PARTIAL_INFORMATION *)info)->Data;
571 572 573 574 575
        break;
    default:
        FIXME( "Information class %d not implemented\n", info_class );
        return STATUS_INVALID_PARAMETER;
    }
576

577
    SERVER_START_REQ( get_key_value )
578
    {
579
        req->hkey = wine_server_obj_handle( handle );
580
        wine_server_add_data( req, name->Buffer, name->Length );
581
        if (length > fixed_size && data_ptr) wine_server_set_reply( req, data_ptr, length - fixed_size );
582
        if (!(ret = wine_server_call( req )))
583
        {
584
            copy_key_value_info( info_class, info, length, reply->type,
585
                                 name->Length, reply->total );
586
            *result_len = fixed_size + (info_class == KeyValueBasicInformation ? 0 : reply->total);
587 588
            if (length < min_size) ret = STATUS_BUFFER_TOO_SMALL;
            else if (length < *result_len) ret = STATUS_BUFFER_OVERFLOW;
589
        }
590 591
    }
    SERVER_END_REQ;
592
    return ret;
593 594
}

595 596 597 598
/******************************************************************************
 * RtlpNtQueryValueKey [NTDLL.@]
 *
 */
599
NTSTATUS WINAPI RtlpNtQueryValueKey( HANDLE handle, ULONG *result_type, PBYTE dest,
600
                                     DWORD *result_len, void *unknown )
601 602 603 604 605
{
    KEY_VALUE_PARTIAL_INFORMATION *info;
    UNICODE_STRING name;
    NTSTATUS ret;
    DWORD dwResultLen;
606
    DWORD dwLen = sizeof (KEY_VALUE_PARTIAL_INFORMATION) + (result_len ? *result_len : 0);
607

608
    info = RtlAllocateHeap( GetProcessHeap(), 0, dwLen );
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
    if (!info)
      return STATUS_NO_MEMORY;

    name.Length = 0;
    ret = NtQueryValueKey( handle, &name, KeyValuePartialInformation, info, dwLen, &dwResultLen );

    if (!ret || ret == STATUS_BUFFER_OVERFLOW)
    {
        if (result_len)
            *result_len = info->DataLength;

        if (result_type)
            *result_type = info->Type;

        if (ret != STATUS_BUFFER_OVERFLOW)
            memcpy( dest, info->Data, info->DataLength );
    }

627
    RtlFreeHeap( GetProcessHeap(), 0, info );
628 629
    return ret;
}
630 631

/******************************************************************************
632
 *  NtFlushKey	[NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
633
 *  ZwFlushKey  [NTDLL.@]
634
 */
635
NTSTATUS WINAPI NtFlushKey(HANDLE key)
636
{
637 638 639 640 641 642
    NTSTATUS ret;

    TRACE("key=%p\n", key);

    SERVER_START_REQ( flush_key )
    {
643
	req->hkey = wine_server_obj_handle( key );
644 645 646 647 648
	ret = wine_server_call( req );
    }
    SERVER_END_REQ;
    
    return ret;
649 650 651
}

/******************************************************************************
652
 *  NtLoadKey	[NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
653
 *  ZwLoadKey   [NTDLL.@]
654
 */
James Hawkins's avatar
James Hawkins committed
655
NTSTATUS WINAPI NtLoadKey( const OBJECT_ATTRIBUTES *attr, OBJECT_ATTRIBUTES *file )
656
{
James Hawkins's avatar
James Hawkins committed
657 658 659
    NTSTATUS ret;
    HANDLE hive;
    IO_STATUS_BLOCK io;
660 661
    data_size_t len;
    struct object_attributes *objattr;
James Hawkins's avatar
James Hawkins committed
662 663 664

    TRACE("(%p,%p)\n", attr, file);

665
    ret = NtCreateFile(&hive, GENERIC_READ | SYNCHRONIZE, file, &io, NULL, FILE_ATTRIBUTE_NORMAL, 0,
666
                       FILE_OPEN, 0, NULL, 0);
James Hawkins's avatar
James Hawkins committed
667 668
    if (ret) return ret;

669 670
    if ((ret = alloc_object_attributes( attr, &objattr, &len ))) return ret;

James Hawkins's avatar
James Hawkins committed
671 672
    SERVER_START_REQ( load_registry )
    {
673
        req->file = wine_server_obj_handle( hive );
674
        wine_server_add_data( req, objattr, len );
James Hawkins's avatar
James Hawkins committed
675 676 677 678 679
        ret = wine_server_call( req );
    }
    SERVER_END_REQ;

    NtClose(hive);
680
    RtlFreeHeap( GetProcessHeap(), 0, objattr );
James Hawkins's avatar
James Hawkins committed
681
    return ret;
682 683
}

684 685 686 687 688 689 690 691 692 693
/******************************************************************************
 *  NtLoadKey2  [NTDLL.@]
 *  ZwLoadKey2  [NTDLL.@]
 */
NTSTATUS WINAPI NtLoadKey2(OBJECT_ATTRIBUTES *attr, OBJECT_ATTRIBUTES *file, ULONG flags)
{
    FIXME("(%p,%p,0x%08x) semi-stub: ignoring flags\n", attr, file, flags);
    return NtLoadKey(attr, file);
}

694
/******************************************************************************
695 696
 *  NtNotifyChangeMultipleKeys  [NTDLL.@]
 *  ZwNotifyChangeMultipleKeys  [NTDLL.@]
697
 */
698 699 700 701 702 703 704 705 706 707 708 709 710
NTSTATUS WINAPI NtNotifyChangeMultipleKeys(
        HANDLE KeyHandle,
        ULONG Count,
        OBJECT_ATTRIBUTES *SubordinateObjects,
        HANDLE Event,
        PIO_APC_ROUTINE ApcRoutine,
        PVOID ApcContext,
        PIO_STATUS_BLOCK IoStatusBlock,
        ULONG CompletionFilter,
        BOOLEAN WatchSubtree,
        PVOID ChangeBuffer,
        ULONG Length,
        BOOLEAN Asynchronous)
711
{
712 713
    NTSTATUS ret;

714 715
    TRACE("(%p,%u,%p,%p,%p,%p,%p,0x%08x, 0x%08x,%p,0x%08x,0x%08x)\n",
        KeyHandle, Count, SubordinateObjects, Event, ApcRoutine, ApcContext, IoStatusBlock, CompletionFilter,
716 717
        Asynchronous, ChangeBuffer, Length, WatchSubtree);

718
    if (Count || SubordinateObjects || ApcRoutine || ApcContext || ChangeBuffer || Length)
719 720 721 722 723 724
        FIXME("Unimplemented optional parameter\n");

    if (!Asynchronous)
    {
        OBJECT_ATTRIBUTES attr;
        InitializeObjectAttributes( &attr, NULL, 0, NULL, NULL );
725
        ret = NtCreateEvent( &Event, EVENT_ALL_ACCESS, &attr, SynchronizationEvent, FALSE );
726 727 728 729 730 731
        if (ret != STATUS_SUCCESS)
            return ret;
    }

    SERVER_START_REQ( set_registry_notification )
    {
732 733
        req->hkey    = wine_server_obj_handle( KeyHandle );
        req->event   = wine_server_obj_handle( Event );
734 735 736 737 738 739 740 741
        req->subtree = WatchSubtree;
        req->filter  = CompletionFilter;
        ret = wine_server_call( req );
    }
    SERVER_END_REQ;
 
    if (!Asynchronous)
    {
742 743
        if (ret == STATUS_PENDING)
            ret = NtWaitForSingleObject( Event, FALSE, NULL );
744 745 746
        NtClose( Event );
    }

747
    return ret;
748 749
}

750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
/******************************************************************************
 *  NtNotifyChangeKey	[NTDLL.@]
 *  ZwNotifyChangeKey   [NTDLL.@]
 */
NTSTATUS WINAPI NtNotifyChangeKey(
	IN HANDLE KeyHandle,
	IN HANDLE Event,
	IN PIO_APC_ROUTINE ApcRoutine OPTIONAL,
	IN PVOID ApcContext OPTIONAL,
	OUT PIO_STATUS_BLOCK IoStatusBlock,
	IN ULONG CompletionFilter,
	IN BOOLEAN WatchSubtree,
	OUT PVOID ChangeBuffer,
	IN ULONG Length,
	IN BOOLEAN Asynchronous)
{
    return NtNotifyChangeMultipleKeys(KeyHandle, 0, NULL, Event, ApcRoutine, ApcContext,
                                      IoStatusBlock, CompletionFilter, WatchSubtree,
                                      ChangeBuffer, Length, Asynchronous);
}

771 772 773 774 775 776
/******************************************************************************
 * NtQueryMultipleValueKey [NTDLL]
 * ZwQueryMultipleValueKey
 */

NTSTATUS WINAPI NtQueryMultipleValueKey(
777
	HANDLE KeyHandle,
778
	PKEY_MULTIPLE_VALUE_INFORMATION ListOfValuesToQuery,
779 780 781 782 783
	ULONG NumberOfItems,
	PVOID MultipleValueInformation,
	ULONG Length,
	PULONG  ReturnLength)
{
784
	FIXME("(%p,%p,0x%08x,%p,0x%08x,%p) stub!\n",
785 786 787 788 789
	KeyHandle, ListOfValuesToQuery, NumberOfItems, MultipleValueInformation,
	Length,ReturnLength);
	return STATUS_SUCCESS;
}

790
/******************************************************************************
791
 * NtReplaceKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
792
 * ZwReplaceKey [NTDLL.@]
793 794 795
 */
NTSTATUS WINAPI NtReplaceKey(
	IN POBJECT_ATTRIBUTES ObjectAttributes,
796
	IN HANDLE Key,
797 798
	IN POBJECT_ATTRIBUTES ReplacedObjectAttributes)
{
799 800 801
    FIXME("(%s,%p,%s),stub!\n", debugstr_ObjectAttributes(ObjectAttributes), Key,
          debugstr_ObjectAttributes(ReplacedObjectAttributes) );
    return STATUS_SUCCESS;
802 803
}
/******************************************************************************
804
 * NtRestoreKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
805
 * ZwRestoreKey [NTDLL.@]
806 807
 */
NTSTATUS WINAPI NtRestoreKey(
808
	HANDLE KeyHandle,
809
	HANDLE FileHandle,
810 811
	ULONG RestoreFlags)
{
812
	FIXME("(%p,%p,0x%08x) stub\n",
813
	KeyHandle, FileHandle, RestoreFlags);
814
	return STATUS_SUCCESS;
815 816
}
/******************************************************************************
817
 * NtSaveKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
818
 * ZwSaveKey [NTDLL.@]
819
 */
820
NTSTATUS WINAPI NtSaveKey(IN HANDLE KeyHandle, IN HANDLE FileHandle)
821
{
822 823 824 825 826 827
    NTSTATUS ret;

    TRACE("(%p,%p)\n", KeyHandle, FileHandle);

    SERVER_START_REQ( save_registry )
    {
828 829
        req->hkey = wine_server_obj_handle( KeyHandle );
        req->file = wine_server_obj_handle( FileHandle );
830 831 832 833 834
        ret = wine_server_call( req );
    }
    SERVER_END_REQ;

    return ret;
835 836
}
/******************************************************************************
837
 * NtSetInformationKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
838
 * ZwSetInformationKey [NTDLL.@]
839 840
 */
NTSTATUS WINAPI NtSetInformationKey(
841
	IN HANDLE KeyHandle,
842 843 844 845
	IN const int KeyInformationClass,
	IN PVOID KeyInformation,
	IN ULONG KeyInformationLength)
{
846
	FIXME("(%p,0x%08x,%p,0x%08x) stub\n",
847
	KeyHandle, KeyInformationClass, KeyInformation, KeyInformationLength);
848
	return STATUS_SUCCESS;
849
}
850 851


852
/******************************************************************************
853
 * NtSetValueKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
854
 * ZwSetValueKey [NTDLL.@]
855 856
 *
 * NOTES
857
 *   win95 does not care about count for REG_SZ and finds out the len by itself (js)
858
 *   NT does definitely care (aj)
859
 */
860
NTSTATUS WINAPI NtSetValueKey( HANDLE hkey, const UNICODE_STRING *name, ULONG TitleIndex,
861
                               ULONG type, const void *data, ULONG count )
862
{
863 864
    NTSTATUS ret;

865
    TRACE( "(%p,%s,%d,%p,%d)\n", hkey, debugstr_us(name), type, data, count );
866

867
    if (name->Length > MAX_VALUE_LENGTH) return STATUS_INVALID_PARAMETER;
868

869
    SERVER_START_REQ( set_key_value )
870
    {
871
        req->hkey    = wine_server_obj_handle( hkey );
872 873 874 875 876 877 878
        req->type    = type;
        req->namelen = name->Length;
        wine_server_add_data( req, name->Buffer, name->Length );
        wine_server_add_data( req, data, count );
        ret = wine_server_call( req );
    }
    SERVER_END_REQ;
879
    return ret;
880 881
}

882 883 884 885
/******************************************************************************
 * RtlpNtSetValueKey [NTDLL.@]
 *
 */
886
NTSTATUS WINAPI RtlpNtSetValueKey( HANDLE hkey, ULONG type, const void *data,
887 888 889 890 891 892 893 894
                                   ULONG count )
{
    UNICODE_STRING name;

    name.Length = 0;
    return NtSetValueKey( hkey, &name, 0, type, data, count );
}

895
/******************************************************************************
896
 * NtUnloadKey [NTDLL.@]
Patrik Stridvall's avatar
Patrik Stridvall committed
897
 * ZwUnloadKey [NTDLL.@]
898
 */
899
NTSTATUS WINAPI NtUnloadKey(IN POBJECT_ATTRIBUTES attr)
900
{
901 902
    NTSTATUS ret;

903
    TRACE("(%p)\n", attr);
904 905 906

    SERVER_START_REQ( unload_registry )
    {
907
        req->hkey = wine_server_obj_handle( attr->RootDirectory );
908 909 910 911 912
        ret = wine_server_call(req);
    }
    SERVER_END_REQ;

    return ret;
913 914 915
}

/******************************************************************************
916
 *  RtlFormatCurrentUserKeyPath		[NTDLL.@]
917
 *
918
 */
919
NTSTATUS WINAPI RtlFormatCurrentUserKeyPath( IN OUT PUNICODE_STRING KeyPath)
920
{
921
    static const WCHAR pathW[] = {'\\','R','e','g','i','s','t','r','y','\\','U','s','e','r','\\'};
922 923
    char buffer[sizeof(TOKEN_USER) + sizeof(SID) + sizeof(DWORD)*SID_MAX_SUB_AUTHORITIES];
    DWORD len = sizeof(buffer);
924 925
    NTSTATUS status;

926
    status = NtQueryInformationToken(GetCurrentThreadEffectiveToken(), TokenUser, buffer, len, &len);
927 928
    if (status == STATUS_SUCCESS)
    {
929 930 931
        KeyPath->MaximumLength = 0;
        status = RtlConvertSidToUnicodeString(KeyPath, ((TOKEN_USER *)buffer)->User.Sid, FALSE);
        if (status == STATUS_BUFFER_OVERFLOW)
932
        {
933 934 935
            PWCHAR buf = RtlAllocateHeap(GetProcessHeap(), 0,
                                         sizeof(pathW) + KeyPath->Length + sizeof(WCHAR));
            if (buf)
936
            {
937 938 939 940 941 942 943 944
                memcpy(buf, pathW, sizeof(pathW));
                KeyPath->MaximumLength = KeyPath->Length + sizeof(WCHAR);
                KeyPath->Buffer = (PWCHAR)((LPBYTE)buf + sizeof(pathW));
                status = RtlConvertSidToUnicodeString(KeyPath,
                                                      ((TOKEN_USER *)buffer)->User.Sid, FALSE);
                KeyPath->Buffer = buf;
                KeyPath->Length += sizeof(pathW);
                KeyPath->MaximumLength += sizeof(pathW);
945
            }
946 947
            else
                status = STATUS_NO_MEMORY;
948 949 950
        }
    }
    return status;
951 952 953
}

/******************************************************************************
954
 *  RtlOpenCurrentUser		[NTDLL.@]
955
 *
956 957 958
 * NOTES
 *  If we return just HKEY_CURRENT_USER the advapi tries to find a remote
 *  registry (odd handle) and fails.
959
 */
960
NTSTATUS WINAPI RtlOpenCurrentUser(
961
	IN ACCESS_MASK DesiredAccess, /* [in] */
962
	OUT PHANDLE KeyHandle)	      /* [out] handle of HKEY_CURRENT_USER */
963 964 965 966 967
{
	OBJECT_ATTRIBUTES ObjectAttributes;
	UNICODE_STRING ObjectName;
	NTSTATUS ret;

968
	TRACE("(0x%08x, %p)\n",DesiredAccess, KeyHandle);
969

970
        if ((ret = RtlFormatCurrentUserKeyPath(&ObjectName))) return ret;
971
	InitializeObjectAttributes(&ObjectAttributes,&ObjectName,OBJ_CASE_INSENSITIVE,0, NULL);
972
	ret = NtCreateKey(KeyHandle, DesiredAccess, &ObjectAttributes, 0, NULL, 0, NULL);
973 974
	RtlFreeUnicodeString(&ObjectName);
	return ret;
975
}
976 977 978 979 980 981 982 983 984 985 986 987 988 989


static NTSTATUS RTL_ReportRegistryValue(PKEY_VALUE_FULL_INFORMATION pInfo,
                                        PRTL_QUERY_REGISTRY_TABLE pQuery, PVOID pContext, PVOID pEnvironment)
{
    PUNICODE_STRING str;
    UNICODE_STRING src, dst;
    LONG *bin;
    ULONG offset;
    PWSTR wstr;
    DWORD res;
    NTSTATUS status = STATUS_SUCCESS;
    ULONG len;
    LPWSTR String;
990
    ULONG count = 0;
991 992 993 994

    if (pInfo == NULL)
    {
        if (pQuery->Flags & RTL_QUERY_REGISTRY_DIRECT)
995
            return STATUS_INVALID_PARAMETER;
996 997 998 999 1000 1001 1002 1003 1004 1005 1006
        else
        {
            status = pQuery->QueryRoutine(pQuery->Name, pQuery->DefaultType, pQuery->DefaultData,
                                          pQuery->DefaultLength, pContext, pQuery->EntryContext);
        }
        return status;
    }
    len = pInfo->DataLength;

    if (pQuery->Flags & RTL_QUERY_REGISTRY_DIRECT)
    {
1007 1008
        str = pQuery->EntryContext;

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
        switch(pInfo->Type)
        {
        case REG_EXPAND_SZ:
            if (!(pQuery->Flags & RTL_QUERY_REGISTRY_NOEXPAND))
            {
                RtlInitUnicodeString(&src, (WCHAR*)(((CHAR*)pInfo) + pInfo->DataOffset));
                res = 0;
                dst.MaximumLength = 0;
                RtlExpandEnvironmentStrings_U(pEnvironment, &src, &dst, &res);
                dst.Length = 0;
                dst.MaximumLength = res;
                dst.Buffer = RtlAllocateHeap(GetProcessHeap(), 0, res * sizeof(WCHAR));
                RtlExpandEnvironmentStrings_U(pEnvironment, &src, &dst, &res);
                status = pQuery->QueryRoutine(pQuery->Name, pInfo->Type, dst.Buffer,
                                     dst.Length, pContext, pQuery->EntryContext);
                RtlFreeHeap(GetProcessHeap(), 0, dst.Buffer);
            }

        case REG_SZ:
        case REG_LINK:
            if (str->Buffer == NULL)
                RtlCreateUnicodeString(str, (WCHAR*)(((CHAR*)pInfo) + pInfo->DataOffset));
            else
                RtlAppendUnicodeToString(str, (WCHAR*)(((CHAR*)pInfo) + pInfo->DataOffset));
            break;

        case REG_MULTI_SZ:
            if (!(pQuery->Flags & RTL_QUERY_REGISTRY_NOEXPAND))
                return STATUS_INVALID_PARAMETER;

            if (str->Buffer == NULL)
            {
                str->Buffer = RtlAllocateHeap(GetProcessHeap(), 0, len);
                str->MaximumLength = len;
            }
            len = min(len, str->MaximumLength);
            memcpy(str->Buffer, ((CHAR*)pInfo) + pInfo->DataOffset, len);
            str->Length = len;
            break;

        default:
1050
            bin = pQuery->EntryContext;
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
            if (pInfo->DataLength <= sizeof(ULONG))
                memcpy(bin, ((CHAR*)pInfo) + pInfo->DataOffset,
                    pInfo->DataLength);
            else
            {
                if (bin[0] <= sizeof(ULONG))
                {
                    memcpy(&bin[1], ((CHAR*)pInfo) + pInfo->DataOffset,
                    min(-bin[0], pInfo->DataLength));
                }
                else
                {
                   len = min(bin[0], pInfo->DataLength);
                    bin[1] = len;
                    bin[2] = pInfo->Type;
                    memcpy(&bin[3], ((CHAR*)pInfo) + pInfo->DataOffset, len);
                }
           }
           break;
        }
    }
    else
    {
        if((pQuery->Flags & RTL_QUERY_REGISTRY_NOEXPAND) ||
           (pInfo->Type != REG_EXPAND_SZ && pInfo->Type != REG_MULTI_SZ))
        {
1077
            status = pQuery->QueryRoutine(pQuery->Name, pInfo->Type,
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
                ((CHAR*)pInfo) + pInfo->DataOffset, pInfo->DataLength,
                pContext, pQuery->EntryContext);
        }
        else if (pInfo->Type == REG_EXPAND_SZ)
        {
            RtlInitUnicodeString(&src, (WCHAR*)(((CHAR*)pInfo) + pInfo->DataOffset));
            res = 0;
            dst.MaximumLength = 0;
            RtlExpandEnvironmentStrings_U(pEnvironment, &src, &dst, &res);
            dst.Length = 0;
            dst.MaximumLength = res;
            dst.Buffer = RtlAllocateHeap(GetProcessHeap(), 0, res * sizeof(WCHAR));
            RtlExpandEnvironmentStrings_U(pEnvironment, &src, &dst, &res);
            status = pQuery->QueryRoutine(pQuery->Name, pInfo->Type, dst.Buffer,
                                          dst.Length, pContext, pQuery->EntryContext);
            RtlFreeHeap(GetProcessHeap(), 0, dst.Buffer);
        }
        else /* REG_MULTI_SZ */
        {
            if(pQuery->Flags & RTL_QUERY_REGISTRY_NOEXPAND)
            {
                for (offset = 0; offset <= pInfo->DataLength; offset += len + sizeof(WCHAR))
                    {
                    wstr = (WCHAR*)(((CHAR*)pInfo) + offset);
                    len = strlenW(wstr) * sizeof(WCHAR);
                    status = pQuery->QueryRoutine(pQuery->Name, pInfo->Type, wstr, len,
                        pContext, pQuery->EntryContext);
                    if(status != STATUS_SUCCESS && status != STATUS_BUFFER_TOO_SMALL)
                        return status;
                    }
            }
            else
            {
                while(count<=pInfo->DataLength)
                {
                    String = (WCHAR*)(((CHAR*)pInfo) + pInfo->DataOffset)+count;
                    count+=strlenW(String)+1;
                    RtlInitUnicodeString(&src, (WCHAR*)(((CHAR*)pInfo) + pInfo->DataOffset));
                    res = 0;
                    dst.MaximumLength = 0;
                    RtlExpandEnvironmentStrings_U(pEnvironment, &src, &dst, &res);
                    dst.Length = 0;
                    dst.MaximumLength = res;
                    dst.Buffer = RtlAllocateHeap(GetProcessHeap(), 0, res * sizeof(WCHAR));
                    RtlExpandEnvironmentStrings_U(pEnvironment, &src, &dst, &res);
                    status = pQuery->QueryRoutine(pQuery->Name, pInfo->Type, dst.Buffer,
                                                  dst.Length, pContext, pQuery->EntryContext);
                    RtlFreeHeap(GetProcessHeap(), 0, dst.Buffer);
                    if(status != STATUS_SUCCESS && status != STATUS_BUFFER_TOO_SMALL)
                        return status;
                }
            }
        }
    }
    return status;
}


1136
static NTSTATUS RTL_GetKeyHandle(ULONG RelativeTo, PCWSTR Path, PHANDLE handle)
1137 1138 1139 1140 1141 1142 1143 1144 1145
{
    UNICODE_STRING KeyString;
    OBJECT_ATTRIBUTES regkey;
    PCWSTR base;
    INT len;
    NTSTATUS status;

    static const WCHAR empty[] = {0};
    static const WCHAR control[] = {'\\','R','e','g','i','s','t','r','y','\\','M','a','c','h','i','n','e',
1146
    '\\','S','y','s','t','e','m','\\','C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
    'C','o','n','t','r','o','l','\\',0};

    static const WCHAR devicemap[] = {'\\','R','e','g','i','s','t','r','y','\\','M','a','c','h','i','n','e','\\',
    'H','a','r','d','w','a','r','e','\\','D','e','v','i','c','e','M','a','p','\\',0};

    static const WCHAR services[] = {'\\','R','e','g','i','s','t','r','y','\\','M','a','c','h','i','n','e','\\',
    'S','y','s','t','e','m','\\','C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
    'S','e','r','v','i','c','e','s','\\',0};

    static const WCHAR user[] = {'\\','R','e','g','i','s','t','r','y','\\','U','s','e','r','\\',
    'C','u','r','r','e','n','t','U','s','e','r','\\',0};

    static const WCHAR windows_nt[] = {'\\','R','e','g','i','s','t','r','y','\\','M','a','c','h','i','n','e','\\',
    'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\',
    'W','i','n','d','o','w','s',' ','N','T','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',0};

    switch (RelativeTo & 0xff)
    {
    case RTL_REGISTRY_ABSOLUTE:
        base = empty;
        break;

    case RTL_REGISTRY_CONTROL:
        base = control;
        break;

    case RTL_REGISTRY_DEVICEMAP:
        base = devicemap;
        break;

    case RTL_REGISTRY_SERVICES:
        base = services;
        break;

    case RTL_REGISTRY_USER:
        base = user;
        break;

    case RTL_REGISTRY_WINDOWS_NT:
        base = windows_nt;
        break;

    default:
        return STATUS_INVALID_PARAMETER;
    }

    len = (strlenW(base) + strlenW(Path) + 1) * sizeof(WCHAR);
    KeyString.Buffer = RtlAllocateHeap(GetProcessHeap(), 0, len);
    if (KeyString.Buffer == NULL)
        return STATUS_NO_MEMORY;

    strcpyW(KeyString.Buffer, base);
    strcatW(KeyString.Buffer, Path);
    KeyString.Length = len - sizeof(WCHAR);
    KeyString.MaximumLength = len;
1202
    InitializeObjectAttributes(&regkey, &KeyString, OBJ_CASE_INSENSITIVE, NULL, NULL);
1203 1204 1205 1206 1207 1208 1209 1210
    status = NtOpenKey(handle, KEY_ALL_ACCESS, &regkey);
    RtlFreeHeap(GetProcessHeap(), 0, KeyString.Buffer);
    return status;
}

/*************************************************************************
 * RtlQueryRegistryValues   [NTDLL.@]
 *
1211
 * Query multiple registry values with a single call.
1212 1213 1214 1215 1216
 *
 * PARAMS
 *  RelativeTo  [I] Registry path that Path refers to
 *  Path        [I] Path to key
 *  QueryTable  [I] Table of key values to query
Austin English's avatar
Austin English committed
1217 1218
 *  Context     [I] Parameter to pass to the application defined QueryRoutine function
 *  Environment [I] Optional parameter to use when performing expansion
1219 1220 1221 1222 1223 1224 1225 1226 1227
 *
 * RETURNS
 *  STATUS_SUCCESS or an appropriate NTSTATUS error code.
 */
NTSTATUS WINAPI RtlQueryRegistryValues(IN ULONG RelativeTo, IN PCWSTR Path,
                                       IN PRTL_QUERY_REGISTRY_TABLE QueryTable, IN PVOID Context,
                                       IN PVOID Environment OPTIONAL)
{
    UNICODE_STRING Value;
1228
    HANDLE handle, topkey;
1229 1230 1231 1232 1233
    PKEY_VALUE_FULL_INFORMATION pInfo = NULL;
    ULONG len, buflen = 0;
    NTSTATUS status=STATUS_SUCCESS, ret = STATUS_SUCCESS;
    INT i;

1234
    TRACE("(%d, %s, %p, %p, %p)\n", RelativeTo, debugstr_w(Path), QueryTable, Context, Environment);
1235

1236 1237 1238
    if(Path == NULL)
        return STATUS_INVALID_PARAMETER;

1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
    /* get a valid handle */
    if (RelativeTo & RTL_REGISTRY_HANDLE)
        topkey = handle = (HANDLE)Path;
    else
    {
        status = RTL_GetKeyHandle(RelativeTo, Path, &topkey);
        handle = topkey;
    }
    if(status != STATUS_SUCCESS)
        return status;

    /* Process query table entries */
    for (; QueryTable->QueryRoutine != NULL || QueryTable->Name != NULL; ++QueryTable)
    {
        if (QueryTable->Flags &
            (RTL_QUERY_REGISTRY_SUBKEY | RTL_QUERY_REGISTRY_TOPKEY))
        {
            /* topkey must be kept open just in case we will reuse it later */
            if (handle != topkey)
                NtClose(handle);

            if (QueryTable->Flags & RTL_QUERY_REGISTRY_SUBKEY)
            {
                handle = 0;
1263
                status = RTL_GetKeyHandle(PtrToUlong(QueryTable->Name), Path, &handle);
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
                if(status != STATUS_SUCCESS)
                {
                    ret = status;
                    goto out;
                }
            }
            else
                handle = topkey;
        }

        if (QueryTable->Flags & RTL_QUERY_REGISTRY_NOVALUE)
        {
            QueryTable->QueryRoutine(QueryTable->Name, REG_NONE, NULL, 0,
                Context, QueryTable->EntryContext);
            continue;
        }

        if (!handle)
        {
            if (QueryTable->Flags & RTL_QUERY_REGISTRY_REQUIRED)
            {
                ret = STATUS_OBJECT_NAME_NOT_FOUND;
                goto out;
            }
            continue;
        }

        if (QueryTable->Name == NULL)
        {
            if (QueryTable->Flags & RTL_QUERY_REGISTRY_DIRECT)
            {
                ret = STATUS_INVALID_PARAMETER;
                goto out;
            }

            /* Report all subkeys */
            for (i = 0;; ++i)
            {
                status = NtEnumerateValueKey(handle, i,
                    KeyValueFullInformation, pInfo, buflen, &len);
                if (status == STATUS_NO_MORE_ENTRIES)
                    break;
                if (status == STATUS_BUFFER_OVERFLOW ||
                    status == STATUS_BUFFER_TOO_SMALL)
                {
                    buflen = len;
                    RtlFreeHeap(GetProcessHeap(), 0, pInfo);
1311
                    pInfo = RtlAllocateHeap(GetProcessHeap(), 0, buflen);
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
                    NtEnumerateValueKey(handle, i, KeyValueFullInformation,
                        pInfo, buflen, &len);
                }

                status = RTL_ReportRegistryValue(pInfo, QueryTable, Context, Environment);
                if(status != STATUS_SUCCESS && status != STATUS_BUFFER_TOO_SMALL)
                {
                    ret = status;
                    goto out;
                }
                if (QueryTable->Flags & RTL_QUERY_REGISTRY_DELETE)
                {
                    RtlInitUnicodeString(&Value, pInfo->Name);
                    NtDeleteValueKey(handle, &Value);
                }
            }

            if (i == 0  && (QueryTable->Flags & RTL_QUERY_REGISTRY_REQUIRED))
            {
                ret = STATUS_OBJECT_NAME_NOT_FOUND;
                goto out;
            }
        }
        else
        {
            RtlInitUnicodeString(&Value, QueryTable->Name);
            status = NtQueryValueKey(handle, &Value, KeyValueFullInformation,
                pInfo, buflen, &len);
            if (status == STATUS_BUFFER_OVERFLOW ||
                status == STATUS_BUFFER_TOO_SMALL)
            {
                buflen = len;
                RtlFreeHeap(GetProcessHeap(), 0, pInfo);
1345
                pInfo = RtlAllocateHeap(GetProcessHeap(), 0, buflen);
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
                status = NtQueryValueKey(handle, &Value,
                    KeyValueFullInformation, pInfo, buflen, &len);
            }
            if (status != STATUS_SUCCESS)
            {
                if (QueryTable->Flags & RTL_QUERY_REGISTRY_REQUIRED)
                {
                    ret = STATUS_OBJECT_NAME_NOT_FOUND;
                    goto out;
                }
                status = RTL_ReportRegistryValue(NULL, QueryTable, Context, Environment);
                if(status != STATUS_SUCCESS && status != STATUS_BUFFER_TOO_SMALL)
                {
                    ret = status;
                    goto out;
                }
            }
            else
            {
                status = RTL_ReportRegistryValue(pInfo, QueryTable, Context, Environment);
                if(status != STATUS_SUCCESS && status != STATUS_BUFFER_TOO_SMALL)
                {
                    ret = status;
                    goto out;
                }
                if (QueryTable->Flags & RTL_QUERY_REGISTRY_DELETE)
                    NtDeleteValueKey(handle, &Value);
            }
        }
    }

out:
    RtlFreeHeap(GetProcessHeap(), 0, pInfo);
    if (handle != topkey)
        NtClose(handle);
    NtClose(topkey);
    return ret;
}

/*************************************************************************
 * RtlCheckRegistryKey   [NTDLL.@]
 *
1388
 * Query multiple registry values with a single call.
1389 1390 1391 1392 1393 1394 1395 1396
 *
 * PARAMS
 *  RelativeTo [I] Registry path that Path refers to
 *  Path       [I] Path to key
 *
 * RETURNS
 *  STATUS_SUCCESS if the specified key exists, or an NTSTATUS error code.
 */
1397
NTSTATUS WINAPI RtlCheckRegistryKey(IN ULONG RelativeTo, IN PWSTR Path)
1398
{
1399
    HANDLE handle;
1400 1401
    NTSTATUS status;

1402
    TRACE("(%d, %s)\n", RelativeTo, debugstr_w(Path));
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417

    if((!RelativeTo) && Path == NULL)
        return STATUS_OBJECT_PATH_SYNTAX_BAD;
    if(RelativeTo & RTL_REGISTRY_HANDLE)
        return STATUS_SUCCESS;

    status = RTL_GetKeyHandle(RelativeTo, Path, &handle);
    if (handle) NtClose(handle);
    if (status == STATUS_INVALID_HANDLE) status = STATUS_OBJECT_NAME_NOT_FOUND;
    return status;
}

/*************************************************************************
 * RtlDeleteRegistryValue   [NTDLL.@]
 *
1418
 * Query multiple registry values with a single call.
1419 1420 1421 1422 1423 1424 1425
 *
 * PARAMS
 *  RelativeTo [I] Registry path that Path refers to
 *  Path       [I] Path to key
 *  ValueName  [I] Name of the value to delete
 *
 * RETURNS
1426
 *  STATUS_SUCCESS if the specified key is successfully deleted, or an NTSTATUS error code.
1427
 */
1428
NTSTATUS WINAPI RtlDeleteRegistryValue(IN ULONG RelativeTo, IN PCWSTR Path, IN PCWSTR ValueName)
1429 1430
{
    NTSTATUS status;
1431
    HANDLE handle;
1432 1433
    UNICODE_STRING Value;

1434
    TRACE("(%d, %s, %s)\n", RelativeTo, debugstr_w(Path), debugstr_w(ValueName));
1435 1436 1437 1438

    RtlInitUnicodeString(&Value, ValueName);
    if(RelativeTo == RTL_REGISTRY_HANDLE)
    {
1439
        return NtDeleteValueKey((HANDLE)Path, &Value);
1440 1441 1442 1443 1444 1445 1446
    }
    status = RTL_GetKeyHandle(RelativeTo, Path, &handle);
    if (status) return status;
    status = NtDeleteValueKey(handle, &Value);
    NtClose(handle);
    return status;
}
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487

/*************************************************************************
 * RtlWriteRegistryValue   [NTDLL.@]
 *
 * Sets the registry value with provided data.
 *
 * PARAMS
 *  RelativeTo [I] Registry path that path parameter refers to
 *  path       [I] Path to the key (or handle - see RTL_GetKeyHandle)
 *  name       [I] Name of the registry value to set
 *  type       [I] Type of the registry key to set
 *  data       [I] Pointer to the user data to be set
 *  length     [I] Length of the user data pointed by data
 *
 * RETURNS
 *  STATUS_SUCCESS if the specified key is successfully set,
 *  or an NTSTATUS error code.
 */
NTSTATUS WINAPI RtlWriteRegistryValue( ULONG RelativeTo, PCWSTR path, PCWSTR name,
                                       ULONG type, PVOID data, ULONG length )
{
    HANDLE hkey;
    NTSTATUS status;
    UNICODE_STRING str;

    TRACE( "(%d, %s, %s) -> %d: %p [%d]\n", RelativeTo, debugstr_w(path), debugstr_w(name),
           type, data, length );

    RtlInitUnicodeString( &str, name );

    if (RelativeTo == RTL_REGISTRY_HANDLE)
        return NtSetValueKey( (HANDLE)path, &str, 0, type, data, length );

    status = RTL_GetKeyHandle( RelativeTo, path, &hkey );
    if (status != STATUS_SUCCESS) return status;

    status = NtSetValueKey( hkey, &str, 0, type, data, length );
    NtClose( hkey );

    return status;
}
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551

/*************************************************************************
 * NtQueryLicenseValue   [NTDLL.@]
 *
 * NOTES
 *  On Windows all license properties are stored in a single key, but
 *  unless there is some app which explicitly depends on that, there is
 *  no good reason to reproduce that.
 */
NTSTATUS WINAPI NtQueryLicenseValue( const UNICODE_STRING *name, ULONG *result_type,
                                     PVOID data, ULONG length, ULONG *result_len )
{
    static const WCHAR LicenseInformationW[] = {'M','a','c','h','i','n','e','\\',
                                                'S','o','f','t','w','a','r','e','\\',
                                                'W','i','n','e','\\','L','i','c','e','n','s','e',
                                                'I','n','f','o','r','m','a','t','i','o','n',0};
    KEY_VALUE_PARTIAL_INFORMATION *info;
    NTSTATUS status = STATUS_OBJECT_NAME_NOT_FOUND;
    DWORD info_length, count;
    OBJECT_ATTRIBUTES attr;
    UNICODE_STRING keyW;
    HANDLE hkey;

    if (!name || !name->Buffer || !name->Length || !result_len)
        return STATUS_INVALID_PARAMETER;

    info_length = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data) + length;
    info = RtlAllocateHeap( GetProcessHeap(), 0, info_length );
    if (!info) return STATUS_NO_MEMORY;

    attr.Length = sizeof(attr);
    attr.RootDirectory = 0;
    attr.ObjectName = &keyW;
    attr.Attributes = 0;
    attr.SecurityDescriptor = NULL;
    attr.SecurityQualityOfService = NULL;
    RtlInitUnicodeString( &keyW, LicenseInformationW );

    /* @@ Wine registry key: HKLM\Software\Wine\LicenseInformation */
    if (!NtOpenKey( &hkey, KEY_READ, &attr ))
    {
        status = NtQueryValueKey( hkey, name, KeyValuePartialInformation,
                                  info, info_length, &count );
        if (!status || status == STATUS_BUFFER_OVERFLOW)
        {
            if (result_type)
                *result_type = info->Type;

            *result_len = info->DataLength;

            if (status == STATUS_BUFFER_OVERFLOW)
                status = STATUS_BUFFER_TOO_SMALL;
            else
                memcpy( data, info->Data, info->DataLength );
        }
        NtClose( hkey );
    }

    if (status == STATUS_OBJECT_NAME_NOT_FOUND)
        FIXME( "License key %s not found\n", debugstr_w(name->Buffer) );

    RtlFreeHeap( GetProcessHeap(), 0, info );
    return status;
}