Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
bfbe3e49
Commit
bfbe3e49
authored
Jun 17, 2000
by
Kurt Zeilenga
Browse files
Fix aliasing.
parent
152ec5c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-ldbm/alias.c
View file @
bfbe3e49
...
...
@@ -95,6 +95,7 @@ Entry *deref_internal_r(
/* check if aliasDN is a subordinate of any DN in our list */
if
(
dnlist_subordinate
(
dnlist
,
aliasDN
)
)
{
ch_free
(
aliasDN
);
*
matched
=
entry
;
entry
=
NULL
;
*
err
=
LDAP_ALIAS_PROBLEM
;
...
...
@@ -105,6 +106,7 @@ Entry *deref_internal_r(
/* attempt to dereference alias */
newe
=
dn2entry_r
(
be
,
aliasDN
,
&
sup
);
ch_free
(
aliasDN
);
if
(
newe
!=
NULL
)
{
free
(
dn
);
...
...
@@ -113,7 +115,6 @@ Entry *deref_internal_r(
dn
=
ch_strdup
(
entry
->
e_ndn
);
charray_add
(
&
dnlist
,
dn
);
continue
;
}
if
(
sup
!=
NULL
)
{
...
...
@@ -157,6 +158,7 @@ Entry *deref_internal_r(
}
aliasDN
=
new_superior
(
dn
,
sup
->
e_ndn
,
supDN
);
free
(
supDN
);
if
(
aliasDN
==
NULL
)
{
free
(
aliasDN
);
...
...
@@ -217,6 +219,7 @@ static char* get_alias_dn(
int
*
err
,
const
char
**
errmsg
)
{
char
*
dn
;
Attribute
*
a
;
AttributeDescription
*
aliasedObjectName
=
slap_schema
.
si_ad_aliasedObjectName
;
...
...
@@ -249,7 +252,16 @@ static char* get_alias_dn(
return
NULL
;
}
return
a
->
a_vals
[
0
]
->
bv_val
;
dn
=
ch_strdup
(
a
->
a_vals
[
0
]
->
bv_val
);
if
(
dn_normalize
(
dn
)
==
NULL
)
{
ch_free
(
dn
);
*
err
=
LDAP_ALIAS_PROBLEM
;
*
errmsg
=
"alias aliasedObjectName value is invalid"
;
return
NULL
;
}
return
dn
;
}
char
*
new_superior
(
...
...
servers/slapd/back-ldbm/search.c
View file @
bfbe3e49
...
...
@@ -113,6 +113,11 @@ ldbm_back_search(
return
1
;
}
if
(
is_entry_alias
(
e
)
)
{
/* don't deref */
deref
=
LDAP_DEREF_NEVER
;
}
if
(
tlimit
==
0
&&
be_isroot
(
be
,
op
->
o_ndn
)
)
{
tlimit
=
-
1
;
/* allow root to set no limit */
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment