winsync-plugin.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. /** BEGIN COPYRIGHT BLOCK
  2. * This Program is free software; you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation; version 2 of the License.
  5. *
  6. * This Program is distributed in the hope that it will be useful, but WITHOUT
  7. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  8. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  9. *
  10. * You should have received a copy of the GNU General Public License along with
  11. * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
  12. * Place, Suite 330, Boston, MA 02111-1307 USA.
  13. *
  14. * In addition, as a special exception, Red Hat, Inc. gives You the additional
  15. * right to link the code of this Program with code not covered under the GNU
  16. * General Public License ("Non-GPL Code") and to distribute linked combinations
  17. * including the two, subject to the limitations in this paragraph. Non-GPL Code
  18. * permitted under this exception must only link to the code of this Program
  19. * through those well defined interfaces identified in the file named EXCEPTION
  20. * found in the source code files (the "Approved Interfaces"). The files of
  21. * Non-GPL Code may instantiate templates or use macros or inline functions from
  22. * the Approved Interfaces without causing the resulting work to be covered by
  23. * the GNU General Public License. Only Red Hat, Inc. may make changes or
  24. * additions to the list of Approved Interfaces. You must obey the GNU General
  25. * Public License in all respects for all of the Program code and other code used
  26. * in conjunction with the Program except the Non-GPL Code covered by this
  27. * exception. If you modify this file, you may extend this exception to your
  28. * version of the file, but you are not obligated to do so. If you do not wish to
  29. * provide this exception without modification, you must delete this exception
  30. * statement from your version and license this file solely under the GPL without
  31. * exception.
  32. *
  33. *
  34. * Copyright (C) 2008 Red Hat, Inc.
  35. * All rights reserved.
  36. * END COPYRIGHT BLOCK **/
  37. #ifndef WINSYNC_PLUGIN_PUBLIC_API
  38. #define WINSYNC_PLUGIN_PUBLIC_API
  39. #ifdef HAVE_CONFIG_H
  40. # include <config.h>
  41. #endif
  42. /* windows_private.c */
  43. #include "slapi-plugin.h"
  44. /*
  45. * WinSync plug-in API
  46. */
  47. #define WINSYNC_v1_0_GUID "CDA8F029-A3C6-4EBB-80B8-A2E183DB0481"
  48. /*
  49. * This callback is called when a winsync agreement is created.
  50. * The ds_subtree and ad_subtree from the agreement are read-only.
  51. * The callback can allocate some private data to return. If so
  52. * the callback must define a winsync_plugin_destroy_agmt_cb so
  53. * that the private data can be freed. This private data is passed
  54. * to every other callback function as the void *cookie argument.
  55. */
  56. typedef void * (*winsync_plugin_init_cb)(const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree);
  57. #define WINSYNC_PLUGIN_INIT_CB 1
  58. /* agmt_dn - const - the original AD base dn from the winsync agreement
  59. scope - set directly e.g. *scope = 42;
  60. base, filter - malloced - to set, free first e.g.
  61. slapi_ch_free_string(filter);
  62. *base = slapi_ch_strdup("(objectclass=foobar)");
  63. winsync code will use slapi_ch_free_string to free this value, so no static strings
  64. attrs - NULL or null terminated array of strings - can use slapi_ch_array_add to add e.g.
  65. slapi_ch_array_add(attrs, slapi_ch_strdup("myattr"));
  66. attrs will be freed with slapi_ch_array_free, so caller must own the memory
  67. serverctrls - NULL or null terminated array of LDAPControl* - can use slapi_add_control_ext to add
  68. slapi_add_control_ext(serverctrls, mynewctrl, 1 / add a copy /);
  69. serverctrls will be freed with ldap_controls_free, so caller must own memory
  70. */
  71. typedef void (*winsync_search_params_cb)(void *cookie, const char *agmt_dn, char **base, int *scope, char **filter, char ***attrs, LDAPControl ***serverctrls);
  72. #define WINSYNC_PLUGIN_DIRSYNC_SEARCH_CB 2 /* serverctrls will already contain the DirSync control */
  73. #define WINSYNC_PLUGIN_PRE_AD_SEARCH_CB 3
  74. #define WINSYNC_PLUGIN_PRE_DS_SEARCH_ENTRY_CB 4
  75. #define WINSYNC_PLUGIN_PRE_DS_SEARCH_ALL_CB 5
  76. /*
  77. * These callbacks are the main entry points that allow the plugin
  78. * to intercept modifications to local and remote entries.
  79. * rawentry - the raw AD entry, read directly from AD - this is read only
  80. * ad_entry - the "cooked" AD entry - the DN in this entry should be set
  81. * when the operation is to modify the AD entry
  82. * ds_entry - the entry from the ds - the DN in this entry should be set
  83. * when the operation is to modify the DS entry
  84. * smods - the post-processing modifications - these should be modified
  85. * by the plugin as needed
  86. * do_modify - if the code has some modifications that need to be applied, this
  87. * will be set to true - if the plugin has added some items to smods
  88. * this should be set to true - if the plugin has removed all of
  89. * the smods, and no operation should be performed, this should
  90. * be set to false
  91. */
  92. typedef void (*winsync_pre_mod_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, Slapi_Entry *ds_entry, Slapi_Mods *smods, int *do_modify);
  93. #define WINSYNC_PLUGIN_PRE_AD_MOD_USER_CB 6
  94. #define WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_CB 7
  95. #define WINSYNC_PLUGIN_PRE_DS_MOD_USER_CB 8
  96. #define WINSYNC_PLUGIN_PRE_DS_MOD_GROUP_CB 9
  97. /*
  98. * These callbacks are called when a new entry is being added to the
  99. * local directory server from AD.
  100. * rawentry - the raw AD entry, read directly from AD - this is read only
  101. * ad_entry - the "cooked" AD entry
  102. * ds_entry - the entry to be added to the DS - all modifications should
  103. * be made to this entry, including changing the DN if needed,
  104. * since the DN of this entry will be used as the ADD target DN
  105. * This entry will already have had the default schema mapping applied
  106. */
  107. typedef void (*winsync_pre_add_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, Slapi_Entry *ds_entry);
  108. #define WINSYNC_PLUGIN_PRE_DS_ADD_USER_CB 10
  109. #define WINSYNC_PLUGIN_PRE_DS_ADD_GROUP_CB 11
  110. /*
  111. * If a new entry has been added to AD, and we're sync'ing it over
  112. * to the DS, we may need to create a new DN for the entry. The
  113. * code tries to come up with a reasonable DN, but the plugin may
  114. * have different ideas. These callbacks allow the plugin to specify
  115. * what the new DN for the new entry should be. This is called from
  116. * map_entry_dn_inbound which is called from various places where the DN for
  117. * the new entry is needed. The winsync_plugin_call_pre_ds_add_* callbacks
  118. * can also be used to set the DN just before the entry is stored in the DS.
  119. * This is also used when we are mapping a dn valued attribute e.g. owner
  120. * or secretary
  121. * rawentry - the raw AD entry, read directly from AD - this is read only
  122. * ad_entry - the "cooked" AD entry
  123. * new_dn_string - the given value will be the default value created by the sync code
  124. * to change it, slapi_ch_free_string first, then malloc the value to use
  125. * ds_suffix - the suffix from the DS side of the sync agreement
  126. * ad_suffix - the suffix from the AD side of the sync agreement
  127. */
  128. typedef void (*winsync_get_new_dn_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, char **new_dn_string,
  129. const Slapi_DN *ds_suffix, const Slapi_DN *ad_suffix);
  130. #define WINSYNC_PLUGIN_GET_NEW_DS_USER_DN_CB 12
  131. #define WINSYNC_PLUGIN_GET_NEW_DS_GROUP_DN_CB 13
  132. /*
  133. * These callbacks are called when a mod operation is going to be replayed
  134. * to AD. This case is different than the pre add or pre mod callbacks
  135. * above because in this context, we may only have the list of modifications
  136. * and the DN to which the mods were applied.
  137. * rawentry - the raw AD entry, read directly from AD - may be NULL
  138. * local_dn - the original local DN used in the modification
  139. * ds_entry - the current DS entry that has the operation nsUniqueID
  140. * origmods - the original mod list
  141. * remote_dn - this is the DN which will be used with the remote modify operation
  142. * to AD - the winsync code may have already attempted to calculate its value
  143. * modstosend - this is the list of modifications which will be sent - the winsync
  144. * code will already have done its default mapping to these values
  145. *
  146. */
  147. typedef void (*winsync_pre_ad_mod_mods_cb)(void *cookie, const Slapi_Entry *rawentry, const Slapi_DN *local_dn, const Slapi_Entry *ds_entry, LDAPMod * const *origmods, Slapi_DN *remote_dn, LDAPMod ***modstosend);
  148. #define WINSYNC_PLUGIN_PRE_AD_MOD_USER_MODS_CB 14
  149. #define WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_MODS_CB 15
  150. /*
  151. * Callbacks used to determine if an entry should be added to the
  152. * AD side if it does not already exist.
  153. * local_entry - the candidate entry to test
  154. * remote_DN - the candidate remote entry to add
  155. */
  156. typedef int (*winsync_can_add_to_ad_cb)(void *cookie, const Slapi_Entry *local_entry, const Slapi_DN *remote_dn);
  157. #define WINSYNC_PLUGIN_CAN_ADD_ENTRY_TO_AD_CB 16
  158. /*
  159. * Callbacks called at begin and end of update
  160. *
  161. * The ds subtree and the ad subtree from the sync agreement are passed in.
  162. * These are read only.
  163. * is_total will be true if this is a total update, or false if this
  164. * is an incremental update
  165. */
  166. typedef void (*winsync_plugin_update_cb)(void *cookie, const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree, int is_total);
  167. #define WINSYNC_PLUGIN_BEGIN_UPDATE_CB 17
  168. #define WINSYNC_PLUGIN_END_UPDATE_CB 18
  169. /*
  170. * Callbacks called when the agreement is destroyed.
  171. *
  172. * The ds subtree and the ad subtree from the sync agreement are passed in.
  173. * These are read only.
  174. * The plugin must define this function to free the cookie allocated
  175. * in the init function, if any.
  176. */
  177. typedef void (*winsync_plugin_destroy_agmt_cb)(void *cookie, const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree);
  178. #define WINSYNC_PLUGIN_DESTROY_AGMT_CB 19
  179. /*
  180. The following are sample code stubs to show how to implement
  181. a plugin which uses this api
  182. */
  183. #ifdef WINSYNC_SAMPLE_CODE
  184. #include "slapi-plugin.h"
  185. #include "winsync-plugin.h"
  186. static char *test_winsync_plugin_name = "test_winsync_api";
  187. static void *
  188. test_winsync_api_init(const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree)
  189. {
  190. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  191. "--> test_winsync_init [%s] [%s] -- begin\n",
  192. slapi_sdn_get_dn(ds_subtree),
  193. slapi_sdn_get_dn(ad_subtree));
  194. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  195. "<-- test_winsync_init -- end\n");
  196. return NULL;
  197. }
  198. static void
  199. test_winsync_dirsync_search_params_cb(void *cbdata, const char *agmt_dn,
  200. char **base, int *scope, char **filter,
  201. char ***attrs, LDAPControl ***serverctrls)
  202. {
  203. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  204. "--> test_winsync_dirsync_search_params_cb -- begin\n");
  205. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  206. "<-- test_winsync_dirsync_search_params_cb -- end\n");
  207. return;
  208. }
  209. /* called before searching for a single entry from AD - agmt_dn will be NULL */
  210. static void
  211. test_winsync_pre_ad_search_cb(void *cbdata, const char *agmt_dn,
  212. char **base, int *scope, char **filter,
  213. char ***attrs, LDAPControl ***serverctrls)
  214. {
  215. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  216. "--> test_winsync_pre_ad_search_cb -- begin\n");
  217. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  218. "<-- test_winsync_pre_ad_search_cb -- end\n");
  219. return;
  220. }
  221. /* called before an internal search to get a single DS entry - agmt_dn will be NULL */
  222. static void
  223. test_winsync_pre_ds_search_entry_cb(void *cbdata, const char *agmt_dn,
  224. char **base, int *scope, char **filter,
  225. char ***attrs, LDAPControl ***serverctrls)
  226. {
  227. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  228. "--> test_winsync_pre_ds_search_cb -- begin\n");
  229. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  230. "<-- test_winsync_pre_ds_search_cb -- end\n");
  231. return;
  232. }
  233. /* called before the total update to get all entries from the DS to sync to AD */
  234. static void
  235. test_winsync_pre_ds_search_all_cb(void *cbdata, const char *agmt_dn,
  236. char **base, int *scope, char **filter,
  237. char ***attrs, LDAPControl ***serverctrls)
  238. {
  239. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  240. "--> test_winsync_pre_ds_search_all_cb -- orig filter [%s] -- begin\n",
  241. ((filter && *filter) ? *filter : "NULL"));
  242. /* We only want to grab users from the ds side - no groups */
  243. slapi_ch_free_string(filter);
  244. /* maybe use ntUniqueId=* - only get users that have already been
  245. synced with AD already - ntUniqueId and ntUserDomainId are
  246. indexed for equality only - need to add presence? */
  247. *filter = slapi_ch_strdup("(&(objectclass=ntuser)(ntUserDomainId=*))");
  248. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  249. "<-- test_winsync_pre_ds_search_all_cb -- end\n");
  250. return;
  251. }
  252. static void
  253. test_winsync_pre_ad_mod_user_cb(void *cbdata, const Slapi_Entry *rawentry,
  254. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  255. Slapi_Mods *smods, int *do_modify)
  256. {
  257. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  258. "--> test_winsync_pre_ad_mod_user_cb -- begin\n");
  259. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  260. "<-- test_winsync_pre_ad_mod_user_cb -- end\n");
  261. return;
  262. }
  263. static void
  264. test_winsync_pre_ad_mod_group_cb(void *cbdata, const Slapi_Entry *rawentry,
  265. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  266. Slapi_Mods *smods, int *do_modify)
  267. {
  268. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  269. "--> test_winsync_pre_ad_mod_group_cb -- begin\n");
  270. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  271. "<-- test_winsync_pre_ad_mod_group_cb -- end\n");
  272. return;
  273. }
  274. static void
  275. test_winsync_pre_ds_mod_user_cb(void *cbdata, const Slapi_Entry *rawentry,
  276. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  277. Slapi_Mods *smods, int *do_modify)
  278. {
  279. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  280. "--> test_winsync_pre_ds_mod_user_cb -- begin\n");
  281. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  282. "<-- test_winsync_pre_ds_mod_user_cb -- end\n");
  283. return;
  284. }
  285. static void
  286. test_winsync_pre_ds_mod_group_cb(void *cbdata, const Slapi_Entry *rawentry,
  287. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  288. Slapi_Mods *smods, int *do_modify)
  289. {
  290. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  291. "--> test_winsync_pre_ds_mod_group_cb -- begin\n");
  292. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  293. "<-- test_winsync_pre_ds_mod_group_cb -- end\n");
  294. return;
  295. }
  296. static void
  297. test_winsync_pre_ds_add_user_cb(void *cbdata, const Slapi_Entry *rawentry,
  298. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry)
  299. {
  300. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  301. "--> test_winsync_pre_ds_add_user_cb -- begin\n");
  302. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  303. "<-- test_winsync_pre_ds_add_user_cb -- end\n");
  304. return;
  305. }
  306. static void
  307. test_winsync_pre_ds_add_group_cb(void *cbdata, const Slapi_Entry *rawentry,
  308. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry)
  309. {
  310. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  311. "--> test_winsync_pre_ds_add_group_cb -- begin\n");
  312. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  313. "<-- test_winsync_pre_ds_add_group_cb -- end\n");
  314. return;
  315. }
  316. static void
  317. test_winsync_get_new_ds_user_dn_cb(void *cbdata, const Slapi_Entry *rawentry,
  318. Slapi_Entry *ad_entry, char **new_dn_string,
  319. const Slapi_DN *ds_suffix, const Slapi_DN *ad_suffix)
  320. {
  321. char **rdns = NULL;
  322. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  323. "--> test_winsync_get_new_ds_user_dn_cb -- old dn [%s] -- begin\n",
  324. *new_dn_string);
  325. rdns = ldap_explode_dn(*new_dn_string, 0);
  326. if (!rdns || !rdns[0]) {
  327. ldap_value_free(rdns);
  328. return;
  329. }
  330. slapi_ch_free_string(new_dn_string);
  331. *new_dn_string = PR_smprintf("%s,%s", rdns[0], slapi_sdn_get_dn(ds_suffix));
  332. ldap_value_free(rdns);
  333. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  334. "<-- test_winsync_get_new_ds_user_dn_cb -- new dn [%s] -- end\n",
  335. *new_dn_string);
  336. return;
  337. }
  338. static void
  339. test_winsync_get_new_ds_group_dn_cb(void *cbdata, const Slapi_Entry *rawentry,
  340. Slapi_Entry *ad_entry, char **new_dn_string,
  341. const Slapi_DN *ds_suffix, const Slapi_DN *ad_suffix)
  342. {
  343. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  344. "--> test_winsync_get_new_ds_group_dn_cb -- begin\n");
  345. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  346. "<-- test_winsync_get_new_ds_group_dn_cb -- end\n");
  347. return;
  348. }
  349. static void
  350. test_winsync_pre_ad_mod_user_mods_cb(void *cbdata, const Slapi_Entry *rawentry,
  351. const Slapi_Entry *ds_entry,
  352. const Slapi_DN *local_dn, LDAPMod * const *origmods,
  353. Slapi_DN *remote_dn, LDAPMod ***modstosend)
  354. {
  355. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  356. "--> test_winsync_pre_ad_mod_user_mods_cb -- begin\n");
  357. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  358. "<-- test_winsync_pre_ad_mod_user_mods_cb -- end\n");
  359. return;
  360. }
  361. static void
  362. test_winsync_pre_ad_mod_group_mods_cb(void *cbdata, const Slapi_Entry *rawentry,
  363. const Slapi_Entry *ds_entry,
  364. const Slapi_DN *local_dn, LDAPMod * const *origmods,
  365. Slapi_DN *remote_dn, LDAPMod ***modstosend)
  366. {
  367. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  368. "--> test_winsync_pre_ad_mod_group_mods_cb -- begin\n");
  369. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  370. "<-- test_winsync_pre_ad_mod_group_mods_cb -- end\n");
  371. return;
  372. }
  373. static int
  374. test_winsync_can_add_entry_to_ad_cb(void *cbdata, const Slapi_Entry *local_entry,
  375. const Slapi_DN *remote_dn)
  376. {
  377. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  378. "--> test_winsync_can_add_entry_to_ad_cb -- begin\n");
  379. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  380. "<-- test_winsync_can_add_entry_to_ad_cb -- end\n");
  381. return 0; /* false - do not allow entries to be added to ad */
  382. }
  383. static void
  384. test_winsync_begin_update_cb(void *cbdata, const Slapi_DN *ds_subtree,
  385. const Slapi_DN *ad_subtree, int is_total)
  386. {
  387. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  388. "--> test_winsync_begin_update_cb -- begin\n");
  389. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  390. "<-- test_winsync_begin_update_cb -- end\n");
  391. return;
  392. }
  393. static void
  394. test_winsync_end_update_cb(void *cbdata, const Slapi_DN *ds_subtree,
  395. const Slapi_DN *ad_subtree, int is_total)
  396. {
  397. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  398. "--> test_winsync_end_update_cb -- begin\n");
  399. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  400. "<-- test_winsync_end_update_cb -- end\n");
  401. return;
  402. }
  403. static void
  404. test_winsync_destroy_agmt_cb(void *cbdata, const Slapi_DN *ds_subtree,
  405. const Slapi_DN *ad_subtree)
  406. {
  407. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  408. "--> test_winsync_destroy_agmt_cb -- begin\n");
  409. /* free(cbdata); */
  410. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  411. "<-- test_winsync_destroy_agmt_cb -- end\n");
  412. return;
  413. }
  414. /**
  415. * Plugin identifiers
  416. */
  417. static Slapi_PluginDesc test_winsync_pdesc = {
  418. "test-winsync-plugin",
  419. VENDOR,
  420. DS_PACKAGE_VERSION,
  421. "test winsync plugin"
  422. };
  423. static Slapi_ComponentId *test_winsync_plugin_id = NULL;
  424. static void *test_winsync_api[] = {
  425. NULL, /* reserved for api broker use, must be zero */
  426. test_winsync_api_init,
  427. test_winsync_dirsync_search_params_cb,
  428. test_winsync_pre_ad_search_cb,
  429. test_winsync_pre_ds_search_entry_cb,
  430. test_winsync_pre_ds_search_all_cb,
  431. test_winsync_pre_ad_mod_user_cb,
  432. test_winsync_pre_ad_mod_group_cb,
  433. test_winsync_pre_ds_mod_user_cb,
  434. test_winsync_pre_ds_mod_group_cb,
  435. test_winsync_pre_ds_add_user_cb,
  436. test_winsync_pre_ds_add_group_cb,
  437. test_winsync_get_new_ds_user_dn_cb,
  438. test_winsync_get_new_ds_group_dn_cb,
  439. test_winsync_pre_ad_mod_user_mods_cb,
  440. test_winsync_pre_ad_mod_group_mods_cb,
  441. test_winsync_can_add_entry_to_ad_cb,
  442. test_winsync_begin_update_cb,
  443. test_winsync_end_update_cb,
  444. test_winsync_destroy_agmt_cb
  445. };
  446. static int
  447. test_winsync_plugin_start(Slapi_PBlock *pb)
  448. {
  449. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  450. "--> test_winsync_plugin_start -- begin\n");
  451. if( slapi_apib_register(WINSYNC_v1_0_GUID, test_winsync_api) ) {
  452. slapi_log_error( SLAPI_LOG_FATAL, test_winsync_plugin_name,
  453. "<-- test_winsync_plugin_start -- failed to register winsync api -- end\n");
  454. return -1;
  455. }
  456. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  457. "<-- test_winsync_plugin_start -- end\n");
  458. return 0;
  459. }
  460. static int
  461. test_winsync_plugin_close(Slapi_PBlock *pb)
  462. {
  463. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  464. "--> test_winsync_plugin_close -- begin\n");
  465. slapi_apib_unregister(WINSYNC_v1_0_GUID);
  466. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  467. "<-- test_winsync_plugin_close -- end\n");
  468. return 0;
  469. }
  470. /* this is the slapi plugin init function,
  471. not the one used by the winsync api
  472. */
  473. int test_winsync_plugin_init(Slapi_PBlock *pb)
  474. {
  475. slapi_log_error(SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  476. "--> test_winsync_plugin_init -- begin\n");
  477. if ( slapi_pblock_set( pb, SLAPI_PLUGIN_VERSION,
  478. SLAPI_PLUGIN_VERSION_01 ) != 0 ||
  479. slapi_pblock_set(pb, SLAPI_PLUGIN_START_FN,
  480. (void *) test_winsync_plugin_start ) != 0 ||
  481. slapi_pblock_set(pb, SLAPI_PLUGIN_CLOSE_FN,
  482. (void *) test_winsync_plugin_close ) != 0 ||
  483. slapi_pblock_set( pb, SLAPI_PLUGIN_DESCRIPTION,
  484. (void *)&test_winsync_pdesc ) != 0 )
  485. {
  486. slapi_log_error( SLAPI_LOG_FATAL, test_winsync_plugin_name,
  487. "<-- test_winsync_plugin_init -- failed to register plugin -- end\n");
  488. return -1;
  489. }
  490. /* Retrieve and save the plugin identity to later pass to
  491. internal operations */
  492. if (slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &test_winsync_plugin_id) != 0) {
  493. slapi_log_error(SLAPI_LOG_FATAL, test_winsync_plugin_name,
  494. "<-- test_winsync_plugin_init -- failed to retrieve plugin identity -- end\n");
  495. return -1;
  496. }
  497. slapi_log_error( SLAPI_LOG_PLUGIN, test_winsync_plugin_name,
  498. "<-- test_winsync_plugin_init -- end\n");
  499. return 0;
  500. }
  501. /*
  502. dn: cn=Test Winsync API,cn=plugins,cn=config
  503. objectclass: top
  504. objectclass: nsSlapdPlugin
  505. objectclass: extensibleObject
  506. cn: Test Winsync API
  507. nsslapd-pluginpath: libtestwinsync-plugin
  508. nsslapd-plugininitfunc: test_winsync_plugin_init
  509. nsslapd-plugintype: preoperation
  510. nsslapd-pluginenabled: on
  511. nsslapd-plugin-depends-on-type: database
  512. nsslapd-plugin-depends-on-named: Multimaster Replication Plugin
  513. */
  514. #endif /* WINSYNC_SAMPLE_CODE */
  515. #endif /* WINSYNC_PLUGIN_PUBLIC_API */