]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/modrdn.c
Merge remote branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
[openldap] / libraries / libldap / modrdn.c
index 1532f8691750fb2dfd42ef08e3dc0b10cb5465e2..23b251a568273c8852f6620143832aa722c4dcdf 100644 (file)
-/*
- *  Copyright (c) 1990 Regents of the University of Michigan.
- *  All rights reserved.
+/* $OpenLDAP$ */
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2012 The OpenLDAP Foundation.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.
+ *
+ * A copy of this license is available in the file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
+ */
+/* Portions Copyright (c) 1990 Regents of the University of Michigan.
+ * All rights reserved.
+ */
+/* Copyright 1999, Juan C. Gomez, All rights reserved.
+ * This software is not subject to any license of Silicon Graphics 
+ * Inc. or Purdue University.
  *
- *  modrdn.c
+ * Redistribution and use in source and binary forms are permitted
+ * without restriction or fee of any kind as long as this notice
+ * is preserved.
  */
 
-#ifndef lint 
-static char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
-#endif
+/* ACKNOWLEDGEMENTS:
+ *     Juan C. Gomez
+ */
 
-#include <stdio.h>
-#include <string.h>
+#include "portable.h"
 
-#ifdef MACOS
-#include "macos.h"
-#endif /* MACOS */
+#include <stdio.h>
 
-#if !defined( MACOS ) && !defined( DOS )
-#include <sys/types.h>
-#include <sys/socket.h>
-#endif
+#include <ac/socket.h>
+#include <ac/string.h>
+#include <ac/time.h>
 
-#include "lber.h"
-#include "ldap.h"
 #include "ldap-int.h"
 
 /*
- * ldap_modrdn2 - initiate an ldap (and X.500) modifyRDN operation. Parameters:
+ * A modify rdn request looks like this:
+ *     ModifyRDNRequest ::= SEQUENCE {
+ *             entry           DistinguishedName,
+ *             newrdn          RelativeDistinguishedName,
+ *             deleteoldrdn    BOOLEAN
+ *             newSuperior     [0] DistinguishedName   [v3 only]
+ *     }
+ */
+
+
+/*
+ * ldap_rename - initiate an ldap extended modifyDN operation.
  *
- *     ld              LDAP descriptor
- *     dn              DN of the object to modify
- *     newrdn          RDN to give the object
+ * Parameters:
+ *     ld                              LDAP descriptor
+ *     dn                              DN of the object to modify
+ *     newrdn                  RDN to give the object
  *     deleteoldrdn    nonzero means to delete old rdn values from the entry
+ *     newSuperior             DN of the new parent if applicable
  *
- * Example:
- *     msgid = ldap_modrdn( ld, dn, newrdn );
+ * Returns the LDAP error code.
  */
+
 int
-ldap_modrdn2( LDAP *ld, char *dn, char *newrdn, int deleteoldrdn )
+ldap_rename(
+       LDAP *ld,
+       LDAP_CONST char *dn,
+       LDAP_CONST char *newrdn,
+       LDAP_CONST char *newSuperior,
+       int deleteoldrdn,
+       LDAPControl **sctrls,
+       LDAPControl **cctrls,
+       int *msgidp )
 {
        BerElement      *ber;
+       int rc;
+       ber_int_t id;
 
-       /*
-        * A modify rdn request looks like this:
-        *      ModifyRDNRequest ::= SEQUENCE {
-        *              entry           DistinguishedName,
-        *              newrdn          RelativeDistinguishedName,
-        *              deleteoldrdn    BOOLEAN
-        *      }
-        */
+       Debug( LDAP_DEBUG_TRACE, "ldap_rename\n", 0, 0, 0 );
 
-       Debug( LDAP_DEBUG_TRACE, "ldap_modrdn\n", 0, 0, 0 );
+       /* check client controls */
+       rc = ldap_int_client_controls( ld, cctrls );
+       if( rc != LDAP_SUCCESS ) return rc;
 
        /* create a message to send */
-       if ( (ber = ldap_alloc_ber_with_options( ld )) == NULLBER ) {
-               return( -1 );
+       if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
+               return( LDAP_NO_MEMORY );
+       }
+
+       LDAP_NEXT_MSGID( ld, id );
+       if( newSuperior != NULL ) {
+               /* must be version 3 (or greater) */
+               if ( ld->ld_version < LDAP_VERSION3 ) {
+                       ld->ld_errno = LDAP_NOT_SUPPORTED;
+                       ber_free( ber, 1 );
+                       return( ld->ld_errno );
+               }
+               rc = ber_printf( ber, "{it{ssbtsN}", /* '}' */ 
+                       id, LDAP_REQ_MODDN,
+                       dn, newrdn, (ber_int_t) deleteoldrdn,
+                       LDAP_TAG_NEWSUPERIOR, newSuperior );
+
+       } else {
+               rc = ber_printf( ber, "{it{ssbN}", /* '}' */ 
+                       id, LDAP_REQ_MODDN,
+                       dn, newrdn, (ber_int_t) deleteoldrdn );
+       }
+
+       if ( rc < 0 ) {
+               ld->ld_errno = LDAP_ENCODING_ERROR;
+               ber_free( ber, 1 );
+               return( ld->ld_errno );
        }
 
-       if ( ber_printf( ber, "{it{ssb}}", ++ld->ld_msgid, LDAP_REQ_MODRDN, dn,
-           newrdn, deleteoldrdn ) == -1 ) {
+       /* Put Server Controls */
+       if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
+               ber_free( ber, 1 );
+               return ld->ld_errno;
+       }
+
+       rc = ber_printf( ber, /*{*/ "N}" );
+       if ( rc < 0 ) {
                ld->ld_errno = LDAP_ENCODING_ERROR;
                ber_free( ber, 1 );
-               return( -1 );
+               return( ld->ld_errno );
        }
 
        /* send the message */
-       return ( ldap_send_initial_request( ld, LDAP_REQ_MODRDN, dn, ber ));
+       *msgidp = ldap_send_initial_request( ld, LDAP_REQ_MODRDN, dn, ber, id );
+       
+       if( *msgidp < 0 ) {
+               return( ld->ld_errno );
+       }
+
+       return LDAP_SUCCESS;
+}
+
+
+/*
+ * ldap_rename2 - initiate an ldap (and X.500) modifyDN operation. Parameters:
+ *     (LDAP V3 MODIFYDN REQUEST)
+ *     ld              LDAP descriptor
+ *     dn              DN of the object to modify
+ *     newrdn          RDN to give the object
+ *     deleteoldrdn    nonzero means to delete old rdn values from the entry
+ *     newSuperior     DN of the new parent if applicable
+ *
+ * ldap_rename2 uses a U-Mich Style API.  It returns the msgid.
+ */
+
+int
+ldap_rename2(
+       LDAP *ld,
+       LDAP_CONST char *dn,
+       LDAP_CONST char *newrdn,
+       LDAP_CONST char *newSuperior,
+       int deleteoldrdn )
+{
+       int msgid;
+       int rc;
+
+       Debug( LDAP_DEBUG_TRACE, "ldap_rename2\n", 0, 0, 0 );
+
+       rc = ldap_rename( ld, dn, newrdn, newSuperior,
+               deleteoldrdn, NULL, NULL, &msgid );
+
+       return rc == LDAP_SUCCESS ? msgid : -1;
+}
+
+
+/*
+ * ldap_modrdn2 - initiate an ldap modifyRDN operation. Parameters:
+ *
+ *     ld              LDAP descriptor
+ *     dn              DN of the object to modify
+ *     newrdn          RDN to give the object
+ *     deleteoldrdn    nonzero means to delete old rdn values from the entry
+ *
+ * Example:
+ *     msgid = ldap_modrdn( ld, dn, newrdn );
+ */
+int
+ldap_modrdn2( LDAP *ld,
+       LDAP_CONST char *dn,
+       LDAP_CONST char *newrdn,
+       int deleteoldrdn )
+{
+       return ldap_rename2( ld, dn, newrdn, NULL, deleteoldrdn );
 }
 
 int
-ldap_modrdn( LDAP *ld, char *dn, char *newrdn )
+ldap_modrdn( LDAP *ld, LDAP_CONST char *dn, LDAP_CONST char *newrdn )
 {
-       return( ldap_modrdn2( ld, dn, newrdn, 1 ) );
+       return( ldap_rename2( ld, dn, newrdn, NULL, 1 ) );
 }
 
+
 int
-ldap_modrdn2_s( LDAP *ld, char *dn, char *newrdn, int deleteoldrdn )
+ldap_rename_s(
+       LDAP *ld,
+       LDAP_CONST char *dn,
+       LDAP_CONST char *newrdn,
+       LDAP_CONST char *newSuperior,
+       int deleteoldrdn,
+       LDAPControl **sctrls,
+       LDAPControl **cctrls )
 {
-       int             msgid;
-       LDAPMessage     *res;
+       int rc;
+       int msgid;
+       LDAPMessage *res;
 
-       if ( (msgid = ldap_modrdn2( ld, dn, newrdn, deleteoldrdn )) == -1 )
-               return( ld->ld_errno );
+       rc = ldap_rename( ld, dn, newrdn, newSuperior,
+               deleteoldrdn, sctrls, cctrls, &msgid );
 
-       if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
-               return( ld->ld_errno );
+       if( rc != LDAP_SUCCESS ) {
+               return rc;
+       }
+
+       rc = ldap_result( ld, msgid, LDAP_MSG_ALL, NULL, &res );
+
+       if( rc == -1 || !res ) {
+               return ld->ld_errno;
+       }
+
+       return ldap_result2error( ld, res, 1 );
+}
+
+int
+ldap_rename2_s(
+       LDAP *ld,
+       LDAP_CONST char *dn,
+       LDAP_CONST char *newrdn,
+       LDAP_CONST char *newSuperior,
+       int deleteoldrdn )
+{
+       return ldap_rename_s( ld, dn, newrdn, newSuperior,
+               deleteoldrdn, NULL, NULL );
+}
 
-       return( ldap_result2error( ld, res, 1 ) );
+int
+ldap_modrdn2_s( LDAP *ld, LDAP_CONST char *dn, LDAP_CONST char *newrdn, int deleteoldrdn )
+{
+       return ldap_rename_s( ld, dn, newrdn, NULL, deleteoldrdn, NULL, NULL );
 }
 
 int
-ldap_modrdn_s( LDAP *ld, char *dn, char *newrdn )
+ldap_modrdn_s( LDAP *ld, LDAP_CONST char *dn, LDAP_CONST char *newrdn )
 {
-       return( ldap_modrdn2_s( ld, dn, newrdn, 1 ) );
+       return ldap_rename_s( ld, dn, newrdn, NULL, 1, NULL, NULL );
 }
+