| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /** BEGIN COPYRIGHT BLOCK
- * This Program is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation; version 2 of the License.
- *
- * This Program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #include "slapi-plugin.h"
- #include "repl.h"
- #include "repl5.h"
- int
- legacy_postop( Slapi_PBlock *pb, const char *caller, int operation_type)
- {
- int rc = 0;
- Object *r_obj;
- Replica *r;
-
- r_obj = replica_get_replica_for_op (pb);
- if (r_obj == NULL) /* there is no replica configured for this operations */
- return 0;
- else
- {
- /* check if this replica is 4.0 consumer */
- r = (Replica*)object_get_data (r_obj);
- PR_ASSERT (r);
- /* this replica is not a 4.0 consumer - so we don't need to do any processing */
- if (!replica_is_legacy_consumer (r))
- {
- object_release (r_obj);
- return 0;
- }
-
- object_release (r_obj);
- }
- slapi_pblock_get(pb, SLAPI_PLUGIN_OPRETURN, &rc);
- if (0 == rc)
- {
- if (OP_ADD == operation_type || OP_MODIFY == operation_type)
- {
- void *op;
- consumer_operation_extension *opext = NULL;
- /* Optimise out traversal of mods/entry if no cop{ied|ying}From present */
- slapi_pblock_get(pb, SLAPI_OPERATION, &op);
- opext = (consumer_operation_extension*) repl_con_get_ext (REPL_CON_EXT_OP, op);
- if (NULL != opext && opext->has_cf)
- {
- process_legacy_cf( pb );
- }
- }
- }
- return 0;
- }
- int
- legacy_preop(Slapi_PBlock *pb, const char *caller, int operation_type)
- {
- int rc = 0;
- Slapi_Operation *operation = NULL;
- consumer_operation_extension *opext = NULL;
- int has_cf = 0;
- Object *r_obj;
- Replica *r;
- int is_legacy_op = 0;
- slapi_pblock_get( pb, SLAPI_OPERATION, &operation );
- is_legacy_op = operation_is_flag_set(operation,OP_FLAG_LEGACY_REPLICATION_DN);
- r_obj = replica_get_replica_for_op (pb);
- if (r_obj == NULL) { /* there is no replica configured for this operations */
- if (is_legacy_op){
- /* This is a legacy replication operation but there are NO replica defined
- Just refuse it */
- slapi_send_ldap_result(pb, LDAP_UNWILLING_TO_PERFORM, NULL,
- "Replication operation refused because the consumer is not defined as a replica", 0, NULL);
- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name,
- "Incoming replication operation was refused because "
- "there's no replica defined for this operation\n");
- return -1;
- }
- else {
- return 0;
- }
- }
- else
- {
- /* check if this replica is 4.0 consumer */
- r = (Replica*)object_get_data (r_obj);
- PR_ASSERT (r);
- if (!replica_is_legacy_consumer (r))
- {
- object_release (r_obj);
- if (is_legacy_op) {
- /* This is a legacy replication operation
- but the replica is doesn't accept from legacy
- Just refuse it */
- slapi_send_ldap_result(pb, LDAP_UNWILLING_TO_PERFORM, NULL,
- "Replication operation refused because "
- "the consumer is not defined as a legacy replica", 0, NULL);
- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name,
- "Incoming replication operation was refused because "
- "there's no legacy replica defined for this operation\n");
- return -1;
- } else {
- return 0;
- }
- }
- object_release (r_obj);
- }
- opext = (consumer_operation_extension*) repl_con_get_ext (REPL_CON_EXT_OP, operation);
-
- switch (operation_type) {
- case OP_ADD:
- {
- Slapi_Entry *e = NULL;
- Slapi_Attr *attr;
- /*
- * Check if the entry being added has copiedFrom/copyingFrom
- * attributes.
- */
- slapi_pblock_get(pb, SLAPI_ADD_ENTRY, &e);
- if (NULL != e)
- {
- if (slapi_entry_attr_find(e, type_copiedFrom, &attr) == 0)
- {
- has_cf = 1;
- }
- else
- if (slapi_entry_attr_find(e, type_copyingFrom, &attr) == 0)
- {
- has_cf = 1;
- }
- }
- /* JCMREPL - If this is a replicated operation then the baggage control also contains the Unique Identifier of the superior entry. */
- }
- break;
- case OP_MODIFY:
- {
- LDAPMod **mods = NULL;
- int i;
-
- /*
- * Check if the modification contains copiedFrom/copyingFrom
- * attributes.
- */
- slapi_pblock_get(pb, SLAPI_MODIFY_MODS, &mods);
- for (i = 0; NULL != mods && NULL != mods[i]; i++)
- {
- if ((strcasecmp(mods[i]->mod_type, type_copiedFrom) == 0) ||
- (strcasecmp(mods[i]->mod_type, type_copyingFrom) == 0))
- {
- has_cf = 1;
- }
- }
- }
- break;
- case OP_DELETE:
- break;
- case OP_MODDN:
- break;
- }
- /* Squirrel away an optimization hint for the postop plugin */
- opext->has_cf = has_cf;
- return rc;
- }
|