s3:registry: extract the reg_util_legacy prototypes into their own header.
[nivanova/samba-autobuild/.git] / source3 / include / registry.h
1 #ifndef _REGISTRY_H
2 #define _REGISTRY_H
3
4 #include "reg_objects.h"
5
6 /* The following definitions come from registry/reg_api.c  */
7
8 WERROR reg_openhive(TALLOC_CTX *mem_ctx, const char *hive,
9                     uint32 desired_access,
10                     const struct nt_user_token *token,
11                     struct registry_key **pkey);
12 WERROR reg_openkey(TALLOC_CTX *mem_ctx, struct registry_key *parent,
13                    const char *name, uint32 desired_access,
14                    struct registry_key **pkey);
15 WERROR reg_enumkey(TALLOC_CTX *mem_ctx, struct registry_key *key,
16                    uint32 idx, char **name, NTTIME *last_write_time);
17 WERROR reg_enumvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
18                      uint32 idx, char **pname, struct registry_value **pval);
19 WERROR reg_queryvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
20                       const char *name, struct registry_value **pval);
21 WERROR reg_queryinfokey(struct registry_key *key, uint32_t *num_subkeys,
22                         uint32_t *max_subkeylen, uint32_t *max_subkeysize,
23                         uint32_t *num_values, uint32_t *max_valnamelen,
24                         uint32_t *max_valbufsize, uint32_t *secdescsize,
25                         NTTIME *last_changed_time);
26 WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent,
27                      const char *subkeypath, uint32 desired_access,
28                      struct registry_key **pkey,
29                      enum winreg_CreateAction *paction);
30 WERROR reg_deletekey(struct registry_key *parent, const char *path);
31 WERROR reg_setvalue(struct registry_key *key, const char *name,
32                     const struct registry_value *val);
33 WERROR reg_deletevalue(struct registry_key *key, const char *name);
34 WERROR reg_getkeysecurity(TALLOC_CTX *mem_ctx, struct registry_key *key,
35                           struct security_descriptor **psecdesc);
36 WERROR reg_setkeysecurity(struct registry_key *key,
37                           struct security_descriptor *psecdesc);
38 WERROR reg_getversion(uint32_t *version);
39 WERROR reg_restorekey(struct registry_key *key, const char *fname);
40 WERROR reg_savekey(struct registry_key *key, const char *fname);
41 WERROR reg_deleteallvalues(struct registry_key *key);
42 WERROR reg_open_path(TALLOC_CTX *mem_ctx, const char *orig_path,
43                      uint32 desired_access, const struct nt_user_token *token,
44                      struct registry_key **pkey);
45 WERROR reg_deletekey_recursive(TALLOC_CTX *ctx,
46                                struct registry_key *parent,
47                                const char *path);
48 WERROR reg_deletesubkeys_recursive(TALLOC_CTX *ctx,
49                                    struct registry_key *parent,
50                                    const char *path);
51 WERROR reg_create_path(TALLOC_CTX *mem_ctx, const char *orig_path,
52                        uint32 desired_access,
53                        const struct nt_user_token *token,
54                        enum winreg_CreateAction *paction,
55                        struct registry_key **pkey);
56 WERROR reg_delete_path(const struct nt_user_token *token,
57                        const char *orig_path);
58
59 /* The following definitions come from registry/reg_backend_current_version.c  */
60
61
62 /* The following definitions come from registry/reg_backend_db.c  */
63
64 WERROR init_registry_key(const char *add_path);
65 WERROR init_registry_data(void);
66 WERROR regdb_init(void);
67 WERROR regdb_open( void );
68 int regdb_close( void );
69 WERROR regdb_transaction_start(void);
70 WERROR regdb_transaction_commit(void);
71 WERROR regdb_transaction_cancel(void);
72 int regdb_get_seqnum(void);
73 bool regdb_store_keys(const char *key, struct regsubkey_ctr *ctr);
74 int regdb_fetch_keys(const char *key, struct regsubkey_ctr *ctr);
75 int regdb_fetch_values(const char* key, struct regval_ctr *values);
76 bool regdb_store_values(const char *key, struct regval_ctr *values);
77 bool regdb_subkeys_need_update(struct regsubkey_ctr *subkeys);
78 bool regdb_values_need_update(struct regval_ctr *values);
79
80 /* The following definitions come from registry/reg_backend_hkpt_params.c  */
81
82
83 /* The following definitions come from registry/reg_backend_netlogon_params.c  */
84
85
86 /* The following definitions come from registry/reg_backend_perflib.c  */
87
88
89 /* The following definitions come from registry/reg_backend_printing.c  */
90
91
92 /* The following definitions come from registry/reg_backend_prod_options.c  */
93
94
95 /* The following definitions come from registry/reg_backend_shares.c  */
96
97
98 /* The following definitions come from registry/reg_backend_smbconf.c  */
99
100
101 /* The following definitions come from registry/reg_backend_tcpip_params.c  */
102
103 /* The following definitions come from registry/reg_dispatcher.c  */
104
105 bool store_reg_keys(struct registry_key_handle *key,
106                     struct regsubkey_ctr *subkeys);
107 bool store_reg_values(struct registry_key_handle *key, struct regval_ctr *val);
108 WERROR create_reg_subkey(struct registry_key_handle *key, const char *subkey);
109 WERROR delete_reg_subkey(struct registry_key_handle *key, const char *subkey);
110 int fetch_reg_keys(struct registry_key_handle *key,
111                    struct regsubkey_ctr *subkey_ctr);
112 int fetch_reg_values(struct registry_key_handle *key, struct regval_ctr *val);
113 bool regkey_access_check(struct registry_key_handle *key, uint32 requested,
114                          uint32 *granted,
115                          const struct nt_user_token *token);
116 WERROR regkey_get_secdesc(TALLOC_CTX *mem_ctx, struct registry_key_handle *key,
117                           struct security_descriptor **psecdesc);
118 WERROR regkey_set_secdesc(struct registry_key_handle *key,
119                           struct security_descriptor *psecdesc);
120 bool reg_subkeys_need_update(struct registry_key_handle *key,
121                              struct regsubkey_ctr *subkeys);
122 bool reg_values_need_update(struct registry_key_handle *key,
123                             struct regval_ctr *values);
124
125 /* The following definitions come from registry/reg_eventlog.c  */
126
127 bool eventlog_init_keys(void);
128 bool eventlog_add_source( const char *eventlog, const char *sourcename,
129                           const char *messagefile );
130
131 /* The following definitions come from registry/reg_init_basic.c  */
132
133 WERROR registry_init_common(void);
134 WERROR registry_init_basic(void);
135
136 /* The following definitions come from registry/reg_init_full.c  */
137
138 WERROR registry_init_full(void);
139
140 /* The following definitions come from registry/reg_init_smbconf.c  */
141
142 NTSTATUS registry_create_admin_token(TALLOC_CTX *mem_ctx,
143                                      NT_USER_TOKEN **ptoken);
144 WERROR registry_init_smbconf(const char *keyname);
145
146 /* The following definitions come from registry/reg_perfcount.c  */
147
148 void perfcount_init_keys( void );
149 uint32 reg_perfcount_get_base_index(void);
150 uint32 reg_perfcount_get_last_counter(uint32 base_index);
151 uint32 reg_perfcount_get_last_help(uint32 last_counter);
152 uint32 reg_perfcount_get_counter_help(uint32 base_index, char **retbuf);
153 uint32 reg_perfcount_get_counter_names(uint32 base_index, char **retbuf);
154 WERROR reg_perfcount_get_hkpd(prs_struct *ps, uint32 max_buf_size, uint32 *outbuf_len, const char *object_ids);
155
156 /* The following definitions come from registry/reg_util.c  */
157
158 bool reg_split_path(char *path, char **base, char **new_path);
159 bool reg_split_key(char *path, char **base, char **key);
160 char *normalize_reg_path(TALLOC_CTX *ctx, const char *keyname );
161 void normalize_dbkey(char *key);
162 char *reg_remaining_path(TALLOC_CTX *ctx, const char *key);
163
164 /* The following definitions come from registry/regfio.c  */
165
166 /* The following definitions come from lib/util_reg_api.c  */
167
168 WERROR registry_pull_value(TALLOC_CTX *mem_ctx,
169                            struct registry_value **pvalue,
170                            enum winreg_Type type, uint8 *data,
171                            uint32 size, uint32 length);
172 WERROR registry_push_value(TALLOC_CTX *mem_ctx,
173                            const struct registry_value *value,
174                            DATA_BLOB *presult);
175
176 #endif /* _REGISTRY_H */