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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
/* $OpenBSD: validate.c,v 1.1 2010/05/31 17:36:31 martinh Exp $ */
/*
* Copyright (c) 2010 Martin Hedenfalk <martin@bzero.se>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <stdlib.h>
#include <string.h>
#include "ldapd.h"
#define OBJ_NAME(obj) ((obj)->names ? SLIST_FIRST((obj)->names)->name : \
(obj)->oid)
#define ATTR_NAME(at) OBJ_NAME(at)
static int
validate_required_attributes(struct ber_element *entry, struct object *obj)
{
struct attr_ptr *ap;
struct attr_type *at;
log_debug("validating required attributes for object %s",
OBJ_NAME(obj));
if (obj->must == NULL)
return LDAP_SUCCESS;
SLIST_FOREACH(ap, obj->must, next) {
at = ap->attr_type;
if (ldap_find_attribute(entry, at) == NULL) {
log_debug("missing required attribute %s",
ATTR_NAME(at));
return LDAP_OBJECT_CLASS_VIOLATION;
}
}
return LDAP_SUCCESS;
}
static int
validate_attribute(struct attr_type *at, struct ber_element *vals)
{
int nvals = 0;
struct ber_element *elm;
if (vals == NULL) {
log_debug("missing values");
return LDAP_OTHER;
}
if (vals->be_type != BER_TYPE_SET) {
log_debug("values should be a set");
return LDAP_OTHER;
}
for (elm = vals->be_sub; elm != NULL; elm = elm->be_next) {
if (elm->be_type != BER_TYPE_OCTETSTRING) {
log_debug("attribute value not an octet-string");
return LDAP_PROTOCOL_ERROR;
}
if (++nvals > 1 && at->single) {
log_debug("multiple values for single-valued"
" attribute %s", ATTR_NAME(at));
return LDAP_CONSTRAINT_VIOLATION;
}
}
/* There must be at least one value in an attribute. */
if (nvals == 0) {
log_debug("missing value in attribute %s", ATTR_NAME(at));
return LDAP_CONSTRAINT_VIOLATION;
}
return LDAP_SUCCESS;
}
static const char *
attribute_equality(struct attr_type *at)
{
if (at == NULL)
return NULL;
if (at->equality != NULL)
return at->equality;
return attribute_equality(at->sup);
}
/* FIXME: doesn't handle escaped characters.
*/
static int
validate_dn(const char *dn, struct ber_element *entry)
{
char *copy;
char *sup_dn, *na, *dv, *p;
struct namespace *ns;
struct attr_type *at;
struct ber_element *vals;
if ((copy = strdup(dn)) == NULL)
return LDAP_OTHER;
sup_dn = strchr(copy, ',');
if (sup_dn++ == NULL)
sup_dn = strrchr(copy, '\0');
/* Validate naming attributes and distinguished values in the RDN.
*/
p = copy;
for (;p < sup_dn;) {
na = p;
p = na + strcspn(na, "=");
if (p == na || p >= sup_dn) {
free(copy);
return LDAP_INVALID_DN_SYNTAX;
}
*p = '\0';
dv = p + 1;
p = dv + strcspn(dv, "+,");
if (p == dv) {
free(copy);
return LDAP_INVALID_DN_SYNTAX;
}
*p++ = '\0';
log_debug("got naming attribute %s", na);
log_debug("got distinguished value %s", dv);
if ((at = lookup_attribute(na)) == NULL) {
log_debug("attribute %s not defined in schema", na);
goto fail;
}
if (at->usage != USAGE_USER_APP) {
log_debug("naming attribute %s is operational", na);
goto fail;
}
if (at->collective) {
log_debug("naming attribute %s is collective", na);
goto fail;
}
if (at->obsolete) {
log_debug("naming attribute %s is obsolete", na);
goto fail;
}
if (attribute_equality(at) == NULL) {
log_debug("naming attribute %s doesn't define equality",
na);
goto fail;
}
if ((vals = ldap_find_attribute(entry, at)) == NULL) {
log_debug("missing distinguished value for %s", na);
goto fail;
}
if (ldap_find_value(vals->be_next, dv) == NULL) {
log_debug("missing distinguished value %s"
" in naming attribute %s", dv, na);
goto fail;
}
}
/* Check that the RDN immediate superior exists, or it is a
* top-level namespace.
*/
if (*sup_dn != '\0') {
TAILQ_FOREACH(ns, &conf->namespaces, next) {
if (strcmp(dn, ns->suffix) == 0)
goto done;
}
log_debug("checking for presence of superior dn %s", sup_dn);
ns = namespace_for_base(sup_dn);
if (ns == NULL || !namespace_exists(ns, sup_dn)) {
free(copy);
return LDAP_NO_SUCH_OBJECT;
}
}
done:
free(copy);
return LDAP_SUCCESS;
fail:
free(copy);
return LDAP_NAMING_VIOLATION;
}
static int
validate_object_class(struct ber_element *entry, struct object *obj)
{
struct obj_ptr *sup;
int rc;
rc = validate_required_attributes(entry, obj);
if (rc == LDAP_SUCCESS && obj->sup != NULL) {
SLIST_FOREACH(sup, obj->sup, next) {
rc = validate_object_class(entry, sup->object);
if (rc != LDAP_SUCCESS)
break;
}
}
return rc;
}
int
validate_entry(const char *dn, struct ber_element *entry, int relax)
{
int rc;
char *s;
struct ber_element *objclass, *a, *vals;
struct object *obj, *structural_obj = NULL;
struct attr_type *at;
if (relax)
goto rdn;
/* There must be an objectClass attribute.
*/
objclass = ldap_get_attribute(entry, "objectClass");
if (objclass == NULL) {
log_debug("missing objectClass attribute");
return LDAP_OBJECT_CLASS_VIOLATION;
}
/* Check objectClass(es) against schema.
*/
objclass = objclass->be_next; /* skip attribute description */
for (a = objclass->be_sub; a != NULL; a = a->be_next) {
if (ber_get_string(a, &s) != 0)
return LDAP_INVALID_SYNTAX;
if ((obj = lookup_object(s)) == NULL) {
log_debug("objectClass %s not defined in schema", s);
return LDAP_NAMING_VIOLATION;
}
log_debug("object class %s has kind %d", s, obj->kind);
if (obj->kind == KIND_STRUCTURAL)
structural_obj = obj;
rc = validate_object_class(entry, obj);
if (rc != LDAP_SUCCESS)
return rc;
}
/* Must have at least one structural object class.
*/
if (structural_obj == NULL) {
log_debug("no structural object class defined");
return LDAP_OBJECT_CLASS_VIOLATION;
}
/* Check all attributes against schema.
*/
for (a = entry->be_sub; a != NULL; a = a->be_next) {
if (ber_scanf_elements(a, "{se{", &s, &vals) != 0)
return LDAP_INVALID_SYNTAX;
if ((at = lookup_attribute(s)) == NULL) {
log_debug("attribute %s not defined in schema", s);
return LDAP_NAMING_VIOLATION;
}
if ((rc = validate_attribute(at, vals)) != LDAP_SUCCESS)
return rc;
}
rdn:
if ((rc = validate_dn(dn, entry)) != LDAP_SUCCESS)
return rc;
return LDAP_SUCCESS;
}
|