2 Unix SMB/CIFS implementation.
3 Samba utility functions
5 Copyright (C) Andrew Tridgell 2009
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
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.
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.
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/>.
23 #include "dsdb/samdb/samdb.h"
24 #include "lib/ldb/include/ldb_module.h"
26 enum dsdb_dn_format
dsdb_dn_oid_to_format(const char *oid
)
28 if (strcmp(oid
, LDB_SYNTAX_DN
) == 0) {
29 return DSDB_NORMAL_DN
;
30 } else if (strcmp(oid
, DSDB_SYNTAX_BINARY_DN
) == 0) {
31 return DSDB_BINARY_DN
;
32 } else if (strcmp(oid
, DSDB_SYNTAX_STRING_DN
) == 0) {
33 return DSDB_STRING_DN
;
35 return DSDB_INVALID_DN
;
39 static struct dsdb_dn
*dsdb_dn_construct_internal(TALLOC_CTX
*mem_ctx
,
42 enum dsdb_dn_format dn_format
,
45 struct dsdb_dn
*dsdb_dn
= talloc(mem_ctx
, struct dsdb_dn
);
49 dsdb_dn
->dn
= talloc_steal(dsdb_dn
, dn
);
50 dsdb_dn
->extra_part
= extra_part
;
51 dsdb_dn
->dn_format
= dn_format
;
52 /* Look to see if this attributeSyntax is a DN */
53 if (dsdb_dn
->dn_format
== DSDB_INVALID_DN
) {
59 talloc_steal(dsdb_dn
, extra_part
.data
);
63 struct dsdb_dn
*dsdb_dn_construct(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
, DATA_BLOB extra_part
,
66 return dsdb_dn_construct_internal(mem_ctx
, dn
, extra_part
, dsdb_dn_oid_to_format(oid
), oid
);
69 struct dsdb_dn
*dsdb_dn_parse(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
,
70 const struct ldb_val
*dn_blob
, const char *dn_oid
)
72 struct dsdb_dn
*dsdb_dn
;
84 enum dsdb_dn_format dn_format
= dsdb_dn_oid_to_format(dn_oid
);
90 dn
= ldb_dn_from_ldb_val(mem_ctx
, ldb
, dn_blob
);
91 if (!dn
|| !ldb_dn_validate(dn
)) {
95 return dsdb_dn_construct_internal(mem_ctx
, dn
, data_blob_null
, dn_format
, dn_oid
);
98 if (dn_blob
->length
< 2 || dn_blob
->data
[0] != 'B' || dn_blob
->data
[1] != ':') {
103 if (dn_blob
->length
< 2 || dn_blob
->data
[0] != 'S' || dn_blob
->data
[1] != ':') {
111 if (dn_blob
&& dn_blob
->data
112 && (strlen((const char*)dn_blob
->data
) != dn_blob
->length
)) {
113 /* The RDN must not contain a character with value 0x0 */
117 if (!dn_blob
->data
|| dn_blob
->length
== 0) {
121 tmp_ctx
= talloc_new(mem_ctx
);
122 if (tmp_ctx
== NULL
) {
126 data
= (const char *)dn_blob
->data
;
128 len
= dn_blob
->length
- 2;
129 p1
= talloc_strndup(tmp_ctx
, (const char *)dn_blob
->data
+ 2, len
);
135 blen
= strtoul(p1
, &p2
, 10);
137 DEBUG(10, (__location__
": failed\n"));
141 DEBUG(10, (__location__
": failed\n"));
145 DEBUG(10, (__location__
": failed\n"));
148 len
-= PTR_DIFF(p2
,p1
);//???
152 if ((blen
% 2 != 0)) {
153 DEBUG(10, (__location__
": blen=%u - not an even number\n", (unsigned)blen
));
158 DEBUG(10, (__location__
": blen=%u len=%u\n", (unsigned)blen
, (unsigned)len
));
164 DEBUG(10, (__location__
": %s", p2
));
173 bval
.length
= (blen
/2)+1;
174 bval
.data
= talloc_size(tmp_ctx
, bval
.length
);
175 if (bval
.data
== NULL
) {
176 DEBUG(10, (__location__
": err\n"));
179 bval
.data
[bval
.length
-1] = 0;
181 bval
.length
= strhex_to_str((char *)bval
.data
, bval
.length
,
183 if (bval
.length
!= (blen
/ 2)) {
184 DEBUG(10, (__location__
": non hexidecimal characters found in binary prefix\n"));
188 bval
= data_blob_null
;
193 bval
= data_blob(p1
, blen
);
201 dval
.data
= (uint8_t *)dn_str
;
202 dval
.length
= strlen(dn_str
);
204 dn
= ldb_dn_from_ldb_val(tmp_ctx
, ldb
, &dval
);
205 if (!dn
|| !ldb_dn_validate(dn
)) {
206 DEBUG(10, (__location__
": err\n"));
210 dsdb_dn
= dsdb_dn_construct(mem_ctx
, dn
, bval
, dn_oid
);
215 talloc_free(tmp_ctx
);
220 static char *dsdb_dn_get_with_postfix(TALLOC_CTX
*mem_ctx
,
221 struct dsdb_dn
*dsdb_dn
,
228 switch (dsdb_dn
->dn_format
) {
231 return talloc_strdup(mem_ctx
, postfix
);
235 char *hexstr
= data_blob_hex_string_upper(mem_ctx
, &dsdb_dn
->extra_part
);
237 char *p
= talloc_asprintf(mem_ctx
, "B:%u:%s:%s", (unsigned)(dsdb_dn
->extra_part
.length
*2), hexstr
,
244 return talloc_asprintf(mem_ctx
, "S:%u:%*.*s:%s",
245 (unsigned)(dsdb_dn
->extra_part
.length
),
246 (int)(dsdb_dn
->extra_part
.length
),
247 (int)(dsdb_dn
->extra_part
.length
),
248 (const char *)dsdb_dn
->extra_part
.data
,
256 char *dsdb_dn_get_linearized(TALLOC_CTX
*mem_ctx
,
257 struct dsdb_dn
*dsdb_dn
)
259 const char *postfix
= ldb_dn_get_linearized(dsdb_dn
->dn
);
260 return dsdb_dn_get_with_postfix(mem_ctx
, dsdb_dn
, postfix
);
263 char *dsdb_dn_get_casefold(TALLOC_CTX
*mem_ctx
,
264 struct dsdb_dn
*dsdb_dn
)
266 const char *postfix
= ldb_dn_get_casefold(dsdb_dn
->dn
);
267 return dsdb_dn_get_with_postfix(mem_ctx
, dsdb_dn
, postfix
);
270 char *dsdb_dn_get_extended_linearized(TALLOC_CTX
*mem_ctx
,
271 struct dsdb_dn
*dsdb_dn
,
274 char *postfix
= ldb_dn_get_extended_linearized(mem_ctx
, dsdb_dn
->dn
, mode
);
275 char *ret
= dsdb_dn_get_with_postfix(mem_ctx
, dsdb_dn
, postfix
);
276 talloc_free(postfix
);
280 int dsdb_dn_binary_canonicalise(struct ldb_context
*ldb
, void *mem_ctx
,
281 const struct ldb_val
*in
, struct ldb_val
*out
)
283 struct dsdb_dn
*dsdb_dn
= dsdb_dn_parse(mem_ctx
, ldb
, in
, DSDB_SYNTAX_BINARY_DN
);
288 *out
= data_blob_string_const(dsdb_dn_get_casefold(mem_ctx
, dsdb_dn
));
289 talloc_free(dsdb_dn
);
296 int dsdb_dn_binary_comparison(struct ldb_context
*ldb
, void *mem_ctx
,
297 const struct ldb_val
*v1
,
298 const struct ldb_val
*v2
)
300 return ldb_any_comparison(ldb
, mem_ctx
, dsdb_dn_binary_canonicalise
, v1
, v2
);
303 int dsdb_dn_string_canonicalise(struct ldb_context
*ldb
, void *mem_ctx
,
304 const struct ldb_val
*in
, struct ldb_val
*out
)
306 struct dsdb_dn
*dsdb_dn
= dsdb_dn_parse(mem_ctx
, ldb
, in
, DSDB_SYNTAX_STRING_DN
);
311 *out
= data_blob_string_const(dsdb_dn_get_casefold(mem_ctx
, dsdb_dn
));
312 talloc_free(dsdb_dn
);
319 int dsdb_dn_string_comparison(struct ldb_context
*ldb
, void *mem_ctx
,
320 const struct ldb_val
*v1
,
321 const struct ldb_val
*v2
)
323 return ldb_any_comparison(ldb
, mem_ctx
, dsdb_dn_string_canonicalise
, v1
, v2
);