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
Joe Martin
OpenLDAP
Commits
46a6131d
Commit
46a6131d
authored
Nov 14, 2007
by
Gavin Henry
Browse files
addpartial overlay update for 2.4.6 (ITS#3593)
parent
c6471b75
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
46a6131d
...
...
@@ -7,6 +7,7 @@ OpenLDAP 2.4.7 Engineering
Fixed slapd multiple sufix checking (ITS#5186)
Fixed slapo-syncprov refresh and persist cookie sending (ITS#5210)
Fixed slapo-syncprov ignore invalid cookies (ITS#5211)
Updated contrib addpartial module (ITS#3593)
Documentation
Fixed grammar errors (ITS#5223)
Refint overlay doc contribution (ITS#5217)
...
...
contrib/slapd-modules/addpartial/Makefile
View file @
46a6131d
OPENLDAP_SRC
=
/usr/local/src/openldap-2.
3.32
OPENLDAP_SRC
=
/usr/local/src/openldap-2.
4.6
CPPFLAGS
+=
-I
${OPENLDAP_SRC}
/include
-I
${OPENLDAP_SRC}
/servers/slapd
LDFLAGS
+=
-L
/usr/local/openldap-2.
3.32/lib
LDFLAGS
+=
-L
/usr/local/openldap-2.
4.6
CC
=
gcc
all
:
addpartial-overlay.so
...
...
contrib/slapd-modules/addpartial/README
View file @
46a6131d
...
...
@@ -16,11 +16,9 @@ DESCRIPTION
in the entry in the slapd DB, a replace will be done with an empty list of
values).
Once a modify takes place, the addpartial overlay will write changes to the
replog (using the slap_replog_cb). If you are using syncrepl for
replication, the syncprov overlay will properly process the change, provided
that addpartial is the first overlay to run. Please see the CAVEATS for
more specifics about this.
Once a modify takes place, the syncprov overlay will properly process the
change, provided that addpartial is the first overlay to run. Please see
the CAVEATS for more specifics about this.
The addpartial overlay makes it easy to replicate full entries to a slapd
instance without worrying about the differences between entries or even if
...
...
contrib/slapd-modules/addpartial/addpartial-overlay.c
View file @
46a6131d
/**
* $Id: addpartial-overlay.c
5376
2007-
0
1-
26 20:03:13
Z dhawes $
* $Id: addpartial-overlay.c
6588
2007-
1
1-
07 18:29:25
Z dhawes $
*
* Copyright (C) 2004 Virginia Tech, David Hawes.
* All rights reserved.
...
...
@@ -16,8 +16,8 @@
*
* Author: David H. Hawes, Jr.
* Email: dhawes@vt.edu
* Version: $Revision:
5376
$
* Updated: $Date: 2007-
0
1-
26 15:03:13 -0500 (Fri, 26 Jan
2007) $
* Version: $Revision:
6588
$
* Updated: $Date: 2007-
1
1-
07 13:29:25 -0500 (Wed, 07 Nov
2007) $
*
* addpartial-overlay
*
...
...
@@ -31,12 +31,7 @@
*/
#include
"portable.h"
#include
<stdio.h>
#include
<ac/string.h>
#include
<ac/socket.h>
#include
"slap.h"
#include
<unistd.h>
#include
<lutil.h>
static
int
addpartial_search_cb
(
Operation
*
op
,
SlapReply
*
rs
);
static
int
collect_error_msg_cb
(
Operation
*
op
,
SlapReply
*
rs
);
...
...
@@ -159,6 +154,7 @@ static int addpartial_add( Operation *op, SlapReply *rs)
mod
->
sml_type
.
bv_len
=
strlen
(
mod
->
sml_type
.
bv_val
);
mod
->
sml_values
=
attr
->
a_vals
;
mod
->
sml_nvalues
=
attr
->
a_nvals
;
mod
->
sml_numvals
=
attr
->
a_numvals
;
*
modtail
=
mod
;
modtail
=
&
mod
->
sml_next
;
}
...
...
@@ -198,6 +194,7 @@ static int addpartial_add( Operation *op, SlapReply *rs)
mod
->
sml_type
.
bv_len
=
strlen
(
mod
->
sml_type
.
bv_val
);
mod
->
sml_values
=
attr
->
a_vals
;
mod
->
sml_nvalues
=
attr
->
a_nvals
;
mod
->
sml_numvals
=
attr
->
a_numvals
;
*
modtail
=
mod
;
modtail
=
&
mod
->
sml_next
;
continue
;
...
...
@@ -253,6 +250,7 @@ static int addpartial_add( Operation *op, SlapReply *rs)
mod
->
sml_type
.
bv_len
=
strlen
(
mod
->
sml_type
.
bv_val
);
mod
->
sml_values
=
attr
->
a_vals
;
mod
->
sml_nvalues
=
attr
->
a_nvals
;
mod
->
sml_numvals
=
attr
->
a_numvals
;
*
modtail
=
mod
;
modtail
=
&
mod
->
sml_next
;
break
;
...
...
@@ -285,6 +283,7 @@ static int addpartial_add( Operation *op, SlapReply *rs)
mod
->
sml_type
.
bv_len
=
strlen
(
mod
->
sml_type
.
bv_val
);
mod
->
sml_values
=
NULL
;
mod
->
sml_nvalues
=
NULL
;
mod
->
sml_numvals
=
0
;
*
modtail
=
mod
;
modtail
=
&
mod
->
sml_next
;
}
...
...
@@ -305,7 +304,6 @@ static int addpartial_add( Operation *op, SlapReply *rs)
{
Modifications
*
m
=
NULL
;
int
modcount
;
slap_callback
cb2
=
{
NULL
,
slap_replog_cb
,
NULL
,
NULL
};
slap_callback
nullcb
=
{
NULL
,
collect_error_msg_cb
,
NULL
,
NULL
};
char
textbuf
[
SLAP_TEXT_BUFLEN
];
...
...
@@ -319,8 +317,7 @@ static int addpartial_add( Operation *op, SlapReply *rs)
nop
.
o_tag
=
LDAP_REQ_MODIFY
;
nop
.
orm_modlist
=
mods
;
cb2
.
sc_next
=
&
nullcb
;
nop
.
o_callback
=
&
cb2
;
nop
.
o_callback
=
&
nullcb
;
nop
.
o_bd
->
bd_info
=
(
BackendInfo
*
)
on
->
on_info
;
for
(
m
=
mods
,
modcount
=
0
;
m
;
m
=
m
->
sml_next
,
...
...
@@ -372,7 +369,7 @@ static int addpartial_add( Operation *op, SlapReply *rs)
addpartial
.
on_bi
.
bi_type
,
0
,
0
);
}
if
(
found
!=
NULL
)
;
if
(
found
!=
NULL
)
entry_free
(
found
);
}
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