cb_modify.c 10 KB

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