Convert some more files to GPLv3.
[jelmer/samba4-debian.git] / source / dsdb / samdb / samdb.h
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
31 #include "librpc/gen_ndr/security.h"
32 #include "lib/ldb/include/ldb.h"
33 #include "librpc/gen_ndr/samr.h"
34 #include "librpc/gen_ndr/drsuapi.h"
35 #include "librpc/gen_ndr/drsblobs.h"
36 #include "dsdb/schema/schema.h"
37 #include "dsdb/samdb/samdb_proto.h"
38 #include "dsdb/common/proto.h"
39
40 #define DSDB_CONTROL_CURRENT_PARTITION_OID "1.3.6.1.4.1.7165.4.3.2"
41 struct dsdb_control_current_partition {
42         /* 
43          * this is the version of the dsdb_control_current_partition
44          * version 0: initial implementation
45          */
46 #define DSDB_CONTROL_CURRENT_PARTITION_VERSION 0
47         uint32_t version;
48
49         struct ldb_dn *dn;
50
51         const char *backend;
52
53         struct ldb_module *module;
54 };
55
56 #define DSDB_EXTENDED_REPLICATED_OBJECTS_OID "1.3.6.1.4.1.7165.4.4.1"
57 struct dsdb_extended_replicated_object {
58         struct ldb_message *msg;
59         struct ldb_val guid_value;
60         const char *when_changed;
61         struct replPropertyMetaDataBlob *meta_data;
62 };
63
64 struct dsdb_extended_replicated_objects {
65         /* 
66          * this is the version of the dsdb_extended_replicated_objects
67          * version 0: initial implementation
68          */
69 #define DSDB_EXTENDED_REPLICATED_OBJECTS_VERSION 0
70         uint32_t version;
71
72         struct ldb_dn *partition_dn;
73
74         const struct repsFromTo1 *source_dsa;
75         const struct drsuapi_DsReplicaCursor2CtrEx *uptodateness_vector;
76
77         uint32_t num_objects;
78         struct dsdb_extended_replicated_object *objects;
79 };
80
81 struct dsdb_schema_fsmo {
82         bool we_are_master;
83         struct ldb_dn *master_dn;
84 };
85
86 struct dsdb_naming_fsmo {
87         bool we_are_master;
88         struct ldb_dn *master_dn;
89 };
90
91 struct dsdb_pdc_fsmo {
92         bool we_are_master;
93         struct ldb_dn *master_dn;
94 };
95
96 #endif /* __SAMDB_H__ */