winsync-plugin.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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. #define WINSYNC_v2_0_GUID "706B83AA-FC51-444A-ACC9-53DC73D641D4"
  49. #define WINSYNC_v3_0_GUID "6D7C2E54-638C-4564-B53F-D9C5354DEBA0"
  50. /*
  51. * This callback is called when a winsync agreement is created.
  52. * The ds_subtree and ad_subtree from the agreement are read-only.
  53. * The callback can allocate some private data to return. If so
  54. * the callback must define a winsync_plugin_destroy_agmt_cb so
  55. * that the private data can be freed. This private data is passed
  56. * to every other callback function as the void *cookie argument.
  57. */
  58. typedef void * (*winsync_plugin_init_cb)(const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree);
  59. #define WINSYNC_PLUGIN_INIT_CB 1
  60. #define WINSYNC_PLUGIN_VERSION_1_BEGIN WINSYNC_PLUGIN_INIT_CB
  61. /* agmt_dn - const - the original AD base dn from the winsync agreement
  62. scope - set directly e.g. *scope = 42;
  63. base, filter - malloced - to set, free first e.g.
  64. slapi_ch_free_string(filter);
  65. *base = slapi_ch_strdup("(objectclass=foobar)");
  66. winsync code will use slapi_ch_free_string to free this value, so no static strings
  67. attrs - NULL or null terminated array of strings - can use slapi_ch_array_add to add e.g.
  68. slapi_ch_array_add(attrs, slapi_ch_strdup("myattr"));
  69. attrs will be freed with slapi_ch_array_free, so caller must own the memory
  70. serverctrls - NULL or null terminated array of LDAPControl* - can use slapi_add_control_ext to add
  71. slapi_add_control_ext(serverctrls, mynewctrl, 1 / add a copy /);
  72. serverctrls will be freed with ldap_controls_free, so caller must own memory
  73. */
  74. typedef void (*winsync_search_params_cb)(void *cookie, const char *agmt_dn, char **base, int *scope, char **filter, char ***attrs, LDAPControl ***serverctrls);
  75. #define WINSYNC_PLUGIN_DIRSYNC_SEARCH_CB 2 /* serverctrls will already contain the DirSync control */
  76. #define WINSYNC_PLUGIN_PRE_AD_SEARCH_CB 3
  77. #define WINSYNC_PLUGIN_PRE_DS_SEARCH_ENTRY_CB 4
  78. #define WINSYNC_PLUGIN_PRE_DS_SEARCH_ALL_CB 5
  79. /*
  80. * These callbacks are the main entry points that allow the plugin
  81. * to intercept modifications to local and remote entries.
  82. * rawentry - the raw AD entry, read directly from AD - this is read only
  83. * ad_entry - the "cooked" AD entry - the DN in this entry should be set
  84. * when the operation is to modify the AD entry
  85. * ds_entry - the entry from the ds - the DN in this entry should be set
  86. * when the operation is to modify the DS entry
  87. * smods - the post-processing modifications - these should be modified
  88. * by the plugin as needed
  89. * do_modify - if the code has some modifications that need to be applied, this
  90. * will be set to true - if the plugin has added some items to smods
  91. * this should be set to true - if the plugin has removed all of
  92. * the smods, and no operation should be performed, this should
  93. * be set to false
  94. */
  95. 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);
  96. #define WINSYNC_PLUGIN_PRE_AD_MOD_USER_CB 6
  97. #define WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_CB 7
  98. #define WINSYNC_PLUGIN_PRE_DS_MOD_USER_CB 8
  99. #define WINSYNC_PLUGIN_PRE_DS_MOD_GROUP_CB 9
  100. /*
  101. * These callbacks are called when a new entry is being added to the
  102. * local directory server from AD.
  103. * rawentry - the raw AD entry, read directly from AD - this is read only
  104. * ad_entry - the "cooked" AD entry
  105. * ds_entry - the entry to be added to the DS - all modifications should
  106. * be made to this entry, including changing the DN if needed,
  107. * since the DN of this entry will be used as the ADD target DN
  108. * This entry will already have had the default schema mapping applied
  109. */
  110. typedef void (*winsync_pre_add_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, Slapi_Entry *ds_entry);
  111. #define WINSYNC_PLUGIN_PRE_DS_ADD_USER_CB 10
  112. #define WINSYNC_PLUGIN_PRE_DS_ADD_GROUP_CB 11
  113. /*
  114. * If a new entry has been added to AD, and we're sync'ing it over
  115. * to the DS, we may need to create a new DN for the entry. The
  116. * code tries to come up with a reasonable DN, but the plugin may
  117. * have different ideas. These callbacks allow the plugin to specify
  118. * what the new DN for the new entry should be. This is called from
  119. * map_entry_dn_inbound which is called from various places where the DN for
  120. * the new entry is needed. The winsync_plugin_call_pre_ds_add_* callbacks
  121. * can also be used to set the DN just before the entry is stored in the DS.
  122. * This is also used when we are mapping a dn valued attribute e.g. owner
  123. * or secretary
  124. * rawentry - the raw AD entry, read directly from AD - this is read only
  125. * ad_entry - the "cooked" AD entry
  126. * new_dn_string - the given value will be the default value created by the sync code
  127. * to change it, slapi_ch_free_string first, then malloc the value to use
  128. * ds_suffix - the suffix from the DS side of the sync agreement
  129. * ad_suffix - the suffix from the AD side of the sync agreement
  130. */
  131. typedef void (*winsync_get_new_dn_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, char **new_dn_string,
  132. const Slapi_DN *ds_suffix, const Slapi_DN *ad_suffix);
  133. #define WINSYNC_PLUGIN_GET_NEW_DS_USER_DN_CB 12
  134. #define WINSYNC_PLUGIN_GET_NEW_DS_GROUP_DN_CB 13
  135. /*
  136. * These callbacks are called when a mod operation is going to be replayed
  137. * to AD. This case is different than the pre add or pre mod callbacks
  138. * above because in this context, we may only have the list of modifications
  139. * and the DN to which the mods were applied.
  140. * rawentry - the raw AD entry, read directly from AD - may be NULL
  141. * local_dn - the original local DN used in the modification
  142. * ds_entry - the current DS entry that has the operation nsUniqueID
  143. * origmods - the original mod list
  144. * remote_dn - this is the DN which will be used with the remote modify operation
  145. * to AD - the winsync code may have already attempted to calculate its value
  146. * modstosend - this is the list of modifications which will be sent - the winsync
  147. * code will already have done its default mapping to these values
  148. *
  149. */
  150. 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);
  151. #define WINSYNC_PLUGIN_PRE_AD_MOD_USER_MODS_CB 14
  152. #define WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_MODS_CB 15
  153. /*
  154. * Callbacks used to determine if an entry should be added to the
  155. * AD side if it does not already exist.
  156. * local_entry - the candidate entry to test
  157. * remote_DN - the candidate remote entry to add
  158. */
  159. typedef int (*winsync_can_add_to_ad_cb)(void *cookie, const Slapi_Entry *local_entry, const Slapi_DN *remote_dn);
  160. #define WINSYNC_PLUGIN_CAN_ADD_ENTRY_TO_AD_CB 16
  161. /*
  162. * Callbacks called at begin and end of update
  163. *
  164. * The ds subtree and the ad subtree from the sync agreement are passed in.
  165. * These are read only.
  166. * is_total will be true if this is a total update, or false if this
  167. * is an incremental update
  168. */
  169. typedef void (*winsync_plugin_update_cb)(void *cookie, const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree, int is_total);
  170. #define WINSYNC_PLUGIN_BEGIN_UPDATE_CB 17
  171. #define WINSYNC_PLUGIN_END_UPDATE_CB 18
  172. /*
  173. * Callbacks called when the agreement is destroyed.
  174. *
  175. * The ds subtree and the ad subtree from the sync agreement are passed in.
  176. * These are read only.
  177. * The plugin must define this function to free the cookie allocated
  178. * in the init function, if any.
  179. */
  180. typedef void (*winsync_plugin_destroy_agmt_cb)(void *cookie, const Slapi_DN *ds_subtree, const Slapi_DN *ad_subtree);
  181. #define WINSYNC_PLUGIN_DESTROY_AGMT_CB 19
  182. #define WINSYNC_PLUGIN_VERSION_1_END WINSYNC_PLUGIN_DESTROY_AGMT_CB
  183. /* Functions added for API version 2.0 */
  184. /*
  185. * These callbacks are called after a modify operation. They are called upon both
  186. * success and failure of the modify operation. The plugin is responsible for
  187. * looking at the result code of the modify to decide what action to take. The
  188. * plugin may change the result code e.g. to force an error for an otherwise
  189. * successful operation, or to ignore certain errors.
  190. * rawentry - the raw AD entry, read directly from AD - this is read only
  191. * ad_entry - the "cooked" AD entry - the entry passed to the pre_mod callback
  192. * ds_entry - the entry from the ds - the DS entry passed to the pre_mod callback
  193. * smods - the mods used in the modify operation
  194. * result - the result code from the modify operation - the plugin can change this
  195. */
  196. typedef void (*winsync_post_mod_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, Slapi_Entry *ds_entry, Slapi_Mods *smods, int *result);
  197. #define WINSYNC_PLUGIN_POST_AD_MOD_USER_CB 20
  198. #define WINSYNC_PLUGIN_POST_AD_MOD_GROUP_CB 21
  199. #define WINSYNC_PLUGIN_POST_DS_MOD_USER_CB 22
  200. #define WINSYNC_PLUGIN_POST_DS_MOD_GROUP_CB 23
  201. #define WINSYNC_PLUGIN_VERSION_2_BEGIN WINSYNC_PLUGIN_POST_AD_MOD_USER_CB
  202. /*
  203. * These callbacks are called after an attempt to add a new entry to the
  204. * local directory server from AD. They are called upon success or failure
  205. * of the add attempt. The result code tells if the operation succeeded.
  206. * The plugin may change the result code e.g. to force an error for an
  207. * otherwise successful operation, or to ignore certain errors.
  208. * rawentry - the raw AD entry, read directly from AD - this is read only
  209. * ad_entry - the "cooked" AD entry
  210. * ds_entry - the entry attempted to be added to the DS
  211. * result - the result code from the add operation - plugin may change this
  212. */
  213. typedef void (*winsync_post_add_cb)(void *cookie, const Slapi_Entry *rawentry, Slapi_Entry *ad_entry, Slapi_Entry *ds_entry, int *result);
  214. #define WINSYNC_PLUGIN_POST_DS_ADD_USER_CB 24
  215. #define WINSYNC_PLUGIN_POST_DS_ADD_GROUP_CB 25
  216. /*
  217. * These callbacks are called when a new entry is being added to AD from
  218. * the local directory server.
  219. * ds_entry - the local DS entry
  220. * ad_entry - the entry to be added to AD - all modifications should
  221. * be made to this entry, including changing the DN if needed,
  222. * since the DN of this entry will be used as the ADD target DN
  223. * This entry will already have had the default schema mapping applied
  224. */
  225. typedef void (*winsync_pre_ad_add_cb)(void *cookie, Slapi_Entry *ds_entry, Slapi_Entry *ad_entry);
  226. #define WINSYNC_PLUGIN_PRE_AD_ADD_USER_CB 26
  227. #define WINSYNC_PLUGIN_PRE_AD_ADD_GROUP_CB 27
  228. /*
  229. * These callbacks are called after an attempt to add a new entry to AD from
  230. * the local directory server. They are called upon success or failure
  231. * of the add attempt. The result code tells if the operation succeeded.
  232. * The plugin may change the result code e.g. to force an error for an
  233. * otherwise successful operation, or to ignore certain errors.
  234. * ad_entry - the AD entry
  235. * ds_entry - the DS entry
  236. * result - the result code from the add operation - plugin may change this
  237. */
  238. typedef void (*winsync_post_ad_add_cb)(void *cookie, Slapi_Entry *ds_entry, Slapi_Entry *ad_entry, int *result);
  239. #define WINSYNC_PLUGIN_POST_AD_ADD_USER_CB 28
  240. #define WINSYNC_PLUGIN_POST_AD_ADD_GROUP_CB 29
  241. /*
  242. * These callbacks are called after a mod operation has been replayed
  243. * to AD. This case is different than the pre add or pre mod callbacks
  244. * above because in this context, we may only have the list of modifications
  245. * and the DN to which the mods were applied. If the plugin wants the modified
  246. * entry, the plugin can search for it from AD. The plugin is called upon
  247. * success or failure of the modify operation. The result parameter gives
  248. * the ldap result code of the operation. The plugin may change the result code
  249. * e.g. to force an error for an otherwise successful operation, or to ignore
  250. * certain errors.
  251. * rawentry - the raw AD entry, read directly from AD - may be NULL
  252. * local_dn - the original local DN used in the modification
  253. * ds_entry - the current DS entry that has the operation nsUniqueID
  254. * origmods - the original mod list
  255. * remote_dn - the DN of the AD entry
  256. * modstosend - the mods sent to AD
  257. * result - the result code of the modify operation
  258. *
  259. */
  260. typedef void (*winsync_post_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, int *result);
  261. #define WINSYNC_PLUGIN_POST_AD_MOD_USER_MODS_CB 30
  262. #define WINSYNC_PLUGIN_POST_AD_MOD_GROUP_MODS_CB 31
  263. #define WINSYNC_PLUGIN_VERSION_2_END WINSYNC_PLUGIN_POST_AD_MOD_GROUP_MODS_CB
  264. typedef int (*winsync_plugin_precedence_cb)(void);
  265. #define WINSYNC_PLUGIN_PRECEDENCE_CB 32
  266. #define WINSYNC_PLUGIN_VERSION_3_END WINSYNC_PLUGIN_PRECEDENCE_CB
  267. /* precedence works like regular slapi plugin precedence */
  268. #define WINSYNC_PLUGIN_DEFAULT_PRECEDENCE 50
  269. #endif /* WINSYNC_PLUGIN_PUBLIC_API */