blob: e872a6088e9752a9c447f30ef84c2da8ead2ea60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
Unix SMB/CIFS mplementation.
DSDB schema header
Copyright (C) Stefan Metzmacher 2006
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _DSDB_SCHEMA_H
#define _DSDB_SCHEMA_H
struct dsdb_attribute {
struct dsdb_attribute *prev, *next;
const char *cn;
const char *lDAPDisplayName;
const char *attributeID_oid;
uint32_t attributeID_id;
struct GUID schemaIDGUID;
uint32_t mAPIID;
struct GUID attributeSecurityGUID;
uint32_t searchFlags;
uint32_t systemFlags;
BOOL isMemberOfPartialAttributeSet;
uint32_t linkID;
const char *attributeSyntax_oid;
uint32_t attributeSyntax_id;
uint32_t oMSyntax;
struct ldb_val oMObjectClass;
BOOL isSingleValued;
uint32_t rangeLower;
uint32_t rangeUpper;
BOOL extendedCharsAllowed;
uint32_t schemaFlagsEx;
struct ldb_val msDs_Schema_Extensions;
BOOL showInAdvancedViewOnly;
const char *adminDisplayName;
const char *adminDescription;
const char *classDisplayName;
BOOL isEphemeral;
BOOL isDefunct;
BOOL systemOnly;
};
struct dsdb_class {
struct dsdb_class *prev, *next;
const char *cn;
const char *lDAPDisplayName;
const char *governsID_oid;
uint32_t governsID_id;
struct GUID schemaIDGUID;
uint32_t objectClassCategory;
const char *rDNAttID;
const char *defaultObjectCategory;
const char *subClassOf;
const char *systemAuxiliaryClass;
const char **systemPossSuperiors;
const char **systemMustContain;
const char **systemMayContain;
const char *auxiliaryClass;
const char **possSuperiors;
const char **mustContain;
const char **mayContain;
const char *defaultSecurityDescriptor;
uint32_t schemaFlagsEx;
struct ldb_val msDs_Schema_Extensions;
BOOL showInAdvancedViewOnly;
const char *adminDisplayName;
const char *adminDescription;
const char *classDisplayName;
BOOL defaultHidingValue;
BOOL isDefunct;
BOOL systemOnly;
};
struct dsdb_schema {
struct dsdb_attribute *attributes;
struct dsdb_class *classes;
};
#endif /* _DSDB_SCHEMA_H */
|