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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2010 Red Hat, Inc.
* All rights reserved.
*
* License: GPL (version 3 or any later version).
* See LICENSE for details.
* END COPYRIGHT BLOCK **/
#include "slapi-plugin.h"
#include "repl-session-plugin.h"
#include <string.h>
#define REPL_SESSION_v1_0_GUID "210D7559-566B-41C6-9B03-5523BDF30880"
static char *test_repl_session_plugin_name = "test_repl_session_api";
/*
* Plugin identifiers
*/
static Slapi_PluginDesc test_repl_session_pdesc = {
"test-repl-session-plugin",
"Test Vendor",
"1.0",
"test replication session plugin"};
static Slapi_ComponentId *test_repl_session_plugin_id = NULL;
/*
* Replication Session Callbacks
*/
/*
* This is called on a sender when a replication agreement is
* initialized at startup. A cookie can be allocated at this
* time which is passed to other callbacks on the sender side.
*/
static void *
test_repl_session_plugin_agmt_init_cb(const Slapi_DN *repl_subtree)
{
char *cookie = NULL;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_init_cb() called for suffix \"%s\".\n",
slapi_sdn_get_ndn(repl_subtree));
/* allocate a string and set as the cookie */
cookie = slapi_ch_smprintf("cookie test");
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_init_cb(): Setting cookie: \"%s\".\n",
cookie);
return cookie;
}
/*
* This is called on a sender when we are about to acquire a
* replica. This callback can allocate some extra data to
* be sent to the replica in the start replication request.
* This memory will be free'd by the replication plug-in
* after it is sent. A guid string must be set that is to
* be used by the receiving side to ensure that the data is
* from the same replication session plug-in.
*
* Returning non-0 will abort the replication session. This
* results in the sender going into incremental backoff mode.
*/
static int
test_repl_session_plugin_pre_acquire_cb(void *cookie, const Slapi_DN *repl_subtree, int is_total, char **data_guid, struct berval **data)
{
int rc = 0;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_pre_acquire_cb() called for suffix \"%s\", "
"is_total: \"%s\", cookie: \"%s\".\n",
slapi_sdn_get_ndn(repl_subtree),
is_total ? "TRUE" : "FALSE", cookie ? (char *)cookie : "NULL");
/* allocate some data to be sent to the replica */
*data_guid = slapi_ch_smprintf("test-guid");
*data = (struct berval *)slapi_ch_malloc(sizeof(struct berval));
(*data)->bv_val = slapi_ch_smprintf("test-data");
(*data)->bv_len = strlen((*data)->bv_val) + 1;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_pre_acquire_cb() sending data: guid: \"%s\" data: \"%s\".\n",
*data_guid, (*data)->bv_val);
return rc;
}
/*
* This is called on a replica when we are about to reply to
* a start replication request from a sender. This callback
* can allocate some extra data to be sent to the sender in
* the start replication response. This memory will be free'd
* by the replication plug-in after it is sent. A guid string
* must be set that is to be used by the receiving side to ensure
* that the data is from the same replication session plug-in.
*
* Returning non-0 will abort the replication session. This
* results in the sender going into incremental backoff mode.
*/
static int
test_repl_session_plugin_reply_acquire_cb(const char *repl_subtree, int is_total, char **data_guid, struct berval **data)
{
int rc = 0;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_reply_acquire_cb() called for suffix \"%s\", is_total: \"%s\".\n",
repl_subtree, is_total ? "TRUE" : "FALSE");
/* allocate some data to be sent to the sender */
*data_guid = slapi_ch_smprintf("test-reply-guid");
*data = (struct berval *)slapi_ch_malloc(sizeof(struct berval));
(*data)->bv_val = slapi_ch_smprintf("test-reply-data");
(*data)->bv_len = strlen((*data)->bv_val) + 1;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_reply_acquire_cb() sending data: guid: \"%s\" data: \"%s\".\n",
*data_guid, (*data)->bv_val);
return rc;
}
/*
* This is called on a sender when it receives a reply to a
* start replication extop that we sent to a replica. Any
* extra data sent by a replication session callback on the
* replica will be set here as the data parameter. The data_guid
* should be checked first to ensure that the sending side is
* using the same replication session plug-in before making any
* assumptions about the contents of the data parameter. You
* should not free data_guid or data. The replication plug-in
* will take care of freeing this memory.
*
* Returning non-0 will abort the replication session. This
* results in the sender going into incremental backoff mode.
*/
static int
test_repl_session_plugin_post_acquire_cb(void *cookie, const Slapi_DN *repl_subtree, int is_total, const char *data_guid, const struct berval *data)
{
int rc = 0;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_post_acquire_cb() called for suffix \"%s\", "
"is_total: \"%s\" cookie: \"%s\".\n",
slapi_sdn_get_ndn(repl_subtree),
is_total ? "TRUE" : "FALSE", cookie ? (char *)cookie : "NULL");
/* log any extra data that was sent from the replica */
if (data_guid && data) {
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_post_acquire_cb() received data: guid: \"%s\" data: \"%s\".\n",
data_guid, data->bv_val);
}
return rc;
}
/*
* This is called on a replica when it receives a start replication
* extended operation from a sender. If the replication session
* plug-in on the sender sent any extra data, it will be set here
* as the data parameter. The data_guid should be checked first to
* ensure that the sending side is using the same replication session
* plug-in before making any assumptions about the contents of the
* data parameter. You should not free data_guid or data. The
* replication plug-in will take care of freeing this memory.
*
* Returning non-0 will abort the replication session. This
* results in the sender going into incremental backoff mode.
*/
static int
test_repl_session_plugin_recv_acquire_cb(const char *repl_subtree, int is_total, const char *data_guid, const struct berval *data)
{
int rc = 0;
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_recv_acquire_cb() called for suffix \"%s\", is_total: \"%s\".\n",
repl_subtree, is_total ? "TRUE" : "FALSE");
/* log any extra data that was sent from the sender */
if (data_guid && data) {
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_recv_acquire_cb() received data: guid: \"%s\" data: \"%s\".\n",
data_guid, data->bv_val);
}
return rc;
}
/*
* This is called on a sender when a replication agreement is
* destroyed. Any cookie allocated when the agreement was initialized
* should be free'd here.
*/
static void
test_repl_session_plugin_destroy_cb(void *cookie, const Slapi_DN *repl_subtree)
{
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"test_repl_session_plugin_destroy_cb() called for suffix \"%s\".\n",
slapi_sdn_get_ndn(repl_subtree));
/* free cookie */
slapi_ch_free_string((char **)&cookie);
return;
}
/*
* Callback list for registering API
*/
static void *test_repl_session_api[] = {
NULL, /* reserved for api broker use, must be zero */
test_repl_session_plugin_agmt_init_cb,
test_repl_session_plugin_pre_acquire_cb,
test_repl_session_plugin_reply_acquire_cb,
test_repl_session_plugin_post_acquire_cb,
test_repl_session_plugin_recv_acquire_cb,
test_repl_session_plugin_destroy_cb};
/*
* Plug-in framework functions
*/
static int
test_repl_session_plugin_start(Slapi_PBlock *pb)
{
slapi_log_err(SLAPI_LOG_PLUGIN, test_repl_session_plugin_name,
"--> test_repl_session_plugin_start -- begin\n");
slapi_log_err(SLAPI_LOG_PLUGIN, test_repl_session_plugin_name,
"<-- test_repl_session_plugin_start -- end\n");
return 0;
}
static int
test_repl_session_plugin_close(Slapi_PBlock *pb)
{
slapi_log_err(SLAPI_LOG_PLUGIN, test_repl_session_plugin_name,
"--> test_repl_session_plugin_close -- begin\n");
slapi_apib_unregister(REPL_SESSION_v1_0_GUID);
slapi_log_err(SLAPI_LOG_PLUGIN, test_repl_session_plugin_name,
"<-- test_repl_session_plugin_close -- end\n");
return 0;
}
int
test_repl_session_plugin_init(Slapi_PBlock *pb)
{
slapi_log_err(SLAPI_LOG_PLUGIN, test_repl_session_plugin_name,
"--> test_repl_session_plugin_init -- begin\n");
if (slapi_pblock_set(pb, SLAPI_PLUGIN_VERSION,
SLAPI_PLUGIN_VERSION_01) != 0 ||
slapi_pblock_set(pb, SLAPI_PLUGIN_START_FN,
(void *)test_repl_session_plugin_start) != 0 ||
slapi_pblock_set(pb, SLAPI_PLUGIN_CLOSE_FN,
(void *)test_repl_session_plugin_close) != 0 ||
slapi_pblock_set(pb, SLAPI_PLUGIN_DESCRIPTION,
(void *)&test_repl_session_pdesc) != 0) {
slapi_log_err(SLAPI_LOG_ERR, test_repl_session_plugin_name,
"<-- test_repl_session_plugin_init -- failed to register plugin -- end\n");
return -1;
}
if (slapi_apib_register(REPL_SESSION_v1_0_GUID, test_repl_session_api)) {
slapi_log_err(SLAPI_LOG_DEBUG, test_repl_session_plugin_name,
"<-- test_repl_session_plugin_start -- failed to register repl_session api -- end\n");
return -1;
}
/* Retrieve and save the plugin identity to later pass to
internal operations */
if (slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &test_repl_session_plugin_id) != 0) {
slapi_log_err(SLAPI_LOG_ERR, test_repl_session_plugin_name,
"<-- test_repl_session_plugin_init -- failed to retrieve plugin identity -- end\n");
return -1;
}
slapi_log_err(SLAPI_LOG_PLUGIN, test_repl_session_plugin_name,
"<-- test_repl_session_plugin_init -- end\n");
return 0;
}
/*
dn: cn=Test Replication Session API,cn=plugins,cn=config
objectclass: top
objectclass: nsSlapdPlugin
objectclass: extensibleObject
cn: Test Replication Session API
nsslapd-pluginpath: libtestreplsession-plugin
nsslapd-plugininitfunc: test_repl_session_plugin_init
nsslapd-plugintype: preoperation
nsslapd-pluginenabled: on
nsslapd-plugin-depends-on-type: database
nsslapd-plugin-depends-on-named: Multisupplier Replication Plugin
*/
|