cb_modify.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. #include "cb.h"
  42. static void cb_remove_illegal_mods(cb_backend_instance * inst, LDAPMod **mods);
  43. /*
  44. * Perform a modify operation
  45. *
  46. * Returns:
  47. * 0 - success
  48. * <0 - fail
  49. *
  50. */
  51. int
  52. chaining_back_modify ( Slapi_PBlock *pb )
  53. {
  54. Slapi_Backend *be;
  55. cb_backend_instance *cb;
  56. LDAPControl **ctrls, **serverctrls;
  57. int rc,parse_rc,msgid,i;
  58. LDAP *ld=NULL;
  59. char **referrals=NULL;
  60. LDAPMod ** mods;
  61. LDAPMessage * res;
  62. char *dn,* matched_msg, *error_msg;
  63. char *cnxerrbuf=NULL;
  64. time_t endtime;
  65. cb_outgoing_conn *cnx;
  66. if ( LDAP_SUCCESS != (rc=cb_forward_operation(pb) )) {
  67. cb_send_ldap_result( pb, rc, NULL, "Chaining forbidden", 0, NULL );
  68. return -1;
  69. }
  70. slapi_pblock_get( pb, SLAPI_BACKEND, &be );
  71. cb = cb_get_instance(be);
  72. cb_update_monitor_info(pb,cb,SLAPI_OPERATION_MODIFY);
  73. /* Check wether the chaining BE is available or not */
  74. if ( cb_check_availability( cb, pb ) == FARMSERVER_UNAVAILABLE ){
  75. return -1;
  76. }
  77. slapi_pblock_get( pb, SLAPI_MODIFY_TARGET, &dn );
  78. if (cb_debug_on()) {
  79. slapi_log_error( SLAPI_LOG_PLUGIN, CB_PLUGIN_SUBSYSTEM,"modify: target:<%s>\n",dn);
  80. }
  81. ctrls=serverctrls=NULL;
  82. slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &mods );
  83. slapi_pblock_get( pb, SLAPI_REQCONTROLS, &ctrls );
  84. /* Check acls */
  85. if ( cb->local_acl && !cb->associated_be_is_disabled ) {
  86. char * errbuf=NULL;
  87. Slapi_Entry *te = slapi_entry_alloc();
  88. slapi_entry_set_dn(te,slapi_ch_strdup(dn));
  89. rc = slapi_acl_check_mods( pb, te, mods, &errbuf);
  90. slapi_entry_free(te);
  91. if ( rc != LDAP_SUCCESS ) {
  92. cb_send_ldap_result( pb, rc, NULL, errbuf, 0, NULL );
  93. slapi_ch_free((void **)&errbuf);
  94. return -1;
  95. }
  96. }
  97. /* Grab a connection handle */
  98. rc = cb_get_connection(cb->pool, &ld, &cnx, NULL, &cnxerrbuf);
  99. if (LDAP_SUCCESS != rc) {
  100. static int warned_get_conn = 0;
  101. if (!warned_get_conn) {
  102. slapi_log_error(SLAPI_LOG_FATAL, CB_PLUGIN_SUBSYSTEM,
  103. "cb_get_connection failed (%d) %s\n",
  104. rc, ldap_err2string(rc));
  105. warned_get_conn = 1;
  106. }
  107. cb_send_ldap_result(pb, LDAP_OPERATIONS_ERROR, NULL,
  108. cnxerrbuf, 0, NULL);
  109. slapi_ch_free_string(&cnxerrbuf);
  110. /* ping the farm.
  111. * If the farm is unreachable, we increment the counter */
  112. cb_ping_farm(cb, NULL, 0);
  113. return -1;
  114. }
  115. /* Control management */
  116. if ( (rc = cb_update_controls( pb,ld,&ctrls,CB_UPDATE_CONTROLS_ADDAUTH )) != LDAP_SUCCESS ) {
  117. cb_send_ldap_result( pb, rc, NULL,NULL, 0, NULL);
  118. cb_release_op_connection(cb->pool,ld,CB_LDAP_CONN_ERROR(rc));
  119. /* Don't free mods here: are freed at the do_modify level */
  120. return -1;
  121. }
  122. if ( slapi_op_abandoned( pb )) {
  123. cb_release_op_connection(cb->pool,ld,0);
  124. /* Don't free mods here: are freed at the do_modify level */
  125. if ( NULL != ctrls)
  126. ldap_controls_free(ctrls);
  127. return -1;
  128. }
  129. /* Remove illegal attributes from the mods */
  130. cb_remove_illegal_mods(cb,mods);
  131. /* heart-beat management */
  132. if (cb->max_idle_time>0)
  133. endtime=current_time() + cb->max_idle_time;
  134. /* Send LDAP operation to the remote host */
  135. rc = ldap_modify_ext( ld, dn, mods, ctrls, NULL, &msgid );
  136. if ( NULL != ctrls)
  137. ldap_controls_free(ctrls);
  138. if ( rc != LDAP_SUCCESS ) {
  139. cb_send_ldap_result( pb, LDAP_OPERATIONS_ERROR, NULL, ldap_err2string(rc), 0, NULL);
  140. cb_release_op_connection(cb->pool,ld,CB_LDAP_CONN_ERROR(rc));
  141. return -1;
  142. }
  143. while ( 1 ) {
  144. if (cb_check_forward_abandon(cb,pb,ld,msgid)) {
  145. /* connection handle released */
  146. return -1;
  147. }
  148. rc = ldap_result( ld, msgid, 0, &cb->abandon_timeout, &res );
  149. switch ( rc ) {
  150. case -1:
  151. cb_send_ldap_result( pb, LDAP_OPERATIONS_ERROR, NULL,
  152. ldap_err2string(rc), 0, NULL);
  153. cb_release_op_connection(cb->pool,ld,CB_LDAP_CONN_ERROR(rc));
  154. if (res)
  155. ldap_msgfree(res);
  156. return -1;
  157. case 0:
  158. if ((rc=cb_ping_farm(cb,cnx,endtime)) != LDAP_SUCCESS) {
  159. /* does not respond. give up and return a*/
  160. /* error to the client. */
  161. /*cb_send_ldap_result(pb,LDAP_OPERATIONS_ERROR, NULL,
  162. ldap_err2string(rc), 0, NULL);*/
  163. cb_send_ldap_result(pb,LDAP_OPERATIONS_ERROR, NULL, "FARM SERVER TEMPORARY UNAVAILABLE", 0, NULL);
  164. cb_release_op_connection(cb->pool,ld,CB_LDAP_CONN_ERROR(rc));
  165. if (res)
  166. ldap_msgfree(res);
  167. return -1;
  168. }
  169. #ifdef CB_YIELD
  170. DS_Sleep(PR_INTERVAL_NO_WAIT);
  171. #endif
  172. break;
  173. default:
  174. matched_msg=error_msg=NULL;
  175. serverctrls=NULL;
  176. parse_rc = ldap_parse_result( ld, res, &rc, &matched_msg,
  177. &error_msg, &referrals, &serverctrls, 1 );
  178. if ( parse_rc != LDAP_SUCCESS ) {
  179. static int warned_parse_rc = 0;
  180. if (!warned_parse_rc) {
  181. slapi_log_error( SLAPI_LOG_FATAL, CB_PLUGIN_SUBSYSTEM,
  182. "%s%s%s\n",
  183. matched_msg?matched_msg:"",
  184. (matched_msg&&(*matched_msg!='\0'))?": ":"",
  185. ldap_err2string(parse_rc));
  186. warned_parse_rc = 1;
  187. }
  188. cb_send_ldap_result( pb, LDAP_OPERATIONS_ERROR, NULL,
  189. ENDUSERMSG, 0, NULL );
  190. cb_release_op_connection(cb->pool,ld,CB_LDAP_CONN_ERROR(parse_rc));
  191. slapi_ch_free((void **)&matched_msg);
  192. slapi_ch_free((void **)&error_msg);
  193. if (serverctrls)
  194. ldap_controls_free(serverctrls);
  195. /* jarnou: free referrals */
  196. if (referrals)
  197. charray_free(referrals);
  198. return -1;
  199. }
  200. if ( rc != LDAP_SUCCESS ) {
  201. struct berval ** refs = referrals2berval(referrals);
  202. static int warned_rc = 0;
  203. if (!warned_rc && error_msg) {
  204. slapi_log_error( SLAPI_LOG_FATAL, CB_PLUGIN_SUBSYSTEM,
  205. "%s%s%s\n",
  206. matched_msg?matched_msg:"",
  207. (matched_msg&&(*matched_msg!='\0'))?": ":"",
  208. error_msg );
  209. warned_rc = 1;
  210. }
  211. cb_send_ldap_result( pb, rc, matched_msg, ENDUSERMSG, 0, refs);
  212. cb_release_op_connection(cb->pool,ld,CB_LDAP_CONN_ERROR(rc));
  213. slapi_ch_free((void **)&matched_msg);
  214. slapi_ch_free((void **)&error_msg);
  215. if (refs)
  216. ber_bvecfree(refs);
  217. if (referrals)
  218. charray_free(referrals);
  219. if (serverctrls)
  220. ldap_controls_free(serverctrls);
  221. return -1;
  222. }
  223. cb_release_op_connection(cb->pool,ld,0);
  224. /* Add control response sent by the farm server */
  225. for (i=0; serverctrls && serverctrls[i];i++)
  226. slapi_pblock_set( pb, SLAPI_ADD_RESCONTROL, serverctrls[i]);
  227. /* SLAPI_ADD_RESCONTROL dups controls */
  228. if (serverctrls)
  229. ldap_controls_free(serverctrls);
  230. /* jarnou: free matched_msg, error_msg, and referrals if necessary */
  231. slapi_ch_free((void **)&matched_msg);
  232. slapi_ch_free((void **)&error_msg);
  233. if (referrals)
  234. charray_free(referrals);
  235. cb_send_ldap_result( pb, LDAP_SUCCESS, NULL, NULL, 0, NULL );
  236. return 0;
  237. }
  238. }
  239. /* Never reached */
  240. /* return 0; */
  241. }
  242. /* Function removes mods which are not allowed over-the-wire */
  243. static void
  244. cb_remove_illegal_mods(cb_backend_instance *inst, LDAPMod **mods)
  245. {
  246. int i, j;
  247. LDAPMod *tmp;
  248. if ( inst->illegal_attributes != NULL ) { /* Unlikely to happen */
  249. PR_RWLock_Wlock(inst->rwl_config_lock);
  250. for (j=0; inst->illegal_attributes[j]; j++) {
  251. for ( i = 0; mods[i] != NULL; i++ ) {
  252. if (slapi_attr_types_equivalent(inst->illegal_attributes[j],mods[i]->mod_type)) {
  253. tmp = mods[i];
  254. for ( j = i; mods[j] != NULL; j++ ) {
  255. mods[j] = mods[j + 1];
  256. }
  257. slapi_ch_free( (void**)&(tmp->mod_type) );
  258. if ( tmp->mod_bvalues != NULL ) {
  259. ber_bvecfree( tmp->mod_bvalues );
  260. }
  261. slapi_ch_free( (void**)&tmp );
  262. i--;
  263. }
  264. }
  265. }
  266. PR_RWLock_Unlock(inst->rwl_config_lock);
  267. }
  268. }