ando(a)sys-net.it wrote:
> dieter(a)dkluenter.de wrote:
>> Full_Name: Dieter Kluenter
>> Version: 2.4.2alpha
>> When adding a alias abject to the provider, syncprov fowllows the referral and
>> is not updating the alias object to the consumer,
>
> Dieter,
>
> are you talking about aliases or referrals?
>
> I also note that, AFAIK, 2.4.2alpha is way out of sync with HEAD. While
> a new 2.4 release might be desirable, I suggest you test HEAD …
[View More]instead.
I note that this code has been present in syncprov, unchanged, for quite a
long time (throughout 2.3 to current):
if ( op->ors_deref & LDAP_DEREF_SEARCHING ) {
send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR, "illegal value for
derefAliases" );
return rs->sr_err;
}
which would prevent syncprov from chasing aliases during a search. As such, I
think you need provide a test case that illustrates the problem.
--
-- Howard Chu
Chief Architect, Symas Corp. http://www.symas.com
Director, Highland Sun http://highlandsun.com/hyc
OpenLDAP Core Team http://www.openldap.org/project/
[View Less]
dieter(a)dkluenter.de wrote:
> Full_Name: Dieter Kluenter
> Version: 2.4.2alpha
> OS: linux
> URL: ftp://ftp.openldap.org/incoming/
> Submission from: (NULL) (84.142.177.66)
>
>
> When adding a alias abject to the provider, syncprov fowllows the referral and
> is not updating the alias object to the consumer,
Dieter,
are you talking about aliases or referrals?
I also note that, AFAIK, 2.4.2alpha is way out of sync with HEAD. While
a new 2.4 release might be …
[View More]desirable, I suggest you test HEAD instead.
p.
[View Less]
Full_Name: Dieter Kluenter
Version: 2.4.2alpha
OS: linux
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (84.142.177.66)
When adding a alias abject to the provider, syncprov fowllows the referral and
is not updating the alias object to the consumer,
-Dieter
Apparently, according to slurpd's replog, no operational attrs are
modified on modrdn. In fact, modrdn is replicated as a plain modrdn,
which does not alter the write-related operational attrs (nor it is
allowed to, according to LDIF, as per RFC 2849). Rep-logging an
additional modify that only changes the write-related operational attrs
could fix the problem, at the cost of not making it atomical. A
"cleaner" solution would be to wrap a modify with a control that gets
added to the modrdn …
[View More]operation by slurpd, which modifies modifiersName,
modifyTimestamp and entryCSN using the "relax" control. Or, the (yet
unpublished) "relax" control could be redefined to allow an optional
control value that contains a modification required to maintain
consistency of the final entry, or something like that.
This definitely needs investigation, but it could be considered yet
another reason for dropping slurpd.
p.
[View Less]
Full_Name: Thomas Fritz
Version: 2.3.33
OS: Debian Gnu/Linux
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (141.63.61.111)
We are using OpenLDAP 2.3.33 in a master/slave setup with slurpd and hdb
backend.
When performing the modrdn operation against the master, no update directives
for the attributes 'modifiersName', 'modifyTimestamp', and 'entryCSN' are
written to the replog file. Hence, the databases of master and slave differ by
the values of these attributes after …
[View More]replication.
This bug can be reproduced using e.g. the ldapmodrdn tool. OpenLDAP versions
back to (at least) 2.3.24 are affected.
[View Less]
Full_Name: Pierangelo Masarati
Version: HEAD,re23
OS: irrelevant
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (81.72.89.40)
Submitted by: ando
in a couple of places, LDAP_SERVER_DOWN is tested after client library error
codes have already been mapped to response codes (LDAP_SERVER_DOWN =>
LDAP_UNAVAILABLE). As a consequence, delete and modrdn are not retried as
appropriate.
p.
Full_Name: Howard Chu
Version: HEAD
OS:
URL: ftp://ftp.openldap.org/incoming/hyc-20070116.txt
Submission from: (NULL) (76.168.84.21)
Submitted by: hyc
This is a rough implementation of the CLOCK-Pro cache replacement algorithm for
back-bdb. It's based on the paper published here
http://www.cse.ohio-state.edu/hpcs/WWW/HTML/publications/abs05-3.html
Currently the performance is not very good; the algorithm can invoke multiple
scans of the Clock list and our lock overhead for those scans is …
[View More]too high. I'm
not planning to do any more with this at the moment, just wanted to post it so
it doesn't get lost, in case someone else is interested. I didn't want to commit
it behind #ifdef's because that would get too messy.
This implementation deviates from the paper in two major respects:
1) it's possible for an EntryInfo node to get its Reference bit set even when
the entry is not Resident. This happens very frequently, in cache_find_ndn. As
such, EntryInfo nodes without an Entry, but that have been Referenced, do not
get flushed by HANDtest.
2) Nodes can get their Reference bit cleared at many points during the Clock-Pro
processing, so the bit is not a good indication of whether a node is currently
in use and may be safely freed. So, elaborate lock checks are used at each point
where the original algorithm would simply free a node (HANDcold, HANDtest).
It would be nice if our locking setup could be simplified. If someone else wants
to jump in and clean it up, it may be worth committing down the road.
[View Less]
Full_Name: Pierangelo Masarati
Version: HEAD,re23
OS: irrelevant
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (81.72.89.40)
Submitted by: ando
Occasionally, internal operations, and significantly searches, are performed for
some given purpose which would require different access privileges than, for
example in case of searches, "search" on the filter and "read" on the data. In
those cases, it may be useful to allow issuers of internal operations to change
the access …
[View More]privilege that's requested.
This feature (is implemented to address an issue with slapo-dynlist(5) which
uses an internal search to collect data for compare, and thus checks "search"
access on the filter of the memberURL and "read" on the datum to be compared.
See <http://www.openldap.org/lists/openldap-devel/200701/msg00056.html> for
discussion.
[View Less]