7a5d82cee9b324e9eb50b816edcf2d38477950ac
[samba.git] / source3 / include / reg_objects.h
1 /* 
2    Samba's Internal Registry objects
3    
4    SMB parameters and setup
5    Copyright (C) Gerald Carter                   2002-2006.
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef _REG_OBJECTS_H /* _REG_OBJECTS_H */
22 #define _REG_OBJECTS_H
23
24 /* structure to contain registry values */
25
26 typedef struct {
27         fstring         valuename;
28         uint16          type;
29         /* this should be encapsulated in an RPC_DATA_BLOB */
30         uint32          size;   /* in bytes */
31         uint8           *data_p;
32 } REGISTRY_VALUE;
33
34 /*
35  * A REG_SZ string is not necessarily NULL terminated. When retrieving it from
36  * the net, we guarantee this however. A server might want to push it without
37  * the terminator though.
38  */
39
40 struct registry_string {
41         size_t len;
42         char *str;
43 };
44
45 struct registry_value {
46         enum winreg_Type type;
47         union {
48                 uint32 dword;
49                 uint64 qword;
50                 struct registry_string sz;
51                 struct {
52                         uint32 num_strings;
53                         char **strings;
54                 } multi_sz;
55                 DATA_BLOB binary;
56         } v;
57 };
58
59 /* container for registry values */
60
61 typedef struct {
62         uint32          num_values;
63         REGISTRY_VALUE  **values;
64 } REGVAL_CTR;
65
66 /* container for registry subkey names */
67
68 typedef struct {
69         uint32          num_subkeys;
70         char            **subkeys;
71 } REGSUBKEY_CTR;
72
73 /*
74  *
75  * Macros that used to reside in rpc_reg.h
76  *
77  */
78  
79 #define HKEY_CLASSES_ROOT       0x80000000
80 #define HKEY_CURRENT_USER       0x80000001
81 #define HKEY_LOCAL_MACHINE      0x80000002
82 #define HKEY_USERS              0x80000003
83 #define HKEY_PERFORMANCE_DATA   0x80000004
84
85 #define KEY_HKLM                "HKLM"
86 #define KEY_HKU                 "HKU"
87 #define KEY_HKCC                "HKCC"
88 #define KEY_HKCR                "HKCR"
89 #define KEY_HKPD                "HKPD"
90 #define KEY_HKPT                "HKPT"
91 #define KEY_HKPN                "HKPN"
92 #define KEY_HKCU                "HKCU"
93 #define KEY_HKDD                "HKDD"
94 #define KEY_SERVICES            "HKLM\\SYSTEM\\CurrentControlSet\\Services"
95 #define KEY_PRINTING            "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print"
96 #define KEY_PRINTING_2K         "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Print\\Printers"
97 #define KEY_PRINTING_PORTS      "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Ports"
98 #define KEY_EVENTLOG            "HKLM\\SYSTEM\\CurrentControlSet\\Services\\Eventlog"
99 #define KEY_SHARES              "HKLM\\SYSTEM\\CurrentControlSet\\Services\\LanmanServer\\Shares"
100 #define KEY_SMBCONF             "HKLM\\SOFTWARE\\Samba\\smbconf"
101 #define KEY_TREE_ROOT           ""
102
103 /*
104  * Registry key types
105  *      Most keys are going to be GENERIC -- may need a better name?
106  *      HKPD and HKPT are used by reg_perfcount.c
107  *              they are special keys that contain performance data
108  */
109 #define REG_KEY_GENERIC         0
110 #define REG_KEY_HKPD            1
111 #define REG_KEY_HKPT            2
112
113 /* 
114  * container for function pointers to enumeration routines
115  * for virtual registry view 
116  */ 
117  
118 typedef struct {
119         /* functions for enumerating subkeys and values */      
120         int     (*fetch_subkeys)( const char *key, REGSUBKEY_CTR *subkeys);
121         int     (*fetch_values) ( const char *key, REGVAL_CTR *val );
122         BOOL    (*store_subkeys)( const char *key, REGSUBKEY_CTR *subkeys );
123         BOOL    (*store_values)( const char *key, REGVAL_CTR *val );
124         BOOL    (*reg_access_check)( const char *keyname, uint32 requested,
125                                      uint32 *granted,
126                                      const NT_USER_TOKEN *token );
127         WERROR (*get_secdesc)(TALLOC_CTX *mem_ctx, const char *key,
128                               struct security_descriptor **psecdesc);
129         WERROR (*set_secdesc)(const char *key,
130                               struct security_descriptor *sec_desc);
131 } REGISTRY_OPS;
132
133 typedef struct {
134         const char      *keyname;       /* full path to name of key */
135         REGISTRY_OPS    *ops;           /* registry function hooks */
136 } REGISTRY_HOOK;
137
138
139 /* structure to store the registry handles */
140
141 typedef struct _RegistryKey {
142         uint32          type;
143         char            *name;          /* full name of registry key */
144         uint32          access_granted;
145         REGISTRY_HOOK   *hook;  
146 } REGISTRY_KEY;
147
148 struct registry_key {
149         REGISTRY_KEY *key;
150         REGSUBKEY_CTR *subkeys;
151         REGVAL_CTR *values;
152         struct nt_user_token *token;
153 };
154
155 #endif /* _REG_OBJECTS_H */