2 Unix SMB/CIFS implementation.
3 SMB parameters and setup
4 Copyright (C) Andrew Tridgell 1992-1997.
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1997.
6 Copyright (C) Paul Ashton 1997.
7 Copyright (C) Jeremy Cooper 2004.
8 Copyright (C) Gerald Carter 2002-2005.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #ifndef _RPC_REG_H /* _RPC_REG_H */
30 #define REG_OPEN_HKCR 0x00
31 #define REG_OPEN_HKLM 0x02
32 #define REG_OPEN_HKPD 0x03
33 #define REG_OPEN_HKU 0x04
34 #define REG_CLOSE 0x05
35 #define REG_CREATE_KEY_EX 0x06
36 #define REG_DELETE_KEY 0x07
37 #define REG_DELETE_VALUE 0x08
38 #define REG_ENUM_KEY 0x09
39 #define REG_ENUM_VALUE 0x0a
40 #define REG_FLUSH_KEY 0x0b
41 #define REG_GET_KEY_SEC 0x0c
42 #define REG_OPEN_ENTRY 0x0f
43 #define REG_QUERY_KEY 0x10
44 #define REG_QUERY_VALUE 0x11
45 #define REG_RESTORE_KEY 0x13
46 #define REG_SAVE_KEY 0x14
47 #define REG_SET_KEY_SEC 0x15
48 #define REG_SET_VALUE 0x16
49 #define REG_SHUTDOWN 0x18
50 #define REG_ABORT_SHUTDOWN 0x19
51 #define REG_OPEN_HKPT 0x20
52 #define REG_GETVERSION 0x1a
53 #define REG_SHUTDOWN_EX 0x1e
56 #define HKEY_CLASSES_ROOT 0x80000000
57 #define HKEY_CURRENT_USER 0x80000001
58 #define HKEY_LOCAL_MACHINE 0x80000002
59 #define HKEY_USERS 0x80000003
60 #define HKEY_PERFORMANCE_DATA 0x80000004
62 #define KEY_HKLM "HKLM"
64 #define KEY_HKCR "HKCR"
65 #define KEY_HKPD "HKPD"
66 #define KEY_HKPT "HKPT"
67 #define KEY_SERVICES "HKLM\\SYSTEM\\CurrentControlSet\\Services"
68 #define KEY_PRINTING "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print"
69 #define KEY_PRINTING_2K "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Print\\Printers"
70 #define KEY_PRINTING_PORTS "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Ports"
71 #define KEY_EVENTLOG "HKLM\\SYSTEM\\CurrentControlSet\\Services\\Eventlog"
72 #define KEY_SHARES "HKLM\\SYSTEM\\CurrentControlSet\\Services\\LanmanServer\\Shares"
73 #define KEY_TREE_ROOT ""
75 /* Registry data types */
79 #define REG_EXPAND_SZ 2
82 #define REG_DWORD_LE 4 /* DWORD, little endian */
83 #define REG_DWORD_BE 5 /* DWORD, big endian */
85 #define REG_MULTI_SZ 7
86 #define REG_RESOURCE_LIST 8
87 #define REG_FULL_RESOURCE_DESCRIPTOR 9
88 #define REG_RESOURCE_REQUIREMENTS_LIST 10
92 * Most keys are going to be GENERIC -- may need a better name?
93 * HKPD and HKPT are used by reg_perfcount.c
94 * they are special keys that contain performance data
96 #define REG_KEY_GENERIC 0
97 #define REG_KEY_HKPD 1
98 #define REG_KEY_HKPT 2
101 * container for function pointers to enumeration routines
102 * for virtual registry view
106 /* functions for enumerating subkeys and values */
107 int (*fetch_subkeys
)( const char *key
, REGSUBKEY_CTR
*subkeys
);
108 int (*fetch_values
) ( const char *key
, REGVAL_CTR
*val
);
109 BOOL (*store_subkeys
)( const char *key
, REGSUBKEY_CTR
*subkeys
);
110 BOOL (*store_values
)( const char *key
, REGVAL_CTR
*val
);
111 BOOL (*reg_access_check
)( const char *keyname
, uint32 requested
, uint32
*granted
, NT_USER_TOKEN
*token
);
115 const char *keyname
; /* full path to name of key */
116 REGISTRY_OPS
*ops
; /* registry function hooks */
120 /* structure to store the registry handles */
122 typedef struct _RegistryKey
{
124 char *name
; /* full name of registry key */
125 uint32 access_granted
;
130 * RPC REGISTRY STRUCTURES
133 /***********************************************/
146 /***********************************************/
157 /***********************************************/
172 /***********************************************/
190 /***********************************************/
204 /***********************************************/
211 REGVAL_BUFFER
*value
; /* value, in byte buffer */
219 REGVAL_BUFFER
*value
;
225 /***********************************************/
234 /* FIXME! collapse all this into one structure */
242 } REG_Q_CREATE_KEY_EX
;
248 } REG_R_CREATE_KEY_EX
;
250 /***********************************************/
261 /***********************************************/
266 } REG_Q_DELETE_VALUE
;
270 } REG_R_DELETE_VALUE
;
272 /***********************************************/
282 uint32 max_subkeylen
;
283 uint32 reserved
; /* 0x0000 0000 - according to MSDN (max_subkeysize?) */
285 uint32 max_valnamelen
;
286 uint32 max_valbufsize
;
287 uint32 sec_desc
; /* 0x0000 0078 */
288 NTTIME mod_time
; /* modified time */
293 /***********************************************/
305 /***********************************************/
314 WERROR status
; /* return status */
318 /***********************************************/
321 /* I have no idea if this is correct since I
322 have not seen the full structure on the wire
332 uint32 size
; /* size in bytes of security descriptor */
333 REG_SEC_DESC_BUF secdesc
;
334 uint8 inherit
; /* see MSDN for a description */
335 } SECURITY_ATTRIBUTE
;
340 SECURITY_ATTRIBUTE
*sec_attr
;
344 WERROR status
; /* return status */
348 /***********************************************/
351 POLICY_HND pol
; /* policy handle */
360 /***********************************************/
366 uint16 unknown_1
; /* 0x0414 */
368 uint32 unknown_2
; /* 0x0000 020A */
380 WERROR status
; /* return status */
384 /***********************************************/
387 POLICY_HND pol
; /* policy handle */
390 uint32 ptr_reserved
; /* pointer */
392 uint32 ptr_buf
; /* the next three fields follow if ptr_buf != 0 */
408 REGVAL_BUFFER
*value
; /* key value */
411 WERROR status
; /* return status */
415 /***********************************************/
420 uint32 unknown_0
; /* 32 bit unknown - 0x0000 0000 */
429 /***********************************************/
434 uint32 timeout
; /* in seconds */
435 uint8 force
; /* boolean: force shutdown */
436 uint8 reboot
; /* boolean: reboot on shutdown */
440 WERROR status
; /* return status */
443 /***********************************************/
448 uint32 timeout
; /* in seconds */
449 uint8 force
; /* boolean: force shutdown */
450 uint8 reboot
; /* boolean: reboot on shutdown */
451 uint32 reason
; /* reason - must be defined code */
458 /***********************************************/
462 } REG_Q_ABORT_SHUTDOWN
;
466 } REG_R_ABORT_SHUTDOWN
;
469 #endif /* _RPC_REG_H */