1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 |
|
---|
4 | interface functions for the sam database
|
---|
5 |
|
---|
6 | Copyright (C) Andrew Tridgell 2004
|
---|
7 |
|
---|
8 | This program is free software; you can redistribute it and/or modify
|
---|
9 | it under the terms of the GNU General Public License as published by
|
---|
10 | the Free Software Foundation; either version 3 of the License, or
|
---|
11 | (at your option) any later version.
|
---|
12 |
|
---|
13 | This program is distributed in the hope that it will be useful,
|
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | GNU General Public License for more details.
|
---|
17 |
|
---|
18 | You should have received a copy of the GNU General Public License
|
---|
19 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef __SAMDB_H__
|
---|
23 | #define __SAMDB_H__
|
---|
24 |
|
---|
25 | struct auth_session_info;
|
---|
26 | struct dsdb_control_current_partition;
|
---|
27 | struct dsdb_extended_replicated_object;
|
---|
28 | struct dsdb_extended_replicated_objects;
|
---|
29 | struct loadparm_context;
|
---|
30 | struct tevent_context;
|
---|
31 |
|
---|
32 | struct dsdb_trust_routing_table;
|
---|
33 |
|
---|
34 | #include "librpc/gen_ndr/security.h"
|
---|
35 | #include <ldb.h>
|
---|
36 | #include "lib/ldb-samba/ldif_handlers.h"
|
---|
37 | #include "librpc/gen_ndr/samr.h"
|
---|
38 | #include "librpc/gen_ndr/drsuapi.h"
|
---|
39 | #include "librpc/gen_ndr/drsblobs.h"
|
---|
40 | #include "dsdb/schema/schema.h"
|
---|
41 | #include "dsdb/samdb/samdb_proto.h"
|
---|
42 | #include "dsdb/common/dsdb_dn.h"
|
---|
43 | #include "dsdb/common/proto.h"
|
---|
44 | #include "../libds/common/flags.h"
|
---|
45 |
|
---|
46 | #define DSDB_CONTROL_CURRENT_PARTITION_OID "1.3.6.1.4.1.7165.4.3.2"
|
---|
47 | struct dsdb_control_current_partition {
|
---|
48 | /*
|
---|
49 | * this is the version of the dsdb_control_current_partition
|
---|
50 | * version 0: initial implementation
|
---|
51 | * version 1: got rid of backend and module fields
|
---|
52 | */
|
---|
53 | #define DSDB_CONTROL_CURRENT_PARTITION_VERSION 1
|
---|
54 | uint32_t version;
|
---|
55 | struct ldb_dn *dn;
|
---|
56 | };
|
---|
57 |
|
---|
58 |
|
---|
59 | /*
|
---|
60 | flags in dsdb_repl_flags to control replication logic
|
---|
61 | */
|
---|
62 | #define DSDB_REPL_FLAG_PRIORITISE_INCOMING 1
|
---|
63 | #define DSDB_REPL_FLAG_PARTIAL_REPLICA 2
|
---|
64 | #define DSDB_REPL_FLAG_ADD_NCNAME 4
|
---|
65 | #define DSDB_REPL_FLAG_EXPECT_NO_SECRETS 8
|
---|
66 |
|
---|
67 |
|
---|
68 | #define DSDB_CONTROL_REPLICATED_UPDATE_OID "1.3.6.1.4.1.7165.4.3.3"
|
---|
69 | struct dsdb_control_replicated_update {
|
---|
70 | uint32_t dsdb_repl_flags;
|
---|
71 | };
|
---|
72 |
|
---|
73 | #define DSDB_CONTROL_DN_STORAGE_FORMAT_OID "1.3.6.1.4.1.7165.4.3.4"
|
---|
74 | /* DSDB_CONTROL_DN_STORAGE_FORMAT_OID has NULL data and behaves very
|
---|
75 | * much like LDB_CONTROL_EXTENDED_DN_OID when the DB stores an
|
---|
76 | * extended DN, and otherwise returns normal DNs */
|
---|
77 |
|
---|
78 | #define DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID "1.3.6.1.4.1.7165.4.3.8"
|
---|
79 |
|
---|
80 | struct dsdb_control_password_change_status {
|
---|
81 | struct {
|
---|
82 | uint32_t pwdProperties;
|
---|
83 | uint32_t pwdHistoryLength;
|
---|
84 | int64_t maxPwdAge;
|
---|
85 | int64_t minPwdAge;
|
---|
86 | uint32_t minPwdLength;
|
---|
87 | bool store_cleartext;
|
---|
88 | const char *netbios_domain;
|
---|
89 | const char *dns_domain;
|
---|
90 | const char *realm;
|
---|
91 | } domain_data;
|
---|
92 | enum samPwdChangeReason reject_reason;
|
---|
93 | };
|
---|
94 |
|
---|
95 | #define DSDB_CONTROL_PASSWORD_HASH_VALUES_OID "1.3.6.1.4.1.7165.4.3.9"
|
---|
96 |
|
---|
97 | #define DSDB_CONTROL_PASSWORD_CHANGE_OID "1.3.6.1.4.1.7165.4.3.10"
|
---|
98 | struct dsdb_control_password_change {
|
---|
99 | const struct samr_Password *old_nt_pwd_hash;
|
---|
100 | const struct samr_Password *old_lm_pwd_hash;
|
---|
101 | };
|
---|
102 |
|
---|
103 | /**
|
---|
104 | DSDB_CONTROL_APPLY_LINKS is internal to Samba4 - a token passed between repl_meta_data and linked_attributes modules
|
---|
105 | */
|
---|
106 | #define DSDB_CONTROL_APPLY_LINKS "1.3.6.1.4.1.7165.4.3.11"
|
---|
107 |
|
---|
108 | /*
|
---|
109 | * this should only be used for importing users from Samba3
|
---|
110 | */
|
---|
111 | #define DSDB_CONTROL_BYPASS_PASSWORD_HASH_OID "1.3.6.1.4.1.7165.4.3.12"
|
---|
112 |
|
---|
113 | /**
|
---|
114 | OID used to allow the replacement of replPropertyMetaData.
|
---|
115 | It is used when the current replmetadata needs to be edited.
|
---|
116 | */
|
---|
117 | #define DSDB_CONTROL_CHANGEREPLMETADATA_OID "1.3.6.1.4.1.7165.4.3.14"
|
---|
118 |
|
---|
119 | /* passed when we want to get the behaviour of the non-global catalog port */
|
---|
120 | #define DSDB_CONTROL_NO_GLOBAL_CATALOG "1.3.6.1.4.1.7165.4.3.17"
|
---|
121 |
|
---|
122 | /* passed when we want special behaviour for partial replicas */
|
---|
123 | #define DSDB_CONTROL_PARTIAL_REPLICA "1.3.6.1.4.1.7165.4.3.18"
|
---|
124 |
|
---|
125 | /* passed when we want special behaviour for dbcheck */
|
---|
126 | #define DSDB_CONTROL_DBCHECK "1.3.6.1.4.1.7165.4.3.19"
|
---|
127 |
|
---|
128 | /* passed when dbcheck wants to modify a read only replica (very special case) */
|
---|
129 | #define DSDB_CONTROL_DBCHECK_MODIFY_RO_REPLICA "1.3.6.1.4.1.7165.4.3.19.1"
|
---|
130 |
|
---|
131 | /* passed when importing plain text password on upgrades */
|
---|
132 | #define DSDB_CONTROL_PASSWORD_BYPASS_LAST_SET_OID "1.3.6.1.4.1.7165.4.3.20"
|
---|
133 |
|
---|
134 | /*
|
---|
135 | * passed from the descriptor module in order to
|
---|
136 | * store the recalucated nTSecurityDescriptor without
|
---|
137 | * modifying the replPropertyMetaData.
|
---|
138 | */
|
---|
139 | #define DSDB_CONTROL_SEC_DESC_PROPAGATION_OID "1.3.6.1.4.1.7165.4.3.21"
|
---|
140 |
|
---|
141 | /*
|
---|
142 | * passed when creating a interdomain trust account through LSA
|
---|
143 | * to relax constraints in the samldb ldb module.
|
---|
144 | */
|
---|
145 | #define DSDB_CONTROL_PERMIT_INTERDOMAIN_TRUST_UAC_OID "1.3.6.1.4.1.7165.4.3.23"
|
---|
146 |
|
---|
147 | /*
|
---|
148 | * Internal control to mark requests as being part of Tombstone restoring
|
---|
149 | * procedure - it requires slightly special behavior like:
|
---|
150 | * - a bit different security checks
|
---|
151 | * - restoring certain attributes to their default values, etc
|
---|
152 | */
|
---|
153 | #define DSDB_CONTROL_RESTORE_TOMBSTONE_OID "1.3.6.1.4.1.7165.4.3.24"
|
---|
154 |
|
---|
155 | /**
|
---|
156 | OID used to allow the replacement of replPropertyMetaData.
|
---|
157 | It is used when the current replmetadata needs only to be re-sorted, but not edited.
|
---|
158 | */
|
---|
159 | #define DSDB_CONTROL_CHANGEREPLMETADATA_RESORT_OID "1.3.6.1.4.1.7165.4.3.25"
|
---|
160 |
|
---|
161 | #define DSDB_EXTENDED_REPLICATED_OBJECTS_OID "1.3.6.1.4.1.7165.4.4.1"
|
---|
162 | struct dsdb_extended_replicated_object {
|
---|
163 | struct ldb_message *msg;
|
---|
164 | struct ldb_val guid_value;
|
---|
165 | struct ldb_val parent_guid_value;
|
---|
166 | const char *when_changed;
|
---|
167 | struct replPropertyMetaDataBlob *meta_data;
|
---|
168 |
|
---|
169 | /* Only used for internal processing in repl_meta_data */
|
---|
170 | struct ldb_dn *last_known_parent;
|
---|
171 | };
|
---|
172 |
|
---|
173 | struct dsdb_extended_replicated_objects {
|
---|
174 | /*
|
---|
175 | * this is the version of the dsdb_extended_replicated_objects
|
---|
176 | * version 0: initial implementation
|
---|
177 | */
|
---|
178 | #define DSDB_EXTENDED_REPLICATED_OBJECTS_VERSION 2
|
---|
179 | uint32_t version;
|
---|
180 |
|
---|
181 | /* DSDB_REPL_FLAG_* flags */
|
---|
182 | uint32_t dsdb_repl_flags;
|
---|
183 |
|
---|
184 | struct ldb_dn *partition_dn;
|
---|
185 |
|
---|
186 | const struct repsFromTo1 *source_dsa;
|
---|
187 | const struct drsuapi_DsReplicaCursor2CtrEx *uptodateness_vector;
|
---|
188 |
|
---|
189 | uint32_t num_objects;
|
---|
190 | struct dsdb_extended_replicated_object *objects;
|
---|
191 |
|
---|
192 | uint32_t linked_attributes_count;
|
---|
193 | const struct drsuapi_DsReplicaLinkedAttribute *linked_attributes;
|
---|
194 | };
|
---|
195 |
|
---|
196 | #define DSDB_EXTENDED_CREATE_PARTITION_OID "1.3.6.1.4.1.7165.4.4.4"
|
---|
197 | struct dsdb_create_partition_exop {
|
---|
198 | struct ldb_dn *new_dn;
|
---|
199 | };
|
---|
200 |
|
---|
201 | /*
|
---|
202 | * the schema_dn is passed as struct ldb_dn in
|
---|
203 | * req->op.extended.data
|
---|
204 | */
|
---|
205 | #define DSDB_EXTENDED_SCHEMA_UPDATE_NOW_OID "1.3.6.1.4.1.7165.4.4.2"
|
---|
206 |
|
---|
207 | #define DSDB_EXTENDED_SCHEMA_UPGRADE_IN_PROGRESS_OID "1.3.6.1.4.1.7165.4.4.6"
|
---|
208 |
|
---|
209 | #define DSDB_OPENLDAP_DEREFERENCE_CONTROL "1.3.6.1.4.1.4203.666.5.16"
|
---|
210 |
|
---|
211 | struct dsdb_openldap_dereference {
|
---|
212 | const char *source_attribute;
|
---|
213 | const char **dereference_attribute;
|
---|
214 | };
|
---|
215 |
|
---|
216 | struct dsdb_openldap_dereference_control {
|
---|
217 | struct dsdb_openldap_dereference **dereference;
|
---|
218 | };
|
---|
219 |
|
---|
220 | struct dsdb_openldap_dereference_result {
|
---|
221 | const char *source_attribute;
|
---|
222 | const char *dereferenced_dn;
|
---|
223 | int num_attributes;
|
---|
224 | struct ldb_message_element *attributes;
|
---|
225 | };
|
---|
226 |
|
---|
227 | struct dsdb_openldap_dereference_result_control {
|
---|
228 | struct dsdb_openldap_dereference_result **attributes;
|
---|
229 | };
|
---|
230 |
|
---|
231 | struct samldb_msds_intid_persistant {
|
---|
232 | uint32_t msds_intid;
|
---|
233 | uint64_t usn;
|
---|
234 | };
|
---|
235 |
|
---|
236 | #define SAMLDB_MSDS_INTID_OPAQUE "SAMLDB_MSDS_INTID_OPAQUE"
|
---|
237 |
|
---|
238 | #define DSDB_PARTITION_DN "@PARTITION"
|
---|
239 | #define DSDB_PARTITION_ATTR "partition"
|
---|
240 |
|
---|
241 | #define DSDB_EXTENDED_DN_STORE_FORMAT_OPAQUE_NAME "dsdb_extended_dn_store_format"
|
---|
242 | struct dsdb_extended_dn_store_format {
|
---|
243 | bool store_extended_dn_in_ldb;
|
---|
244 | };
|
---|
245 |
|
---|
246 | #define DSDB_OPAQUE_LAST_SCHEMA_UPDATE_MSG_OPAQUE_NAME "DSDB_OPAQUE_LAST_SCHEMA_UPDATE"
|
---|
247 | #define DSDB_OPAQUE_PARTITION_MODULE_MSG_OPAQUE_NAME "DSDB_OPAQUE_PARTITION_MODULE_MSG"
|
---|
248 |
|
---|
249 | /* this takes a struct dsdb_fsmo_extended_op */
|
---|
250 | #define DSDB_EXTENDED_ALLOCATE_RID_POOL "1.3.6.1.4.1.7165.4.4.5"
|
---|
251 |
|
---|
252 | struct dsdb_fsmo_extended_op {
|
---|
253 | uint64_t fsmo_info;
|
---|
254 | struct GUID destination_dsa_guid;
|
---|
255 | };
|
---|
256 |
|
---|
257 | /*
|
---|
258 | * passed from the descriptor module in order to
|
---|
259 | * store the recalucated nTSecurityDescriptor without
|
---|
260 | * modifying the replPropertyMetaData.
|
---|
261 | */
|
---|
262 | #define DSDB_EXTENDED_SEC_DESC_PROPAGATION_OID "1.3.6.1.4.1.7165.4.4.7"
|
---|
263 | struct dsdb_extended_sec_desc_propagation_op {
|
---|
264 | struct ldb_dn *nc_root;
|
---|
265 | struct ldb_dn *dn;
|
---|
266 | bool include_self;
|
---|
267 | };
|
---|
268 |
|
---|
269 | #define DSDB_ACL_CHECKS_DIRSYNC_FLAG 0x1
|
---|
270 | #define DSDB_SAMDB_MINIMUM_ALLOWED_RID 1000
|
---|
271 |
|
---|
272 | #define DSDB_METADATA_SCHEMA_SEQ_NUM "SCHEMA_SEQ_NUM"
|
---|
273 | #endif /* __SAMDB_H__ */
|
---|