dsdb: Ensure to sort replPropertyMetaData as UNSIGNED, not SIGNED quantities
[Samba.git] / source4 / dsdb / samdb / ldb_modules / partition.h
blobea05e9404d5e7ea58523b2f5f45ad7dfbbe34509
1 /*
2 Partitions ldb module
4 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006
5 Copyright (C) Stefan Metzmacher <metze@samba.org> 2007
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.
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.
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/>.
20 #include "includes.h"
21 #include <ldb.h>
22 #include <ldb_errors.h>
23 #include <ldb_module.h>
24 #include "lib/tdb_wrap/tdb_wrap.h"
25 #include "dsdb/samdb/samdb.h"
26 #include "dsdb/samdb/ldb_modules/util.h"
27 #include "system/locale.h"
28 #include "param/param.h"
30 struct dsdb_partition {
31 struct ldb_module *module;
32 struct dsdb_control_current_partition *ctrl;
33 const char *backend_url;
34 DATA_BLOB orig_record;
35 bool partial_replica; /* a GC partition */
38 struct partition_module {
39 const char **modules;
40 struct ldb_dn *dn;
43 struct partition_metadata {
44 struct tdb_wrap *db;
45 int in_transaction;
48 struct partition_private_data {
49 struct dsdb_partition **partitions;
50 struct ldb_dn **replicate;
51 struct partition_metadata *metadata;
53 struct partition_module **modules;
54 const char *ldapBackend;
56 uint64_t metadata_seq;
57 uint32_t in_transaction;
59 struct ldb_message *forced_module_msg;
62 #include "dsdb/samdb/ldb_modules/partition_proto.h"