1
0

windows_private.c 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348
  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) 2001 Sun Microsystems, Inc. Used by permission.
  35. * Copyright (C) 2005 Red Hat, Inc.
  36. * All rights reserved.
  37. * END COPYRIGHT BLOCK **/
  38. #ifdef HAVE_CONFIG_H
  39. # include <config.h>
  40. #endif
  41. /* windows_private.c */
  42. #include "repl.h"
  43. #include "repl5.h"
  44. #include "slap.h"
  45. #include "slapi-plugin.h"
  46. #include "winsync-plugin.h"
  47. #include "windowsrepl.h"
  48. struct windowsprivate {
  49. Slapi_DN *windows_subtree; /* DN of synchronized subtree (on the windows side) */
  50. Slapi_DN *directory_subtree; /* DN of synchronized subtree on directory side */
  51. /* this simplifies the mapping as it's simply
  52. from the former to the latter container, or
  53. vice versa */
  54. ber_int_t dirsync_flags;
  55. ber_int_t dirsync_maxattributecount;
  56. char *dirsync_cookie;
  57. int dirsync_cookie_len;
  58. PRBool dirsync_cookie_has_more;
  59. PRBool create_users_from_dirsync;
  60. PRBool create_groups_from_dirsync;
  61. char *windows_domain;
  62. int isnt4;
  63. int iswin2k3;
  64. /* This filter is used to determine if an entry belongs to this agreement. We put it here
  65. * so we only have to allocate each filter once instead of doing it every time we receive a change. */
  66. Slapi_Filter *directory_filter; /* Used for checking if local entries need to be sync'd to AD */
  67. Slapi_Filter *deleted_filter; /* Used for checking if an entry is an AD tombstone */
  68. Slapi_Entry *raw_entry; /* "raw" un-schema processed last entry read from AD */
  69. int keep_raw_entry; /* flag to control when the raw entry is set */
  70. void *api_cookie; /* private data used by api callbacks */
  71. time_t sync_interval; /* how often to run the dirsync search, in seconds */
  72. };
  73. static void windows_private_set_windows_domain(const Repl_Agmt *ra, char *domain);
  74. static int
  75. true_value_from_string(char *val)
  76. {
  77. if (strcasecmp (val, "on") == 0 || strcasecmp (val, "yes") == 0 ||
  78. strcasecmp (val, "true") == 0 || strcasecmp (val, "1") == 0)
  79. {
  80. return 1;
  81. } else
  82. {
  83. return 0;
  84. }
  85. }
  86. static int
  87. windows_parse_config_entry(Repl_Agmt *ra, const char *type, Slapi_Entry *e)
  88. {
  89. char *tmpstr = NULL;
  90. int retval = 0;
  91. if (type == NULL || slapi_attr_types_equivalent(type,type_nsds7WindowsReplicaArea))
  92. {
  93. tmpstr = slapi_entry_attr_get_charptr(e, type_nsds7WindowsReplicaArea);
  94. if (NULL != tmpstr)
  95. {
  96. windows_private_set_windows_subtree(ra, slapi_sdn_new_dn_passin(tmpstr) );
  97. }
  98. retval = 1;
  99. }
  100. if (type == NULL || slapi_attr_types_equivalent(type,type_nsds7DirectoryReplicaArea))
  101. {
  102. tmpstr = slapi_entry_attr_get_charptr(e, type_nsds7DirectoryReplicaArea);
  103. if (NULL != tmpstr)
  104. {
  105. windows_private_set_directory_subtree(ra, slapi_sdn_new_dn_passin(tmpstr) );
  106. }
  107. retval = 1;
  108. }
  109. if (type == NULL || slapi_attr_types_equivalent(type,type_nsds7CreateNewUsers))
  110. {
  111. tmpstr = slapi_entry_attr_get_charptr(e, type_nsds7CreateNewUsers);
  112. if (NULL != tmpstr && true_value_from_string(tmpstr))
  113. {
  114. windows_private_set_create_users(ra, PR_TRUE);
  115. }
  116. else
  117. {
  118. windows_private_set_create_users(ra, PR_FALSE);
  119. }
  120. retval = 1;
  121. slapi_ch_free((void**)&tmpstr);
  122. }
  123. if (type == NULL || slapi_attr_types_equivalent(type,type_nsds7CreateNewGroups))
  124. {
  125. tmpstr = slapi_entry_attr_get_charptr(e, type_nsds7CreateNewGroups);
  126. if (NULL != tmpstr && true_value_from_string(tmpstr))
  127. {
  128. windows_private_set_create_groups(ra, PR_TRUE);
  129. }
  130. else
  131. {
  132. windows_private_set_create_groups(ra, PR_FALSE);
  133. }
  134. retval = 1;
  135. slapi_ch_free((void**)&tmpstr);
  136. }
  137. if (type == NULL || slapi_attr_types_equivalent(type,type_nsds7WindowsDomain))
  138. {
  139. tmpstr = slapi_entry_attr_get_charptr(e, type_nsds7WindowsDomain);
  140. if (NULL != tmpstr)
  141. {
  142. windows_private_set_windows_domain(ra,tmpstr);
  143. }
  144. /* No need to free tmpstr because it was aliased by the call above */
  145. tmpstr = NULL;
  146. retval = 1;
  147. }
  148. if (type == NULL || slapi_attr_types_equivalent(type,type_winSyncInterval))
  149. {
  150. tmpstr = slapi_entry_attr_get_charptr(e, type_winSyncInterval);
  151. if (NULL != tmpstr)
  152. {
  153. windows_private_set_sync_interval(ra,tmpstr);
  154. }
  155. slapi_ch_free_string(&tmpstr);
  156. retval = 1;
  157. }
  158. return retval;
  159. }
  160. /* Returns non-zero if the modify was ok, zero if not */
  161. int
  162. windows_handle_modify_agreement(Repl_Agmt *ra, const char *type, Slapi_Entry *e)
  163. {
  164. /* Is this a Windows agreement ? */
  165. if (get_agmt_agreement_type(ra) == REPLICA_TYPE_WINDOWS)
  166. {
  167. return windows_parse_config_entry(ra,type,e);
  168. } else
  169. {
  170. return 0;
  171. }
  172. }
  173. void
  174. windows_init_agreement_from_entry(Repl_Agmt *ra, Slapi_Entry *e)
  175. {
  176. agmt_set_priv(ra,windows_private_new());
  177. windows_parse_config_entry(ra,NULL,e);
  178. windows_plugin_init(ra);
  179. }
  180. const char* windows_private_get_purl(const Repl_Agmt *ra)
  181. {
  182. const char* windows_purl;
  183. char *hostname;
  184. hostname = agmt_get_hostname(ra);
  185. windows_purl = slapi_ch_smprintf("ldap://%s:%d", hostname, agmt_get_port(ra));
  186. slapi_ch_free_string(&hostname);
  187. return windows_purl;
  188. }
  189. Dirsync_Private* windows_private_new()
  190. {
  191. Dirsync_Private *dp;
  192. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_new\n" );
  193. dp = (Dirsync_Private *)slapi_ch_calloc(sizeof(Dirsync_Private),1);
  194. dp->dirsync_maxattributecount = -1;
  195. dp->directory_filter = NULL;
  196. dp->deleted_filter = NULL;
  197. dp->sync_interval = PERIODIC_DIRSYNC_INTERVAL;
  198. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_new\n" );
  199. return dp;
  200. }
  201. void windows_agreement_delete(Repl_Agmt *ra)
  202. {
  203. Dirsync_Private *dp = (Dirsync_Private *) agmt_get_priv(ra);
  204. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_delete\n" );
  205. PR_ASSERT(dp != NULL);
  206. winsync_plugin_call_destroy_agmt_cb(ra, dp->directory_subtree,
  207. dp->windows_subtree);
  208. slapi_sdn_free(&dp->directory_subtree);
  209. slapi_sdn_free(&dp->windows_subtree);
  210. slapi_filter_free(dp->directory_filter, 1);
  211. slapi_filter_free(dp->deleted_filter, 1);
  212. slapi_entry_free(dp->raw_entry);
  213. dp->raw_entry = NULL;
  214. dp->api_cookie = NULL;
  215. slapi_ch_free((void **)dp);
  216. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_delete\n" );
  217. }
  218. int windows_private_get_isnt4(const Repl_Agmt *ra)
  219. {
  220. Dirsync_Private *dp;
  221. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_isnt4\n" );
  222. PR_ASSERT(ra);
  223. dp = (Dirsync_Private *) agmt_get_priv(ra);
  224. PR_ASSERT (dp);
  225. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_isnt4\n" );
  226. return dp->isnt4;
  227. }
  228. void windows_private_set_isnt4(const Repl_Agmt *ra, int isit)
  229. {
  230. Dirsync_Private *dp;
  231. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_isnt4\n" );
  232. PR_ASSERT(ra);
  233. dp = (Dirsync_Private *) agmt_get_priv(ra);
  234. PR_ASSERT (dp);
  235. dp->isnt4 = isit;
  236. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_isnt4\n" );
  237. }
  238. int windows_private_get_iswin2k3(const Repl_Agmt *ra)
  239. {
  240. Dirsync_Private *dp;
  241. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_iswin2k3\n" );
  242. PR_ASSERT(ra);
  243. dp = (Dirsync_Private *) agmt_get_priv(ra);
  244. PR_ASSERT (dp);
  245. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_iswin2k3\n" );
  246. return dp->iswin2k3;
  247. }
  248. void windows_private_set_iswin2k3(const Repl_Agmt *ra, int isit)
  249. {
  250. Dirsync_Private *dp;
  251. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_iswin2k3\n" );
  252. PR_ASSERT(ra);
  253. dp = (Dirsync_Private *) agmt_get_priv(ra);
  254. PR_ASSERT (dp);
  255. dp->iswin2k3 = isit;
  256. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_iswin2k3\n" );
  257. }
  258. /* Returns a copy of the Slapi_Filter pointer. The caller should not free it */
  259. Slapi_Filter* windows_private_get_directory_filter(const Repl_Agmt *ra)
  260. {
  261. Dirsync_Private *dp;
  262. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_directory_filter\n" );
  263. PR_ASSERT(ra);
  264. dp = (Dirsync_Private *) agmt_get_priv(ra);
  265. PR_ASSERT (dp);
  266. if (dp->directory_filter == NULL) {
  267. char *string_filter = slapi_ch_strdup("(&(|(objectclass=ntuser)(objectclass=ntgroup))(ntUserDomainId=*))");
  268. /* The filter gets freed in windows_agreement_delete() */
  269. dp->directory_filter = slapi_str2filter( string_filter );
  270. slapi_ch_free_string(&string_filter);
  271. }
  272. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_directory_filter\n" );
  273. return dp->directory_filter;
  274. }
  275. /* Returns a copy of the Slapi_Filter pointer. The caller should not free it */
  276. Slapi_Filter* windows_private_get_deleted_filter(const Repl_Agmt *ra)
  277. {
  278. Dirsync_Private *dp;
  279. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_deleted_filter\n" );
  280. PR_ASSERT(ra);
  281. dp = (Dirsync_Private *) agmt_get_priv(ra);
  282. PR_ASSERT (dp);
  283. if (dp->deleted_filter == NULL) {
  284. char *string_filter = slapi_ch_strdup("(isdeleted=*)");
  285. /* The filter gets freed in windows_agreement_delete() */
  286. dp->deleted_filter = slapi_str2filter( string_filter );
  287. slapi_ch_free_string(&string_filter);
  288. }
  289. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_deleted_filter\n" );
  290. return dp->deleted_filter;
  291. }
  292. /* Returns a copy of the Slapi_DN pointer, no need to free it */
  293. const Slapi_DN* windows_private_get_windows_subtree (const Repl_Agmt *ra)
  294. {
  295. Dirsync_Private *dp;
  296. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_windows_subtree\n" );
  297. PR_ASSERT(ra);
  298. dp = (Dirsync_Private *) agmt_get_priv(ra);
  299. PR_ASSERT (dp);
  300. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_windows_subtree\n" );
  301. return dp->windows_subtree;
  302. }
  303. const char *
  304. windows_private_get_windows_domain(const Repl_Agmt *ra)
  305. {
  306. Dirsync_Private *dp;
  307. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_windows_domain\n" );
  308. PR_ASSERT(ra);
  309. dp = (Dirsync_Private *) agmt_get_priv(ra);
  310. PR_ASSERT (dp);
  311. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_windows_domain\n" );
  312. return dp->windows_domain;
  313. }
  314. static void
  315. windows_private_set_windows_domain(const Repl_Agmt *ra, char *domain)
  316. {
  317. Dirsync_Private *dp;
  318. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_windows_domain\n" );
  319. PR_ASSERT(ra);
  320. dp = (Dirsync_Private *) agmt_get_priv(ra);
  321. PR_ASSERT (dp);
  322. dp->windows_domain = domain;
  323. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_windows_domain\n" );
  324. }
  325. /* Returns a copy of the Slapi_DN pointer, no need to free it */
  326. const Slapi_DN* windows_private_get_directory_subtree (const Repl_Agmt *ra)
  327. {
  328. Dirsync_Private *dp;
  329. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_directory_replarea\n" );
  330. PR_ASSERT(ra);
  331. dp = (Dirsync_Private *) agmt_get_priv(ra);
  332. PR_ASSERT (dp);
  333. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_directory_replarea\n" );
  334. return dp->directory_subtree;
  335. }
  336. /* Takes a copy of the sdn passed in */
  337. void windows_private_set_windows_subtree (const Repl_Agmt *ra,Slapi_DN* sdn )
  338. {
  339. Dirsync_Private *dp;
  340. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_windows_replarea\n" );
  341. PR_ASSERT(ra);
  342. PR_ASSERT(sdn);
  343. dp = (Dirsync_Private *) agmt_get_priv(ra);
  344. PR_ASSERT (dp);
  345. slapi_sdn_free(&dp->windows_subtree);
  346. dp->windows_subtree = sdn;
  347. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_windows_replarea\n" );
  348. }
  349. /* Takes a copy of the sdn passed in */
  350. void windows_private_set_directory_subtree (const Repl_Agmt *ra,Slapi_DN* sdn )
  351. {
  352. Dirsync_Private *dp;
  353. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_directory_replarea\n" );
  354. PR_ASSERT(ra);
  355. PR_ASSERT(sdn);
  356. dp = (Dirsync_Private *) agmt_get_priv(ra);
  357. PR_ASSERT (dp);
  358. slapi_sdn_free(&dp->directory_subtree);
  359. dp->directory_subtree = sdn;
  360. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_directory_replarea\n" );
  361. }
  362. PRBool windows_private_create_users(const Repl_Agmt *ra)
  363. {
  364. Dirsync_Private *dp;
  365. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_create_users\n" );
  366. PR_ASSERT(ra);
  367. dp = (Dirsync_Private *) agmt_get_priv(ra);
  368. PR_ASSERT (dp);
  369. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_create_users\n" );
  370. return dp->create_users_from_dirsync;
  371. }
  372. void windows_private_set_create_users(const Repl_Agmt *ra, PRBool value)
  373. {
  374. Dirsync_Private *dp;
  375. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_create_users\n" );
  376. PR_ASSERT(ra);
  377. dp = (Dirsync_Private *) agmt_get_priv(ra);
  378. PR_ASSERT (dp);
  379. dp->create_users_from_dirsync = value;
  380. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_create_users\n" );
  381. }
  382. PRBool windows_private_create_groups(const Repl_Agmt *ra)
  383. {
  384. Dirsync_Private *dp;
  385. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_create_groups\n" );
  386. PR_ASSERT(ra);
  387. dp = (Dirsync_Private *) agmt_get_priv(ra);
  388. PR_ASSERT (dp);
  389. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_create_groups\n" );
  390. return dp->create_groups_from_dirsync;
  391. }
  392. void windows_private_set_create_groups(const Repl_Agmt *ra, PRBool value)
  393. {
  394. Dirsync_Private *dp;
  395. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_create_groups\n" );
  396. PR_ASSERT(ra);
  397. dp = (Dirsync_Private *) agmt_get_priv(ra);
  398. PR_ASSERT (dp);
  399. dp->create_groups_from_dirsync = value;
  400. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_create_groups\n" );
  401. }
  402. /*
  403. This function returns the current Dirsync_Private that's inside
  404. Repl_Agmt ra as a ldap control.
  405. */
  406. LDAPControl* windows_private_dirsync_control(const Repl_Agmt *ra)
  407. {
  408. LDAPControl *control = NULL;
  409. BerElement *ber;
  410. Dirsync_Private *dp;
  411. char iscritical = PR_TRUE;
  412. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_dirsync_control\n" );
  413. PR_ASSERT(ra);
  414. dp = (Dirsync_Private *) agmt_get_priv(ra);
  415. PR_ASSERT (dp);
  416. ber = ber_alloc();
  417. ber_printf( ber, "{iio}", dp->dirsync_flags, dp->dirsync_maxattributecount, dp->dirsync_cookie, dp->dirsync_cookie_len );
  418. /* Use a regular directory server instead of a real AD - for testing */
  419. if (getenv("WINSYNC_USE_DS")) {
  420. iscritical = PR_FALSE;
  421. }
  422. slapi_build_control( REPL_DIRSYNC_CONTROL_OID, ber, iscritical, &control);
  423. ber_free(ber,1);
  424. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_dirsync_control\n" );
  425. return control;
  426. }
  427. /*
  428. This function scans the array of controls and updates the Repl_Agmt's
  429. Dirsync_Private if the dirsync control is found.
  430. */
  431. void windows_private_update_dirsync_control(const Repl_Agmt *ra,LDAPControl **controls )
  432. {
  433. Dirsync_Private *dp;
  434. int foundDirsyncControl;
  435. int i;
  436. LDAPControl *dirsync = NULL;
  437. BerElement *ber = NULL;
  438. ber_int_t hasMoreData;
  439. ber_int_t maxAttributeCount;
  440. BerValue *serverCookie = NULL;
  441. #ifdef FOR_DEBUGGING
  442. int return_value = LDAP_SUCCESS;
  443. #endif
  444. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_update_dirsync_control\n" );
  445. PR_ASSERT(ra);
  446. dp = (Dirsync_Private *) agmt_get_priv(ra);
  447. PR_ASSERT (dp);
  448. if (NULL != controls )
  449. {
  450. foundDirsyncControl = 0;
  451. for ( i = 0; (( controls[i] != NULL ) && ( !foundDirsyncControl )); i++ ) {
  452. foundDirsyncControl = !strcmp( controls[i]->ldctl_oid, REPL_DIRSYNC_CONTROL_OID );
  453. }
  454. if ( !foundDirsyncControl )
  455. {
  456. #ifdef FOR_DEBUGGING
  457. return_value = LDAP_CONTROL_NOT_FOUND;
  458. #endif
  459. goto choke;
  460. }
  461. else
  462. {
  463. dirsync = slapi_dup_control( controls[i-1]);
  464. }
  465. ber = ber_init( &dirsync->ldctl_value ) ;
  466. if (ber_scanf( ber, "{iiO}", &hasMoreData, &maxAttributeCount, &serverCookie) == LBER_ERROR)
  467. {
  468. #ifdef FOR_DEBUGGING
  469. return_value = LDAP_CONTROL_NOT_FOUND;
  470. #endif
  471. goto choke;
  472. }
  473. slapi_ch_free_string(&dp->dirsync_cookie);
  474. dp->dirsync_cookie = ( char* ) slapi_ch_malloc(serverCookie->bv_len + 1);
  475. memcpy(dp->dirsync_cookie, serverCookie->bv_val, serverCookie->bv_len);
  476. dp->dirsync_cookie_len = (int) serverCookie->bv_len; /* XXX shouldn't cast? */
  477. /* dp->dirsync_maxattributecount = maxAttributeCount; We don't need to keep this */
  478. dp->dirsync_cookie_has_more = hasMoreData;
  479. choke:
  480. ber_bvfree(serverCookie);
  481. ber_free(ber,1);
  482. ldap_control_free(dirsync);
  483. }
  484. else
  485. {
  486. #ifdef FOR_DEBUGGING
  487. return_value = LDAP_CONTROL_NOT_FOUND;
  488. #endif
  489. }
  490. #ifdef FOR_DEBUGGING
  491. LDAPDebug1Arg( LDAP_DEBUG_TRACE, "<= windows_private_update_dirsync_control: rc=%d\n", return_value);
  492. #else
  493. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_update_dirsync_control\n" );
  494. #endif
  495. }
  496. PRBool windows_private_dirsync_has_more(const Repl_Agmt *ra)
  497. {
  498. Dirsync_Private *dp;
  499. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_dirsync_has_more\n" );
  500. PR_ASSERT(ra);
  501. dp = (Dirsync_Private *) agmt_get_priv(ra);
  502. PR_ASSERT (dp);
  503. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_dirsync_has_more\n" );
  504. return dp->dirsync_cookie_has_more;
  505. }
  506. void windows_private_null_dirsync_cookie(const Repl_Agmt *ra)
  507. {
  508. Dirsync_Private *dp;
  509. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_null_dirsync_control\n" );
  510. dp = (Dirsync_Private *) agmt_get_priv(ra);
  511. PR_ASSERT (dp);
  512. dp->dirsync_cookie_len = 0;
  513. slapi_ch_free_string(&dp->dirsync_cookie);
  514. dp->dirsync_cookie = NULL;
  515. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_null_dirsync_control\n" );
  516. }
  517. static
  518. Slapi_Mods *windows_private_get_cookie_mod(Dirsync_Private *dp, int modtype)
  519. {
  520. Slapi_Mods *smods = NULL;
  521. smods = slapi_mods_new();
  522. slapi_mods_add( smods, modtype,
  523. "nsds7DirsyncCookie", dp->dirsync_cookie_len , dp->dirsync_cookie);
  524. return smods;
  525. }
  526. /* writes the current cookie into dse.ldif under the replication agreement entry
  527. returns: ldap result code of the operation. */
  528. int
  529. windows_private_save_dirsync_cookie(const Repl_Agmt *ra)
  530. {
  531. Dirsync_Private *dp = NULL;
  532. Slapi_PBlock *pb = NULL;
  533. const char* dn = NULL;
  534. Slapi_DN* sdn = NULL;
  535. int rc = 0;
  536. Slapi_Mods *mods = NULL;
  537. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_save_dirsync_cookie\n" );
  538. PR_ASSERT(ra);
  539. dp = (Dirsync_Private *) agmt_get_priv(ra);
  540. PR_ASSERT (dp);
  541. pb = slapi_pblock_new ();
  542. mods = windows_private_get_cookie_mod(dp, LDAP_MOD_REPLACE);
  543. sdn = slapi_sdn_dup( agmt_get_dn_byref(ra) );
  544. dn = slapi_sdn_get_dn(sdn);
  545. slapi_modify_internal_set_pb (pb, dn, slapi_mods_get_ldapmods_byref(mods), NULL, NULL,
  546. repl_get_plugin_identity(PLUGIN_MULTIMASTER_REPLICATION), 0);
  547. slapi_modify_internal_pb (pb);
  548. slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &rc);
  549. if (rc == LDAP_NO_SUCH_ATTRIBUTE)
  550. { /* try again, but as an add instead */
  551. mods = windows_private_get_cookie_mod(dp, LDAP_MOD_ADD);
  552. slapi_modify_internal_set_pb (pb, dn, slapi_mods_get_ldapmods_byref(mods), NULL, NULL,
  553. repl_get_plugin_identity(PLUGIN_MULTIMASTER_REPLICATION), 0);
  554. slapi_modify_internal_pb (pb);
  555. slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &rc);
  556. }
  557. slapi_pblock_destroy (pb);
  558. slapi_mods_free(&mods);
  559. slapi_sdn_free(&sdn);
  560. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_save_dirsync_cookie\n" );
  561. return rc;
  562. }
  563. /* reads the cookie in dse.ldif to the replication agreement entry
  564. returns: ldap result code of ldap operation, or
  565. LDAP_NO_SUCH_ATTRIBUTE. (this is the equilivent of a null cookie) */
  566. int windows_private_load_dirsync_cookie(const Repl_Agmt *ra)
  567. {
  568. Dirsync_Private *dp = NULL;
  569. Slapi_PBlock *pb = NULL;
  570. Slapi_DN* sdn = NULL;
  571. int rc = 0;
  572. Slapi_Entry *entry = NULL;
  573. Slapi_Attr *attr = NULL;
  574. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_load_dirsync_cookie\n" );
  575. PR_ASSERT(ra);
  576. dp = (Dirsync_Private *) agmt_get_priv(ra);
  577. PR_ASSERT (dp);
  578. pb = slapi_pblock_new ();
  579. sdn = slapi_sdn_dup( agmt_get_dn_byref(ra) );
  580. rc = slapi_search_internal_get_entry(sdn, NULL, &entry,
  581. repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION));
  582. if (rc == 0)
  583. {
  584. rc= slapi_entry_attr_find( entry, type_nsds7DirsyncCookie, &attr );
  585. if (attr)
  586. {
  587. struct berval **vals;
  588. rc = slapi_attr_get_bervals_copy(attr, &vals );
  589. if (vals)
  590. {
  591. dp->dirsync_cookie_len = (int) (vals[0])->bv_len;
  592. slapi_ch_free_string(&dp->dirsync_cookie);
  593. dp->dirsync_cookie = ( char* ) slapi_ch_malloc(dp->dirsync_cookie_len + 1);
  594. memcpy(dp->dirsync_cookie,(vals[0]->bv_val), (vals[0])->bv_len+1);
  595. }
  596. ber_bvecfree(vals);
  597. /* we do not free attr */
  598. }
  599. else
  600. {
  601. rc = LDAP_NO_SUCH_ATTRIBUTE;
  602. }
  603. }
  604. if (entry)
  605. {
  606. slapi_entry_free(entry);
  607. }
  608. slapi_sdn_free( &sdn);
  609. slapi_pblock_destroy (pb);
  610. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_load_dirsync_cookie\n" );
  611. return rc;
  612. }
  613. /* get returns a pointer to the structure - do not free */
  614. Slapi_Entry *windows_private_get_raw_entry(const Repl_Agmt *ra)
  615. {
  616. Dirsync_Private *dp;
  617. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_raw_entry\n" );
  618. dp = (Dirsync_Private *) agmt_get_priv(ra);
  619. PR_ASSERT (dp);
  620. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_raw_entry\n" );
  621. return dp->raw_entry;
  622. }
  623. /* this is passin - windows_private owns the pointer, not a copy */
  624. void windows_private_set_raw_entry(const Repl_Agmt *ra, Slapi_Entry *e)
  625. {
  626. Dirsync_Private *dp;
  627. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_raw_entry\n" );
  628. dp = (Dirsync_Private *) agmt_get_priv(ra);
  629. PR_ASSERT (dp);
  630. /* If the keep raw entry flag is set, just free the passed
  631. * in entry and leave the current raw entry in place. */
  632. if (windows_private_get_keep_raw_entry(ra)) {
  633. slapi_entry_free(e);
  634. } else {
  635. slapi_entry_free(dp->raw_entry);
  636. dp->raw_entry = e;
  637. }
  638. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_raw_entry\n" );
  639. }
  640. /* Setting keep to 1 will cause the current raw entry to remain, even if
  641. * windows_private_set_raw_entry() is called. This behavior will persist
  642. * until this flag is set back to 0. */
  643. void windows_private_set_keep_raw_entry(const Repl_Agmt *ra, int keep)
  644. {
  645. Dirsync_Private *dp;
  646. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_keep_raw_entry\n" );
  647. dp = (Dirsync_Private *) agmt_get_priv(ra);
  648. PR_ASSERT (dp);
  649. dp->keep_raw_entry = keep;
  650. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_keep_raw_entry\n" );
  651. }
  652. int windows_private_get_keep_raw_entry(const Repl_Agmt *ra)
  653. {
  654. Dirsync_Private *dp;
  655. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_keep_raw_entry\n" );
  656. dp = (Dirsync_Private *) agmt_get_priv(ra);
  657. PR_ASSERT (dp);
  658. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_keep_raw_entry\n" );
  659. return dp->keep_raw_entry;
  660. }
  661. void *windows_private_get_api_cookie(const Repl_Agmt *ra)
  662. {
  663. Dirsync_Private *dp;
  664. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_api_cookie\n" );
  665. dp = (Dirsync_Private *) agmt_get_priv(ra);
  666. PR_ASSERT (dp);
  667. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_api_cookie\n" );
  668. return dp->api_cookie;
  669. }
  670. void windows_private_set_api_cookie(Repl_Agmt *ra, void *api_cookie)
  671. {
  672. Dirsync_Private *dp;
  673. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_api_cookie\n" );
  674. dp = (Dirsync_Private *) agmt_get_priv(ra);
  675. PR_ASSERT (dp);
  676. dp->api_cookie = api_cookie;
  677. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_api_cookie\n" );
  678. }
  679. time_t
  680. windows_private_get_sync_interval(const Repl_Agmt *ra)
  681. {
  682. Dirsync_Private *dp;
  683. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_get_sync_interval\n" );
  684. PR_ASSERT(ra);
  685. dp = (Dirsync_Private *) agmt_get_priv(ra);
  686. PR_ASSERT (dp);
  687. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_get_sync_interval\n" );
  688. return dp->sync_interval;
  689. }
  690. void
  691. windows_private_set_sync_interval(Repl_Agmt *ra, char *str)
  692. {
  693. Dirsync_Private *dp;
  694. time_t tmpval = 0;
  695. LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_private_set_sync_interval\n" );
  696. PR_ASSERT(ra);
  697. dp = (Dirsync_Private *) agmt_get_priv(ra);
  698. PR_ASSERT (dp);
  699. if (str && (tmpval = (time_t)atol(str))) {
  700. dp->sync_interval = tmpval;
  701. }
  702. LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_private_set_sync_interval\n" );
  703. }
  704. /* an array of function pointers */
  705. static void **_WinSyncAPI = NULL;
  706. void
  707. windows_plugin_init(Repl_Agmt *ra)
  708. {
  709. void *cookie = NULL;
  710. winsync_plugin_init_cb initfunc = NULL;
  711. LDAPDebug0Args( LDAP_DEBUG_PLUGIN, "--> windows_plugin_init_start -- begin\n");
  712. /* if the function pointer array is null, get the functions - we will
  713. call init once per replication agreement, but will only grab the
  714. api once */
  715. if((NULL == _WinSyncAPI) &&
  716. (slapi_apib_get_interface(WINSYNC_v1_0_GUID, &_WinSyncAPI) ||
  717. (NULL == _WinSyncAPI)))
  718. {
  719. LDAPDebug1Arg( LDAP_DEBUG_PLUGIN,
  720. "<-- windows_plugin_init_start -- no windows plugin API registered for GUID [%s] -- end\n",
  721. WINSYNC_v1_0_GUID);
  722. return;
  723. }
  724. initfunc = (winsync_plugin_init_cb)_WinSyncAPI[WINSYNC_PLUGIN_INIT_CB];
  725. if (initfunc) {
  726. cookie = (*initfunc)(windows_private_get_directory_subtree(ra),
  727. windows_private_get_windows_subtree(ra));
  728. }
  729. windows_private_set_api_cookie(ra, cookie);
  730. LDAPDebug0Args( LDAP_DEBUG_PLUGIN, "<-- windows_plugin_init_start -- end\n");
  731. return;
  732. }
  733. void
  734. winsync_plugin_call_dirsync_search_params_cb(const Repl_Agmt *ra, const char *agmt_dn,
  735. char **base, int *scope, char **filter,
  736. char ***attrs, LDAPControl ***serverctrls)
  737. {
  738. winsync_search_params_cb thefunc =
  739. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_DIRSYNC_SEARCH_CB]) ?
  740. (winsync_search_params_cb)_WinSyncAPI[WINSYNC_PLUGIN_DIRSYNC_SEARCH_CB] :
  741. NULL;
  742. if (!thefunc) {
  743. return;
  744. }
  745. (*thefunc)(windows_private_get_api_cookie(ra), agmt_dn, base, scope, filter,
  746. attrs, serverctrls);
  747. return;
  748. }
  749. void
  750. winsync_plugin_call_pre_ad_search_cb(const Repl_Agmt *ra, const char *agmt_dn,
  751. char **base, int *scope, char **filter,
  752. char ***attrs, LDAPControl ***serverctrls)
  753. {
  754. winsync_search_params_cb thefunc =
  755. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_SEARCH_CB]) ?
  756. (winsync_search_params_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_SEARCH_CB] :
  757. NULL;
  758. if (!thefunc) {
  759. return;
  760. }
  761. (*thefunc)(windows_private_get_api_cookie(ra), agmt_dn, base, scope, filter,
  762. attrs, serverctrls);
  763. return;
  764. }
  765. void
  766. winsync_plugin_call_pre_ds_search_entry_cb(const Repl_Agmt *ra, const char *agmt_dn,
  767. char **base, int *scope, char **filter,
  768. char ***attrs, LDAPControl ***serverctrls)
  769. {
  770. winsync_search_params_cb thefunc =
  771. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_SEARCH_ENTRY_CB]) ?
  772. (winsync_search_params_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_SEARCH_ENTRY_CB] :
  773. NULL;
  774. if (!thefunc) {
  775. return;
  776. }
  777. (*thefunc)(windows_private_get_api_cookie(ra), agmt_dn, base, scope, filter,
  778. attrs, serverctrls);
  779. return;
  780. }
  781. void
  782. winsync_plugin_call_pre_ds_search_all_cb(const Repl_Agmt *ra, const char *agmt_dn,
  783. char **base, int *scope, char **filter,
  784. char ***attrs, LDAPControl ***serverctrls)
  785. {
  786. winsync_search_params_cb thefunc =
  787. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_SEARCH_ALL_CB]) ?
  788. (winsync_search_params_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_SEARCH_ALL_CB] :
  789. NULL;
  790. if (!thefunc) {
  791. return;
  792. }
  793. (*thefunc)(windows_private_get_api_cookie(ra), agmt_dn, base, scope, filter,
  794. attrs, serverctrls);
  795. return;
  796. }
  797. void
  798. winsync_plugin_call_pre_ad_mod_user_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  799. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  800. Slapi_Mods *smods, int *do_modify)
  801. {
  802. winsync_pre_mod_cb thefunc =
  803. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_USER_CB]) ?
  804. (winsync_pre_mod_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_USER_CB] :
  805. NULL;
  806. if (!thefunc) {
  807. return;
  808. }
  809. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  810. ds_entry, smods, do_modify);
  811. return;
  812. }
  813. void
  814. winsync_plugin_call_pre_ad_mod_group_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  815. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  816. Slapi_Mods *smods, int *do_modify)
  817. {
  818. winsync_pre_mod_cb thefunc =
  819. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_CB]) ?
  820. (winsync_pre_mod_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_CB] :
  821. NULL;
  822. if (!thefunc) {
  823. return;
  824. }
  825. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  826. ds_entry, smods, do_modify);
  827. return;
  828. }
  829. void
  830. winsync_plugin_call_pre_ds_mod_user_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  831. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  832. Slapi_Mods *smods, int *do_modify)
  833. {
  834. winsync_pre_mod_cb thefunc =
  835. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_MOD_USER_CB]) ?
  836. (winsync_pre_mod_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_MOD_USER_CB] :
  837. NULL;
  838. if (!thefunc) {
  839. return;
  840. }
  841. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  842. ds_entry, smods, do_modify);
  843. return;
  844. }
  845. void
  846. winsync_plugin_call_pre_ds_mod_group_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  847. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry,
  848. Slapi_Mods *smods, int *do_modify)
  849. {
  850. winsync_pre_mod_cb thefunc =
  851. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_MOD_GROUP_CB]) ?
  852. (winsync_pre_mod_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_MOD_GROUP_CB] :
  853. NULL;
  854. if (!thefunc) {
  855. return;
  856. }
  857. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  858. ds_entry, smods, do_modify);
  859. return;
  860. }
  861. void
  862. winsync_plugin_call_pre_ds_add_user_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  863. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry)
  864. {
  865. winsync_pre_add_cb thefunc =
  866. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_ADD_USER_CB]) ?
  867. (winsync_pre_add_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_ADD_USER_CB] :
  868. NULL;
  869. if (!thefunc) {
  870. return;
  871. }
  872. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  873. ds_entry);
  874. return;
  875. }
  876. void
  877. winsync_plugin_call_pre_ds_add_group_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  878. Slapi_Entry *ad_entry, Slapi_Entry *ds_entry)
  879. {
  880. winsync_pre_add_cb thefunc =
  881. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_ADD_GROUP_CB]) ?
  882. (winsync_pre_add_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_DS_ADD_GROUP_CB] :
  883. NULL;
  884. if (!thefunc) {
  885. return;
  886. }
  887. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  888. ds_entry);
  889. return;
  890. }
  891. void
  892. winsync_plugin_call_get_new_ds_user_dn_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  893. Slapi_Entry *ad_entry, char **new_dn_string,
  894. const Slapi_DN *ds_suffix, const Slapi_DN *ad_suffix)
  895. {
  896. winsync_get_new_dn_cb thefunc =
  897. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_GET_NEW_DS_USER_DN_CB]) ?
  898. (winsync_get_new_dn_cb)_WinSyncAPI[WINSYNC_PLUGIN_GET_NEW_DS_USER_DN_CB] :
  899. NULL;
  900. if (!thefunc) {
  901. return;
  902. }
  903. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  904. new_dn_string, ds_suffix, ad_suffix);
  905. return;
  906. }
  907. void
  908. winsync_plugin_call_get_new_ds_group_dn_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  909. Slapi_Entry *ad_entry, char **new_dn_string,
  910. const Slapi_DN *ds_suffix, const Slapi_DN *ad_suffix)
  911. {
  912. winsync_get_new_dn_cb thefunc =
  913. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_GET_NEW_DS_GROUP_DN_CB]) ?
  914. (winsync_get_new_dn_cb)_WinSyncAPI[WINSYNC_PLUGIN_GET_NEW_DS_GROUP_DN_CB] :
  915. NULL;
  916. if (!thefunc) {
  917. return;
  918. }
  919. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, ad_entry,
  920. new_dn_string, ds_suffix, ad_suffix);
  921. return;
  922. }
  923. void
  924. winsync_plugin_call_pre_ad_mod_user_mods_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  925. const Slapi_DN *local_dn,
  926. const Slapi_Entry *ds_entry,
  927. LDAPMod * const *origmods,
  928. Slapi_DN *remote_dn, LDAPMod ***modstosend)
  929. {
  930. winsync_pre_ad_mod_mods_cb thefunc =
  931. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_USER_MODS_CB]) ?
  932. (winsync_pre_ad_mod_mods_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_USER_MODS_CB] :
  933. NULL;
  934. if (!thefunc) {
  935. return;
  936. }
  937. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, local_dn,
  938. ds_entry, origmods, remote_dn, modstosend);
  939. return;
  940. }
  941. void
  942. winsync_plugin_call_pre_ad_mod_group_mods_cb(const Repl_Agmt *ra, const Slapi_Entry *rawentry,
  943. const Slapi_DN *local_dn,
  944. const Slapi_Entry *ds_entry,
  945. LDAPMod * const *origmods,
  946. Slapi_DN *remote_dn, LDAPMod ***modstosend)
  947. {
  948. winsync_pre_ad_mod_mods_cb thefunc =
  949. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_MODS_CB]) ?
  950. (winsync_pre_ad_mod_mods_cb)_WinSyncAPI[WINSYNC_PLUGIN_PRE_AD_MOD_GROUP_MODS_CB] :
  951. NULL;
  952. if (!thefunc) {
  953. return;
  954. }
  955. (*thefunc)(windows_private_get_api_cookie(ra), rawentry, local_dn,
  956. ds_entry, origmods, remote_dn, modstosend);
  957. return;
  958. }
  959. int
  960. winsync_plugin_call_can_add_entry_to_ad_cb(const Repl_Agmt *ra, const Slapi_Entry *local_entry,
  961. const Slapi_DN *remote_dn)
  962. {
  963. winsync_can_add_to_ad_cb thefunc =
  964. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_CAN_ADD_ENTRY_TO_AD_CB]) ?
  965. (winsync_can_add_to_ad_cb)_WinSyncAPI[WINSYNC_PLUGIN_CAN_ADD_ENTRY_TO_AD_CB] :
  966. NULL;
  967. if (!thefunc) {
  968. return 1; /* default is entry can be added to AD */
  969. }
  970. return (*thefunc)(windows_private_get_api_cookie(ra), local_entry, remote_dn);
  971. }
  972. void
  973. winsync_plugin_call_begin_update_cb(const Repl_Agmt *ra, const Slapi_DN *ds_subtree,
  974. const Slapi_DN *ad_subtree, int is_total)
  975. {
  976. winsync_plugin_update_cb thefunc =
  977. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_BEGIN_UPDATE_CB]) ?
  978. (winsync_plugin_update_cb)_WinSyncAPI[WINSYNC_PLUGIN_BEGIN_UPDATE_CB] :
  979. NULL;
  980. if (!thefunc) {
  981. return;
  982. }
  983. (*thefunc)(windows_private_get_api_cookie(ra), ds_subtree, ad_subtree, is_total);
  984. return;
  985. }
  986. void
  987. winsync_plugin_call_end_update_cb(const Repl_Agmt *ra, const Slapi_DN *ds_subtree,
  988. const Slapi_DN *ad_subtree, int is_total)
  989. {
  990. winsync_plugin_update_cb thefunc =
  991. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_END_UPDATE_CB]) ?
  992. (winsync_plugin_update_cb)_WinSyncAPI[WINSYNC_PLUGIN_END_UPDATE_CB] :
  993. NULL;
  994. if (!thefunc) {
  995. return;
  996. }
  997. (*thefunc)(windows_private_get_api_cookie(ra), ds_subtree, ad_subtree, is_total);
  998. return;
  999. }
  1000. void
  1001. winsync_plugin_call_destroy_agmt_cb(const Repl_Agmt *ra,
  1002. const Slapi_DN *ds_subtree,
  1003. const Slapi_DN *ad_subtree)
  1004. {
  1005. winsync_plugin_destroy_agmt_cb thefunc =
  1006. (_WinSyncAPI && _WinSyncAPI[WINSYNC_PLUGIN_DESTROY_AGMT_CB]) ?
  1007. (winsync_plugin_destroy_agmt_cb)_WinSyncAPI[WINSYNC_PLUGIN_DESTROY_AGMT_CB] :
  1008. NULL;
  1009. if (thefunc) {
  1010. (*thefunc)(windows_private_get_api_cookie(ra), ds_subtree, ad_subtree);
  1011. }
  1012. return;
  1013. }
  1014. /* #define WINSYNC_TEST_IPA */
  1015. #ifdef WINSYNC_TEST_IPA
  1016. #include "ipa-winsync.c"
  1017. #include "ipa-winsync-config.c"
  1018. #endif